Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,89 @@
export default [
{
title: 'Forms',
icon: { icon: 'tabler-forms' },
children: [
{
title: 'Form Elements',
icon: { icon: 'tabler-copy' },
children: [
{
title: 'Autocomplete',
to: 'forms-autocomplete',
},
{
title: 'Checkbox',
to: 'forms-checkbox',
},
{
title: 'Combobox',
to: 'forms-combobox',
},
{
title: 'Date Time Picker',
to: 'forms-date-time-picker',
},
{
title: 'Editors',
to: 'forms-editors',
},
{
title: 'File Input',
to: 'forms-file-input',
},
{
title: 'Radio',
to: 'forms-radio',
},
{
title: 'Custom Input',
to: 'forms-custom-input',
},
{
title: 'Range Slider',
to: 'forms-range-slider',
},
{
title: 'Rating',
to: 'forms-rating',
},
{
title: 'Select',
to: 'forms-select',
},
{ title: 'Slider', to: 'forms-slider' },
{
title: 'Switch',
to: 'forms-switch',
},
{
title: 'Textarea',
to: 'forms-textarea',
},
{
title: 'Textfield',
to: 'forms-textfield',
},
],
},
{
title: 'Form Layouts',
icon: { icon: 'tabler-circle-check' },
to: 'forms-form-layouts',
},
{
title: 'Form Wizard',
icon: { icon: 'tabler-align-center' },
children: [
{ title: 'Numbered', to: 'forms-form-wizard-numbered' },
{ title: 'Icons', to: 'forms-form-wizard-icons' },
],
},
{
title: 'Form Validation',
icon: { icon: 'tabler-circle-check' },
to: 'forms-form-validation',
},
],
},
]