@vc-shell/framework 1.0.341 → 1.1.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +15 -2
- package/core/api/platform.ts +9883 -9883
- package/core/composables/index.ts +11 -7
- package/core/composables/useApiClient/index.ts +22 -22
- package/core/composables/useAppBarMobileButtons/index.ts +17 -0
- package/core/composables/useAppBarWidget/index.ts +19 -0
- package/core/composables/useBeforeUnload/index.ts +25 -25
- package/core/composables/useDashboard/index.ts +19 -0
- package/core/composables/useFunctions/debounce.ts +16 -16
- package/core/composables/useFunctions/delay.ts +4 -4
- package/core/composables/useFunctions/index.ts +21 -21
- package/core/composables/useFunctions/once.ts +12 -12
- package/core/composables/useFunctions/sleep.ts +4 -4
- package/core/composables/useFunctions/throttle.ts +14 -14
- package/core/composables/useGlobalSearch/index.ts +19 -0
- package/core/composables/useKeyboardNavigation/index.ts +211 -0
- package/core/composables/useLanguages/index.ts +78 -78
- package/core/composables/useLoading/index.ts +9 -9
- package/core/composables/useMenuService/index.ts +15 -105
- package/core/composables/useSettingsMenu/index.ts +23 -0
- package/core/composables/useTheme/index.ts +62 -61
- package/core/composables/useWidgets/index.ts +20 -0
- package/core/constants/index.ts +2 -0
- package/core/directives/autofocus/index.ts +9 -9
- package/core/directives/loading/index.ts +30 -1
- package/core/directives/loading/styles.css +36 -7
- package/core/plugins/i18n/index.ts +11 -11
- package/core/plugins/modularity/index.ts +32 -30
- package/core/plugins/modularity/loader.ts +2 -1
- package/core/plugins/moment/humanize.ts +74 -74
- package/core/plugins/moment/index.ts +1 -1
- package/core/plugins/permissions/index.ts +10 -10
- package/core/plugins/validation/index.ts +1 -1
- package/core/plugins/validation/rules.ts +145 -145
- package/core/services/app-bar-menu-service.ts +87 -0
- package/core/services/app-bar-mobile-buttons-service.ts +57 -0
- package/core/services/dashboard-service.ts +121 -0
- package/core/services/global-search-service.ts +36 -0
- package/core/services/menu-service.ts +235 -0
- package/core/services/settings-menu-service.ts +75 -0
- package/core/services/widget-service.ts +147 -0
- package/core/types/index.ts +33 -18
- package/core/types/widget.ts +15 -0
- package/core/utilities/camelToSnake.ts +7 -7
- package/core/utilities/camelize.ts +5 -5
- package/core/utilities/generateId.ts +3 -3
- package/core/utilities/kebabToCamel.ts +7 -7
- package/dist/{asn1-DF4fnRHj.js → asn1-jKiBa2Ya.js} +20 -18
- package/dist/{clike-l4mx49Q1.js → clike-BUuHEmgZ.js} +0 -1
- package/dist/{cobol-CJVkMW0i.js → cobol-BlTKFDRj.js} +0 -1
- package/dist/core/composables/index.d.ts +11 -7
- package/dist/core/composables/index.d.ts.map +1 -1
- package/dist/core/composables/useAppBarMobileButtons/index.d.ts +3 -0
- package/dist/core/composables/useAppBarMobileButtons/index.d.ts.map +1 -0
- package/dist/core/composables/useAppBarWidget/index.d.ts +5 -0
- package/dist/core/composables/useAppBarWidget/index.d.ts.map +1 -0
- package/dist/core/composables/useDashboard/index.d.ts +5 -0
- package/dist/core/composables/useDashboard/index.d.ts.map +1 -0
- package/dist/core/composables/useGlobalSearch/index.d.ts +4 -0
- package/dist/core/composables/useGlobalSearch/index.d.ts.map +1 -0
- package/dist/core/composables/useKeyboardNavigation/index.d.ts +24 -0
- package/dist/core/composables/useKeyboardNavigation/index.d.ts.map +1 -0
- package/dist/core/composables/useMenuService/index.d.ts +4 -10
- package/dist/core/composables/useMenuService/index.d.ts.map +1 -1
- package/dist/core/composables/useSettingsMenu/index.d.ts +5 -0
- package/dist/core/composables/useSettingsMenu/index.d.ts.map +1 -0
- package/dist/core/composables/useTheme/index.d.ts.map +1 -1
- package/dist/core/composables/useWidgets/index.d.ts +5 -0
- package/dist/core/composables/useWidgets/index.d.ts.map +1 -0
- package/dist/core/constants/index.d.ts +1 -0
- package/dist/core/constants/index.d.ts.map +1 -1
- package/dist/core/directives/loading/index.d.ts.map +1 -1
- package/dist/core/plugins/modularity/index.d.ts +7 -7
- package/dist/core/plugins/modularity/index.d.ts.map +1 -1
- package/dist/core/plugins/modularity/loader.d.ts.map +1 -1
- package/dist/core/services/app-bar-menu-service.d.ts +29 -0
- package/dist/core/services/app-bar-menu-service.d.ts.map +1 -0
- package/dist/core/services/app-bar-mobile-buttons-service.d.ts +24 -0
- package/dist/core/services/app-bar-mobile-buttons-service.d.ts.map +1 -0
- package/dist/core/services/dashboard-service.d.ts +33 -0
- package/dist/core/services/dashboard-service.d.ts.map +1 -0
- package/dist/core/services/global-search-service.d.ts +10 -0
- package/dist/core/services/global-search-service.d.ts.map +1 -0
- package/dist/core/services/menu-service.d.ts +17 -0
- package/dist/core/services/menu-service.d.ts.map +1 -0
- package/dist/core/services/settings-menu-service.d.ts +25 -0
- package/dist/core/services/settings-menu-service.d.ts.map +1 -0
- package/dist/core/services/widget-service.d.ts +39 -0
- package/dist/core/services/widget-service.d.ts.map +1 -0
- package/dist/core/types/index.d.ts +33 -17
- package/dist/core/types/index.d.ts.map +1 -1
- package/dist/core/types/widget.d.ts +12 -0
- package/dist/core/types/widget.d.ts.map +1 -0
- package/dist/{dockerfile-CFG_IPGn.js → dockerfile-DIy8NleC.js} +1 -1
- package/dist/{factor-DJHfQ4a1.js → factor-DDOC7X6P.js} +1 -1
- package/dist/framework.js +282 -224
- package/dist/{haxe-pdDS1aE8.js → haxe-70NVW1pR.js} +1 -1
- package/dist/index-Bi0kJi5Z.js +137 -0
- package/dist/{index-YvFwPxsI.js → index-C21NKea4.js} +9 -9
- package/dist/{index-CV4fOhK1.js → index-C9n6vRCl.js} +6 -6
- package/dist/{index-Dho4-wXM.js → index-CBdNNVCt.js} +8 -8
- package/dist/{index-n48DzlNW.js → index-CNEtPeAi.js} +9 -9
- package/dist/index-CPkPLIZF.js +243 -0
- package/dist/{index-CT72nbMk.js → index-CUwa-7vt.js} +10 -10
- package/dist/{index-bAD1-blW.js → index-ClEfeR5e.js} +7 -7
- package/dist/{index-BON_eF-3.js → index-CtUvgwL1.js} +9 -9
- package/dist/{index-wsG2MecP.js → index-D7TQzX3d.js} +7 -7
- package/dist/{index-Ce86fM2z.js → index-DSYfAsS3.js} +95775 -92179
- package/dist/{index-Dcdjgpoe.js → index-Dg1vmmpj.js} +5 -5
- package/dist/{index-DSefVRVC.js → index-Dzz7ZfO9.js} +19 -19
- package/dist/index-dZEaziXz.js +607 -0
- package/dist/{index-Ck9pr8TI.js → index-kg3-UkAr.js} +16 -16
- package/dist/{index-BXTIkfHT.js → index-vc0H8rq-.js} +42 -42
- package/dist/index-vegt24rG.js +308 -0
- package/dist/index.css +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/injection-keys.d.ts +46 -0
- package/dist/injection-keys.d.ts.map +1 -0
- package/dist/{javascript-CWGekh08.js → javascript-WMWNx-Vj.js} +1 -1
- package/dist/{livescript-CE_BxZmN.js → livescript-CanGTf8u.js} +25 -25
- package/dist/locales/de.json +8 -2
- package/dist/locales/en.json +6 -1
- package/dist/{mllike-1yy7Y7jE.js → mllike-BSnXJBGA.js} +0 -3
- package/dist/{nsis-BtA0qkjU.js → nsis-fePjrhq7.js} +1 -1
- package/dist/{pascal-ixanSKUz.js → pascal-De0D6mP7.js} +1 -1
- package/dist/{pug-CW1q1xhQ.js → pug-BqUR2bBq.js} +1 -1
- package/dist/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue.d.ts.map +1 -1
- package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts +19 -0
- package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts.map +1 -0
- package/dist/shared/components/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue.d.ts.map +1 -1
- package/dist/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.d.ts +32 -2
- package/dist/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.d.ts.map +1 -1
- package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts +5 -1
- package/dist/shared/components/blade-navigation/composables/useBladeNavigation/index.d.ts.map +1 -1
- package/dist/shared/components/blade-navigation/types/index.d.ts +9 -0
- package/dist/shared/components/blade-navigation/types/index.d.ts.map +1 -1
- package/dist/shared/components/change-password-button/change-password-button.vue.d.ts +3 -0
- package/dist/shared/components/change-password-button/change-password-button.vue.d.ts.map +1 -0
- package/dist/shared/components/change-password-button/index.d.ts +2 -0
- package/dist/shared/components/change-password-button/index.d.ts.map +1 -0
- package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts +25 -0
- package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts.map +1 -0
- package/dist/shared/components/dashboard-widget-card/index.d.ts +2 -0
- package/dist/shared/components/dashboard-widget-card/index.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/DraggableDashboard.vue.d.ts +8 -0
- package/dist/shared/components/draggable-dashboard/DraggableDashboard.vue.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/_internal/DashboardWidget.vue.d.ts +20 -0
- package/dist/shared/components/draggable-dashboard/_internal/DashboardWidget.vue.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useCellSizeCalculator.d.ts +25 -0
- package/dist/shared/components/draggable-dashboard/composables/useCellSizeCalculator.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useCollisionDetection.d.ts +27 -0
- package/dist/shared/components/draggable-dashboard/composables/useCollisionDetection.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts +376 -0
- package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useDashboardGrid.d.ts +20 -0
- package/dist/shared/components/draggable-dashboard/composables/useDashboardGrid.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useDragClone.d.ts +15 -0
- package/dist/shared/components/draggable-dashboard/composables/useDragClone.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useEventCoordinates.d.ts +33 -0
- package/dist/shared/components/draggable-dashboard/composables/useEventCoordinates.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useGridPosition.d.ts +57 -0
- package/dist/shared/components/draggable-dashboard/composables/useGridPosition.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useGridSystem.d.ts +22 -0
- package/dist/shared/components/draggable-dashboard/composables/useGridSystem.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useLayoutPersistence.d.ts +19 -0
- package/dist/shared/components/draggable-dashboard/composables/useLayoutPersistence.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useResizeObserver.d.ts +18 -0
- package/dist/shared/components/draggable-dashboard/composables/useResizeObserver.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useWidgetLayout.d.ts +14 -0
- package/dist/shared/components/draggable-dashboard/composables/useWidgetLayout.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/composables/useWidgetStyles.d.ts +21 -0
- package/dist/shared/components/draggable-dashboard/composables/useWidgetStyles.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/index.d.ts +2 -0
- package/dist/shared/components/draggable-dashboard/index.d.ts.map +1 -0
- package/dist/shared/components/draggable-dashboard/types.d.ts +84 -0
- package/dist/shared/components/draggable-dashboard/types.d.ts.map +1 -0
- package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts +132 -0
- package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts.map +1 -0
- package/dist/shared/components/generic-dropdown/index.d.ts +2 -0
- package/dist/shared/components/generic-dropdown/index.d.ts.map +1 -0
- package/dist/shared/components/index.d.ts +4 -1
- package/dist/shared/components/index.d.ts.map +1 -1
- package/dist/shared/components/language-selector/language-selector.vue.d.ts.map +1 -1
- package/dist/shared/components/logout-button/index.d.ts +2 -0
- package/dist/shared/components/logout-button/index.d.ts.map +1 -0
- package/dist/shared/components/logout-button/logout-button.vue.d.ts +3 -0
- package/dist/shared/components/logout-button/logout-button.vue.d.ts.map +1 -0
- package/dist/shared/components/notification-dropdown/_internal/notification/index.d.ts +2 -0
- package/dist/shared/components/notification-dropdown/_internal/notification/index.d.ts.map +1 -0
- package/dist/shared/components/notification-dropdown/notification-dropdown.vue.d.ts.map +1 -1
- package/dist/shared/components/notification-template/index.d.ts +4 -31
- package/dist/shared/components/notification-template/index.d.ts.map +1 -1
- package/dist/shared/components/notification-template/notification-template.vue.d.ts +4 -14
- package/dist/shared/components/notification-template/notification-template.vue.d.ts.map +1 -1
- package/dist/shared/components/notifications/components/notification-container/index.d.ts +1 -1
- package/dist/shared/components/notifications/components/notification-container/index.d.ts.map +1 -1
- package/dist/shared/components/settings-menu/index.d.ts +2 -0
- package/dist/shared/components/settings-menu/index.d.ts.map +1 -0
- package/dist/shared/components/settings-menu/settings-menu.vue.d.ts +3 -0
- package/dist/shared/components/settings-menu/settings-menu.vue.d.ts.map +1 -0
- package/dist/shared/components/settings-menu-item/index.d.ts +2 -0
- package/dist/shared/components/settings-menu-item/index.d.ts.map +1 -0
- package/dist/shared/components/{app-bar-button/app-bar-button.vue.d.ts → settings-menu-item/settings-menu-item.vue.d.ts} +26 -25
- package/dist/shared/components/settings-menu-item/settings-menu-item.vue.d.ts.map +1 -0
- package/dist/shared/components/sidebar/sidebar.vue.d.ts +7 -2
- package/dist/shared/components/sidebar/sidebar.vue.d.ts.map +1 -1
- package/dist/shared/components/theme-selector/theme-selector.vue.d.ts.map +1 -1
- package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts +18 -0
- package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts.map +1 -0
- package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts +23 -0
- package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts.map +1 -0
- package/dist/shared/components/user-dropdown-button/index.d.ts +9 -25
- package/dist/shared/components/user-dropdown-button/index.d.ts.map +1 -1
- package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts +1 -18
- package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts.map +1 -1
- package/dist/shared/composables/useMenuExpanded.d.ts +7 -0
- package/dist/shared/composables/useMenuExpanded.d.ts.map +1 -0
- package/dist/shared/modules/assets/index.d.ts.map +1 -1
- package/dist/shared/modules/assets-manager/components/assets-manager/assets-manager.vue.d.ts.map +1 -1
- package/dist/shared/modules/assets-manager/components/assets-manager/index.d.ts +16 -16
- package/dist/shared/modules/dynamic/components/fields/Button.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/Button.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Card.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/Card.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/InputField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/InputField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/RadioButtonGroup.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/RadioButtonGroup.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Table.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/Table.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/props.d.ts +1 -7
- package/dist/shared/modules/dynamic/components/fields/props.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts +3 -62
- package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/common/templates.d.ts +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/common/templates.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts +3 -21
- package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/composables/useFilterBuilder/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts +2 -14
- package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts +4 -41
- package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/types/index.d.ts +5 -0
- package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
- package/dist/shared/pages/InvitePage/components/invite/index.d.ts +10 -10
- package/dist/shared/pages/ResetPasswordPage/components/reset-password/index.d.ts +10 -10
- package/dist/{simple-mode-HGTvdazT.js → simple-mode-B0dvCdAA.js} +15 -14
- package/dist/{sql-uoWIYwDX.js → sql-mMre1Bo3.js} +0 -2
- package/dist/tailwind.config.d.ts +1 -81
- package/dist/tailwind.config.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/{ttcn-DmjTzZb6.js → ttcn-Bsa4sfRm.js} +20 -22
- package/dist/{ttcn-cfg-B2U3U7dn.js → ttcn-cfg-Bac_acMi.js} +15 -17
- package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-button/vc-button.stories.d.ts +266 -831
- package/dist/ui/components/atoms/vc-button/vc-button.stories.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-button/vc-button.vue.d.ts +20 -3
- package/dist/ui/components/atoms/vc-button/vc-button.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-card/index.d.ts +2 -0
- package/dist/ui/components/atoms/vc-card/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +36 -24
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-card/vc-card.vue.d.ts +2 -0
- package/dist/ui/components/atoms/vc-card/vc-card.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/BellIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/BellIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/LogoutIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/LogoutIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/OffersIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/OffersIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/OrdersIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/OrdersIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/PeopleIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/PeopleIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ProductsIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ProductsIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ProfileIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ProfileIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/icons/index.d.ts +28 -0
- package/dist/ui/components/atoms/vc-icon/icons/index.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/index.d.ts +1 -0
- package/dist/ui/components/atoms/vc-icon/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/vc-icon.stories.d.ts +3 -3
- package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts +3 -2
- package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-label/vc-label.stories.d.ts +9 -0
- package/dist/ui/components/atoms/vc-label/vc-label.stories.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts +1 -0
- package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts +35 -0
- package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts +15 -0
- package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts +7 -0
- package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts +4 -0
- package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-widget/index.d.ts +6 -0
- package/dist/ui/components/atoms/vc-widget/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts +6 -0
- package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts +1 -3
- package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts.map +1 -1
- package/dist/ui/components/index.d.ts +1 -0
- package/dist/ui/components/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts +67 -33
- package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts +25 -11
- package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-checkbox/index.d.ts +21 -4
- package/dist/ui/components/molecules/vc-checkbox/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.stories.d.ts +210 -40
- package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts +10 -4
- package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts +996 -0
- package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +332 -0
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-field/vc-field.stories.d.ts +3 -3
- package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts +1 -1
- package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.stories.d.ts +12 -12
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +24 -24
- package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +1 -1
- package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts +18 -18
- package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.stories.d.ts +84 -84
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts +12 -12
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts +240 -240
- package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +24 -24
- package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-slider/index.d.ts +9 -9
- package/dist/ui/components/molecules/vc-slider/vc-slider.stories.d.ts +9 -9
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts +63 -0
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts +1 -0
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts +19 -0
- package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts +25 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts +32 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue.d.ts +17 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts +30 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts +50 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue.d.ts +3 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts +40 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.d.ts +9 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.d.ts +8 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.d.ts +23 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts +6 -16
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue.d.ts +3 -2
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts +2 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue.d.ts +3 -12
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts +13 -199
- package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts +5 -197
- package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue.d.ts +1 -2
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue.d.ts +48 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/{vc-blade-toolbar-button → vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button}/vc-blade-toolbar-button.vue.d.ts +10 -4
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-button.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue.d.ts +40 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue.d.ts +19 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue.d.ts +17 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue.d.ts +19 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts +9 -2
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.d.ts +3 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts +16 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts +16 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts +15 -0
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts +2 -16
- package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts +56 -2
- package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts +3 -3
- package/dist/ui/components/organisms/vc-dynamic-property/vc-dynamic-property.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue.d.ts +2 -2
- package/dist/ui/components/organisms/vc-gallery/vc-gallery.stories.d.ts +13 -13
- package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts +3 -2
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts +2 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts +218 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts +118 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts +236 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-select-all-header/vc-table-select-all-header.vue.d.ts +24 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-select-all-header/vc-table-select-all-header.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts +314 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts +32 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts +66 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts +6 -13
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts +229 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts +38 -0
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts +17 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts +407 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts +9 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts +16 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts +23 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts +20 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableSwipe.d.ts +12 -0
- package/dist/ui/components/organisms/vc-table/composables/useTableSwipe.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +105 -735
- package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +41 -135
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
- package/dist/ui/composables/useVisibleElements.d.ts +19 -0
- package/dist/ui/composables/useVisibleElements.d.ts.map +1 -0
- package/dist/{xquery-xQxle02u.js → xquery-BUQdORAS.js} +72 -76
- package/package.json +16 -6
- package/shared/components/app-switcher/components/vc-app-switcher/index.ts +1 -1
- package/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue +30 -135
- package/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue +77 -0
- package/shared/components/blade-navigation/components/vc-blade-navigation/vc-blade-navigation.vue +23 -10
- package/shared/components/blade-navigation/components/vc-blade-view/vc-blade-view.ts +30 -6
- package/shared/components/blade-navigation/composables/useBladeNavigation/index.ts +9 -1
- package/shared/components/blade-navigation/types/index.ts +10 -0
- package/shared/components/change-password/change-password.vue +3 -2
- package/shared/components/change-password-button/change-password-button.vue +20 -0
- package/shared/components/change-password-button/index.ts +1 -0
- package/shared/components/dashboard-widget-card/dashboard-widget-card.vue +67 -0
- package/shared/components/dashboard-widget-card/index.ts +1 -0
- package/shared/components/draggable-dashboard/DraggableDashboard.vue +332 -0
- package/shared/components/draggable-dashboard/_internal/DashboardWidget.vue +117 -0
- package/shared/components/draggable-dashboard/composables/useCellSizeCalculator.ts +121 -0
- package/shared/components/draggable-dashboard/composables/useCollisionDetection.ts +219 -0
- package/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.ts +342 -0
- package/shared/components/draggable-dashboard/composables/useDashboardGrid.ts +104 -0
- package/shared/components/draggable-dashboard/composables/useDragClone.ts +97 -0
- package/shared/components/draggable-dashboard/composables/useEventCoordinates.ts +91 -0
- package/shared/components/draggable-dashboard/composables/useGridPosition.ts +150 -0
- package/shared/components/draggable-dashboard/composables/useGridSystem.ts +169 -0
- package/shared/components/draggable-dashboard/composables/useLayoutPersistence.ts +89 -0
- package/shared/components/draggable-dashboard/composables/useResizeObserver.ts +105 -0
- package/shared/components/draggable-dashboard/composables/useWidgetLayout.ts +264 -0
- package/shared/components/draggable-dashboard/composables/useWidgetStyles.ts +120 -0
- package/shared/components/draggable-dashboard/index.ts +1 -0
- package/shared/components/draggable-dashboard/types.ts +96 -0
- package/shared/components/error-interceptor/interceptor.ts +44 -44
- package/shared/components/generic-dropdown/generic-dropdown.vue +219 -0
- package/shared/components/generic-dropdown/index.ts +1 -0
- package/shared/components/index.ts +4 -1
- package/shared/components/language-selector/language-selector.vue +56 -65
- package/shared/components/logout-button/index.ts +1 -0
- package/shared/components/logout-button/logout-button.vue +27 -0
- package/shared/components/notification-dropdown/_internal/notification/index.ts +1 -0
- package/shared/components/notification-dropdown/notification-dropdown.vue +27 -85
- package/shared/components/notification-template/notification-template.vue +26 -61
- package/shared/components/notifications/styles/index.scss +10 -10
- package/shared/components/settings-menu/index.ts +1 -0
- package/shared/components/settings-menu/settings-menu.vue +25 -0
- package/shared/components/settings-menu-item/index.ts +1 -0
- package/shared/components/settings-menu-item/settings-menu-item.vue +136 -0
- package/shared/components/sidebar/sidebar.vue +81 -42
- package/shared/components/theme-selector/theme-selector.vue +55 -66
- package/shared/components/user-dropdown-button/_internal/user-info.vue +95 -0
- package/shared/components/user-dropdown-button/_internal/user-sidebar.vue +48 -0
- package/shared/components/user-dropdown-button/user-dropdown-button.vue +74 -290
- package/shared/composables/useMenuExpanded.ts +40 -0
- package/shared/modules/assets/components/assets-details/assets-details.vue +2 -2
- package/shared/modules/assets/index.ts +0 -1
- package/shared/modules/assets-manager/components/assets-manager/assets-manager.vue +0 -1
- package/shared/modules/dynamic/components/FIELD_MAP.ts +53 -53
- package/shared/modules/dynamic/components/SchemaRender.ts +102 -102
- package/shared/modules/dynamic/components/factories.ts +244 -244
- package/shared/modules/dynamic/components/fields/Button.ts +44 -44
- package/shared/modules/dynamic/components/fields/Card.ts +119 -119
- package/shared/modules/dynamic/components/fields/Checkbox.ts +53 -53
- package/shared/modules/dynamic/components/fields/ContentField.ts +33 -33
- package/shared/modules/dynamic/components/fields/CustomComponent.ts +29 -29
- package/shared/modules/dynamic/components/fields/DynamicProperty.ts +141 -141
- package/shared/modules/dynamic/components/fields/EditorField.ts +46 -46
- package/shared/modules/dynamic/components/fields/Fieldset.ts +65 -65
- package/shared/modules/dynamic/components/fields/GalleryField.ts +161 -161
- package/shared/modules/dynamic/components/fields/ImageField.ts +35 -35
- package/shared/modules/dynamic/components/fields/InputCurrency.ts +79 -79
- package/shared/modules/dynamic/components/fields/InputField.ts +81 -81
- package/shared/modules/dynamic/components/fields/MultivalueField.ts +68 -68
- package/shared/modules/dynamic/components/fields/RadioButtonGroup.ts +82 -82
- package/shared/modules/dynamic/components/fields/RatingField.ts +28 -28
- package/shared/modules/dynamic/components/fields/SelectField.ts +72 -72
- package/shared/modules/dynamic/components/fields/StatusField.ts +110 -110
- package/shared/modules/dynamic/components/fields/SwitchField.ts +29 -29
- package/shared/modules/dynamic/components/fields/Table.ts +1 -2
- package/shared/modules/dynamic/components/fields/TextareaField.ts +46 -46
- package/shared/modules/dynamic/components/fields/ValidationField.ts +54 -54
- package/shared/modules/dynamic/components/fields/VideoField.ts +30 -30
- package/shared/modules/dynamic/components/fields/props.ts +39 -39
- package/shared/modules/dynamic/components/fields/storybook/Button.stories.ts +2 -63
- package/shared/modules/dynamic/components/fields/storybook/Card.stories.ts +1 -2
- package/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.ts +185 -185
- package/shared/modules/dynamic/components/fields/storybook/ContentField.stories.ts +245 -245
- package/shared/modules/dynamic/components/fields/storybook/EditorField.stories.ts +192 -192
- package/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.ts +347 -347
- package/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.ts +239 -239
- package/shared/modules/dynamic/components/fields/storybook/ImageField.stories.ts +186 -186
- package/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.ts +281 -281
- package/shared/modules/dynamic/components/fields/storybook/InputField.stories.ts +312 -312
- package/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.ts +361 -361
- package/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.ts +224 -224
- package/shared/modules/dynamic/components/fields/storybook/RatingField.stories.ts +131 -131
- package/shared/modules/dynamic/components/fields/storybook/SelectField.stories.ts +666 -666
- package/shared/modules/dynamic/components/fields/storybook/StatusField.stories.ts +202 -202
- package/shared/modules/dynamic/components/fields/storybook/SwitchField.stories.ts +178 -178
- package/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.ts +203 -203
- package/shared/modules/dynamic/components/fields/storybook/VideoField.stories.ts +92 -92
- package/shared/modules/dynamic/components/fields/storybook/common/args.ts +130 -130
- package/shared/modules/dynamic/components/fields/storybook/common/templates.ts +1 -1
- package/shared/modules/dynamic/components/index.ts +4 -4
- package/shared/modules/dynamic/composables/index.ts +4 -4
- package/shared/modules/dynamic/composables/useDynamicViewsUtils/index.ts +46 -46
- package/shared/modules/dynamic/composables/useFilterBuilder/index.ts +31 -22
- package/shared/modules/dynamic/composables/useTableTemplates/index.ts +67 -67
- package/shared/modules/dynamic/composables/useToolbarReducer/index.ts +70 -70
- package/shared/modules/dynamic/factories/base/useDetailsFactory.ts +144 -144
- package/shared/modules/dynamic/factories/base/useListFactory.ts +68 -68
- package/shared/modules/dynamic/factories/index.ts +4 -4
- package/shared/modules/dynamic/factories/types/index.ts +229 -229
- package/shared/modules/dynamic/helpers/getters.ts +12 -12
- package/shared/modules/dynamic/helpers/methodHandler.ts +22 -22
- package/shared/modules/dynamic/helpers/nodeBuilder.ts +1 -1
- package/shared/modules/dynamic/helpers/override.ts +153 -153
- package/shared/modules/dynamic/helpers/safeIn.ts +6 -6
- package/shared/modules/dynamic/helpers/setters.ts +24 -24
- package/shared/modules/dynamic/helpers/unrefNested.ts +14 -14
- package/shared/modules/dynamic/helpers/unwrapInterpolation.ts +16 -16
- package/shared/modules/dynamic/pages/dynamic-blade-form.vue +69 -31
- package/shared/modules/dynamic/pages/dynamic-blade-list.vue +169 -202
- package/shared/modules/dynamic/types/index.ts +5 -0
- package/shared/pages/ChangePasswordPage/components/change-password/index.ts +3 -3
- package/shared/pages/ChangePasswordPage/components/index.ts +1 -1
- package/shared/pages/ChangePasswordPage/index.ts +1 -1
- package/shared/pages/ChangePasswordPage/plugin.ts +4 -4
- package/shared/pages/InvitePage/components/index.ts +1 -1
- package/shared/pages/InvitePage/components/invite/Invite.vue +216 -216
- package/shared/pages/InvitePage/components/invite/index.ts +3 -3
- package/shared/pages/InvitePage/index.ts +1 -1
- package/shared/pages/InvitePage/plugin.ts +4 -4
- package/shared/pages/LoginPage/components/index.ts +1 -1
- package/shared/pages/LoginPage/components/login/Login.vue +1 -3
- package/shared/pages/LoginPage/components/login/index.ts +3 -3
- package/shared/pages/LoginPage/index.ts +1 -1
- package/shared/pages/LoginPage/plugin.ts +4 -4
- package/shared/pages/ResetPasswordPage/components/index.ts +1 -1
- package/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue +1 -1
- package/shared/pages/ResetPasswordPage/components/reset-password/index.ts +3 -3
- package/shared/pages/ResetPasswordPage/index.ts +1 -1
- package/shared/pages/ResetPasswordPage/plugin.ts +4 -4
- package/shared/pages/index.ts +4 -4
- package/shared/pages/plugin.ts +4 -4
- package/shared/utilities/assets.ts +42 -42
- package/shared/utilities/vueUtils.ts +50 -50
- package/tailwind.config.ts +5 -4
- package/ui/components/atoms/vc-badge/index.ts +1 -1
- package/ui/components/atoms/vc-badge/vc-badge.stories.ts +53 -53
- package/ui/components/atoms/vc-badge/vc-badge.vue +32 -15
- package/ui/components/atoms/vc-button/vc-button.stories.ts +1 -16
- package/ui/components/atoms/vc-button/vc-button.vue +80 -66
- package/ui/components/atoms/vc-card/index.ts +3 -3
- package/ui/components/atoms/vc-card/vc-card.stories.ts +1 -1
- package/ui/components/atoms/vc-card/vc-card.vue +18 -16
- package/ui/components/atoms/vc-col/index.ts +1 -1
- package/ui/components/atoms/vc-col/vc-col.stories.ts +22 -22
- package/ui/components/atoms/vc-col/vc-col.vue +29 -29
- package/ui/components/atoms/vc-container/index.ts +10 -10
- package/ui/components/atoms/vc-container/vc-container.stories.ts +29 -29
- package/ui/components/atoms/vc-hint/index.ts +10 -10
- package/ui/components/atoms/vc-hint/vc-hint.stories.ts +23 -23
- package/ui/components/atoms/vc-hint/vc-hint.vue +1 -1
- package/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue +15 -0
- package/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue +20 -0
- package/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue +13 -0
- package/ui/components/atoms/vc-icon/icons/BellIcon.vue +14 -0
- package/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue +13 -0
- package/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue +13 -0
- package/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue +13 -0
- package/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue +13 -0
- package/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue +16 -0
- package/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue +20 -0
- package/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue +14 -0
- package/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue +14 -0
- package/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue +27 -0
- package/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue +22 -0
- package/ui/components/atoms/vc-icon/icons/LogoutIcon.vue +13 -0
- package/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue +20 -0
- package/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue +14 -0
- package/ui/components/atoms/vc-icon/icons/OffersIcon.vue +23 -0
- package/ui/components/atoms/vc-icon/icons/OrdersIcon.vue +19 -0
- package/ui/components/atoms/vc-icon/icons/PeopleIcon.vue +21 -0
- package/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue +20 -0
- package/ui/components/atoms/vc-icon/icons/ProductsIcon.vue +23 -0
- package/ui/components/atoms/vc-icon/icons/ProfileIcon.vue +18 -0
- package/ui/components/atoms/vc-icon/icons/SearchIcon.vue +14 -0
- package/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue +21 -0
- package/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue +16 -0
- package/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue +26 -0
- package/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue +19 -0
- package/ui/components/atoms/vc-icon/icons/index.ts +27 -0
- package/ui/components/atoms/vc-icon/index.ts +1 -0
- package/ui/components/atoms/vc-icon/vc-icon.vue +62 -10
- package/ui/components/atoms/vc-image/index.ts +1 -1
- package/ui/components/atoms/vc-image/vc-image.stories.ts +85 -85
- package/ui/components/atoms/vc-image/vc-image.vue +1 -1
- package/ui/components/atoms/vc-label/index.ts +1 -1
- package/ui/components/atoms/vc-label/vc-label.stories.ts +31 -31
- package/ui/components/atoms/vc-label/vc-label.vue +12 -1
- package/ui/components/atoms/vc-link/index.ts +10 -10
- package/ui/components/atoms/vc-link/vc-link.stories.ts +37 -37
- package/ui/components/atoms/vc-link/vc-link.vue +54 -54
- package/ui/components/atoms/vc-loading/index.ts +3 -3
- package/ui/components/atoms/vc-loading/vc-loading.stories.ts +18 -18
- package/ui/components/atoms/vc-loading/vc-loading.vue +58 -58
- package/ui/components/atoms/vc-progress/index.ts +10 -10
- package/ui/components/atoms/vc-progress/vc-progress.stories.ts +30 -30
- package/ui/components/atoms/vc-progress/vc-progress.vue +1 -1
- package/ui/components/atoms/vc-row/index.ts +1 -1
- package/ui/components/atoms/vc-row/vc-row.stories.ts +20 -20
- package/ui/components/atoms/vc-row/vc-row.vue +22 -22
- package/ui/components/atoms/vc-skeleton/vc-skeleton.vue +51 -0
- package/ui/components/atoms/vc-status/index.ts +1 -1
- package/ui/components/atoms/vc-status/vc-status.stories.ts +85 -85
- package/ui/components/atoms/vc-status/vc-status.vue +64 -17
- package/ui/components/atoms/vc-status-icon/index.ts +1 -1
- package/ui/components/atoms/vc-switch/index.ts +1 -1
- package/ui/components/atoms/vc-switch/vc-switch.vue +5 -7
- package/ui/components/atoms/vc-tooltip/index.ts +1 -1
- package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +28 -13
- package/ui/components/atoms/vc-video/index.ts +1 -1
- package/ui/components/atoms/vc-video/vc-video.stories.ts +19 -19
- package/ui/components/atoms/vc-widget/index.ts +3 -3
- package/ui/components/atoms/vc-widget/vc-widget.stories.ts +20 -20
- package/ui/components/atoms/vc-widget/vc-widget.vue +86 -59
- package/ui/components/index.ts +2 -0
- package/ui/components/molecules/index.ts +16 -16
- package/ui/components/molecules/vc-breadcrumbs/_internal/vc-breadcrumbs-item/vc-breadcrumbs-item.vue +89 -92
- package/ui/components/molecules/vc-breadcrumbs/index.ts +1 -1
- package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.ts +43 -43
- package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue +157 -121
- package/ui/components/molecules/vc-checkbox/index.ts +3 -3
- package/ui/components/molecules/vc-checkbox/vc-checkbox.stories.ts +84 -84
- package/ui/components/molecules/vc-checkbox/vc-checkbox.vue +185 -119
- package/ui/components/molecules/vc-editor/index.ts +1 -1
- package/ui/components/molecules/vc-editor/vc-editor.stories.ts +29 -29
- package/ui/components/molecules/vc-editor/vc-editor.vue +33 -3
- package/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue +96 -96
- package/ui/components/molecules/vc-field/index.ts +1 -1
- package/ui/components/molecules/vc-field/vc-field.stories.ts +114 -114
- package/ui/components/molecules/vc-field/vc-field.vue +1 -1
- package/ui/components/molecules/vc-file-upload/index.ts +1 -1
- package/ui/components/molecules/vc-file-upload/vc-file-upload.stories.ts +39 -39
- package/ui/components/molecules/vc-file-upload/vc-file-upload.vue +2 -2
- package/ui/components/molecules/vc-form/index.ts +10 -10
- package/ui/components/molecules/vc-form/vc-form.stories.ts +25 -25
- package/ui/components/molecules/vc-form/vc-form.vue +5 -5
- package/ui/components/molecules/vc-input/index.ts +1 -1
- package/ui/components/molecules/vc-input/vc-input.stories.ts +165 -165
- package/ui/components/molecules/vc-input/vc-input.vue +57 -13
- package/ui/components/molecules/vc-input-currency/index.ts +1 -1
- package/ui/components/molecules/vc-input-currency/vc-input-currency.stories.ts +83 -83
- package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +20 -0
- package/ui/components/molecules/vc-multivalue/index.ts +1 -1
- package/ui/components/molecules/vc-multivalue/vc-multivalue.stories.ts +120 -120
- package/ui/components/molecules/vc-multivalue/vc-multivalue.vue +69 -16
- package/ui/components/molecules/vc-notification/index.ts +1 -1
- package/ui/components/molecules/vc-notification/vc-notification.vue +1 -1
- package/ui/components/molecules/vc-pagination/index.ts +3 -3
- package/ui/components/molecules/vc-pagination/vc-pagination.stories.ts +24 -24
- package/ui/components/molecules/vc-pagination/vc-pagination.vue +48 -110
- package/ui/components/molecules/vc-radio-button/index.ts +1 -1
- package/ui/components/molecules/vc-radio-button/vc-radio-button.stories.ts +97 -97
- package/ui/components/molecules/vc-radio-button/vc-radio-button.vue +13 -8
- package/ui/components/molecules/vc-rating/index.ts +1 -1
- package/ui/components/molecules/vc-rating/vc-rating.stories.ts +59 -59
- package/ui/components/molecules/vc-select/index.ts +1 -1
- package/ui/components/molecules/vc-select/vc-select.stories.ts +685 -685
- package/ui/components/molecules/vc-select/vc-select.vue +81 -25
- package/ui/components/molecules/vc-slider/index.ts +13 -13
- package/ui/components/molecules/vc-slider/vc-slider.stories.ts +61 -61
- package/ui/components/molecules/vc-slider/vc-slider.vue +118 -118
- package/ui/components/molecules/vc-textarea/index.ts +1 -1
- package/ui/components/molecules/vc-textarea/vc-textarea.stories.ts +53 -53
- package/ui/components/molecules/vc-textarea/vc-textarea.vue +37 -8
- package/ui/components/organisms/index.ts +7 -7
- package/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.ts +97 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue +48 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue +173 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue +102 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue +90 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue +163 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetsMenu.vue +110 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue +172 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarMobileActions.ts +51 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarWidgets.ts +27 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useToggleableContent.ts +66 -0
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/vc-app-bar.vue +373 -146
- package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue +188 -120
- package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/vc-app-menu-item.vue +2 -2
- package/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue +86 -131
- package/ui/components/organisms/vc-app/vc-app.stories.ts +214 -214
- package/ui/components/organisms/vc-app/vc-app.vue +135 -97
- package/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue +139 -90
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-base-button.vue +136 -0
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/{vc-blade-toolbar-button → vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button}/vc-blade-toolbar-button.vue +62 -86
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-circle-button.vue +101 -0
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue +182 -0
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue +146 -0
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue +32 -0
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue +30 -48
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.ts +2 -0
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue +96 -0
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue +184 -0
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue +113 -0
- package/ui/components/organisms/vc-blade/index.ts +1 -1
- package/ui/components/organisms/vc-blade/vc-blade.stories.ts +83 -83
- package/ui/components/organisms/vc-blade/vc-blade.vue +177 -117
- package/ui/components/organisms/vc-dynamic-property/index.ts +1 -1
- package/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue +163 -163
- package/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue +1 -1
- package/ui/components/organisms/vc-gallery/index.ts +1 -1
- package/ui/components/organisms/vc-gallery/vc-gallery.stories.ts +91 -91
- package/ui/components/organisms/vc-gallery/vc-gallery.vue +348 -348
- package/ui/components/organisms/vc-login-form/index.ts +1 -1
- package/ui/components/organisms/vc-popup/index.ts +3 -3
- package/ui/components/organisms/vc-popup/vc-popup.vue +3 -3
- package/ui/components/organisms/vc-table/_internal/vc-table-add-new/vc-table-add-new.vue +63 -63
- package/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue +21 -17
- package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +8 -7
- package/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue +4 -3
- package/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue +4 -3
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue +133 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue +250 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue +238 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-select-all-header/vc-table-select-all-header.vue +54 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue +214 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue +2 -7
- package/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue +84 -45
- package/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue +62 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue +160 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue +47 -69
- package/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue +386 -0
- package/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue +118 -0
- package/ui/components/organisms/vc-table/composables/useTableActions.ts +56 -0
- package/ui/components/organisms/vc-table/composables/useTableColumnReorder.ts +255 -0
- package/ui/components/organisms/vc-table/composables/useTableColumnResize.ts +147 -0
- package/ui/components/organisms/vc-table/composables/useTableRowReorder.ts +175 -0
- package/ui/components/organisms/vc-table/composables/useTableSelection.ts +118 -0
- package/ui/components/organisms/vc-table/composables/useTableState.ts +230 -0
- package/ui/components/organisms/vc-table/composables/useTableSwipe.ts +32 -0
- package/ui/components/organisms/vc-table/index.ts +1 -1
- package/ui/components/organisms/vc-table/vc-table.stories.ts +214 -214
- package/ui/components/organisms/vc-table/vc-table.vue +288 -1311
- package/ui/composables/useVisibleElements.ts +148 -0
- package/dist/index-DK6ijkM9.js +0 -598
- package/dist/index-DiJJUsG2.js +0 -243
- package/dist/index-PaekRinB.js +0 -312
- package/dist/index-lnO7rLKk.js +0 -135
- package/dist/shared/components/app-bar-button/app-bar-button.vue.d.ts.map +0 -1
- package/dist/shared/components/app-bar-button/index.d.ts +0 -2
- package/dist/shared/components/app-bar-button/index.d.ts.map +0 -1
- package/dist/shared/components/blade-navigation/injectionKeys.d.ts +0 -4
- package/dist/shared/components/blade-navigation/injectionKeys.d.ts.map +0 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-button/vc-blade-toolbar-button.vue.d.ts.map +0 -1
- package/shared/components/app-bar-button/app-bar-button.vue +0 -169
- package/shared/components/app-bar-button/index.ts +0 -1
- package/shared/components/blade-navigation/injectionKeys.ts +0 -4
|
@@ -8,13 +8,17 @@
|
|
|
8
8
|
class="vc-card__header"
|
|
9
9
|
@click="onHeaderClick"
|
|
10
10
|
>
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
11
|
+
<slot name="header">
|
|
12
|
+
<div>
|
|
13
|
+
<VcIcon
|
|
14
|
+
v-if="icon"
|
|
15
|
+
class="vc-card__icon"
|
|
16
|
+
:icon="icon"
|
|
17
|
+
size="xl"
|
|
18
|
+
></VcIcon>
|
|
19
|
+
<div class="vc-card__title">{{ header }}</div>
|
|
20
|
+
</div>
|
|
21
|
+
</slot>
|
|
18
22
|
<div
|
|
19
23
|
v-if="$slots['actions']"
|
|
20
24
|
class="vc-card__actions"
|
|
@@ -69,6 +73,7 @@ const emit = defineEmits<Emits>();
|
|
|
69
73
|
defineSlots<{
|
|
70
74
|
default: (props?: any) => any;
|
|
71
75
|
actions: (props?: any) => any;
|
|
76
|
+
header: (props?: any) => any;
|
|
72
77
|
}>();
|
|
73
78
|
|
|
74
79
|
const isCollapsedInternal = ref();
|
|
@@ -96,10 +101,8 @@ watch(
|
|
|
96
101
|
:root {
|
|
97
102
|
--card-background: var(--additional-50);
|
|
98
103
|
--card-border-radius: 6px;
|
|
99
|
-
--card-box-shadow-color: var(--secondary-600);
|
|
100
|
-
--card-box-shadow: 1px 1px 7px rgb(from var(--card-box-shadow-color) r g b / 15%);
|
|
101
104
|
--card-header-background: var(--secondary-50);
|
|
102
|
-
--card-header-color: var(--secondary-
|
|
105
|
+
--card-header-color: var(--secondary-950);
|
|
103
106
|
|
|
104
107
|
--card-header-background-success: var(--success-100);
|
|
105
108
|
--card-header-background-danger: var(--danger-100);
|
|
@@ -107,10 +110,10 @@ watch(
|
|
|
107
110
|
--card-header-color-success: var(--success-600);
|
|
108
111
|
--card-header-color-danger: var(--danger-600);
|
|
109
112
|
|
|
110
|
-
--card-header-padding-hor:
|
|
111
|
-
--card-header-padding-vert:
|
|
113
|
+
--card-header-padding-hor: 24px;
|
|
114
|
+
--card-header-padding-vert: 17px;
|
|
112
115
|
|
|
113
|
-
--card-border-color: var(--
|
|
116
|
+
--card-border-color: var(--neutrals-200);
|
|
114
117
|
}
|
|
115
118
|
|
|
116
119
|
$variants: success, danger;
|
|
@@ -118,12 +121,11 @@ $variants: success, danger;
|
|
|
118
121
|
.vc-card {
|
|
119
122
|
@apply tw-bg-[color:var(--card-background)] tw-border
|
|
120
123
|
tw-border-[color:var(--card-border-color)] tw-border-solid tw-box-border
|
|
121
|
-
tw-shadow-[var(--card-box-shadow)]
|
|
122
124
|
tw-rounded-[var(--card-border-radius)] tw-overflow-hidden
|
|
123
125
|
tw-flex-grow tw-flex tw-flex-col;
|
|
124
126
|
|
|
125
127
|
&__header {
|
|
126
|
-
@apply tw-bg-[color:var(--card-header-background)] tw-px-[var(--card-header-padding-hor)] tw-py-[var(--card-header-padding-vert)] tw-flex tw-items-center tw-content-between tw-w-full tw-box-border;
|
|
128
|
+
@apply tw-border-b tw-border-[color:var(--card-border-color)] tw-border-solid tw-bg-[color:var(--card-header-background)] tw-px-[var(--card-header-padding-hor)] tw-py-[var(--card-header-padding-vert)] tw-flex tw-items-center tw-content-between tw-w-full tw-box-border;
|
|
127
129
|
}
|
|
128
130
|
|
|
129
131
|
&_collapsable &__header {
|
|
@@ -131,7 +133,7 @@ $variants: success, danger;
|
|
|
131
133
|
}
|
|
132
134
|
|
|
133
135
|
&__title {
|
|
134
|
-
@apply tw-
|
|
136
|
+
@apply tw-normal-case tw-flex-grow
|
|
135
137
|
tw-text-[color:var(--card-header-color)]
|
|
136
138
|
tw-text-sm tw-font-bold;
|
|
137
139
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export { default as VcCol } from "./vc-col.vue";
|
|
1
|
+
export { default as VcCol } from "./vc-col.vue";
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import type { Meta, StoryFn } from "@storybook/vue3";
|
|
2
|
-
import { VcCol } from "./";
|
|
3
|
-
import { VcRow } from "./../vc-row";
|
|
4
|
-
import { VcImage } from "./../../";
|
|
5
|
-
|
|
6
|
-
export default {
|
|
7
|
-
title: "atoms/VcCol",
|
|
8
|
-
component: VcCol,
|
|
9
|
-
} satisfies Meta<typeof VcCol>;
|
|
10
|
-
|
|
11
|
-
export const Primary: StoryFn<typeof VcCol> = (args) => ({
|
|
12
|
-
components: { VcCol, VcImage, VcRow },
|
|
13
|
-
setup() {
|
|
14
|
-
return { args };
|
|
15
|
-
},
|
|
16
|
-
template: `
|
|
17
|
-
<vc-col v-bind="args">
|
|
18
|
-
<vc-image src="https://picsum.photos/200" size="xl"/>
|
|
19
|
-
<vc-image src="https://picsum.photos/200" size="xl"/>
|
|
20
|
-
<vc-image src="https://picsum.photos/200" size="xl"/>
|
|
21
|
-
</vc-col>`,
|
|
22
|
-
});
|
|
1
|
+
import type { Meta, StoryFn } from "@storybook/vue3";
|
|
2
|
+
import { VcCol } from "./";
|
|
3
|
+
import { VcRow } from "./../vc-row";
|
|
4
|
+
import { VcImage } from "./../../";
|
|
5
|
+
|
|
6
|
+
export default {
|
|
7
|
+
title: "atoms/VcCol",
|
|
8
|
+
component: VcCol,
|
|
9
|
+
} satisfies Meta<typeof VcCol>;
|
|
10
|
+
|
|
11
|
+
export const Primary: StoryFn<typeof VcCol> = (args) => ({
|
|
12
|
+
components: { VcCol, VcImage, VcRow },
|
|
13
|
+
setup() {
|
|
14
|
+
return { args };
|
|
15
|
+
},
|
|
16
|
+
template: `
|
|
17
|
+
<vc-col v-bind="args">
|
|
18
|
+
<vc-image src="https://picsum.photos/200" size="xl"/>
|
|
19
|
+
<vc-image src="https://picsum.photos/200" size="xl"/>
|
|
20
|
+
<vc-image src="https://picsum.photos/200" size="xl"/>
|
|
21
|
+
</vc-col>`,
|
|
22
|
+
});
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div
|
|
3
|
-
class="vc-col"
|
|
4
|
-
:style="{ flexGrow: size }"
|
|
5
|
-
>
|
|
6
|
-
<slot></slot>
|
|
7
|
-
</div>
|
|
8
|
-
</template>
|
|
9
|
-
|
|
10
|
-
<script lang="ts" setup>
|
|
11
|
-
export interface Props {
|
|
12
|
-
size?: number;
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
withDefaults(defineProps<Props>(), {
|
|
16
|
-
size: 1,
|
|
17
|
-
});
|
|
18
|
-
|
|
19
|
-
defineSlots<{
|
|
20
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
21
|
-
default: (props: any) => any;
|
|
22
|
-
}>();
|
|
23
|
-
</script>
|
|
24
|
-
|
|
25
|
-
<style lang="scss">
|
|
26
|
-
.vc-col {
|
|
27
|
-
@apply tw-flex tw-flex-col tw-min-w-0 tw-basis-0;
|
|
28
|
-
}
|
|
29
|
-
</style>
|
|
1
|
+
<template>
|
|
2
|
+
<div
|
|
3
|
+
class="vc-col"
|
|
4
|
+
:style="{ flexGrow: size }"
|
|
5
|
+
>
|
|
6
|
+
<slot></slot>
|
|
7
|
+
</div>
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script lang="ts" setup>
|
|
11
|
+
export interface Props {
|
|
12
|
+
size?: number;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
withDefaults(defineProps<Props>(), {
|
|
16
|
+
size: 1,
|
|
17
|
+
});
|
|
18
|
+
|
|
19
|
+
defineSlots<{
|
|
20
|
+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
21
|
+
default: (props: any) => any;
|
|
22
|
+
}>();
|
|
23
|
+
</script>
|
|
24
|
+
|
|
25
|
+
<style lang="scss">
|
|
26
|
+
.vc-col {
|
|
27
|
+
@apply tw-flex tw-flex-col tw-min-w-0 tw-basis-0;
|
|
28
|
+
}
|
|
29
|
+
</style>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { VNode } from "vue";
|
|
2
|
-
import _Container from "./vc-container.vue";
|
|
3
|
-
|
|
4
|
-
export const VcContainer = _Container as typeof _Container & {
|
|
5
|
-
new (): {
|
|
6
|
-
$slots: {
|
|
7
|
-
default: () => VNode[];
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
};
|
|
1
|
+
import { VNode } from "vue";
|
|
2
|
+
import _Container from "./vc-container.vue";
|
|
3
|
+
|
|
4
|
+
export const VcContainer = _Container as typeof _Container & {
|
|
5
|
+
new (): {
|
|
6
|
+
$slots: {
|
|
7
|
+
default: () => VNode[];
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
};
|
|
@@ -1,29 +1,29 @@
|
|
|
1
|
-
import type { Meta, StoryObj } from "@storybook/vue3";
|
|
2
|
-
import { VcContainer } from "./";
|
|
3
|
-
|
|
4
|
-
const meta: Meta<typeof VcContainer> = {
|
|
5
|
-
title: "atoms/VcContainer",
|
|
6
|
-
component: VcContainer,
|
|
7
|
-
};
|
|
8
|
-
|
|
9
|
-
export default meta;
|
|
10
|
-
type Story = StoryObj<typeof VcContainer>;
|
|
11
|
-
|
|
12
|
-
export const Primary: Story = {
|
|
13
|
-
render: (args) => ({
|
|
14
|
-
components: { VcContainer },
|
|
15
|
-
setup() {
|
|
16
|
-
return { args };
|
|
17
|
-
},
|
|
18
|
-
template: `<div style="width: 400px; height: 300px"><vc-container v-bind="args">
|
|
19
|
-
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus pellentesque tortor id lacus viverra, ut mollis libero auctor. Curabitur viverra, justo eu convallis pulvinar, dui nisi luctus quam, ut egestas tortor dolor quis nisi. Sed dignissim tellus ac enim dignissim dapibus. Duis vitae ipsum sit amet leo ornare fringilla sit amet a felis. Quisque finibus elementum dolor eu rhoncus. Donec dapibus non nisl blandit lobortis. Suspendisse pellentesque elit nunc, at auctor orci dignissim sed. Cras malesuada nibh id porttitor hendrerit.</p>
|
|
20
|
-
<p>Maecenas ut malesuada risus, a euismod ligula. Mauris fringilla arcu a vestibulum varius. Phasellus et quam facilisis, egestas magna ut, ultrices est. Maecenas accumsan sit amet metus sit amet laoreet. Sed at accumsan orci, id tincidunt nibh. Nam laoreet eu nisl a condimentum. Fusce ac blandit justo. Vestibulum sollicitudin eros euismod, cursus arcu ac, blandit eros. Phasellus tempor mi et iaculis pulvinar. Cras blandit, tortor sit amet fermentum aliquet, metus ipsum ultricies est, eu congue dui nunc nec ligula.</p>
|
|
21
|
-
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque porttitor felis non turpis volutpat, ut consequat nulla vestibulum. Donec ipsum dui, convallis a faucibus eget, vehicula faucibus quam. Maecenas et velit odio. Suspendisse posuere faucibus est vel condimentum. Mauris et est placerat risus tincidunt rutrum. Sed venenatis nunc a mollis dignissim. Nam felis nisl, blandit in venenatis et, sollicitudin ut eros. Quisque ornare lacus metus, sed placerat lacus malesuada et. Sed venenatis, turpis in porta suscipit, libero ex tristique erat, nec pretium lectus justo malesuada dolor.</p>
|
|
22
|
-
<p>Vivamus non nisi quis elit pellentesque pharetra quis eget augue. Donec tincidunt nunc id placerat tincidunt. Mauris ultrices quam id risus sodales, at euismod mauris convallis. Morbi quis aliquam nibh. Cras vitae mi a risus dapibus lacinia sit amet eu erat. Morbi ligula ex, aliquet ac nunc a, tempus lacinia lacus. Integer pretium arcu augue, vitae egestas libero rutrum eu.</p>
|
|
23
|
-
<p>Suspendisse malesuada nisl tempor tellus ullamcorper, ut varius enim molestie. Suspendisse eleifend at libero id ultricies. Duis sagittis quis metus eget condimentum. Praesent iaculis viverra mauris et mattis. Pellentesque cursus, turpis sed venenatis volutpat, nibh tortor eleifend eros, non varius neque lectus ut dolor. Sed eget lectus et risus hendrerit molestie. Cras lorem enim, rutrum sed pellentesque in, tristique et diam. Donec aliquet dolor sit amet cursus facilisis. Donec a placerat nibh.</p>
|
|
24
|
-
</vc-container></div>`,
|
|
25
|
-
}),
|
|
26
|
-
args: {
|
|
27
|
-
shadow: false,
|
|
28
|
-
},
|
|
29
|
-
};
|
|
1
|
+
import type { Meta, StoryObj } from "@storybook/vue3";
|
|
2
|
+
import { VcContainer } from "./";
|
|
3
|
+
|
|
4
|
+
const meta: Meta<typeof VcContainer> = {
|
|
5
|
+
title: "atoms/VcContainer",
|
|
6
|
+
component: VcContainer,
|
|
7
|
+
};
|
|
8
|
+
|
|
9
|
+
export default meta;
|
|
10
|
+
type Story = StoryObj<typeof VcContainer>;
|
|
11
|
+
|
|
12
|
+
export const Primary: Story = {
|
|
13
|
+
render: (args) => ({
|
|
14
|
+
components: { VcContainer },
|
|
15
|
+
setup() {
|
|
16
|
+
return { args };
|
|
17
|
+
},
|
|
18
|
+
template: `<div style="width: 400px; height: 300px"><vc-container v-bind="args">
|
|
19
|
+
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus pellentesque tortor id lacus viverra, ut mollis libero auctor. Curabitur viverra, justo eu convallis pulvinar, dui nisi luctus quam, ut egestas tortor dolor quis nisi. Sed dignissim tellus ac enim dignissim dapibus. Duis vitae ipsum sit amet leo ornare fringilla sit amet a felis. Quisque finibus elementum dolor eu rhoncus. Donec dapibus non nisl blandit lobortis. Suspendisse pellentesque elit nunc, at auctor orci dignissim sed. Cras malesuada nibh id porttitor hendrerit.</p>
|
|
20
|
+
<p>Maecenas ut malesuada risus, a euismod ligula. Mauris fringilla arcu a vestibulum varius. Phasellus et quam facilisis, egestas magna ut, ultrices est. Maecenas accumsan sit amet metus sit amet laoreet. Sed at accumsan orci, id tincidunt nibh. Nam laoreet eu nisl a condimentum. Fusce ac blandit justo. Vestibulum sollicitudin eros euismod, cursus arcu ac, blandit eros. Phasellus tempor mi et iaculis pulvinar. Cras blandit, tortor sit amet fermentum aliquet, metus ipsum ultricies est, eu congue dui nunc nec ligula.</p>
|
|
21
|
+
<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Pellentesque porttitor felis non turpis volutpat, ut consequat nulla vestibulum. Donec ipsum dui, convallis a faucibus eget, vehicula faucibus quam. Maecenas et velit odio. Suspendisse posuere faucibus est vel condimentum. Mauris et est placerat risus tincidunt rutrum. Sed venenatis nunc a mollis dignissim. Nam felis nisl, blandit in venenatis et, sollicitudin ut eros. Quisque ornare lacus metus, sed placerat lacus malesuada et. Sed venenatis, turpis in porta suscipit, libero ex tristique erat, nec pretium lectus justo malesuada dolor.</p>
|
|
22
|
+
<p>Vivamus non nisi quis elit pellentesque pharetra quis eget augue. Donec tincidunt nunc id placerat tincidunt. Mauris ultrices quam id risus sodales, at euismod mauris convallis. Morbi quis aliquam nibh. Cras vitae mi a risus dapibus lacinia sit amet eu erat. Morbi ligula ex, aliquet ac nunc a, tempus lacinia lacus. Integer pretium arcu augue, vitae egestas libero rutrum eu.</p>
|
|
23
|
+
<p>Suspendisse malesuada nisl tempor tellus ullamcorper, ut varius enim molestie. Suspendisse eleifend at libero id ultricies. Duis sagittis quis metus eget condimentum. Praesent iaculis viverra mauris et mattis. Pellentesque cursus, turpis sed venenatis volutpat, nibh tortor eleifend eros, non varius neque lectus ut dolor. Sed eget lectus et risus hendrerit molestie. Cras lorem enim, rutrum sed pellentesque in, tristique et diam. Donec aliquet dolor sit amet cursus facilisis. Donec a placerat nibh.</p>
|
|
24
|
+
</vc-container></div>`,
|
|
25
|
+
}),
|
|
26
|
+
args: {
|
|
27
|
+
shadow: false,
|
|
28
|
+
},
|
|
29
|
+
};
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import _Hint from "./vc-hint.vue";
|
|
2
|
-
import { VNode } from "vue";
|
|
3
|
-
|
|
4
|
-
export const VcHint = _Hint as typeof _Hint & {
|
|
5
|
-
new (): {
|
|
6
|
-
$slots: {
|
|
7
|
-
default: () => VNode[];
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
};
|
|
1
|
+
import _Hint from "./vc-hint.vue";
|
|
2
|
+
import { VNode } from "vue";
|
|
3
|
+
|
|
4
|
+
export const VcHint = _Hint as typeof _Hint & {
|
|
5
|
+
new (): {
|
|
6
|
+
$slots: {
|
|
7
|
+
default: () => VNode[];
|
|
8
|
+
};
|
|
9
|
+
};
|
|
10
|
+
};
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
import type { Meta, StoryFn } from "@storybook/vue3";
|
|
2
|
-
import { VcHint } from "./";
|
|
3
|
-
|
|
4
|
-
export default {
|
|
5
|
-
title: "atoms/VcHint",
|
|
6
|
-
component: VcHint,
|
|
7
|
-
args: {
|
|
8
|
-
default: "This is a hint",
|
|
9
|
-
},
|
|
10
|
-
argTypes: {
|
|
11
|
-
default: {
|
|
12
|
-
control: "text",
|
|
13
|
-
},
|
|
14
|
-
},
|
|
15
|
-
} satisfies Meta<typeof VcHint>;
|
|
16
|
-
|
|
17
|
-
export const Primary: StoryFn<typeof VcHint> = (args) => ({
|
|
18
|
-
components: { VcHint },
|
|
19
|
-
setup() {
|
|
20
|
-
return { args };
|
|
21
|
-
},
|
|
22
|
-
template: '<vc-hint v-bind="args">{{args.default}}</vc-hint>',
|
|
23
|
-
});
|
|
1
|
+
import type { Meta, StoryFn } from "@storybook/vue3";
|
|
2
|
+
import { VcHint } from "./";
|
|
3
|
+
|
|
4
|
+
export default {
|
|
5
|
+
title: "atoms/VcHint",
|
|
6
|
+
component: VcHint,
|
|
7
|
+
args: {
|
|
8
|
+
default: "This is a hint",
|
|
9
|
+
},
|
|
10
|
+
argTypes: {
|
|
11
|
+
default: {
|
|
12
|
+
control: "text",
|
|
13
|
+
},
|
|
14
|
+
},
|
|
15
|
+
} satisfies Meta<typeof VcHint>;
|
|
16
|
+
|
|
17
|
+
export const Primary: StoryFn<typeof VcHint> = (args) => ({
|
|
18
|
+
components: { VcHint },
|
|
19
|
+
setup() {
|
|
20
|
+
return { args };
|
|
21
|
+
},
|
|
22
|
+
template: '<vc-hint v-bind="args">{{args.default}}</vc-hint>',
|
|
23
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none" :width="width" :height="height">
|
|
4
|
+
<path d="M3.3335 6.00033V14.0003C3.3335 14.9337 3.3335 15.4002 3.51515 15.7567C3.67494 16.0703 3.92972 16.3256 4.24333 16.4854C4.5995 16.6668 5.06599 16.6668 5.99759 16.6668H14.0027C14.9343 16.6668 15.4002 16.6668 15.7563 16.4854C16.0699 16.3256 16.3256 16.0703 16.4854 15.7567C16.6668 15.4006 16.6668 14.9347 16.6668 14.0031V5.99759C16.6668 5.06599 16.6668 4.5995 16.4854 4.24333C16.3256 3.92972 16.0699 3.67494 15.7563 3.51515C15.3998 3.3335 14.9337 3.3335 14.0003 3.3335H6.00033C5.0669 3.3335 4.59985 3.3335 4.24333 3.51515C3.92972 3.67494 3.67494 3.92972 3.51515 4.24333C3.3335 4.59985 3.3335 5.0669 3.3335 6.00033Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<line x1="4.1665" y1="8.1665" x2="15.8332" y2="8.1665" stroke="currentColor" stroke-width="2"/>
|
|
6
|
+
</svg>
|
|
7
|
+
|
|
8
|
+
</template>
|
|
9
|
+
|
|
10
|
+
<script setup lang="ts">
|
|
11
|
+
defineProps<{
|
|
12
|
+
width?: number | string
|
|
13
|
+
height?: number | string
|
|
14
|
+
}>()
|
|
15
|
+
</script>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 10" fill="none" :width="width" :height="height">
|
|
4
|
+
<path
|
|
5
|
+
d="M11 5H1M1 5L5 9M1 5L5 1"
|
|
6
|
+
stroke="currentColor"
|
|
7
|
+
stroke-width="2"
|
|
8
|
+
stroke-linecap="round"
|
|
9
|
+
stroke-linejoin="round"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script setup lang="ts">
|
|
16
|
+
defineProps<{
|
|
17
|
+
width?: number | string
|
|
18
|
+
height?: number | string
|
|
19
|
+
}>()
|
|
20
|
+
</script>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 10" fill="none" :width="width" :height="height">
|
|
4
|
+
<path d="M1 5H11M11 5L7 1M11 5L7 9" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
defineProps<{
|
|
10
|
+
width?: number | string
|
|
11
|
+
height?: number | string
|
|
12
|
+
}>()
|
|
13
|
+
</script>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 19 20" fill="none" :width="width" :height="height">
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.25178 3.30157C5.55825 4.09224 5.16667 5.23859 5.16667 6.60195V8.33529C5.16667 9.19582 4.77938 9.91075 4.36882 10.4555C3.99335 10.9537 3.52576 11.4009 3.15857 11.7522C3.12774 11.7817 3.09761 11.8105 3.06831 11.8386C2.72481 12.1681 2.5 12.6156 2.5 13.1353C2.5 13.6605 2.89364 14.002 3.27778 14.002H15.7222C16.1064 14.002 16.5 13.6605 16.5 13.1353C16.5 12.6156 16.2752 12.1681 15.9317 11.8386C15.9024 11.8105 15.8723 11.7817 15.8414 11.7522C15.4742 11.4009 15.0066 10.9536 14.6312 10.4555C14.2206 9.91075 13.8333 9.19582 13.8333 8.33529V6.60195C13.8333 5.23859 13.4417 4.09224 12.7482 3.30157C12.0713 2.52978 11.0251 2.00195 9.5 2.00195C7.97494 2.00195 6.92875 2.52978 6.25178 3.30157ZM4.74822 1.98274C5.84903 0.727732 7.4695 0.00195312 9.5 0.00195312C11.5305 0.00195312 13.151 0.727732 14.2518 1.98274C15.336 3.21887 15.8333 4.87252 15.8333 6.60195V8.33529C15.8333 8.57932 15.9428 8.87289 16.2283 9.2517C16.502 9.61482 16.8573 9.95538 17.2498 10.3316C17.2718 10.3527 17.294 10.374 17.3163 10.3954C18 11.0513 18.5 12.0016 18.5 13.1353C18.5 14.672 17.3018 16.002 15.7222 16.002H3.27778C1.69824 16.002 0.5 14.672 0.5 13.1353C0.5 12.0016 0.999968 11.0513 1.68372 10.3954C1.706 10.374 1.72817 10.3527 1.75022 10.3316C2.1427 9.95539 2.49798 9.61482 2.77166 9.25171C3.05716 8.8729 3.16667 8.57932 3.16667 8.33529V6.60195C3.16667 4.87252 3.66397 3.21887 4.74822 1.98274Z" fill="currentColor"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M6.94301 17.1715C7.4017 16.8639 8.02291 16.9864 8.33051 17.4451C8.4299 17.5933 8.5843 17.7331 8.79191 17.8365C8.99975 17.9401 9.24442 17.9985 9.49998 17.9985C9.75554 17.9985 10.0002 17.9401 10.2081 17.8365C10.4157 17.7331 10.5701 17.5933 10.6694 17.4451C10.9771 16.9864 11.5983 16.8639 12.057 17.1715C12.5156 17.4791 12.6381 18.1003 12.3305 18.559C12.0234 19.017 11.5943 19.3803 11.0999 19.6266C10.6058 19.8729 10.0545 19.9985 9.49998 19.9985C8.94542 19.9985 8.39418 19.8729 7.90002 19.6266C7.40562 19.3803 6.97656 19.017 6.66945 18.559C6.36184 18.1003 6.48432 17.4791 6.94301 17.1715Z" fill="currentColor"/>
|
|
6
|
+
</svg>
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script setup lang="ts">
|
|
10
|
+
defineProps<{
|
|
11
|
+
width?: number | string
|
|
12
|
+
height?: number | string
|
|
13
|
+
}>()
|
|
14
|
+
</script>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none" :width="width" :height="height">
|
|
4
|
+
<path d="M14 7L9.5 11.5L5 7" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
defineProps<{
|
|
10
|
+
width?: number | string
|
|
11
|
+
height?: number | string
|
|
12
|
+
}>()
|
|
13
|
+
</script>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 11" fill="none" :width="width" :height="height">
|
|
4
|
+
<path d="M5 9.5L1 5.5L5 1.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
defineProps<{
|
|
10
|
+
width?: number | string
|
|
11
|
+
height?: number | string
|
|
12
|
+
}>()
|
|
13
|
+
</script>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 11" fill="none" :width="width" :height="height">
|
|
4
|
+
<path d="M1 1.5L5 5.5L1 9.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
defineProps<{
|
|
10
|
+
width?: number | string
|
|
11
|
+
height?: number | string
|
|
12
|
+
}>()
|
|
13
|
+
</script>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none" :width="width" :height="height">
|
|
4
|
+
<path d="M5 11.5L9.5 7L14 11.5" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
defineProps<{
|
|
10
|
+
width?: number | string
|
|
11
|
+
height?: number | string
|
|
12
|
+
}>()
|
|
13
|
+
</script>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none" :width="width" :height="height">
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M0 10C0 4.47715 4.47715 0 10 0C15.5228 0 20 4.47715 20 10C20 15.5228 15.5228 20 10 20C4.47715 20 0 15.5228 0 10ZM10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2Z" fill="#737373"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.6998 6.0002C8.6998 6.71817 9.28183 7.3002 9.9998 7.3002C10.7178 7.3002 11.2998 6.71817 11.2998 6.0002C11.2998 5.28223 10.7178 4.7002 9.9998 4.7002C9.28183 4.7002 8.6998 5.28222 8.6998 6.0002Z" fill="#737373"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.6998 14.0002C8.6998 14.7182 9.28183 15.3002 9.9998 15.3002C10.7178 15.3002 11.2998 14.7182 11.2998 14.0002C11.2998 13.2822 10.7178 12.7002 9.9998 12.7002C9.28183 12.7002 8.6998 13.2822 8.6998 14.0002Z" fill="#737373"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.6998 10.0002C8.6998 10.7182 9.28183 11.3002 9.9998 11.3002C10.7178 11.3002 11.2998 10.7182 11.2998 10.0002C11.2998 9.28223 10.7178 8.7002 9.9998 8.7002C9.28183 8.7002 8.6998 9.28222 8.6998 10.0002Z" fill="#737373"/>
|
|
8
|
+
</svg>
|
|
9
|
+
</template>
|
|
10
|
+
|
|
11
|
+
<script setup lang="ts">
|
|
12
|
+
defineProps<{
|
|
13
|
+
width?: number | string
|
|
14
|
+
height?: number | string
|
|
15
|
+
}>()
|
|
16
|
+
</script>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" :width="width" :height="height">
|
|
4
|
+
<path
|
|
5
|
+
d="M11 11L6.00001 6.00001M6.00001 6.00001L1 1M6.00001 6.00001L11 1M6.00001 6.00001L1 11"
|
|
6
|
+
stroke="currentColor"
|
|
7
|
+
stroke-width="2"
|
|
8
|
+
stroke-linecap="round"
|
|
9
|
+
stroke-linejoin="round"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script setup lang="ts">
|
|
16
|
+
defineProps<{
|
|
17
|
+
width?: number | string
|
|
18
|
+
height?: number | string
|
|
19
|
+
}>()
|
|
20
|
+
</script>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg" :width="width" :height="height">
|
|
4
|
+
<path d="M11 9L7 5L11 1M5 9L1 5L5 1" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script setup lang="ts">
|
|
10
|
+
defineProps<{
|
|
11
|
+
width?: number | string
|
|
12
|
+
height?: number | string
|
|
13
|
+
}>()
|
|
14
|
+
</script>
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg viewBox="0 0 12 10" fill="none" xmlns="http://www.w3.org/2000/svg" :width="width" :height="height">
|
|
4
|
+
<path d="M7 1L11 5L7 9M1 1L5 5L1 9" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
|
|
7
|
+
</template>
|
|
8
|
+
|
|
9
|
+
<script setup lang="ts">
|
|
10
|
+
defineProps<{
|
|
11
|
+
width?: number | string
|
|
12
|
+
height?: number | string
|
|
13
|
+
}>()
|
|
14
|
+
</script>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="none" :width="width" :height="height">
|
|
4
|
+
<g stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round">
|
|
5
|
+
<!-- Building outline -->
|
|
6
|
+
<path d="M1 19H19" />
|
|
7
|
+
<path d="M1 8L10 1L19 8V19H1V8Z" />
|
|
8
|
+
|
|
9
|
+
<!-- Door and details -->
|
|
10
|
+
<rect x="7" y="13" width="6" height="6" />
|
|
11
|
+
|
|
12
|
+
<!-- Windows -->
|
|
13
|
+
<rect x="4" y="6" width="3" height="3" />
|
|
14
|
+
<rect x="13" y="6" width="3" height="3" />
|
|
15
|
+
|
|
16
|
+
<!-- Flag/sign -->
|
|
17
|
+
<path d="M4 8.5V4.5" />
|
|
18
|
+
</g>
|
|
19
|
+
</svg>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<script setup lang="ts">
|
|
23
|
+
defineProps<{
|
|
24
|
+
width?: number | string
|
|
25
|
+
height?: number | string
|
|
26
|
+
}>()
|
|
27
|
+
</script>
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg" :width="width" :height="height">
|
|
4
|
+
<path d="M17 18C17 18.5523 17.4477 19 18 19C18.5523 19 19 18.5523 19 18C19 17.4477 18.5523 17 18 17C17.4477 17 17 17.4477 17 18Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
<path d="M11 18C11 18.5523 11.4477 19 12 19C12.5523 19 13 18.5523 13 18C13 17.4477 12.5523 17 12 17C11.4477 17 11 17.4477 11 18Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
6
|
+
<path d="M5 18C5 18.5523 5.44772 19 6 19C6.55228 19 7 18.5523 7 18C7 17.4477 6.55228 17 6 17C5.44772 17 5 17.4477 5 18Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
7
|
+
<path d="M17 12C17 12.5523 17.4477 13 18 13C18.5523 13 19 12.5523 19 12C19 11.4477 18.5523 11 18 11C17.4477 11 17 11.4477 17 12Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
8
|
+
<path d="M11 12C11 12.5523 11.4477 13 12 13C12.5523 13 13 12.5523 13 12C13 11.4477 12.5523 11 12 11C11.4477 11 11 11.4477 11 12Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
9
|
+
<path d="M5 12C5 12.5523 5.44772 13 6 13C6.55228 13 7 12.5523 7 12C7 11.4477 6.55228 11 6 11C5.44772 11 5 11.4477 5 12Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
10
|
+
<path d="M17 6C17 6.55228 17.4477 7 18 7C18.5523 7 19 6.55228 19 6C19 5.44772 18.5523 5 18 5C17.4477 5 17 5.44772 17 6Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
11
|
+
<path d="M11 6C11 6.55228 11.4477 7 12 7C12.5523 7 13 6.55228 13 6C13 5.44772 12.5523 5 12 5C11.4477 5 11 5.44772 11 6Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
12
|
+
<path d="M5 6C5 6.55228 5.44772 7 6 7C6.55228 7 7 6.55228 7 6C7 5.44772 6.55228 5 6 5C5.44772 5 5 5.44772 5 6Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
13
|
+
</svg>
|
|
14
|
+
|
|
15
|
+
</template>
|
|
16
|
+
|
|
17
|
+
<script setup lang="ts">
|
|
18
|
+
defineProps<{
|
|
19
|
+
width?: number | string
|
|
20
|
+
height?: number | string
|
|
21
|
+
}>()
|
|
22
|
+
</script>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" fill="none" :width="width" :height="height">
|
|
4
|
+
<path d="M9 12L12 9M12 9L9 6M12 9H1M1 4.24802V4.2002C1 3.08009 1 2.51962 1.21799 2.0918C1.40973 1.71547 1.71547 1.40973 2.0918 1.21799C2.51962 1 3.08009 1 4.2002 1H13.8002C14.9203 1 15.4796 1 15.9074 1.21799C16.2837 1.40973 16.5905 1.71547 16.7822 2.0918C17 2.5192 17 3.07899 17 4.19691V13.8036C17 14.9215 17 15.4805 16.7822 15.9079C16.5905 16.2842 16.2837 16.5905 15.9074 16.7822C15.48 17 14.921 17 13.8031 17H4.19691C3.07899 17 2.5192 17 2.0918 16.7822C1.71547 16.5905 1.40973 16.2839 1.21799 15.9076C1 15.4798 1 14.9201 1 13.8V13.75" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/>
|
|
5
|
+
</svg>
|
|
6
|
+
</template>
|
|
7
|
+
|
|
8
|
+
<script setup lang="ts">
|
|
9
|
+
defineProps<{
|
|
10
|
+
width?: number | string
|
|
11
|
+
height?: number | string
|
|
12
|
+
}>()
|
|
13
|
+
</script>
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
|
|
2
|
+
<template>
|
|
3
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 12" fill="none" :width="width" :height="height">
|
|
4
|
+
<path
|
|
5
|
+
d="M6 11H11M1 6H11M1 1H11"
|
|
6
|
+
stroke="currentColor"
|
|
7
|
+
stroke-width="2"
|
|
8
|
+
stroke-linecap="round"
|
|
9
|
+
stroke-linejoin="round"
|
|
10
|
+
/>
|
|
11
|
+
</svg>
|
|
12
|
+
|
|
13
|
+
</template>
|
|
14
|
+
|
|
15
|
+
<script setup lang="ts">
|
|
16
|
+
defineProps<{
|
|
17
|
+
width?: number | string
|
|
18
|
+
height?: number | string
|
|
19
|
+
}>()
|
|
20
|
+
</script>
|