791 lines
18 KiB
TypeScript
791 lines
18 KiB
TypeScript
export type SearchData = {
|
|
id: string
|
|
nameKey: string
|
|
url: string
|
|
excludeLang?: boolean
|
|
icon: string
|
|
sectionKey: string
|
|
shortcut?: string
|
|
}
|
|
|
|
const data: SearchData[] = [
|
|
|
|
{
|
|
id: '2',
|
|
nameKey: 'analyticsDashboard',
|
|
url: '/dashboards/analytics',
|
|
icon: 'tabler-trending-up',
|
|
sectionKey: 'dashboards'
|
|
},
|
|
{
|
|
id: '3',
|
|
nameKey: 'ecommerceDashboard',
|
|
url: '/dashboards/ecommerce',
|
|
icon: 'tabler-shopping-cart',
|
|
sectionKey: 'dashboards'
|
|
},
|
|
{
|
|
id: '4',
|
|
nameKey: 'academyDashboard',
|
|
url: '/dashboards/academy',
|
|
icon: 'tabler-school',
|
|
sectionKey: 'dashboards'
|
|
},
|
|
{
|
|
id: '5',
|
|
nameKey: 'logisticsDashboard',
|
|
url: '/dashboards/logistics',
|
|
icon: 'tabler-truck',
|
|
sectionKey: 'dashboards'
|
|
},
|
|
{
|
|
id: '6',
|
|
nameKey: 'landingFront',
|
|
url: '/front-pages/landing-page',
|
|
excludeLang: true,
|
|
icon: 'tabler-file-description',
|
|
sectionKey: 'frontPages'
|
|
},
|
|
{
|
|
id: '7',
|
|
nameKey: 'pricingFront',
|
|
url: '/front-pages/pricing',
|
|
excludeLang: true,
|
|
icon: 'tabler-file-description',
|
|
sectionKey: 'frontPages'
|
|
},
|
|
{
|
|
id: '8',
|
|
nameKey: 'paymentFront',
|
|
url: '/front-pages/payment',
|
|
excludeLang: true,
|
|
icon: 'tabler-file-description',
|
|
sectionKey: 'frontPages'
|
|
},
|
|
{
|
|
id: '9',
|
|
nameKey: 'checkoutFront',
|
|
url: '/front-pages/checkout',
|
|
excludeLang: true,
|
|
icon: 'tabler-file-description',
|
|
sectionKey: 'frontPages'
|
|
},
|
|
{
|
|
id: '10',
|
|
nameKey: 'helpCenterFront',
|
|
url: '/front-pages/help-center',
|
|
excludeLang: true,
|
|
icon: 'tabler-file-description',
|
|
sectionKey: 'frontPages'
|
|
},
|
|
{
|
|
id: '11',
|
|
nameKey: 'ecommerceDashboardApp',
|
|
url: '/apps/ecommerce/dashboard',
|
|
icon: 'tabler-shopping-cart',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '12',
|
|
nameKey: 'ecommerceProductList',
|
|
url: '/apps/ecommerce/products/list',
|
|
icon: 'tabler-list',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '13',
|
|
nameKey: 'ecommerceAddProduct',
|
|
url: '/apps/ecommerce/products/add',
|
|
icon: 'tabler-circle-plus',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '14',
|
|
nameKey: 'ecommerceProductCategory',
|
|
url: '/apps/ecommerce/products/category',
|
|
icon: 'tabler-list-details',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '15',
|
|
nameKey: 'ecommerceOrderList',
|
|
url: '/apps/ecommerce/orders/list',
|
|
icon: 'tabler-list',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '16',
|
|
nameKey: 'ecommerceOrderDetails',
|
|
url: '/apps/ecommerce/orders/details/5434',
|
|
icon: 'tabler-list-check',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '17',
|
|
nameKey: 'ecommerceCustomerList',
|
|
url: '/apps/ecommerce/customers/list',
|
|
icon: 'tabler-user',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '18',
|
|
nameKey: 'ecommerceCustomerDetails',
|
|
url: '/apps/ecommerce/customers/details/879861',
|
|
icon: 'tabler-list',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '19',
|
|
nameKey: 'ecommerceManageReviews',
|
|
url: '/apps/ecommerce/manage-reviews',
|
|
icon: 'tabler-quote',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '20',
|
|
nameKey: 'ecommerceReferrals',
|
|
url: '/apps/ecommerce/referrals',
|
|
icon: 'tabler-users-group',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '21',
|
|
nameKey: 'ecommerceSettings',
|
|
url: '/apps/ecommerce/settings',
|
|
icon: 'tabler-settings-automation',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '22',
|
|
nameKey: 'academyDashboardApp',
|
|
url: '/apps/academy/dashboard',
|
|
icon: 'tabler-book',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '23',
|
|
nameKey: 'academyMyCourses',
|
|
url: '/apps/academy/my-courses',
|
|
icon: 'tabler-list',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '24',
|
|
nameKey: 'academyCourseDetails',
|
|
url: '/apps/academy/course-details',
|
|
icon: 'tabler-list',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '25',
|
|
nameKey: 'logisticsDashboardApp',
|
|
url: '/apps/logistics/dashboard',
|
|
icon: 'tabler-truck',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '26',
|
|
nameKey: 'logisticsFleet',
|
|
url: '/apps/logistics/fleet',
|
|
icon: 'tabler-car',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '27',
|
|
nameKey: 'email',
|
|
url: '/apps/email',
|
|
icon: 'tabler-mail',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '28',
|
|
nameKey: 'chat',
|
|
url: '/apps/chat',
|
|
icon: 'tabler-message-circle-2',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '29',
|
|
nameKey: 'calendar',
|
|
url: '/apps/calendar',
|
|
icon: 'tabler-calendar',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '30',
|
|
nameKey: 'kanban',
|
|
url: '/apps/kanban',
|
|
icon: 'tabler-copy',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '31',
|
|
nameKey: 'invoiceList',
|
|
url: '/apps/invoice/list',
|
|
icon: 'tabler-file-description',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '32',
|
|
nameKey: 'invoicePreview',
|
|
url: '/apps/invoice/preview/4987',
|
|
icon: 'tabler-file-info',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '33',
|
|
nameKey: 'invoiceEdit',
|
|
url: '/apps/invoice/edit/4987',
|
|
icon: 'tabler-file-pencil',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '34',
|
|
nameKey: 'invoiceAdd',
|
|
url: '/apps/invoice/add',
|
|
icon: 'tabler-file-plus',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '35',
|
|
nameKey: 'userList',
|
|
url: '/apps/user/list',
|
|
icon: 'tabler-user',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '36',
|
|
nameKey: 'userView',
|
|
url: '/apps/user/view',
|
|
icon: 'tabler-file-text',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '37',
|
|
nameKey: 'roles',
|
|
url: '/apps/roles',
|
|
icon: 'tabler-user-shield',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '38',
|
|
nameKey: 'permissions',
|
|
url: '/apps/permissions',
|
|
icon: 'tabler-lock',
|
|
sectionKey: 'apps'
|
|
},
|
|
{
|
|
id: '39',
|
|
nameKey: 'userProfile',
|
|
url: '/pages/user-profile',
|
|
icon: 'tabler-user-circle',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '40',
|
|
nameKey: 'accountSettings',
|
|
url: '/pages/account-settings',
|
|
icon: 'tabler-settings',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '41',
|
|
nameKey: 'faq',
|
|
url: '/pages/faq',
|
|
icon: 'tabler-help-circle',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '42',
|
|
nameKey: 'pricing',
|
|
url: '/pages/pricing',
|
|
icon: 'tabler-currency-dollar',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '43',
|
|
nameKey: 'comingSoon',
|
|
url: '/pages/misc/coming-soon',
|
|
icon: 'tabler-clock-hour-3',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '44',
|
|
nameKey: 'underMaintenance',
|
|
url: '/pages/misc/under-maintenance',
|
|
icon: 'tabler-settings-cog',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '45',
|
|
nameKey: 'pageNotFound404',
|
|
url: '/pages/misc/404-not-found',
|
|
icon: 'tabler-info-circle',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '46',
|
|
nameKey: 'notAuthorized401',
|
|
url: '/pages/misc/401-not-authorized',
|
|
icon: 'tabler-user-cancel',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '47',
|
|
nameKey: 'loginV1',
|
|
url: '/pages/auth/login-v1',
|
|
icon: 'tabler-login-2',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '48',
|
|
nameKey: 'loginV2',
|
|
url: '/pages/auth/login-v2',
|
|
icon: 'tabler-login-2',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '49',
|
|
nameKey: 'registerV1',
|
|
url: '/pages/auth/register-v1',
|
|
icon: 'tabler-user-plus',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '50',
|
|
nameKey: 'registerV2',
|
|
url: '/pages/auth/register-v2',
|
|
icon: 'tabler-user-plus',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '51',
|
|
nameKey: 'registerMultiSteps',
|
|
url: '/pages/auth/register-multi-steps',
|
|
icon: 'tabler-user-plus',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '52',
|
|
nameKey: 'forgotPasswordV1',
|
|
url: '/pages/auth/forgot-password-v1',
|
|
icon: 'tabler-lock-check',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '53',
|
|
nameKey: 'forgotPasswordV2',
|
|
url: '/pages/auth/forgot-password-v2',
|
|
icon: 'tabler-lock-check',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '54',
|
|
nameKey: 'resetPasswordV1',
|
|
url: '/pages/auth/reset-password-v1',
|
|
icon: 'tabler-refresh',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '55',
|
|
nameKey: 'resetPasswordV2',
|
|
url: '/pages/auth/reset-password-v2',
|
|
icon: 'tabler-refresh',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '56',
|
|
nameKey: 'verifyEmailV1',
|
|
url: '/pages/auth/verify-email-v1',
|
|
icon: 'tabler-mail-check',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '57',
|
|
nameKey: 'verifyEmailV2',
|
|
url: '/pages/auth/verify-email-v2',
|
|
icon: 'tabler-mail-check',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '58',
|
|
nameKey: 'twoStepsV1',
|
|
url: '/pages/auth/two-steps-v1',
|
|
icon: 'tabler-devices',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '59',
|
|
nameKey: 'twoStepsV2',
|
|
url: '/pages/auth/two-steps-v2',
|
|
icon: 'tabler-devices',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '60',
|
|
nameKey: 'wizardCheckout',
|
|
url: '/pages/wizard-examples/checkout',
|
|
icon: 'tabler-shopping-cart-check',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '61',
|
|
nameKey: 'propertyListing',
|
|
url: '/pages/wizard-examples/property-listing',
|
|
icon: 'tabler-building',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '62',
|
|
nameKey: 'createDeal',
|
|
url: '/pages/wizard-examples/create-deal',
|
|
icon: 'tabler-gift',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '63',
|
|
nameKey: 'dialogExamples',
|
|
url: '/pages/dialog-examples',
|
|
icon: 'tabler-device-desktop',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '64',
|
|
nameKey: 'basic',
|
|
url: '/pages/widget-examples/basic',
|
|
icon: 'tabler-square',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '65',
|
|
nameKey: 'advanced',
|
|
url: '/pages/widget-examples/advanced',
|
|
icon: 'tabler-file-spreadsheet',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '66',
|
|
nameKey: 'statistics',
|
|
url: '/pages/widget-examples/statistics',
|
|
icon: 'tabler-align-box-bottom-center',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '67',
|
|
nameKey: 'charts',
|
|
url: '/pages/widget-examples/charts',
|
|
icon: 'tabler-chart-histogram',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '68',
|
|
nameKey: 'actions',
|
|
url: '/pages/widget-examples/actions',
|
|
icon: 'tabler-square-plus',
|
|
sectionKey: 'pages'
|
|
},
|
|
{
|
|
id: '69',
|
|
nameKey: 'formLayouts',
|
|
url: '/forms/form-layouts',
|
|
icon: 'tabler-layout',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '70',
|
|
nameKey: 'formValidation',
|
|
url: '/forms/form-validation',
|
|
icon: 'tabler-checkup-list',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '71',
|
|
nameKey: 'formWizard',
|
|
url: '/forms/form-wizard',
|
|
icon: 'tabler-git-merge',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '72',
|
|
nameKey: 'reactTable',
|
|
url: '/react-table',
|
|
icon: 'tabler-table',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '73',
|
|
nameKey: 'apexCharts',
|
|
url: '/charts/apex-charts',
|
|
icon: 'tabler-chart-ppf',
|
|
sectionKey: 'charts'
|
|
},
|
|
{
|
|
id: '74',
|
|
nameKey: 'recharts',
|
|
url: '/charts/recharts',
|
|
icon: 'tabler-chart-sankey',
|
|
sectionKey: 'charts'
|
|
},
|
|
{
|
|
id: '75',
|
|
nameKey: 'menuExamples',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/menu-examples/overview`,
|
|
icon: 'tabler-playlist-add',
|
|
sectionKey: 'others'
|
|
},
|
|
{
|
|
id: '76',
|
|
nameKey: 'typography',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/foundation/typography`,
|
|
icon: 'tabler-typography',
|
|
sectionKey: 'foundation'
|
|
},
|
|
{
|
|
id: '77',
|
|
nameKey: 'colors',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/foundation/colors`,
|
|
icon: 'tabler-palette',
|
|
sectionKey: 'foundation'
|
|
},
|
|
{
|
|
id: '78',
|
|
nameKey: 'shadows',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/foundation/shadows`,
|
|
icon: 'tabler-shadow',
|
|
sectionKey: 'foundation'
|
|
},
|
|
{
|
|
id: '79',
|
|
nameKey: 'icons',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/foundation/icons`,
|
|
icon: 'tabler-icons',
|
|
sectionKey: 'foundation'
|
|
},
|
|
{
|
|
id: '80',
|
|
nameKey: 'accordion',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/accordion`,
|
|
icon: 'tabler-fold',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '81',
|
|
nameKey: 'alerts',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/alerts`,
|
|
icon: 'tabler-alert-triangle',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '82',
|
|
nameKey: 'avatars',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/avatars`,
|
|
icon: 'tabler-user-square',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '83',
|
|
nameKey: 'badges',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/badges`,
|
|
icon: 'tabler-notification',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '84',
|
|
nameKey: 'buttons',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/buttons`,
|
|
icon: 'tabler-download',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '85',
|
|
nameKey: 'buttonGroup',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/button-group`,
|
|
icon: 'tabler-copy',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '86',
|
|
nameKey: 'chips',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/chips`,
|
|
icon: 'tabler-oval-vertical',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '87',
|
|
nameKey: 'dialogs',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/dialogs`,
|
|
icon: 'tabler-device-desktop',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '88',
|
|
nameKey: 'list',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/list`,
|
|
icon: 'tabler-list',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '89',
|
|
nameKey: 'menu',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/menu`,
|
|
icon: 'tabler-menu-2',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '90',
|
|
nameKey: 'pagination',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/pagination`,
|
|
icon: 'tabler-chevron-right-pipe',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '91',
|
|
nameKey: 'progress',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/progress`,
|
|
icon: 'tabler-progress',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '92',
|
|
nameKey: 'ratings',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/ratings`,
|
|
icon: 'tabler-star',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '93',
|
|
nameKey: 'snackbar',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/snackbar`,
|
|
icon: 'tabler-message-dots',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '94',
|
|
nameKey: 'swiper',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/swiper`,
|
|
icon: 'tabler-cards',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '95',
|
|
nameKey: 'tabs',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/tabs`,
|
|
icon: 'tabler-layout-navbar',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '96',
|
|
nameKey: 'timeline',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/timeline`,
|
|
icon: 'tabler-timeline',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '97',
|
|
nameKey: 'toasts',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/toasts`,
|
|
icon: 'tabler-bell',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '98',
|
|
nameKey: 'moreComponents',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/components/more`,
|
|
icon: 'tabler-table-plus',
|
|
sectionKey: 'components'
|
|
},
|
|
{
|
|
id: '99',
|
|
nameKey: 'textField',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/text-field`,
|
|
icon: 'tabler-forms',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '100',
|
|
nameKey: 'select',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/select`,
|
|
icon: 'tabler-list-details',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '101',
|
|
nameKey: 'checkbox',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/checkbox`,
|
|
icon: 'tabler-checkbox',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '102',
|
|
nameKey: 'radio',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/radio`,
|
|
icon: 'tabler-circle-dot',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '103',
|
|
nameKey: 'customInputs',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/custom-inputs`,
|
|
icon: 'tabler-list-details',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '104',
|
|
nameKey: 'textarea',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/textarea`,
|
|
icon: 'tabler-rectangle',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '105',
|
|
nameKey: 'autocomplete',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/autocomplete`,
|
|
icon: 'tabler-list-check',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '106',
|
|
nameKey: 'dateTimePickers',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/pickers`,
|
|
icon: 'tabler-calendar-month',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '107',
|
|
nameKey: 'switch',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/switch`,
|
|
icon: 'tabler-toggle-left',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '108',
|
|
nameKey: 'fileUploader',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/file-uploader`,
|
|
icon: 'tabler-file-upload',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '109',
|
|
nameKey: 'editor',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/editor`,
|
|
icon: 'tabler-device-ipad-horizontal-plus',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '110',
|
|
nameKey: 'slider',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/form-elements/slider`,
|
|
icon: 'tabler-line',
|
|
sectionKey: 'formsAndTables'
|
|
},
|
|
{
|
|
id: '111',
|
|
nameKey: 'muiTables',
|
|
url: `${process.env.NEXT_PUBLIC_DOCS_URL}/docs/user-interface/mui-table`,
|
|
icon: 'tabler-layout-board-split',
|
|
sectionKey: 'formsAndTables'
|
|
}
|
|
]
|
|
|
|
export default data
|