@vc-shell/framework 1.1.0-alpha.8 → 1.1.0
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 +22 -0
- package/core/README.md +365 -0
- package/core/composables/index.ts +3 -0
- package/core/composables/useAppBarMobileButtons/index.ts +17 -0
- package/core/composables/useAppBarWidget/index.ts +19 -0
- package/core/composables/useGlobalSearch/index.ts +4 -27
- package/core/composables/useKeyboardNavigation/index.ts +211 -0
- package/core/composables/useSettingsMenu/index.ts +23 -0
- package/core/composables/useTheme/index.ts +64 -62
- package/core/composables/useToolbar.ts +88 -0
- package/core/services/app-bar-menu-service.ts +87 -0
- package/core/services/app-bar-mobile-buttons-service.ts +57 -0
- package/core/services/global-search-service.ts +36 -0
- package/core/services/index.ts +8 -0
- package/core/services/settings-menu-service.ts +75 -0
- package/core/services/toolbar-service.ts +141 -0
- package/core/services/widget-service.ts +15 -3
- package/core/types/index.ts +5 -8
- package/dist/core/composables/index.d.ts +3 -0
- 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/useAppInsights/index.d.ts.map +1 -1
- package/dist/core/composables/useBeforeUnload/index.d.ts.map +1 -1
- package/dist/core/composables/useGlobalSearch/index.d.ts +2 -8
- package/dist/core/composables/useGlobalSearch/index.d.ts.map +1 -1
- 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/useLanguages/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/useToolbar.d.ts +15 -0
- package/dist/core/composables/useToolbar.d.ts.map +1 -0
- package/dist/core/directives/autofocus/index.d.ts.map +1 -1
- package/dist/core/directives/loading/index.d.ts.map +1 -1
- package/dist/core/interceptors/index.d.ts +1 -1
- package/dist/core/interceptors/index.d.ts.map +1 -1
- package/dist/core/plugins/modularity/extensions-helper.d.ts.map +1 -1
- package/dist/core/plugins/validation/rules.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/global-search-service.d.ts +10 -0
- package/dist/core/services/global-search-service.d.ts.map +1 -0
- package/dist/core/services/index.d.ts +9 -0
- package/dist/core/services/index.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/toolbar-service.d.ts +29 -0
- package/dist/core/services/toolbar-service.d.ts.map +1 -0
- package/dist/core/services/widget-service.d.ts +7 -1
- package/dist/core/services/widget-service.d.ts.map +1 -1
- package/dist/core/types/index.d.ts +3 -6
- package/dist/core/types/index.d.ts.map +1 -1
- package/dist/core/utilities/kebabToCamel.d.ts.map +1 -1
- package/dist/index.d.ts +7 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/injection-keys.d.ts +6 -28
- package/dist/injection-keys.d.ts.map +1 -1
- package/dist/locales/de.json +3 -0
- package/dist/locales/en.json +3 -0
- package/dist/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue.d.ts +4 -25
- package/dist/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue.d.ts.map +1 -1
- package/dist/shared/components/app-switcher/index.d.ts +2 -2
- package/dist/shared/components/app-switcher/index.d.ts.map +1 -1
- package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts +3 -14
- package/dist/shared/components/blade-navigation/components/vc-blade-navigation/_internal/vc-mobile-back-button.vue.d.ts.map +1 -1
- 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.map +1 -1
- package/dist/shared/components/change-password/change-password.vue.d.ts +4 -13
- package/dist/shared/components/change-password/change-password.vue.d.ts.map +1 -1
- package/dist/shared/components/change-password/index.d.ts +2 -19
- package/dist/shared/components/change-password/index.d.ts.map +1 -1
- package/dist/shared/components/change-password-button/change-password-button.vue.d.ts.map +1 -1
- package/dist/shared/components/common/popup/vc-popup-error.vue.d.ts +9 -19
- package/dist/shared/components/common/popup/vc-popup-error.vue.d.ts.map +1 -1
- package/dist/shared/components/common/popup/vc-popup-info.vue.d.ts +9 -19
- package/dist/shared/components/common/popup/vc-popup-info.vue.d.ts.map +1 -1
- package/dist/shared/components/common/popup/vc-popup-warning.vue.d.ts +11 -21
- package/dist/shared/components/common/popup/vc-popup-warning.vue.d.ts.map +1 -1
- package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts +9 -15
- package/dist/shared/components/dashboard-widget-card/dashboard-widget-card.vue.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/DraggableDashboard.vue.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/_internal/DashboardWidget.vue.d.ts +4 -13
- package/dist/shared/components/draggable-dashboard/_internal/DashboardWidget.vue.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/composables/useCollisionDetection.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts +36 -38
- package/dist/shared/components/draggable-dashboard/composables/useDashboardDragAndDrop.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/composables/useDashboardGrid.d.ts +2 -2
- package/dist/shared/components/draggable-dashboard/composables/useEventCoordinates.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/composables/useGridPosition.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/composables/useGridSystem.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/composables/useLayoutPersistence.d.ts.map +1 -1
- package/dist/shared/components/draggable-dashboard/composables/useWidgetLayout.d.ts.map +1 -1
- package/dist/shared/components/error-interceptor/index.d.ts +9 -60
- package/dist/shared/components/error-interceptor/index.d.ts.map +1 -1
- package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts +27 -101
- package/dist/shared/components/generic-dropdown/generic-dropdown.vue.d.ts.map +1 -1
- package/dist/shared/components/language-selector/index.d.ts +2 -1
- package/dist/shared/components/language-selector/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/logout-button.vue.d.ts.map +1 -1
- package/dist/shared/components/notification-dropdown/_internal/notification/notification.vue.d.ts +4 -13
- package/dist/shared/components/notification-dropdown/_internal/notification/notification.vue.d.ts.map +1 -1
- package/dist/shared/components/notification-dropdown/index.d.ts +2 -13
- package/dist/shared/components/notification-dropdown/index.d.ts.map +1 -1
- package/dist/shared/components/notification-dropdown/notification-dropdown.vue.d.ts +1 -27
- package/dist/shared/components/notification-dropdown/notification-dropdown.vue.d.ts.map +1 -1
- package/dist/shared/components/notification-template/index.d.ts +2 -62
- package/dist/shared/components/notification-template/index.d.ts.map +1 -1
- package/dist/shared/components/notification-template/notification-template.vue.d.ts +7 -13
- 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 +18 -18
- package/dist/shared/components/notifications/components/notification-container/index.d.ts.map +1 -1
- package/dist/shared/components/notifications/composables/useContainer/index.d.ts +8 -3
- package/dist/shared/components/notifications/composables/useContainer/index.d.ts.map +1 -1
- package/dist/shared/components/notifications/composables/useInstance/index.d.ts +4 -2
- package/dist/shared/components/notifications/composables/useInstance/index.d.ts.map +1 -1
- package/dist/shared/components/notifications/core/notification.d.ts +9 -2
- package/dist/shared/components/notifications/core/notification.d.ts.map +1 -1
- package/dist/shared/components/notifications/types/index.d.ts +3 -3
- package/dist/shared/components/notifications/types/index.d.ts.map +1 -1
- package/dist/shared/components/popup-handler/components/vc-popup-container/index.d.ts +2 -1
- package/dist/shared/components/popup-handler/components/vc-popup-container/index.d.ts.map +1 -1
- package/dist/shared/components/popup-handler/components/vc-popup-container/vc-popup-container.vue.d.ts.map +1 -1
- package/dist/shared/components/settings-menu/settings-menu.vue.d.ts.map +1 -1
- package/dist/shared/components/settings-menu-item/settings-menu-item.vue.d.ts +20 -36
- package/dist/shared/components/settings-menu-item/settings-menu-item.vue.d.ts.map +1 -1
- package/dist/shared/components/sidebar/sidebar.vue.d.ts +19 -38
- package/dist/shared/components/sidebar/sidebar.vue.d.ts.map +1 -1
- package/dist/shared/components/sign-in/external-provider.vue.d.ts +4 -13
- package/dist/shared/components/sign-in/external-provider.vue.d.ts.map +1 -1
- package/dist/shared/components/sign-in/external-providers.vue.d.ts +1 -10
- package/dist/shared/components/sign-in/external-providers.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 +1 -10
- package/dist/shared/components/user-dropdown-button/_internal/user-info.vue.d.ts.map +1 -1
- package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts +7 -17
- package/dist/shared/components/user-dropdown-button/_internal/user-sidebar.vue.d.ts.map +1 -1
- package/dist/shared/components/user-dropdown-button/index.d.ts +2 -27
- 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 -10
- package/dist/shared/components/user-dropdown-button/user-dropdown-button.vue.d.ts.map +1 -1
- package/dist/shared/composables/index.d.ts +2 -0
- package/dist/shared/composables/index.d.ts.map +1 -0
- package/dist/shared/modules/assets/components/assets-details/assets-details.vue.d.ts +6 -29
- package/dist/shared/modules/assets/components/assets-details/assets-details.vue.d.ts.map +1 -1
- package/dist/shared/modules/assets/components/assets-details/index.d.ts +2 -1
- package/dist/shared/modules/assets/components/assets-details/index.d.ts.map +1 -1
- package/dist/shared/modules/assets/index.d.ts +3 -3
- 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 +9 -34
- 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 +2 -56
- package/dist/shared/modules/assets-manager/components/assets-manager/index.d.ts.map +1 -1
- package/dist/shared/modules/assets-manager/index.d.ts +2 -2
- package/dist/shared/modules/dynamic/components/SchemaRender.d.ts +18 -18
- package/dist/shared/modules/dynamic/components/factories.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Button.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/Button.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Card.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/Card.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/Checkbox.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/ContentField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/CustomComponent.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts +7 -76
- package/dist/shared/modules/dynamic/components/fields/DynamicProperty.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts +4 -73
- package/dist/shared/modules/dynamic/components/fields/EditorField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/Fieldset.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts +6 -76
- package/dist/shared/modules/dynamic/components/fields/GalleryField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/ImageField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/InputCurrency.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/InputField.d.ts +4 -73
- package/dist/shared/modules/dynamic/components/fields/InputField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/MultivalueField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/RadioButtonGroup.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/RadioButtonGroup.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/RatingField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/SelectField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/StatusField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/SwitchField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/Table.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/Table.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/TextareaField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts +6 -75
- package/dist/shared/modules/dynamic/components/fields/VideoField.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/props.d.ts +5 -74
- package/dist/shared/modules/dynamic/components/fields/props.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts +12 -142
- package/dist/shared/modules/dynamic/components/fields/storybook/pages/DynamicRender.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/utils/sourceHighlighter.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/utils/sourceTransform.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/composables/useDynamicViewsUtils/index.d.ts +1 -1
- package/dist/shared/modules/dynamic/composables/useDynamicViewsUtils/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/composables/useFilterBuilder/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/composables/useTableTemplates/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/composables/useToolbarReducer/index.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/factories/base/useDetailsFactory.d.ts +2 -2
- package/dist/shared/modules/dynamic/factories/base/useDetailsFactory.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/factories/base/useListFactory.d.ts +1 -1
- package/dist/shared/modules/dynamic/factories/base/useListFactory.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/helpers/getters.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/helpers/methodHandler.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/helpers/override.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/helpers/unrefNested.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/pages/dynamic-blade-form.vue.d.ts +27 -50
- 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 +23 -47
- package/dist/shared/modules/dynamic/pages/dynamic-blade-list.vue.d.ts.map +1 -1
- package/dist/shared/modules/dynamic/types/index.d.ts +10 -9
- package/dist/shared/modules/dynamic/types/index.d.ts.map +1 -1
- package/dist/shared/pages/ChangePasswordPage/components/change-password/ChangePassword.vue.d.ts +2 -23
- package/dist/shared/pages/ChangePasswordPage/components/change-password/ChangePassword.vue.d.ts.map +1 -1
- package/dist/shared/pages/ChangePasswordPage/components/change-password/index.d.ts +2 -15
- package/dist/shared/pages/ChangePasswordPage/components/change-password/index.d.ts.map +1 -1
- package/dist/shared/pages/ChangePasswordPage/plugin.d.ts +1 -1
- package/dist/shared/pages/InvitePage/components/invite/Invite.vue.d.ts +4 -32
- package/dist/shared/pages/InvitePage/components/invite/Invite.vue.d.ts.map +1 -1
- package/dist/shared/pages/InvitePage/components/invite/index.d.ts +2 -50
- package/dist/shared/pages/InvitePage/components/invite/index.d.ts.map +1 -1
- package/dist/shared/pages/InvitePage/plugin.d.ts +1 -1
- package/dist/shared/pages/LoginPage/components/login/Login.vue.d.ts +1 -10
- package/dist/shared/pages/LoginPage/components/login/Login.vue.d.ts.map +1 -1
- package/dist/shared/pages/LoginPage/components/login/index.d.ts +2 -41
- package/dist/shared/pages/LoginPage/components/login/index.d.ts.map +1 -1
- package/dist/shared/pages/LoginPage/plugin.d.ts +1 -1
- package/dist/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue.d.ts +4 -32
- package/dist/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue.d.ts.map +1 -1
- package/dist/shared/pages/ResetPasswordPage/components/reset-password/index.d.ts +2 -50
- package/dist/shared/pages/ResetPasswordPage/components/reset-password/index.d.ts.map +1 -1
- package/dist/shared/pages/ResetPasswordPage/plugin.d.ts +1 -1
- package/dist/shared/utilities/assets.d.ts.map +1 -1
- package/dist/shared/utilities/index.d.ts +3 -0
- package/dist/shared/utilities/index.d.ts.map +1 -0
- package/dist/tailwind.config.d.ts +3 -1
- package/dist/tailwind.config.d.ts.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/ui/components/atoms/index.d.ts +1 -0
- package/dist/ui/components/atoms/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts +21 -35
- package/dist/ui/components/atoms/vc-badge/vc-badge.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-button/vc-button.vue.d.ts +11 -36
- 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 -104
- package/dist/ui/components/atoms/vc-card/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-card/vc-card.vue.d.ts +13 -36
- package/dist/ui/components/atoms/vc-card/vc-card.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-col/vc-col.vue.d.ts +7 -28
- package/dist/ui/components/atoms/vc-col/vc-col.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-container/index.d.ts +6 -73
- package/dist/ui/components/atoms/vc-container/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-container/vc-container.vue.d.ts +12 -18
- package/dist/ui/components/atoms/vc-container/vc-container.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-hint/index.d.ts +7 -20
- package/dist/ui/components/atoms/vc-hint/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-hint/vc-hint.vue.d.ts +7 -4
- package/dist/ui/components/atoms/vc-hint/vc-hint.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/AppWindowIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ArrowLeftIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ArrowRightIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/BellIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/BellIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ChevronDownIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ChevronLeftIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ChevronRightIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ChevronUpIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/CircleDotsIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/CrossSignIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowLeftIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/DoubleArrowRightIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/FulfillmentCentersIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/GridDotsIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/LogoutIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/LogoutIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/MenuBurgerIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/MinusSignIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/OffersIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/OffersIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/OrdersIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/OrdersIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/PeopleIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/PeopleIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/PlusSignIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ProductsIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ProductsIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ProfileIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ProfileIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/SearchIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/SettingsBoltIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue.d.ts +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/ShoppingCardIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue.d.ts +7 -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 +5 -16
- package/dist/ui/components/atoms/vc-icon/icons/VertDotsIcon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/vc-bootstrap-icon.vue.d.ts +10 -0
- package/dist/ui/components/atoms/vc-icon/vc-bootstrap-icon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/vc-fontawesome-icon.vue.d.ts +11 -0
- package/dist/ui/components/atoms/vc-icon/vc-fontawesome-icon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/vc-icon-examples.vue.d.ts +3 -0
- package/dist/ui/components/atoms/vc-icon/vc-icon-examples.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/vc-icon-test.vue.d.ts +3 -0
- package/dist/ui/components/atoms/vc-icon/vc-icon-test.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts +37 -28
- package/dist/ui/components/atoms/vc-icon/vc-icon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-icon/vc-lucide-icon.vue.d.ts +12 -0
- package/dist/ui/components/atoms/vc-icon/vc-lucide-icon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-icon/vc-material-icon.vue.d.ts +18 -0
- package/dist/ui/components/atoms/vc-icon/vc-material-icon.vue.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-image/vc-image.vue.d.ts +6 -33
- package/dist/ui/components/atoms/vc-image/vc-image.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts +24 -30
- package/dist/ui/components/atoms/vc-label/vc-label.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-link/index.d.ts +6 -59
- package/dist/ui/components/atoms/vc-link/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-link/vc-link.vue.d.ts +10 -16
- package/dist/ui/components/atoms/vc-link/vc-link.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-loading/index.d.ts +2 -9
- package/dist/ui/components/atoms/vc-loading/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-loading/vc-loading.vue.d.ts +1 -10
- package/dist/ui/components/atoms/vc-loading/vc-loading.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-progress/index.d.ts +6 -51
- package/dist/ui/components/atoms/vc-progress/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-progress/vc-progress.vue.d.ts +2 -25
- package/dist/ui/components/atoms/vc-progress/vc-progress.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-row/vc-row.vue.d.ts +5 -5
- package/dist/ui/components/atoms/vc-row/vc-row.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-skeleton/index.d.ts +2 -0
- package/dist/ui/components/atoms/vc-skeleton/index.d.ts.map +1 -0
- package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts +6 -31
- package/dist/ui/components/atoms/vc-skeleton/vc-skeleton.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts +8 -33
- package/dist/ui/components/atoms/vc-status/vc-status.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-status-icon/vc-status-icon.vue.d.ts +1 -10
- package/dist/ui/components/atoms/vc-status-icon/vc-status-icon.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-switch/vc-switch.vue.d.ts +4 -27
- package/dist/ui/components/atoms/vc-switch/vc-switch.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts +10 -42
- package/dist/ui/components/atoms/vc-tooltip/vc-tooltip.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-video/vc-video.vue.d.ts +4 -13
- package/dist/ui/components/atoms/vc-video/vc-video.vue.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-widget/index.d.ts +2 -43
- package/dist/ui/components/atoms/vc-widget/index.d.ts.map +1 -1
- package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts +4 -13
- package/dist/ui/components/atoms/vc-widget/vc-widget.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/index.d.ts +1 -1
- package/dist/ui/components/molecules/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-breadcrumbs/_internal/vc-breadcrumbs-item/vc-breadcrumbs-item.vue.d.ts +4 -13
- package/dist/ui/components/molecules/vc-breadcrumbs/_internal/vc-breadcrumbs-item/vc-breadcrumbs-item.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue.d.ts +11 -43
- 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 +2 -163
- package/dist/ui/components/molecules/vc-checkbox/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts +13 -38
- package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts +42 -51
- package/dist/ui/components/molecules/vc-editor/vc-editor.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue.d.ts +13 -17
- package/dist/ui/components/molecules/vc-field/_internal/vc-field-type/vc-field-type.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts +3 -28
- package/dist/ui/components/molecules/vc-field/vc-field.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.vue.d.ts +10 -37
- package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-form/index.d.ts +7 -20
- package/dist/ui/components/molecules/vc-form/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-form/vc-form.vue.d.ts +7 -4
- package/dist/ui/components/molecules/vc-form/vc-form.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-input/vc-input.vue.d.ts +19 -106
- 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.vue.d.ts +19 -68
- 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.vue.d.ts +10 -139
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-pagination/index.d.ts +2 -41
- package/dist/ui/components/molecules/vc-pagination/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts +5 -30
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-radio-button/vc-radio-button.vue.d.ts +10 -28
- package/dist/ui/components/molecules/vc-radio-button/vc-radio-button.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-rating/vc-rating.vue.d.ts +8 -35
- package/dist/ui/components/molecules/vc-rating/vc-rating.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-select/vc-select.vue.d.ts +76 -495
- 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 +12 -98
- package/dist/ui/components/molecules/vc-slider/index.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-slider/vc-slider.vue.d.ts +16 -36
- package/dist/ui/components/molecules/vc-slider/vc-slider.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts +11 -33
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.vue.d.ts.map +1 -1
- package/dist/ui/components/molecules/vc-toast/index.d.ts +2 -0
- package/dist/ui/components/molecules/vc-toast/index.d.ts.map +1 -0
- package/dist/ui/components/molecules/vc-toast/vc-toast.vue.d.ts +18 -0
- package/dist/ui/components/molecules/vc-toast/vc-toast.vue.d.ts.map +1 -0
- package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts +8 -14
- package/dist/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts +13 -18
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts +16 -27
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarMobileActions.vue.d.ts +8 -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 +14 -21
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarOverlay.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarWidgetItem.vue.d.ts +34 -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 +15 -29
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/MenuSidebar.vue.d.ts.map +1 -1
- 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 +8 -17
- 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 +4 -25
- 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 +5 -30
- 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 +5 -30
- 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/index.d.ts +0 -1
- package/dist/ui/components/organisms/vc-app/index.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-app/vc-app.vue.d.ts +9 -20
- 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 +11 -16
- 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 +4 -31
- 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 -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-button.vue.d.ts +5 -40
- 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 -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-circle-button.vue.d.ts +2 -29
- 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 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue.d.ts +3 -14
- 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 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue.d.ts +3 -13
- 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 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/vc-blade-toolbar-buttons.vue.d.ts +3 -14
- 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 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue.d.ts +9 -27
- 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 +2 -2
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts +2 -11
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts +2 -11
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts +1 -10
- package/dist/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-blade/vc-blade.vue.d.ts +18 -77
- 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 +32 -109
- 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 +3 -40
- package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-item/vc-gallery-item.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue.d.ts +5 -28
- package/dist/ui/components/organisms/vc-gallery/_internal/vc-gallery-preview/vc-gallery-preview.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts +8 -45
- package/dist/ui/components/organisms/vc-gallery/vc-gallery.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-login-form/vc-login-form.vue.d.ts +7 -28
- package/dist/ui/components/organisms/vc-login-form/vc-login-form.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-popup/vc-popup.vue.d.ts +13 -42
- package/dist/ui/components/organisms/vc-popup/vc-popup.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-add-new/vc-table-add-new.vue.d.ts +4 -13
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-add-new/vc-table-add-new.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-base-header/vc-table-base-header.vue.d.ts +12 -18
- 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 +10 -18
- 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 +6 -23
- 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-counter/vc-table-counter.vue.d.ts +2 -25
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.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 +27 -186
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue.d.ts +26 -90
- 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 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts +28 -202
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue.d.ts.map +1 -1
- 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 +9 -21
- 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 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts +37 -266
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue.d.ts +5 -15
- 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 +10 -32
- 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 +7 -34
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts +19 -53
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue.d.ts +15 -45
- 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 +58 -192
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts +11 -27
- package/dist/ui/components/organisms/vc-table/_internal/vc-table-select-all/vc-table-select-all.vue.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableActions.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts +21 -39
- package/dist/ui/components/organisms/vc-table/composables/useTableColumnReorder.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableColumnResize.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableRowReorder.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableSelection.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts +2 -1
- package/dist/ui/components/organisms/vc-table/composables/useTableState.d.ts.map +1 -1
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts +41 -252
- package/dist/ui/components/organisms/vc-table/vc-table.vue.d.ts.map +1 -1
- package/dist/ui/composables/useAdaptiveItems.d.ts +16 -0
- package/dist/ui/composables/useAdaptiveItems.d.ts.map +1 -0
- package/package.json +18 -13
- package/shared/components/app-switcher/components/vc-app-switcher/vc-app-switcher.vue +1 -1
- package/shared/components/app-switcher/index.ts +1 -1
- package/shared/components/change-password/change-password.vue +3 -3
- package/shared/components/dashboard-widget-card/dashboard-widget-card.vue +37 -3
- package/shared/components/draggable-dashboard/composables/useGridSystem.ts +1 -1
- package/shared/components/draggable-dashboard/composables/useWidgetLayout.ts +1 -1
- package/shared/components/generic-dropdown/generic-dropdown.vue +69 -49
- package/shared/components/language-selector/language-selector.vue +2 -2
- package/shared/components/notification-dropdown/_internal/notification/notification.vue +2 -2
- package/shared/components/notification-dropdown/notification-dropdown.vue +14 -53
- package/shared/components/notification-template/notification-template.vue +0 -1
- package/shared/components/notifications/components/notification-container/index.ts +26 -14
- package/shared/components/notifications/composables/useContainer/index.ts +267 -55
- package/shared/components/notifications/composables/useInstance/index.ts +47 -17
- package/shared/components/notifications/core/notification.ts +175 -20
- package/shared/components/notifications/styles/index.scss +171 -10
- package/shared/components/notifications/types/index.ts +12 -3
- package/shared/components/settings-menu/settings-menu.vue +3 -2
- package/shared/components/settings-menu-item/settings-menu-item.vue +1 -1
- package/shared/components/sidebar/sidebar.vue +5 -2
- package/shared/components/theme-selector/theme-selector.vue +2 -2
- package/shared/components/user-dropdown-button/_internal/user-info.vue +4 -4
- package/shared/components/user-dropdown-button/user-dropdown-button.vue +2 -2
- package/shared/composables/index.ts +1 -0
- package/shared/modules/assets/components/assets-details/assets-details.vue +4 -4
- package/shared/modules/assets/components/assets-details/index.ts +3 -1
- package/shared/modules/assets/index.ts +1 -1
- package/shared/modules/assets-manager/components/assets-manager/assets-manager.vue +5 -4
- package/shared/modules/dynamic/components/fields/storybook/Button.stories.ts +2 -2
- package/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.ts +361 -361
- 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/utils/sourceTransform.ts +1 -1
- package/shared/modules/dynamic/composables/index.ts +4 -4
- package/shared/modules/dynamic/composables/useFilterBuilder/index.ts +1 -1
- package/shared/modules/dynamic/helpers/nodeBuilder.ts +242 -242
- package/shared/modules/dynamic/pages/dynamic-blade-form.vue +60 -63
- package/shared/modules/dynamic/pages/dynamic-blade-list.vue +1 -1
- package/shared/modules/dynamic/types/index.ts +5 -9
- package/shared/pages/LoginPage/components/login/Login.vue +1 -1
- package/shared/pages/ResetPasswordPage/components/reset-password/ResetPassword.vue +218 -218
- package/shared/utilities/assets.ts +43 -42
- package/shared/utilities/index.ts +2 -0
- package/ui/components/atoms/index.ts +1 -0
- package/ui/components/atoms/vc-badge/vc-badge.stories.ts +522 -53
- package/ui/components/atoms/vc-badge/vc-badge.vue +120 -27
- package/ui/components/atoms/vc-button/vc-button.stories.ts +278 -74
- package/ui/components/atoms/vc-button/vc-button.vue +12 -9
- package/ui/components/atoms/vc-card/vc-card.stories.ts +297 -59
- package/ui/components/atoms/vc-card/vc-card.vue +9 -5
- package/ui/components/atoms/vc-col/vc-col.stories.ts +164 -22
- package/ui/components/atoms/vc-container/vc-container.stories.ts +277 -29
- package/ui/components/atoms/vc-container/vc-container.vue +1 -1
- package/ui/components/atoms/vc-hint/vc-hint.stories.ts +144 -23
- package/ui/components/atoms/vc-hint/vc-hint.vue +17 -17
- package/ui/components/atoms/vc-icon/README.md +295 -0
- package/ui/components/atoms/vc-icon/icons/VendorSwitchIcon.vue +26 -0
- package/ui/components/atoms/vc-icon/vc-bootstrap-icon.vue +28 -0
- package/ui/components/atoms/vc-icon/vc-fontawesome-icon.vue +41 -0
- package/ui/components/atoms/vc-icon/vc-icon-examples.vue +183 -0
- package/ui/components/atoms/vc-icon/vc-icon-test.vue +226 -0
- package/ui/components/atoms/vc-icon/vc-icon.stories.ts +376 -48
- package/ui/components/atoms/vc-icon/vc-icon.vue +457 -31
- package/ui/components/atoms/vc-icon/vc-lucide-icon.vue +66 -0
- package/ui/components/atoms/vc-icon/vc-material-icon.vue +61 -0
- package/ui/components/atoms/vc-image/vc-image.stories.ts +309 -85
- package/ui/components/atoms/vc-image/vc-image.vue +2 -2
- package/ui/components/atoms/vc-label/vc-label.stories.ts +137 -31
- package/ui/components/atoms/vc-label/vc-label.vue +118 -92
- package/ui/components/atoms/vc-link/vc-link.stories.ts +154 -37
- package/ui/components/atoms/vc-progress/vc-progress.stories.ts +182 -30
- package/ui/components/atoms/vc-progress/vc-progress.vue +68 -68
- package/ui/components/atoms/vc-row/vc-row.stories.ts +143 -20
- package/ui/components/atoms/vc-skeleton/index.ts +1 -0
- package/ui/components/atoms/vc-skeleton/vc-skeleton.stories.ts +165 -0
- package/ui/components/atoms/vc-status/vc-status.stories.ts +235 -85
- package/ui/components/atoms/vc-status/vc-status.vue +2 -1
- package/ui/components/atoms/vc-status-icon/vc-status-icon.stories.ts +108 -2
- package/ui/components/atoms/vc-status-icon/vc-status-icon.vue +2 -2
- package/ui/components/atoms/vc-switch/vc-switch.stories.ts +314 -14
- package/ui/components/atoms/vc-switch/vc-switch.vue +5 -7
- package/ui/components/atoms/vc-tooltip/vc-tooltip.stories.ts +287 -0
- package/ui/components/atoms/vc-tooltip/vc-tooltip.vue +3 -3
- package/ui/components/atoms/vc-video/vc-video.stories.ts +150 -19
- package/ui/components/atoms/vc-video/vc-video.vue +1 -1
- package/ui/components/atoms/vc-widget/vc-widget.stories.ts +272 -20
- package/ui/components/atoms/vc-widget/vc-widget.vue +51 -66
- package/ui/components/molecules/index.ts +16 -16
- package/ui/components/molecules/vc-breadcrumbs/_internal/vc-breadcrumbs-item/vc-breadcrumbs-item.vue +89 -89
- package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.ts +509 -43
- package/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.vue +32 -80
- package/ui/components/molecules/vc-checkbox/vc-checkbox.stories.ts +356 -84
- package/ui/components/molecules/vc-checkbox/vc-checkbox.vue +185 -119
- package/ui/components/molecules/vc-editor/vc-editor.stories.ts +251 -29
- package/ui/components/molecules/vc-editor/vc-editor.vue +48 -10
- package/ui/components/molecules/vc-field/vc-field.stories.ts +179 -114
- package/ui/components/molecules/vc-field/vc-field.vue +1 -1
- package/ui/components/molecules/vc-file-upload/vc-file-upload.stories.ts +424 -39
- package/ui/components/molecules/vc-file-upload/vc-file-upload.vue +4 -4
- package/ui/components/molecules/vc-form/vc-form.stories.ts +168 -25
- package/ui/components/molecules/vc-input/vc-input.stories.ts +909 -165
- package/ui/components/molecules/vc-input/vc-input.vue +71 -19
- package/ui/components/molecules/vc-input-currency/vc-input-currency.stories.ts +532 -83
- package/ui/components/molecules/vc-input-currency/vc-input-currency.vue +20 -0
- package/ui/components/molecules/vc-multivalue/vc-multivalue.stories.ts +508 -120
- package/ui/components/molecules/vc-multivalue/vc-multivalue.vue +80 -24
- package/ui/components/molecules/vc-pagination/vc-pagination.stories.ts +259 -24
- package/ui/components/molecules/vc-radio-button/vc-radio-button.stories.ts +283 -97
- package/ui/components/molecules/vc-radio-button/vc-radio-button.vue +197 -192
- package/ui/components/molecules/vc-rating/vc-rating.stories.ts +363 -59
- package/ui/components/molecules/vc-rating/vc-rating.vue +54 -26
- package/ui/components/molecules/vc-select/vc-select.stories.ts +1582 -685
- package/ui/components/molecules/vc-select/vc-select.vue +122 -59
- package/ui/components/molecules/vc-slider/vc-slider.stories.ts +223 -61
- package/ui/components/molecules/vc-slider/vc-slider.vue +118 -118
- package/ui/components/molecules/vc-textarea/vc-textarea.stories.ts +326 -53
- package/ui/components/molecules/vc-textarea/vc-textarea.vue +180 -151
- package/ui/components/molecules/vc-toast/index.ts +1 -0
- package/ui/components/molecules/vc-toast/vc-toast.stories.ts +559 -0
- package/ui/components/molecules/vc-toast/vc-toast.vue +350 -0
- package/ui/components/organisms/vc-app/_internal/composables/useAppMenuState.ts +61 -24
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarContent.vue +3 -1
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/_internal/AppBarHeader.vue +43 -77
- 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 +5 -3
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/{components/app-bar-button/app-bar-button.vue → _internal/AppBarWidgetItem.vue} +32 -89
- 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 +9 -8
- 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 +34 -50
- package/ui/components/organisms/vc-app/_internal/vc-app-menu/_internal/vc-app-menu-item/_internal/vc-app-menu-link.vue +4 -4
- package/ui/components/organisms/vc-app/_internal/vc-app-menu/vc-app-menu.vue +2 -2
- package/ui/components/organisms/vc-app/index.ts +0 -1
- package/ui/components/organisms/vc-app/vc-app.vue +33 -35
- package/ui/components/organisms/vc-blade/_internal/vc-blade-header/vc-blade-header.vue +7 -7
- 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 +30 -37
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/_internal/vc-blade-toolbar-button/vc-blade-toolbar-button.vue +2 -2
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/desktop/vc-blade-toolbar-desktop.vue +20 -68
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/_internal/vc-blade-toolbar-buttons/mobile/vc-blade-toolbar-mobile.vue +1 -1
- package/ui/components/organisms/vc-blade/_internal/vc-blade-toolbar/vc-blade-toolbar.vue +84 -7
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/index.ts +2 -2
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-desktop.vue +8 -3
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/_internal/vc-widget-container-mobile.vue +27 -79
- package/ui/components/organisms/vc-blade/_internal/vc-blade-widget-container/vc-widget-container.vue +24 -13
- package/ui/components/organisms/vc-blade/vc-blade.stories.ts +83 -83
- package/ui/components/organisms/vc-blade/vc-blade.vue +4 -4
- 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 +166 -166
- 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-popup/vc-popup.vue +7 -7
- 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 +3 -3
- package/ui/components/organisms/vc-table/_internal/vc-table-cell/vc-table-cell.vue +7 -6
- package/ui/components/organisms/vc-table/_internal/vc-table-column-switcher/vc-table-column-switcher.vue +45 -91
- package/ui/components/organisms/vc-table/_internal/vc-table-counter/vc-table-counter.vue +1 -1
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-body/vc-table-body.vue +1 -2
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-columns-header/vc-table-columns-header.vue +10 -7
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/_internal/vc-table-row/vc-table-row.vue +3 -3
- package/ui/components/organisms/vc-table/_internal/vc-table-desktop-view/vc-table-desktop-view.vue +4 -5
- package/ui/components/organisms/vc-table/_internal/vc-table-empty/vc-table-empty.vue +1 -6
- package/ui/components/organisms/vc-table/_internal/vc-table-filter/vc-table-filter.vue +2 -2
- package/ui/components/organisms/vc-table/_internal/vc-table-footer/vc-table-footer.vue +3 -11
- package/ui/components/organisms/vc-table/_internal/vc-table-header/vc-table-header.vue +49 -6
- package/ui/components/organisms/vc-table/_internal/vc-table-mobile-item/vc-table-mobile-item.vue +293 -129
- package/ui/components/organisms/vc-table/_internal/vc-table-mobile-view/vc-table-mobile-view.vue +94 -46
- package/ui/components/organisms/vc-table/composables/useTableActions.ts +1 -1
- package/ui/components/organisms/vc-table/composables/useTableColumnReorder.ts +1 -1
- package/ui/components/organisms/vc-table/composables/useTableColumnResize.ts +1 -1
- package/ui/components/organisms/vc-table/composables/useTableRowReorder.ts +1 -1
- package/ui/components/organisms/vc-table/composables/useTableSelection.ts +1 -1
- package/ui/components/organisms/vc-table/composables/useTableState.ts +2 -1
- package/ui/components/organisms/vc-table/vc-table.vue +28 -62
- package/ui/composables/README.md +160 -0
- package/ui/composables/useAdaptiveItems.ts +210 -0
- package/core/types/widget.ts +0 -15
- package/dist/apl-B2DGVGxc.js +0 -76
- package/dist/asciiarmor-2LVJmxlE.js +0 -34
- package/dist/asn1-jKiBa2Ya.js +0 -95
- package/dist/asterisk-DS281yxp.js +0 -271
- package/dist/brainfuck-C_p9pTT8.js +0 -34
- package/dist/clike-BUuHEmgZ.js +0 -620
- package/dist/clojure-CCKyeQKf.js +0 -800
- package/dist/cmake-CuaCgAKt.js +0 -28
- package/dist/cobol-BlTKFDRj.js +0 -72
- package/dist/coffeescript-BVCvwO8I.js +0 -179
- package/dist/commonlisp-D_kxz07b.js +0 -75
- package/dist/core/types/widget.d.ts +0 -12
- package/dist/core/types/widget.d.ts.map +0 -1
- package/dist/crystal-D309uH6_.js +0 -217
- package/dist/css-bIlmDBTK.js +0 -1560
- package/dist/cypher-BMq4Fwjl.js +0 -68
- package/dist/d-BZcgY6La.js +0 -127
- package/dist/diff-Cg9d_RX2.js +0 -18
- package/dist/dockerfile-Bo-KZxHS.js +0 -194
- package/dist/dtd-CtLokQ-U.js +0 -84
- package/dist/dylan-QYeExnWK.js +0 -234
- package/dist/ebnf-Xa2PN7SI.js +0 -77
- package/dist/ecl-CiXN-g_D.js +0 -121
- package/dist/eiffel-yQhjl4T1.js +0 -110
- package/dist/elm-CNT9vbN0.js +0 -108
- package/dist/erlang-CFOYdy9e.js +0 -487
- package/dist/factor-Bny6SIz6.js +0 -65
- package/dist/fcl-CPC2WYrI.js +0 -103
- package/dist/forth-BmxRyE9S.js +0 -60
- package/dist/fortran-9bvPyrOW.js +0 -442
- package/dist/framework.js +0 -279
- package/dist/gas-BdfkXJT_.js +0 -183
- package/dist/gherkin-CJuwpceU.js +0 -34
- package/dist/groovy-DZeT_VM-.js +0 -146
- package/dist/haskell-Bvt3Qq1t.js +0 -375
- package/dist/haxe-70NVW1pR.js +0 -359
- package/dist/http-D9LttvKF.js +0 -44
- package/dist/idl-B6TRFYjl.js +0 -947
- package/dist/index-0a5sSUk-.js +0 -299
- package/dist/index-2uMWKqeX.js +0 -607
- package/dist/index-BYSRrP1t.js +0 -98
- package/dist/index-BjuXtCZD.js +0 -308
- package/dist/index-CE39_ef_.js +0 -93
- package/dist/index-CH6q9SbZ.js +0 -134
- package/dist/index-CHqWKNbd.js +0 -114759
- package/dist/index-C_UCSxbP.js +0 -135
- package/dist/index-Cb_-2iIT.js +0 -75
- package/dist/index-CqQMjKrC.js +0 -71
- package/dist/index-D-7-uSkR.js +0 -58
- package/dist/index-DT87PGr4.js +0 -341
- package/dist/index-DUpaX9qF.js +0 -288
- package/dist/index-Do08qm6v.js +0 -156
- package/dist/index-DrXDpBca.js +0 -265
- package/dist/index-GWfUyLcy.js +0 -243
- package/dist/index-mukpig4Q.js +0 -538
- package/dist/index.css +0 -1
- package/dist/javascript-WMWNx-Vj.js +0 -690
- package/dist/jinja2-DnB6dQmV.js +0 -154
- package/dist/julia-DpvXAuO6.js +0 -241
- package/dist/livescript-CanGTf8u.js +0 -272
- package/dist/lua-XplVlWi_.js +0 -217
- package/dist/mathematica-jaRHnSxC.js +0 -35
- package/dist/mbox-BctzC1hL.js +0 -76
- package/dist/mirc-CFBPAOaF.js +0 -72
- package/dist/mllike-BSnXJBGA.js +0 -272
- package/dist/modelica-vUgVs--1.js +0 -93
- package/dist/mscgen-Cpl0NYLN.js +0 -104
- package/dist/mumps-CQoS1kWX.js +0 -25
- package/dist/nginx-zDPm3Z74.js +0 -89
- package/dist/nsis-BEzMtmb7.js +0 -62
- package/dist/ntriples-CsNjv2QF.js +0 -79
- package/dist/octave-C8PmmSRH.js +0 -143
- package/dist/oz-Ce8aN8oE.js +0 -151
- package/dist/pascal-De0D6mP7.js +0 -77
- package/dist/perl-B4bSCe1C.js +0 -915
- package/dist/pig-D24Z8EXi.js +0 -54
- package/dist/powershell-DkYVfTzP.js +0 -249
- package/dist/properties-Dn9wna3M.js +0 -26
- package/dist/protobuf-BPIjwpzm.js +0 -49
- package/dist/pug-BqUR2bBq.js +0 -248
- package/dist/puppet-nyd4dhjf.js +0 -45
- package/dist/python-B5QdSKoL.js +0 -313
- package/dist/q-DXjKs-tC.js +0 -83
- package/dist/r-Bz1d3XP0.js +0 -104
- package/dist/rpm-IznJm2Xc.js +0 -57
- package/dist/ruby-CcYfvIk6.js +0 -228
- package/dist/sas-7E8yHoCW.js +0 -105
- package/dist/scheme-DjibxsNh.js +0 -124
- package/dist/shared/composables/useSettingsMenu.d.ts +0 -180
- package/dist/shared/composables/useSettingsMenu.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts +0 -376
- package/dist/shared/modules/dynamic/components/fields/storybook/Button.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts +0 -367
- package/dist/shared/modules/dynamic/components/fields/storybook/Card.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts +0 -398
- package/dist/shared/modules/dynamic/components/fields/storybook/Checkbox.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts +0 -392
- package/dist/shared/modules/dynamic/components/fields/storybook/ContentField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts +0 -407
- package/dist/shared/modules/dynamic/components/fields/storybook/EditorField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts +0 -360
- package/dist/shared/modules/dynamic/components/fields/storybook/Fieldset.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts +0 -391
- package/dist/shared/modules/dynamic/components/fields/storybook/GalleryField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts +0 -372
- package/dist/shared/modules/dynamic/components/fields/storybook/ImageField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts +0 -448
- package/dist/shared/modules/dynamic/components/fields/storybook/InputCurrency.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts +0 -469
- package/dist/shared/modules/dynamic/components/fields/storybook/InputField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts +0 -468
- package/dist/shared/modules/dynamic/components/fields/storybook/MultivalueField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts +0 -359
- package/dist/shared/modules/dynamic/components/fields/storybook/RadioButtonGroup.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts +0 -359
- package/dist/shared/modules/dynamic/components/fields/storybook/RatingField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts +0 -516
- package/dist/shared/modules/dynamic/components/fields/storybook/SelectField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts +0 -392
- package/dist/shared/modules/dynamic/components/fields/storybook/StatusField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/SwitchField.stories.d.ts +0 -14
- package/dist/shared/modules/dynamic/components/fields/storybook/SwitchField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts +0 -407
- package/dist/shared/modules/dynamic/components/fields/storybook/TextareaField.stories.d.ts.map +0 -1
- package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts +0 -322
- package/dist/shared/modules/dynamic/components/fields/storybook/VideoField.stories.d.ts.map +0 -1
- package/dist/shell-C0C2sNA_.js +0 -182
- package/dist/sieve-Bwz7vjP5.js +0 -72
- package/dist/simple-mode-BqqHn0g6.js +0 -88
- package/dist/smalltalk-Bhddl2pB.js +0 -48
- package/dist/solr-BNlsLglM.js +0 -41
- package/dist/sparql-FarWu_Gb.js +0 -197
- package/dist/spreadsheet-C-cy4P5N.js +0 -49
- package/dist/sql-mMre1Bo3.js +0 -282
- package/dist/stex-92raWT1r.js +0 -129
- package/dist/stylus-DRcbY16X.js +0 -250
- package/dist/swift-DSxqR9R6.js +0 -230
- package/dist/tcl-xfoLljhY.js +0 -81
- package/dist/textile-D1AWE-pc.js +0 -295
- package/dist/tiddlywiki-5wqsXtSk.js +0 -155
- package/dist/tiki-D9z-T0ea.js +0 -178
- package/dist/toml-BHiuTcfn.js +0 -49
- package/dist/troff-D2UO-fKf.js +0 -35
- package/dist/ttcn-Bsa4sfRm.js +0 -123
- package/dist/ttcn-cfg-Bac_acMi.js +0 -88
- package/dist/turtle-xwJUxoPV.js +0 -80
- package/dist/ui/components/atoms/vc-badge/vc-badge.stories.d.ts +0 -465
- package/dist/ui/components/atoms/vc-badge/vc-badge.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-button/vc-button.stories.d.ts +0 -1277
- package/dist/ui/components/atoms/vc-button/vc-button.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts +0 -994
- package/dist/ui/components/atoms/vc-card/vc-card.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-col/vc-col.stories.d.ts +0 -48
- package/dist/ui/components/atoms/vc-col/vc-col.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-container/vc-container.stories.d.ts +0 -7
- package/dist/ui/components/atoms/vc-container/vc-container.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-hint/vc-hint.stories.d.ts +0 -39
- package/dist/ui/components/atoms/vc-hint/vc-hint.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-icon/vc-icon.stories.d.ts +0 -64
- package/dist/ui/components/atoms/vc-icon/vc-icon.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-image/vc-image.stories.d.ts +0 -114
- package/dist/ui/components/atoms/vc-image/vc-image.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-label/vc-label.stories.d.ts +0 -89
- package/dist/ui/components/atoms/vc-label/vc-label.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-link/vc-link.stories.d.ts +0 -93
- package/dist/ui/components/atoms/vc-link/vc-link.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-loading/vc-loading.stories.d.ts +0 -20
- package/dist/ui/components/atoms/vc-loading/vc-loading.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-progress/vc-progress.stories.d.ts +0 -78
- package/dist/ui/components/atoms/vc-progress/vc-progress.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-row/vc-row.stories.d.ts +0 -27
- package/dist/ui/components/atoms/vc-row/vc-row.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts +0 -121
- package/dist/ui/components/atoms/vc-status/vc-status.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-status-icon/vc-status-icon.stories.d.ts +0 -7
- package/dist/ui/components/atoms/vc-status-icon/vc-status-icon.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-switch/vc-switch.stories.d.ts +0 -74
- package/dist/ui/components/atoms/vc-switch/vc-switch.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-video/vc-video.stories.d.ts +0 -37
- package/dist/ui/components/atoms/vc-video/vc-video.stories.d.ts.map +0 -1
- package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts +0 -56
- package/dist/ui/components/atoms/vc-widget/vc-widget.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts +0 -109
- package/dist/ui/components/molecules/vc-breadcrumbs/vc-breadcrumbs.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.stories.d.ts +0 -1680
- package/dist/ui/components/molecules/vc-checkbox/vc-checkbox.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts +0 -7275
- package/dist/ui/components/molecules/vc-editor/vc-editor.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-field/vc-field.stories.d.ts +0 -105
- package/dist/ui/components/molecules/vc-field/vc-field.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.stories.d.ts +0 -170
- package/dist/ui/components/molecules/vc-file-upload/vc-file-upload.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-form/vc-form.stories.d.ts +0 -31
- package/dist/ui/components/molecules/vc-form/vc-form.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts +0 -362
- package/dist/ui/components/molecules/vc-input/vc-input.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts +0 -325
- package/dist/ui/components/molecules/vc-input-currency/vc-input-currency.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.stories.d.ts +0 -1120
- package/dist/ui/components/molecules/vc-multivalue/vc-multivalue.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-notification/index.d.ts +0 -2
- package/dist/ui/components/molecules/vc-notification/index.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-notification/vc-notification.vue.d.ts +0 -23
- package/dist/ui/components/molecules/vc-notification/vc-notification.vue.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.stories.d.ts +0 -94
- package/dist/ui/components/molecules/vc-pagination/vc-pagination.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-radio-button/vc-radio-button.stories.d.ts +0 -555
- package/dist/ui/components/molecules/vc-radio-button/vc-radio-button.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-rating/vc-rating.stories.d.ts +0 -412
- package/dist/ui/components/molecules/vc-rating/vc-rating.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts +0 -2843
- package/dist/ui/components/molecules/vc-select/vc-select.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-slider/vc-slider.stories.d.ts +0 -139
- package/dist/ui/components/molecules/vc-slider/vc-slider.stories.d.ts.map +0 -1
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts +0 -1075
- package/dist/ui/components/molecules/vc-textarea/vc-textarea.stories.d.ts.map +0 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/components/app-bar-button/app-bar-button.vue.d.ts +0 -61
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/components/app-bar-button/app-bar-button.vue.d.ts.map +0 -1
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarOverlay.d.ts +0 -19
- package/dist/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarOverlay.d.ts.map +0 -1
- package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts +0 -132
- package/dist/ui/components/organisms/vc-app/vc-app.stories.d.ts.map +0 -1
- package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts +0 -181
- package/dist/ui/components/organisms/vc-blade/vc-blade.stories.d.ts.map +0 -1
- package/dist/ui/components/organisms/vc-gallery/vc-gallery.stories.d.ts +0 -168
- package/dist/ui/components/organisms/vc-gallery/vc-gallery.stories.d.ts.map +0 -1
- package/dist/ui/components/organisms/vc-table/types.d.ts +0 -19
- package/dist/ui/components/organisms/vc-table/types.d.ts.map +0 -1
- package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts +0 -1460
- package/dist/ui/components/organisms/vc-table/vc-table.stories.d.ts.map +0 -1
- package/dist/ui/composables/useVisibleElements.d.ts +0 -19
- package/dist/ui/composables/useVisibleElements.d.ts.map +0 -1
- package/dist/vb-c2kQGd6-.js +0 -74
- package/dist/vbscript-Dz1TtKsy.js +0 -324
- package/dist/velocity-DJd0pTTC.js +0 -96
- package/dist/verilog-C4VGD9n1.js +0 -263
- package/dist/vhdl-T9HkrbI2.js +0 -106
- package/dist/webidl-CjfDENEo.js +0 -155
- package/dist/xquery-BUQdORAS.js +0 -422
- package/dist/yacas-C0absKBh.js +0 -73
- package/dist/z80-C8rPtw-0.js +0 -61
- package/shared/composables/useSettingsMenu.ts +0 -44
- package/ui/components/atoms/vc-loading/vc-loading.stories.ts +0 -18
- package/ui/components/molecules/vc-notification/index.ts +0 -1
- package/ui/components/molecules/vc-notification/vc-notification.vue +0 -170
- package/ui/components/organisms/vc-app/_internal/vc-app-bar/composables/useAppBarOverlay.ts +0 -78
- package/ui/components/organisms/vc-table/types.ts +0 -25
- package/ui/components/organisms/vc-table/vc-table.stories.ts +0 -214
- package/ui/composables/useVisibleElements.ts +0 -148
|
@@ -1,322 +0,0 @@
|
|
|
1
|
-
import { StoryFn } from "@storybook/vue3";
|
|
2
|
-
import { VideoSchema } from "../../..";
|
|
3
|
-
declare const _default: {
|
|
4
|
-
title: string;
|
|
5
|
-
component: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
6
|
-
context: {
|
|
7
|
-
type: import("vue").PropType<{
|
|
8
|
-
settings: import("../../..").SettingsSchema;
|
|
9
|
-
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
10
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
11
|
-
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
12
|
-
loading: boolean;
|
|
13
|
-
item: Record<string, any> | undefined;
|
|
14
|
-
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
15
|
-
scope?: {
|
|
16
|
-
[x: string]: any;
|
|
17
|
-
disabled?: boolean | undefined;
|
|
18
|
-
multilanguage?: {
|
|
19
|
-
loading: boolean;
|
|
20
|
-
currentLocale: string;
|
|
21
|
-
languages: string[];
|
|
22
|
-
setLocale: (locale: string) => void;
|
|
23
|
-
localesOptions: {
|
|
24
|
-
label: string | undefined;
|
|
25
|
-
value: string;
|
|
26
|
-
}[];
|
|
27
|
-
getLanguages: import("../../../../../..").AsyncAction<void, void>;
|
|
28
|
-
} | undefined;
|
|
29
|
-
dynamicProperties?: {
|
|
30
|
-
loading: boolean;
|
|
31
|
-
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
32
|
-
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
33
|
-
setPropertyValue: (data: {
|
|
34
|
-
property: Record<string, any>;
|
|
35
|
-
value: string | Record<string, any>[];
|
|
36
|
-
dictionary?: Record<string, any>[] | undefined;
|
|
37
|
-
locale?: string | undefined;
|
|
38
|
-
initialProp?: Record<string, any> | undefined;
|
|
39
|
-
}) => void;
|
|
40
|
-
} | undefined;
|
|
41
|
-
assetsHandler?: {
|
|
42
|
-
assets?: {
|
|
43
|
-
noRemoveConfirmation?: boolean | undefined;
|
|
44
|
-
loading?: boolean | undefined;
|
|
45
|
-
upload?: ((files: FileList, startingSortOrder?: number | undefined) => Promise<import("../../../../../..").ICommonAsset[]>) | undefined;
|
|
46
|
-
edit?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
47
|
-
remove?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
48
|
-
} | undefined;
|
|
49
|
-
images?: {
|
|
50
|
-
noRemoveConfirmation?: boolean | undefined;
|
|
51
|
-
loading?: boolean | undefined;
|
|
52
|
-
upload?: ((files: FileList, startingSortOrder?: number | undefined) => Promise<import("../../../../../..").ICommonAsset[]>) | undefined;
|
|
53
|
-
edit?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
54
|
-
remove?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
55
|
-
} | undefined;
|
|
56
|
-
} | undefined;
|
|
57
|
-
selection?: Record<string, any>[] | undefined;
|
|
58
|
-
toolbarOverrides?: import("../../../../../..").IBladeToolbar[] | {
|
|
59
|
-
id?: string | undefined;
|
|
60
|
-
icon?: string | (() => string) | undefined;
|
|
61
|
-
disabled?: boolean | undefined;
|
|
62
|
-
title?: string | undefined;
|
|
63
|
-
isVisible?: boolean | undefined;
|
|
64
|
-
clickHandler?: ((app?: Record<string, any> | import("../../../../..").CoreBladeExposed | null | undefined) => void) | undefined;
|
|
65
|
-
separator?: "left" | "right" | "both" | undefined;
|
|
66
|
-
permissions?: string | string[] | undefined;
|
|
67
|
-
}[] | {
|
|
68
|
-
[x: string]: import("vue").MaybeRef<import("../../../../../..").IBladeToolbar[]> | import("vue").MaybeRef<import("../../../../../..").IBladeToolbar>;
|
|
69
|
-
} | ((...args: any[]) => any) | undefined;
|
|
70
|
-
} | undefined;
|
|
71
|
-
bladeTitle?: string | undefined;
|
|
72
|
-
}>;
|
|
73
|
-
required: true;
|
|
74
|
-
default: () => import("../../..").DetailsBladeContext<Record<string, any>, import("../../..").DetailsBaseBladeScope<Record<string, any>>>;
|
|
75
|
-
};
|
|
76
|
-
args: {
|
|
77
|
-
type: import("vue").PropType<import("../../..").ControlSchema>;
|
|
78
|
-
required: true;
|
|
79
|
-
default: () => import("../../..").ControlSchema;
|
|
80
|
-
};
|
|
81
|
-
additionalSource: {
|
|
82
|
-
type: import("vue").PropType<import("vue").DefineComponent>;
|
|
83
|
-
};
|
|
84
|
-
}>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
85
|
-
[key: string]: any;
|
|
86
|
-
}>[], {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
87
|
-
context: {
|
|
88
|
-
type: import("vue").PropType<{
|
|
89
|
-
settings: import("../../..").SettingsSchema;
|
|
90
|
-
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
91
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
92
|
-
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
93
|
-
loading: boolean;
|
|
94
|
-
item: Record<string, any> | undefined;
|
|
95
|
-
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
96
|
-
scope?: {
|
|
97
|
-
[x: string]: any;
|
|
98
|
-
disabled?: boolean | undefined;
|
|
99
|
-
multilanguage?: {
|
|
100
|
-
loading: boolean;
|
|
101
|
-
currentLocale: string;
|
|
102
|
-
languages: string[];
|
|
103
|
-
setLocale: (locale: string) => void;
|
|
104
|
-
localesOptions: {
|
|
105
|
-
label: string | undefined;
|
|
106
|
-
value: string;
|
|
107
|
-
}[];
|
|
108
|
-
getLanguages: import("../../../../../..").AsyncAction<void, void>;
|
|
109
|
-
} | undefined;
|
|
110
|
-
dynamicProperties?: {
|
|
111
|
-
loading: boolean;
|
|
112
|
-
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
113
|
-
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
114
|
-
setPropertyValue: (data: {
|
|
115
|
-
property: Record<string, any>;
|
|
116
|
-
value: string | Record<string, any>[];
|
|
117
|
-
dictionary?: Record<string, any>[] | undefined;
|
|
118
|
-
locale?: string | undefined;
|
|
119
|
-
initialProp?: Record<string, any> | undefined;
|
|
120
|
-
}) => void;
|
|
121
|
-
} | undefined;
|
|
122
|
-
assetsHandler?: {
|
|
123
|
-
assets?: {
|
|
124
|
-
noRemoveConfirmation?: boolean | undefined;
|
|
125
|
-
loading?: boolean | undefined;
|
|
126
|
-
upload?: ((files: FileList, startingSortOrder?: number | undefined) => Promise<import("../../../../../..").ICommonAsset[]>) | undefined;
|
|
127
|
-
edit?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
128
|
-
remove?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
129
|
-
} | undefined;
|
|
130
|
-
images?: {
|
|
131
|
-
noRemoveConfirmation?: boolean | undefined;
|
|
132
|
-
loading?: boolean | undefined;
|
|
133
|
-
upload?: ((files: FileList, startingSortOrder?: number | undefined) => Promise<import("../../../../../..").ICommonAsset[]>) | undefined;
|
|
134
|
-
edit?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
135
|
-
remove?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
136
|
-
} | undefined;
|
|
137
|
-
} | undefined;
|
|
138
|
-
selection?: Record<string, any>[] | undefined;
|
|
139
|
-
toolbarOverrides?: import("../../../../../..").IBladeToolbar[] | {
|
|
140
|
-
id?: string | undefined;
|
|
141
|
-
icon?: string | (() => string) | undefined;
|
|
142
|
-
disabled?: boolean | undefined;
|
|
143
|
-
title?: string | undefined;
|
|
144
|
-
isVisible?: boolean | undefined;
|
|
145
|
-
clickHandler?: ((app?: Record<string, any> | import("../../../../..").CoreBladeExposed | null | undefined) => void) | undefined;
|
|
146
|
-
separator?: "left" | "right" | "both" | undefined;
|
|
147
|
-
permissions?: string | string[] | undefined;
|
|
148
|
-
}[] | {
|
|
149
|
-
[x: string]: import("vue").MaybeRef<import("../../../../../..").IBladeToolbar[]> | import("vue").MaybeRef<import("../../../../../..").IBladeToolbar>;
|
|
150
|
-
} | ((...args: any[]) => any) | undefined;
|
|
151
|
-
} | undefined;
|
|
152
|
-
bladeTitle?: string | undefined;
|
|
153
|
-
}>;
|
|
154
|
-
required: true;
|
|
155
|
-
default: () => import("../../..").DetailsBladeContext<Record<string, any>, import("../../..").DetailsBaseBladeScope<Record<string, any>>>;
|
|
156
|
-
};
|
|
157
|
-
args: {
|
|
158
|
-
type: import("vue").PropType<import("../../..").ControlSchema>;
|
|
159
|
-
required: true;
|
|
160
|
-
default: () => import("../../..").ControlSchema;
|
|
161
|
-
};
|
|
162
|
-
additionalSource: {
|
|
163
|
-
type: import("vue").PropType<import("vue").DefineComponent>;
|
|
164
|
-
};
|
|
165
|
-
}>> & Readonly<{
|
|
166
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
167
|
-
}>, {
|
|
168
|
-
context: {
|
|
169
|
-
settings: import("../../..").SettingsSchema;
|
|
170
|
-
load: import("../../../../../..").AsyncAction<import("../../..").ItemId>;
|
|
171
|
-
saveChanges: import("../../../../../..").AsyncAction<Record<string, any>, void | Record<string, any>>;
|
|
172
|
-
remove?: import("../../../../../..").AsyncAction<Record<string, any> | import("../../..").ItemId> | undefined;
|
|
173
|
-
loading: boolean;
|
|
174
|
-
item: Record<string, any> | undefined;
|
|
175
|
-
validationState: import("../../..").IValidationState<Record<string, any>>;
|
|
176
|
-
scope?: {
|
|
177
|
-
[x: string]: any;
|
|
178
|
-
disabled?: boolean | undefined;
|
|
179
|
-
multilanguage?: {
|
|
180
|
-
loading: boolean;
|
|
181
|
-
currentLocale: string;
|
|
182
|
-
languages: string[];
|
|
183
|
-
setLocale: (locale: string) => void;
|
|
184
|
-
localesOptions: {
|
|
185
|
-
label: string | undefined;
|
|
186
|
-
value: string;
|
|
187
|
-
}[];
|
|
188
|
-
getLanguages: import("../../../../../..").AsyncAction<void, void>;
|
|
189
|
-
} | undefined;
|
|
190
|
-
dynamicProperties?: {
|
|
191
|
-
loading: boolean;
|
|
192
|
-
loadDictionaries: (propertyId: string, keyword?: string | undefined, locale?: string | undefined) => Promise<Record<string, any>[] | undefined>;
|
|
193
|
-
getPropertyValue: (property: Record<string, any>, locale: string) => any;
|
|
194
|
-
setPropertyValue: (data: {
|
|
195
|
-
property: Record<string, any>;
|
|
196
|
-
value: string | Record<string, any>[];
|
|
197
|
-
dictionary?: Record<string, any>[] | undefined;
|
|
198
|
-
locale?: string | undefined;
|
|
199
|
-
initialProp?: Record<string, any> | undefined;
|
|
200
|
-
}) => void;
|
|
201
|
-
} | undefined;
|
|
202
|
-
assetsHandler?: {
|
|
203
|
-
assets?: {
|
|
204
|
-
noRemoveConfirmation?: boolean | undefined;
|
|
205
|
-
loading?: boolean | undefined;
|
|
206
|
-
upload?: ((files: FileList, startingSortOrder?: number | undefined) => Promise<import("../../../../../..").ICommonAsset[]>) | undefined;
|
|
207
|
-
edit?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
208
|
-
remove?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
209
|
-
} | undefined;
|
|
210
|
-
images?: {
|
|
211
|
-
noRemoveConfirmation?: boolean | undefined;
|
|
212
|
-
loading?: boolean | undefined;
|
|
213
|
-
upload?: ((files: FileList, startingSortOrder?: number | undefined) => Promise<import("../../../../../..").ICommonAsset[]>) | undefined;
|
|
214
|
-
edit?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
215
|
-
remove?: ((files: import("../../../../../..").ICommonAsset[]) => import("../../../../../..").ICommonAsset[]) | undefined;
|
|
216
|
-
} | undefined;
|
|
217
|
-
} | undefined;
|
|
218
|
-
selection?: Record<string, any>[] | undefined;
|
|
219
|
-
toolbarOverrides?: import("../../../../../..").IBladeToolbar[] | {
|
|
220
|
-
id?: string | undefined;
|
|
221
|
-
icon?: string | (() => string) | undefined;
|
|
222
|
-
disabled?: boolean | undefined;
|
|
223
|
-
title?: string | undefined;
|
|
224
|
-
isVisible?: boolean | undefined;
|
|
225
|
-
clickHandler?: ((app?: Record<string, any> | import("../../../../..").CoreBladeExposed | null | undefined) => void) | undefined;
|
|
226
|
-
separator?: "left" | "right" | "both" | undefined;
|
|
227
|
-
permissions?: string | string[] | undefined;
|
|
228
|
-
}[] | {
|
|
229
|
-
[x: string]: import("vue").MaybeRef<import("../../../../../..").IBladeToolbar[]> | import("vue").MaybeRef<import("../../../../../..").IBladeToolbar>;
|
|
230
|
-
} | ((...args: any[]) => any) | undefined;
|
|
231
|
-
} | undefined;
|
|
232
|
-
bladeTitle?: string | undefined;
|
|
233
|
-
};
|
|
234
|
-
args: import("../../..").ControlSchema;
|
|
235
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
236
|
-
args: {
|
|
237
|
-
id: string;
|
|
238
|
-
component: "vc-video";
|
|
239
|
-
property: string;
|
|
240
|
-
};
|
|
241
|
-
argTypes: {
|
|
242
|
-
component: {
|
|
243
|
-
description: string;
|
|
244
|
-
type: {
|
|
245
|
-
required: true;
|
|
246
|
-
name: "string";
|
|
247
|
-
};
|
|
248
|
-
table: {
|
|
249
|
-
type: {
|
|
250
|
-
summary: string;
|
|
251
|
-
};
|
|
252
|
-
defaultValue: {
|
|
253
|
-
summary: string;
|
|
254
|
-
};
|
|
255
|
-
};
|
|
256
|
-
};
|
|
257
|
-
label: {
|
|
258
|
-
readonly description: "Control label.\n To show label based on some bound property - use interpolation `{}` syntax.\n \n`@example` {someProperty}\n Supports i18n keys.";
|
|
259
|
-
readonly control: "text";
|
|
260
|
-
readonly table: {
|
|
261
|
-
readonly type: {
|
|
262
|
-
readonly summary: "string";
|
|
263
|
-
};
|
|
264
|
-
};
|
|
265
|
-
};
|
|
266
|
-
tooltip: {
|
|
267
|
-
readonly description: "Tooltip text for the component.\n Supports i18n keys.";
|
|
268
|
-
readonly control: "text";
|
|
269
|
-
readonly table: {
|
|
270
|
-
readonly type: {
|
|
271
|
-
readonly summary: "string";
|
|
272
|
-
};
|
|
273
|
-
};
|
|
274
|
-
};
|
|
275
|
-
id: {
|
|
276
|
-
readonly description: "Unique identifier for component.";
|
|
277
|
-
readonly control: "text";
|
|
278
|
-
readonly type: {
|
|
279
|
-
readonly required: true;
|
|
280
|
-
readonly name: "string";
|
|
281
|
-
};
|
|
282
|
-
readonly table: {
|
|
283
|
-
readonly type: {
|
|
284
|
-
readonly summary: "string";
|
|
285
|
-
};
|
|
286
|
-
};
|
|
287
|
-
};
|
|
288
|
-
property: {
|
|
289
|
-
readonly description: "Property name to populate the component with data.\n Data can be defined in either the `item` or the `scope`.\n \nDot notation can also be used for nested properties, e.g. `address.city` or `addresses[1].city`.\n \nYou can also use a `function` or `writable computed` to set the property in the `scope`, which receives the modified data as an argument.\n ";
|
|
290
|
-
readonly type: {
|
|
291
|
-
readonly required: true;
|
|
292
|
-
readonly name: "string";
|
|
293
|
-
};
|
|
294
|
-
readonly table: {
|
|
295
|
-
readonly type: {
|
|
296
|
-
readonly summary: "string";
|
|
297
|
-
};
|
|
298
|
-
};
|
|
299
|
-
};
|
|
300
|
-
visibility: {
|
|
301
|
-
readonly description: "Visibility options for component.\n Method should be defined in the blade `scope`.\n Method should return boolean value.\n ";
|
|
302
|
-
readonly table: {
|
|
303
|
-
readonly type: {
|
|
304
|
-
readonly summary: "{ method: string }";
|
|
305
|
-
};
|
|
306
|
-
};
|
|
307
|
-
};
|
|
308
|
-
};
|
|
309
|
-
parameters: {
|
|
310
|
-
docs: {
|
|
311
|
-
canvas: {
|
|
312
|
-
sourceState: string;
|
|
313
|
-
};
|
|
314
|
-
};
|
|
315
|
-
};
|
|
316
|
-
};
|
|
317
|
-
export default _default;
|
|
318
|
-
export declare const Template: StoryFn<VideoSchema>;
|
|
319
|
-
export declare const WithLabel: StoryFn<VideoSchema>;
|
|
320
|
-
export declare const WithTooltip: StoryFn<VideoSchema>;
|
|
321
|
-
export declare const WithVisibility: StoryFn<VideoSchema>;
|
|
322
|
-
//# sourceMappingURL=VideoField.stories.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"VideoField.stories.d.ts","sourceRoot":"","sources":["../../../../../../../shared/modules/dynamic/components/fields/storybook/VideoField.stories.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,OAAO,EAAE,MAAM,iBAAiB,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAOvC,wBAiC8B;AAE9B,eAAO,MAAM,QAAQ,EAAE,OAAO,CAAC,WAAW,CAWxC,CAAC;AAEH,eAAO,MAAM,SAAS,sBAAoB,CAAC;AAK3C,eAAO,MAAM,WAAW,sBAAoB,CAAC;AAM7C,eAAO,MAAM,cAAc,EAAE,OAAO,CAAC,WAAW,CAmB9C,CAAC"}
|
package/dist/shell-C0C2sNA_.js
DELETED
|
@@ -1,182 +0,0 @@
|
|
|
1
|
-
var c = {};
|
|
2
|
-
function s(n, e) {
|
|
3
|
-
for (var i = 0; i < e.length; i++)
|
|
4
|
-
c[e[i]] = n;
|
|
5
|
-
}
|
|
6
|
-
var k = ["true", "false"], h = [
|
|
7
|
-
"if",
|
|
8
|
-
"then",
|
|
9
|
-
"do",
|
|
10
|
-
"else",
|
|
11
|
-
"elif",
|
|
12
|
-
"while",
|
|
13
|
-
"until",
|
|
14
|
-
"for",
|
|
15
|
-
"in",
|
|
16
|
-
"esac",
|
|
17
|
-
"fi",
|
|
18
|
-
"fin",
|
|
19
|
-
"fil",
|
|
20
|
-
"done",
|
|
21
|
-
"exit",
|
|
22
|
-
"set",
|
|
23
|
-
"unset",
|
|
24
|
-
"export",
|
|
25
|
-
"function"
|
|
26
|
-
], p = [
|
|
27
|
-
"ab",
|
|
28
|
-
"awk",
|
|
29
|
-
"bash",
|
|
30
|
-
"beep",
|
|
31
|
-
"cat",
|
|
32
|
-
"cc",
|
|
33
|
-
"cd",
|
|
34
|
-
"chown",
|
|
35
|
-
"chmod",
|
|
36
|
-
"chroot",
|
|
37
|
-
"clear",
|
|
38
|
-
"cp",
|
|
39
|
-
"curl",
|
|
40
|
-
"cut",
|
|
41
|
-
"diff",
|
|
42
|
-
"echo",
|
|
43
|
-
"find",
|
|
44
|
-
"gawk",
|
|
45
|
-
"gcc",
|
|
46
|
-
"get",
|
|
47
|
-
"git",
|
|
48
|
-
"grep",
|
|
49
|
-
"hg",
|
|
50
|
-
"kill",
|
|
51
|
-
"killall",
|
|
52
|
-
"ln",
|
|
53
|
-
"ls",
|
|
54
|
-
"make",
|
|
55
|
-
"mkdir",
|
|
56
|
-
"openssl",
|
|
57
|
-
"mv",
|
|
58
|
-
"nc",
|
|
59
|
-
"nl",
|
|
60
|
-
"node",
|
|
61
|
-
"npm",
|
|
62
|
-
"ping",
|
|
63
|
-
"ps",
|
|
64
|
-
"restart",
|
|
65
|
-
"rm",
|
|
66
|
-
"rmdir",
|
|
67
|
-
"sed",
|
|
68
|
-
"service",
|
|
69
|
-
"sh",
|
|
70
|
-
"shopt",
|
|
71
|
-
"shred",
|
|
72
|
-
"source",
|
|
73
|
-
"sort",
|
|
74
|
-
"sleep",
|
|
75
|
-
"ssh",
|
|
76
|
-
"start",
|
|
77
|
-
"stop",
|
|
78
|
-
"su",
|
|
79
|
-
"sudo",
|
|
80
|
-
"svn",
|
|
81
|
-
"tee",
|
|
82
|
-
"telnet",
|
|
83
|
-
"top",
|
|
84
|
-
"touch",
|
|
85
|
-
"vi",
|
|
86
|
-
"vim",
|
|
87
|
-
"wall",
|
|
88
|
-
"wc",
|
|
89
|
-
"wget",
|
|
90
|
-
"who",
|
|
91
|
-
"write",
|
|
92
|
-
"yes",
|
|
93
|
-
"zsh"
|
|
94
|
-
];
|
|
95
|
-
s("atom", k);
|
|
96
|
-
s("keyword", h);
|
|
97
|
-
s("builtin", p);
|
|
98
|
-
function d(n, e) {
|
|
99
|
-
if (n.eatSpace()) return null;
|
|
100
|
-
var i = n.sol(), t = n.next();
|
|
101
|
-
if (t === "\\")
|
|
102
|
-
return n.next(), null;
|
|
103
|
-
if (t === "'" || t === '"' || t === "`")
|
|
104
|
-
return e.tokens.unshift(l(t, t === "`" ? "quote" : "string")), u(n, e);
|
|
105
|
-
if (t === "#")
|
|
106
|
-
return i && n.eat("!") ? (n.skipToEnd(), "meta") : (n.skipToEnd(), "comment");
|
|
107
|
-
if (t === "$")
|
|
108
|
-
return e.tokens.unshift(a), u(n, e);
|
|
109
|
-
if (t === "+" || t === "=")
|
|
110
|
-
return "operator";
|
|
111
|
-
if (t === "-")
|
|
112
|
-
return n.eat("-"), n.eatWhile(/\w/), "attribute";
|
|
113
|
-
if (t == "<") {
|
|
114
|
-
if (n.match("<<")) return "operator";
|
|
115
|
-
var o = n.match(/^<-?\s*(?:['"]([^'"]*)['"]|([^'"\s]*))/);
|
|
116
|
-
if (o)
|
|
117
|
-
return e.tokens.unshift(w(o[1] || o[2])), "string.special";
|
|
118
|
-
}
|
|
119
|
-
if (/\d/.test(t) && (n.eatWhile(/\d/), n.eol() || !/\w/.test(n.peek())))
|
|
120
|
-
return "number";
|
|
121
|
-
n.eatWhile(/[\w-]/);
|
|
122
|
-
var r = n.current();
|
|
123
|
-
return n.peek() === "=" && /\w+/.test(r) ? "def" : c.hasOwnProperty(r) ? c[r] : null;
|
|
124
|
-
}
|
|
125
|
-
function l(n, e) {
|
|
126
|
-
var i = n == "(" ? ")" : n == "{" ? "}" : n;
|
|
127
|
-
return function(t, o) {
|
|
128
|
-
for (var r, f = !1; (r = t.next()) != null; ) {
|
|
129
|
-
if (r === i && !f) {
|
|
130
|
-
o.tokens.shift();
|
|
131
|
-
break;
|
|
132
|
-
} else if (r === "$" && !f && n !== "'" && t.peek() != i) {
|
|
133
|
-
f = !0, t.backUp(1), o.tokens.unshift(a);
|
|
134
|
-
break;
|
|
135
|
-
} else {
|
|
136
|
-
if (!f && n !== i && r === n)
|
|
137
|
-
return o.tokens.unshift(l(n, e)), u(t, o);
|
|
138
|
-
if (!f && /['"]/.test(r) && !/['"]/.test(n)) {
|
|
139
|
-
o.tokens.unshift(g(r, "string")), t.backUp(1);
|
|
140
|
-
break;
|
|
141
|
-
}
|
|
142
|
-
}
|
|
143
|
-
f = !f && r === "\\";
|
|
144
|
-
}
|
|
145
|
-
return e;
|
|
146
|
-
};
|
|
147
|
-
}
|
|
148
|
-
function g(n, e) {
|
|
149
|
-
return function(i, t) {
|
|
150
|
-
return t.tokens[0] = l(n, e), i.next(), u(i, t);
|
|
151
|
-
};
|
|
152
|
-
}
|
|
153
|
-
var a = function(n, e) {
|
|
154
|
-
e.tokens.length > 1 && n.eat("$");
|
|
155
|
-
var i = n.next();
|
|
156
|
-
return /['"({]/.test(i) ? (e.tokens[0] = l(i, i == "(" ? "quote" : i == "{" ? "def" : "string"), u(n, e)) : (/\d/.test(i) || n.eatWhile(/\w/), e.tokens.shift(), "def");
|
|
157
|
-
};
|
|
158
|
-
function w(n) {
|
|
159
|
-
return function(e, i) {
|
|
160
|
-
return e.sol() && e.string == n && i.tokens.shift(), e.skipToEnd(), "string.special";
|
|
161
|
-
};
|
|
162
|
-
}
|
|
163
|
-
function u(n, e) {
|
|
164
|
-
return (e.tokens[0] || d)(n, e);
|
|
165
|
-
}
|
|
166
|
-
const v = {
|
|
167
|
-
name: "shell",
|
|
168
|
-
startState: function() {
|
|
169
|
-
return { tokens: [] };
|
|
170
|
-
},
|
|
171
|
-
token: function(n, e) {
|
|
172
|
-
return u(n, e);
|
|
173
|
-
},
|
|
174
|
-
languageData: {
|
|
175
|
-
autocomplete: k.concat(h, p),
|
|
176
|
-
closeBrackets: { brackets: ["(", "[", "{", "'", '"', "`"] },
|
|
177
|
-
commentTokens: { line: "#" }
|
|
178
|
-
}
|
|
179
|
-
};
|
|
180
|
-
export {
|
|
181
|
-
v as shell
|
|
182
|
-
};
|
package/dist/sieve-Bwz7vjP5.js
DELETED
|
@@ -1,72 +0,0 @@
|
|
|
1
|
-
function l(n) {
|
|
2
|
-
for (var e = {}, i = n.split(" "), r = 0; r < i.length; ++r) e[i[r]] = !0;
|
|
3
|
-
return e;
|
|
4
|
-
}
|
|
5
|
-
var f = l("if elsif else stop require"), p = l("true false not");
|
|
6
|
-
function t(n, e) {
|
|
7
|
-
var i = n.next();
|
|
8
|
-
if (i == "/" && n.eat("*"))
|
|
9
|
-
return e.tokenize = o, o(n, e);
|
|
10
|
-
if (i === "#")
|
|
11
|
-
return n.skipToEnd(), "comment";
|
|
12
|
-
if (i == '"')
|
|
13
|
-
return e.tokenize = d(i), e.tokenize(n, e);
|
|
14
|
-
if (i == "(")
|
|
15
|
-
return e._indent.push("("), e._indent.push("{"), null;
|
|
16
|
-
if (i === "{")
|
|
17
|
-
return e._indent.push("{"), null;
|
|
18
|
-
if (i == ")" && (e._indent.pop(), e._indent.pop()), i === "}")
|
|
19
|
-
return e._indent.pop(), null;
|
|
20
|
-
if (i == "," || i == ";" || /[{}\(\),;]/.test(i))
|
|
21
|
-
return null;
|
|
22
|
-
if (/\d/.test(i))
|
|
23
|
-
return n.eatWhile(/[\d]/), n.eat(/[KkMmGg]/), "number";
|
|
24
|
-
if (i == ":")
|
|
25
|
-
return n.eatWhile(/[a-zA-Z_]/), n.eatWhile(/[a-zA-Z0-9_]/), "operator";
|
|
26
|
-
n.eatWhile(/\w/);
|
|
27
|
-
var r = n.current();
|
|
28
|
-
return r == "text" && n.eat(":") ? (e.tokenize = k, "string") : f.propertyIsEnumerable(r) ? "keyword" : p.propertyIsEnumerable(r) ? "atom" : null;
|
|
29
|
-
}
|
|
30
|
-
function k(n, e) {
|
|
31
|
-
return e._multiLineString = !0, n.sol() ? (n.next() == "." && n.eol() && (e._multiLineString = !1, e.tokenize = t), "string") : (n.eatSpace(), n.peek() == "#" ? (n.skipToEnd(), "comment") : (n.skipToEnd(), "string"));
|
|
32
|
-
}
|
|
33
|
-
function o(n, e) {
|
|
34
|
-
for (var i = !1, r; (r = n.next()) != null; ) {
|
|
35
|
-
if (i && r == "/") {
|
|
36
|
-
e.tokenize = t;
|
|
37
|
-
break;
|
|
38
|
-
}
|
|
39
|
-
i = r == "*";
|
|
40
|
-
}
|
|
41
|
-
return "comment";
|
|
42
|
-
}
|
|
43
|
-
function d(n) {
|
|
44
|
-
return function(e, i) {
|
|
45
|
-
for (var r = !1, u; (u = e.next()) != null && !(u == n && !r); )
|
|
46
|
-
r = !r && u == "\\";
|
|
47
|
-
return r || (i.tokenize = t), "string";
|
|
48
|
-
};
|
|
49
|
-
}
|
|
50
|
-
const c = {
|
|
51
|
-
name: "sieve",
|
|
52
|
-
startState: function(n) {
|
|
53
|
-
return {
|
|
54
|
-
tokenize: t,
|
|
55
|
-
baseIndent: n || 0,
|
|
56
|
-
_indent: []
|
|
57
|
-
};
|
|
58
|
-
},
|
|
59
|
-
token: function(n, e) {
|
|
60
|
-
return n.eatSpace() ? null : (e.tokenize || t)(n, e);
|
|
61
|
-
},
|
|
62
|
-
indent: function(n, e, i) {
|
|
63
|
-
var r = n._indent.length;
|
|
64
|
-
return e && e[0] == "}" && r--, r < 0 && (r = 0), r * i.unit;
|
|
65
|
-
},
|
|
66
|
-
languageData: {
|
|
67
|
-
indentOnInput: /^\s*\}$/
|
|
68
|
-
}
|
|
69
|
-
};
|
|
70
|
-
export {
|
|
71
|
-
c as sieve
|
|
72
|
-
};
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
function k(n) {
|
|
2
|
-
c(n, "start");
|
|
3
|
-
var i = {}, e = n.languageData || {}, p = !1;
|
|
4
|
-
for (var d in n) if (d != e && n.hasOwnProperty(d))
|
|
5
|
-
for (var u = i[d] = [], r = n[d], t = 0; t < r.length; t++) {
|
|
6
|
-
var f = r[t];
|
|
7
|
-
u.push(new l(f, n)), (f.indent || f.dedent) && (p = !0);
|
|
8
|
-
}
|
|
9
|
-
return {
|
|
10
|
-
name: e.name,
|
|
11
|
-
startState: function() {
|
|
12
|
-
return { state: "start", pending: null, indent: p ? [] : null };
|
|
13
|
-
},
|
|
14
|
-
copyState: function(o) {
|
|
15
|
-
var g = { state: o.state, pending: o.pending, indent: o.indent && o.indent.slice(0) };
|
|
16
|
-
return o.stack && (g.stack = o.stack.slice(0)), g;
|
|
17
|
-
},
|
|
18
|
-
token: s(i),
|
|
19
|
-
indent: x(i, e),
|
|
20
|
-
languageData: e
|
|
21
|
-
};
|
|
22
|
-
}
|
|
23
|
-
function c(n, i) {
|
|
24
|
-
if (!n.hasOwnProperty(i))
|
|
25
|
-
throw new Error("Undefined state " + i + " in simple mode");
|
|
26
|
-
}
|
|
27
|
-
function h(n, i) {
|
|
28
|
-
if (!n) return /(?:)/;
|
|
29
|
-
var e = "";
|
|
30
|
-
return n instanceof RegExp ? (n.ignoreCase && (e = "i"), n = n.source) : n = String(n), new RegExp("^(?:" + n + ")", e);
|
|
31
|
-
}
|
|
32
|
-
function a(n) {
|
|
33
|
-
if (!n) return null;
|
|
34
|
-
if (n.apply) return n;
|
|
35
|
-
if (typeof n == "string") return n.replace(/\./g, " ");
|
|
36
|
-
for (var i = [], e = 0; e < n.length; e++)
|
|
37
|
-
i.push(n[e] && n[e].replace(/\./g, " "));
|
|
38
|
-
return i;
|
|
39
|
-
}
|
|
40
|
-
function l(n, i) {
|
|
41
|
-
(n.next || n.push) && c(i, n.next || n.push), this.regex = h(n.regex), this.token = a(n.token), this.data = n;
|
|
42
|
-
}
|
|
43
|
-
function s(n) {
|
|
44
|
-
return function(i, e) {
|
|
45
|
-
if (e.pending) {
|
|
46
|
-
var p = e.pending.shift();
|
|
47
|
-
return e.pending.length == 0 && (e.pending = null), i.pos += p.text.length, p.token;
|
|
48
|
-
}
|
|
49
|
-
for (var d = n[e.state], u = 0; u < d.length; u++) {
|
|
50
|
-
var r = d[u], t = (!r.data.sol || i.sol()) && i.match(r.regex);
|
|
51
|
-
if (t) {
|
|
52
|
-
r.data.next ? e.state = r.data.next : r.data.push ? ((e.stack || (e.stack = [])).push(e.state), e.state = r.data.push) : r.data.pop && e.stack && e.stack.length && (e.state = e.stack.pop()), r.data.indent && e.indent.push(i.indentation() + i.indentUnit), r.data.dedent && e.indent.pop();
|
|
53
|
-
var f = r.token;
|
|
54
|
-
if (f && f.apply && (f = f(t)), t.length > 2 && r.token && typeof r.token != "string") {
|
|
55
|
-
e.pending = [];
|
|
56
|
-
for (var o = 2; o < t.length; o++)
|
|
57
|
-
t[o] && e.pending.push({ text: t[o], token: r.token[o - 1] });
|
|
58
|
-
return i.backUp(t[0].length - (t[1] ? t[1].length : 0)), f[0];
|
|
59
|
-
} else return f && f.join ? f[0] : f;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
return i.next(), null;
|
|
63
|
-
};
|
|
64
|
-
}
|
|
65
|
-
function x(n, i) {
|
|
66
|
-
return function(e, p) {
|
|
67
|
-
if (e.indent == null || i.dontIndentStates && i.dontIndentStates.indexOf(e.state) > -1)
|
|
68
|
-
return null;
|
|
69
|
-
var d = e.indent.length - 1, u = n[e.state];
|
|
70
|
-
n: for (; ; ) {
|
|
71
|
-
for (var r = 0; r < u.length; r++) {
|
|
72
|
-
var t = u[r];
|
|
73
|
-
if (t.data.dedent && t.data.dedentIfLineStart !== !1) {
|
|
74
|
-
var f = t.regex.exec(p);
|
|
75
|
-
if (f && f[0]) {
|
|
76
|
-
d--, (t.next || t.push) && (u = n[t.next || t.push]), p = p.slice(f[0].length);
|
|
77
|
-
continue n;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
}
|
|
81
|
-
break;
|
|
82
|
-
}
|
|
83
|
-
return d < 0 ? 0 : e.indent[d];
|
|
84
|
-
};
|
|
85
|
-
}
|
|
86
|
-
export {
|
|
87
|
-
k as s
|
|
88
|
-
};
|