@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
package/dist/framework.js
DELETED
|
@@ -1,279 +0,0 @@
|
|
|
1
|
-
import "vue-router";
|
|
2
|
-
import { d2 as o, aL as n, bK as c, Q as r, bL as d, bM as l, by as u, R as p, S as b, dc as g, db as y, de as m, dd as S, bw as V, bz as I, z as h, T as C, B as D, cV as P, bA as A, bN as L, bO as R, dD as f, dS as M, bP as B, bQ as v, bR as T, bS as w, U as E, X as N, Y as O, Z as U, $ as K, bT as x, bU as F, bV as k, a0 as W, D as q, dO as z, bB as j, bW as H, a1 as J, a2 as G, dN as _, dk as Q, dj as X, A as Y, bX as Z, cW as $, bC as aa, bY as sa, bZ as ea, b_ as ta, b$ as ia, c0 as oa, c1 as na, c2 as ca, cY as ra, c3 as da, c4 as la, c5 as ua, cX as pa, c6 as ba, dx as ga, dK as ya, bx as ma, c7 as Sa, d8 as Va, a3 as Ia, dM as ha, G as Ca, a4 as Da, c8 as Pa, c9 as Aa, dP as La, ca as Ra, bD as fa, cb as Ma, cZ as Ba, cc as va, cd as Ta, dE as wa, ce as Ea, cf as Na, cg as Oa, ch as Ua, bE as Ka, ci as xa, dQ as Fa, cj as ka, ck as Wa, a5 as qa, a6 as za, M as ja, a7 as Ha, cl as Ja, cm as Ga, cn as _a, co as Qa, bF as Xa, dt as Ya, dG as Za, dH as $a, y as as, cp as ss, cq as es, bG as ts, cr as is, c_ as os, a8 as ns, cs, ct as rs, cu as ds, c$ as ls, a9 as us, aa as ps, cv as bs, cw as gs, ab as ys, ac as ms, ad as Ss, cx as Vs, cy as Is, d0 as hs, cz as Cs, bH as Ds, cA as Ps, cB as As, dR as Ls, cC as Rs, cD as fs, cE as Ms, cF as Bs, ae as vs, bI as Ts, cG as ws, cH as Es, bJ as Ns, cI as Os, af as Us, dL as Ks, da as xs, ag as Fs, dI as ks, cJ as Ws, cK as qs, cL as zs, d1 as js, cM as Hs, cN as Js, dJ as Gs, cO as _s, cP as Qs, dF as Xs, cQ as Ys, cR as Zs, cS as $s, cT as ae, aK as se, dm as ee, dl as te, F as ie, aM as oe, dr as ne, dq as ce, au as re, H as de, V as le, aJ as ue, J as pe, K as be, aN as ge, av as ye, aH as me, ax as Se, aw as Ve, aO as Ie, O as he, P as Ce, ai as De, ay as Pe, az as Ae, aj as Le, ak as Re, al as fe, aP as Me, aG as Be, aA as ve, aB as Te, aQ as we, dA as Ee, dz as Ne, am as Oe, aI as Ue, aC as Ke, an as xe, aD as Fe, _ as ke, aE as We, ao as qe, ap as ze, aq as je, aR as He, aF as Je, at as Ge, ar as _e, as as Qe, cU as Xe, ah as Ye, W as Ze, b2 as $e, bl as at, be as st, bk as et, bm as tt, dp as it, d3 as ot, d6 as nt, bo as ct, df as rt, br as dt, bn as lt, w as ut, bq as pt, bj as bt, d7 as gt, dC as yt, bh as mt, d4 as St, d5 as Vt, d9 as It, bf as ht, bi as Ct, bg as Dt, x as Pt, dw as At, bv as Lt, dy as Rt, bb as ft, b0 as Mt, b8 as Bt, bd as vt, bs as Tt, ba as wt, bu as Et, bt as Nt, aY as Ot, b6 as Ut, dn as Kt, a$ as xt, aX as Ft, b3 as kt, ds as Wt, b5 as qt, du as zt, bc as jt, dh as Ht, bp as Jt, dg as Gt, a_ as _t, aS as Qt, dv as Xt, b4 as Yt, di as Zt, aZ as $t, b1 as ai, aU as si, aW as ei, dB as ti, aV as ii, b7 as oi, aT as ni, b9 as ci } from "./index-CHqWKNbd.js";
|
|
3
|
-
import "vue";
|
|
4
|
-
import "vee-validate";
|
|
5
|
-
export {
|
|
6
|
-
o as ApiException,
|
|
7
|
-
n as AppBarButtonTemplate,
|
|
8
|
-
c as AppDescriptor,
|
|
9
|
-
r as AppWindowIcon,
|
|
10
|
-
d as ApplicationUser,
|
|
11
|
-
l as ApplicationUserLogin,
|
|
12
|
-
u as AppsClient,
|
|
13
|
-
p as ArrowLeftIcon,
|
|
14
|
-
b as ArrowRightIcon,
|
|
15
|
-
g as AssetsDetails,
|
|
16
|
-
y as AssetsDetailsModule,
|
|
17
|
-
m as AssetsManager,
|
|
18
|
-
S as AssetsManagerModule,
|
|
19
|
-
V as AuthApiBase,
|
|
20
|
-
I as AuthorizationClient,
|
|
21
|
-
h as BLADE_BACK_BUTTON,
|
|
22
|
-
C as BellIcon,
|
|
23
|
-
D as BladeInstance,
|
|
24
|
-
P as Body,
|
|
25
|
-
A as ChangeLogClient,
|
|
26
|
-
L as ChangeLogSearchCriteria,
|
|
27
|
-
R as ChangeLogSearchResult,
|
|
28
|
-
f as ChangePassword,
|
|
29
|
-
M as ChangePasswordPage,
|
|
30
|
-
B as ChangePasswordRequest,
|
|
31
|
-
v as ChangedEntitiesRequest,
|
|
32
|
-
T as ChangedEntitiesResponse,
|
|
33
|
-
w as ChangedEntity,
|
|
34
|
-
E as ChevronDownIcon,
|
|
35
|
-
N as ChevronLeftIcon,
|
|
36
|
-
O as ChevronRightIcon,
|
|
37
|
-
U as ChevronUpIcon,
|
|
38
|
-
K as CircleDotsIcon,
|
|
39
|
-
x as Claim,
|
|
40
|
-
F as ClaimsIdentity,
|
|
41
|
-
k as ConfirmEmailRequest,
|
|
42
|
-
W as CrossSignIcon,
|
|
43
|
-
q as DashboardServiceKey,
|
|
44
|
-
z as DashboardWidgetCard,
|
|
45
|
-
j as DiagnosticsClient,
|
|
46
|
-
H as DictionaryItem,
|
|
47
|
-
J as DoubleArrowLeftIcon,
|
|
48
|
-
G as DoubleArrowRightIcon,
|
|
49
|
-
_ as DraggableDashboard,
|
|
50
|
-
Q as DynamicBladeForm,
|
|
51
|
-
X as DynamicBladeList,
|
|
52
|
-
Y as DynamicModulesKey,
|
|
53
|
-
Z as DynamicObjectProperty,
|
|
54
|
-
$ as DynamicObjectPropertyValueType,
|
|
55
|
-
aa as DynamicPropertiesClient,
|
|
56
|
-
sa as DynamicProperty,
|
|
57
|
-
ea as DynamicPropertyDictionaryItem,
|
|
58
|
-
ta as DynamicPropertyDictionaryItemName,
|
|
59
|
-
ia as DynamicPropertyDictionaryItemSearchCriteria,
|
|
60
|
-
oa as DynamicPropertyDictionaryItemSearchResult,
|
|
61
|
-
na as DynamicPropertyName,
|
|
62
|
-
ca as DynamicPropertyObjectValue,
|
|
63
|
-
ra as DynamicPropertyObjectValueValueType,
|
|
64
|
-
da as DynamicPropertySearchCriteria,
|
|
65
|
-
la as DynamicPropertySearchResult,
|
|
66
|
-
ua as DynamicPropertyValueType,
|
|
67
|
-
pa as DynamicPropertyValueType2,
|
|
68
|
-
ba as EntryState,
|
|
69
|
-
ga as ErrorInterceptor,
|
|
70
|
-
ya as ExternalProviders,
|
|
71
|
-
ma as ExternalSignInClient,
|
|
72
|
-
Sa as ExternalSignInProviderInfo,
|
|
73
|
-
Va as FALLBACK_BLADE_ID,
|
|
74
|
-
Ia as FulfillmentCentersIcon,
|
|
75
|
-
ha as GenericDropdown,
|
|
76
|
-
Ca as GlobalSearchKey,
|
|
77
|
-
Da as GridDotsIcon,
|
|
78
|
-
Pa as IdentityError,
|
|
79
|
-
Aa as IdentityResult,
|
|
80
|
-
La as Invite,
|
|
81
|
-
Ra as Job,
|
|
82
|
-
fa as JobsClient,
|
|
83
|
-
Ma as JsonElement,
|
|
84
|
-
Ba as JsonElementValueKind,
|
|
85
|
-
va as JsonValueKind,
|
|
86
|
-
Ta as KeyValue,
|
|
87
|
-
wa as LanguageSelector,
|
|
88
|
-
Ea as LastModifiedResponse,
|
|
89
|
-
Na as License,
|
|
90
|
-
Oa as LocalizableSetting,
|
|
91
|
-
Ua as LocalizableSettingsAndLanguages,
|
|
92
|
-
Ka as LocalizableSettingsClient,
|
|
93
|
-
xa as LocalizedValue,
|
|
94
|
-
Fa as Login,
|
|
95
|
-
ka as LoginRequest,
|
|
96
|
-
Wa as LoginType,
|
|
97
|
-
qa as LogoutIcon,
|
|
98
|
-
za as MenuBurgerIcon,
|
|
99
|
-
ja as MenuServiceKey,
|
|
100
|
-
Ha as MinusSignIcon,
|
|
101
|
-
Ja as ModuleAutoInstallPushNotification,
|
|
102
|
-
Ga as ModuleDescriptor,
|
|
103
|
-
_a as ModuleIdentity,
|
|
104
|
-
Qa as ModulePushNotification,
|
|
105
|
-
Xa as ModulesClient,
|
|
106
|
-
Ya as NotificationContainer,
|
|
107
|
-
Za as NotificationDropdown,
|
|
108
|
-
$a as NotificationTemplate,
|
|
109
|
-
as as NotificationTemplatesSymbol,
|
|
110
|
-
ss as OAuthAppSearchCriteria,
|
|
111
|
-
es as OAuthAppSearchResult,
|
|
112
|
-
ts as OAuthAppsClient,
|
|
113
|
-
is as ObjectSettingEntry,
|
|
114
|
-
os as ObjectSettingEntryValueType,
|
|
115
|
-
ns as OffersIcon,
|
|
116
|
-
cs as OpenIddictApplicationDescriptor,
|
|
117
|
-
rs as OpenIddictResponse,
|
|
118
|
-
ds as OperationLog,
|
|
119
|
-
ls as OperationLogOperationType,
|
|
120
|
-
us as OrdersIcon,
|
|
121
|
-
ps as PeopleIcon,
|
|
122
|
-
bs as Permission,
|
|
123
|
-
gs as PermissionScope,
|
|
124
|
-
ys as PlusSignIcon,
|
|
125
|
-
ms as ProductsIcon,
|
|
126
|
-
Ss as ProfileIcon,
|
|
127
|
-
Vs as ProgressMessage,
|
|
128
|
-
Is as ProgressMessageLevel,
|
|
129
|
-
hs as ProgressMessageLevel2,
|
|
130
|
-
Cs as PushNotification,
|
|
131
|
-
Ds as PushNotificationClient,
|
|
132
|
-
Ps as PushNotificationSearchCriteria,
|
|
133
|
-
As as PushNotificationSearchResult,
|
|
134
|
-
Ls as ResetPassword,
|
|
135
|
-
Rs as ResetPasswordConfirmRequest,
|
|
136
|
-
fs as Role,
|
|
137
|
-
Ms as RoleSearchCriteria,
|
|
138
|
-
Bs as RoleSearchResult,
|
|
139
|
-
vs as SearchIcon,
|
|
140
|
-
Ts as SecurityClient,
|
|
141
|
-
ws as SecurityResult,
|
|
142
|
-
Es as SemanticVersion,
|
|
143
|
-
Ns as SettingClient,
|
|
144
|
-
Os as SettingValueType,
|
|
145
|
-
Us as SettingsBoltIcon,
|
|
146
|
-
Ks as SettingsMenuItem,
|
|
147
|
-
xs as SharedModule,
|
|
148
|
-
Fs as ShoppingCardIcon,
|
|
149
|
-
ks as Sidebar,
|
|
150
|
-
Ws as SignInResult,
|
|
151
|
-
qs as SortDirection,
|
|
152
|
-
zs as SortInfo,
|
|
153
|
-
js as SortInfoSortDirection,
|
|
154
|
-
Hs as StringIdentityUserRole,
|
|
155
|
-
Js as SystemInfo,
|
|
156
|
-
Gs as ThemeSelector,
|
|
157
|
-
_s as UserApiKey,
|
|
158
|
-
Qs as UserDetail,
|
|
159
|
-
Xs as UserDropdownButton,
|
|
160
|
-
Ys as UserLockedResult,
|
|
161
|
-
Zs as UserSearchCriteria,
|
|
162
|
-
$s as UserSearchResult,
|
|
163
|
-
ae as ValidatePasswordResetTokenRequest,
|
|
164
|
-
se as VcApp,
|
|
165
|
-
ee as VcAppSwitcher,
|
|
166
|
-
te as VcAppSwitcherComponent,
|
|
167
|
-
ie as VcBadge,
|
|
168
|
-
oe as VcBlade,
|
|
169
|
-
ne as VcBladeNavigation,
|
|
170
|
-
ce as VcBladeNavigationComponent,
|
|
171
|
-
re as VcBreadcrumbs,
|
|
172
|
-
de as VcButton,
|
|
173
|
-
le as VcCard,
|
|
174
|
-
ue as VcCheckbox,
|
|
175
|
-
pe as VcCol,
|
|
176
|
-
be as VcContainer,
|
|
177
|
-
ge as VcDynamicProperty,
|
|
178
|
-
ye as VcEditor,
|
|
179
|
-
me as VcField,
|
|
180
|
-
Se as VcFileUpload,
|
|
181
|
-
Ve as VcForm,
|
|
182
|
-
Ie as VcGallery,
|
|
183
|
-
he as VcHint,
|
|
184
|
-
Ce as VcIcon,
|
|
185
|
-
De as VcImage,
|
|
186
|
-
Pe as VcInput,
|
|
187
|
-
Ae as VcInputCurrency,
|
|
188
|
-
Le as VcLabel,
|
|
189
|
-
Re as VcLink,
|
|
190
|
-
fe as VcLoading,
|
|
191
|
-
Me as VcLoginForm,
|
|
192
|
-
Be as VcMultivalue,
|
|
193
|
-
ve as VcNotification,
|
|
194
|
-
Te as VcPagination,
|
|
195
|
-
we as VcPopup,
|
|
196
|
-
Ee as VcPopupContainer,
|
|
197
|
-
Ne as VcPopupHandler,
|
|
198
|
-
Oe as VcProgress,
|
|
199
|
-
Ue as VcRadioButton,
|
|
200
|
-
Ke as VcRating,
|
|
201
|
-
xe as VcRow,
|
|
202
|
-
Fe as VcSelect,
|
|
203
|
-
ke as VcSkeleton,
|
|
204
|
-
We as VcSlider,
|
|
205
|
-
qe as VcStatus,
|
|
206
|
-
ze as VcStatusIcon,
|
|
207
|
-
je as VcSwitch,
|
|
208
|
-
He as VcTable,
|
|
209
|
-
Je as VcTextarea,
|
|
210
|
-
Ge as VcTooltip,
|
|
211
|
-
_e as VcVideo,
|
|
212
|
-
Qe as VcWidget,
|
|
213
|
-
Xe as VerifyTokenRequest,
|
|
214
|
-
Ye as VertDotsIcon,
|
|
215
|
-
Ze as WidgetServiceKey,
|
|
216
|
-
$e as addMenuItem,
|
|
217
|
-
at as after,
|
|
218
|
-
st as autofocus,
|
|
219
|
-
et as before,
|
|
220
|
-
tt as bigInt,
|
|
221
|
-
it as bladeNavigationInstance,
|
|
222
|
-
ot as camelToSnake,
|
|
223
|
-
nt as camelize,
|
|
224
|
-
ct as createAppModule,
|
|
225
|
-
rt as createDynamicAppModule,
|
|
226
|
-
dt as createExtensionsHelper,
|
|
227
|
-
lt as createModule,
|
|
228
|
-
ut as default,
|
|
229
|
-
pt as extensionsHelperSymbol,
|
|
230
|
-
bt as fileWeight,
|
|
231
|
-
gt as generateId,
|
|
232
|
-
yt as getPopupPlugin,
|
|
233
|
-
mt as i18n,
|
|
234
|
-
St as kebabToCamel,
|
|
235
|
-
Vt as kebabToPascal,
|
|
236
|
-
It as languageToCountryMap,
|
|
237
|
-
ht as loading,
|
|
238
|
-
Ct as mindimensions,
|
|
239
|
-
Dt as moment,
|
|
240
|
-
Pt as navigationViewLocation,
|
|
241
|
-
At as notification,
|
|
242
|
-
Lt as permissions,
|
|
243
|
-
Rt as popupPluginInstance,
|
|
244
|
-
ft as provideDashboardService,
|
|
245
|
-
Mt as provideMenuService,
|
|
246
|
-
Bt as provideWidgetService,
|
|
247
|
-
vt as registerDashboardWidget,
|
|
248
|
-
Tt as registerModuleExtensions,
|
|
249
|
-
wt as registerWidget,
|
|
250
|
-
Et as signalR,
|
|
251
|
-
Nt as updateSignalRCreatorSymbol,
|
|
252
|
-
Ot as useApiClient,
|
|
253
|
-
Ut as useAppInsights,
|
|
254
|
-
Kt as useAppSwitcher,
|
|
255
|
-
xt as useAssets,
|
|
256
|
-
Ft as useAsync,
|
|
257
|
-
kt as useBeforeUnload,
|
|
258
|
-
Wt as useBladeNavigation,
|
|
259
|
-
qt as useBreadcrumbs,
|
|
260
|
-
zt as useContainer,
|
|
261
|
-
jt as useDashboard,
|
|
262
|
-
Ht as useDetailsFactory,
|
|
263
|
-
Jt as useDynamicModules,
|
|
264
|
-
Gt as useDynamicViewsUtils,
|
|
265
|
-
_t as useErrorHandler,
|
|
266
|
-
Qt as useFunctions,
|
|
267
|
-
Xt as useInstance,
|
|
268
|
-
Yt as useLanguages,
|
|
269
|
-
Zt as useListFactory,
|
|
270
|
-
$t as useLoading,
|
|
271
|
-
ai as useMenuService,
|
|
272
|
-
si as useNotifications,
|
|
273
|
-
ei as usePermissions,
|
|
274
|
-
ti as usePopup,
|
|
275
|
-
ii as useSettings,
|
|
276
|
-
oi as useTheme,
|
|
277
|
-
ni as useUser,
|
|
278
|
-
ci as useWidgets
|
|
279
|
-
};
|
package/dist/gas-BdfkXJT_.js
DELETED
|
@@ -1,183 +0,0 @@
|
|
|
1
|
-
function v(r) {
|
|
2
|
-
var u = [], b = "", o = {
|
|
3
|
-
".abort": "builtin",
|
|
4
|
-
".align": "builtin",
|
|
5
|
-
".altmacro": "builtin",
|
|
6
|
-
".ascii": "builtin",
|
|
7
|
-
".asciz": "builtin",
|
|
8
|
-
".balign": "builtin",
|
|
9
|
-
".balignw": "builtin",
|
|
10
|
-
".balignl": "builtin",
|
|
11
|
-
".bundle_align_mode": "builtin",
|
|
12
|
-
".bundle_lock": "builtin",
|
|
13
|
-
".bundle_unlock": "builtin",
|
|
14
|
-
".byte": "builtin",
|
|
15
|
-
".cfi_startproc": "builtin",
|
|
16
|
-
".comm": "builtin",
|
|
17
|
-
".data": "builtin",
|
|
18
|
-
".def": "builtin",
|
|
19
|
-
".desc": "builtin",
|
|
20
|
-
".dim": "builtin",
|
|
21
|
-
".double": "builtin",
|
|
22
|
-
".eject": "builtin",
|
|
23
|
-
".else": "builtin",
|
|
24
|
-
".elseif": "builtin",
|
|
25
|
-
".end": "builtin",
|
|
26
|
-
".endef": "builtin",
|
|
27
|
-
".endfunc": "builtin",
|
|
28
|
-
".endif": "builtin",
|
|
29
|
-
".equ": "builtin",
|
|
30
|
-
".equiv": "builtin",
|
|
31
|
-
".eqv": "builtin",
|
|
32
|
-
".err": "builtin",
|
|
33
|
-
".error": "builtin",
|
|
34
|
-
".exitm": "builtin",
|
|
35
|
-
".extern": "builtin",
|
|
36
|
-
".fail": "builtin",
|
|
37
|
-
".file": "builtin",
|
|
38
|
-
".fill": "builtin",
|
|
39
|
-
".float": "builtin",
|
|
40
|
-
".func": "builtin",
|
|
41
|
-
".global": "builtin",
|
|
42
|
-
".gnu_attribute": "builtin",
|
|
43
|
-
".hidden": "builtin",
|
|
44
|
-
".hword": "builtin",
|
|
45
|
-
".ident": "builtin",
|
|
46
|
-
".if": "builtin",
|
|
47
|
-
".incbin": "builtin",
|
|
48
|
-
".include": "builtin",
|
|
49
|
-
".int": "builtin",
|
|
50
|
-
".internal": "builtin",
|
|
51
|
-
".irp": "builtin",
|
|
52
|
-
".irpc": "builtin",
|
|
53
|
-
".lcomm": "builtin",
|
|
54
|
-
".lflags": "builtin",
|
|
55
|
-
".line": "builtin",
|
|
56
|
-
".linkonce": "builtin",
|
|
57
|
-
".list": "builtin",
|
|
58
|
-
".ln": "builtin",
|
|
59
|
-
".loc": "builtin",
|
|
60
|
-
".loc_mark_labels": "builtin",
|
|
61
|
-
".local": "builtin",
|
|
62
|
-
".long": "builtin",
|
|
63
|
-
".macro": "builtin",
|
|
64
|
-
".mri": "builtin",
|
|
65
|
-
".noaltmacro": "builtin",
|
|
66
|
-
".nolist": "builtin",
|
|
67
|
-
".octa": "builtin",
|
|
68
|
-
".offset": "builtin",
|
|
69
|
-
".org": "builtin",
|
|
70
|
-
".p2align": "builtin",
|
|
71
|
-
".popsection": "builtin",
|
|
72
|
-
".previous": "builtin",
|
|
73
|
-
".print": "builtin",
|
|
74
|
-
".protected": "builtin",
|
|
75
|
-
".psize": "builtin",
|
|
76
|
-
".purgem": "builtin",
|
|
77
|
-
".pushsection": "builtin",
|
|
78
|
-
".quad": "builtin",
|
|
79
|
-
".reloc": "builtin",
|
|
80
|
-
".rept": "builtin",
|
|
81
|
-
".sbttl": "builtin",
|
|
82
|
-
".scl": "builtin",
|
|
83
|
-
".section": "builtin",
|
|
84
|
-
".set": "builtin",
|
|
85
|
-
".short": "builtin",
|
|
86
|
-
".single": "builtin",
|
|
87
|
-
".size": "builtin",
|
|
88
|
-
".skip": "builtin",
|
|
89
|
-
".sleb128": "builtin",
|
|
90
|
-
".space": "builtin",
|
|
91
|
-
".stab": "builtin",
|
|
92
|
-
".string": "builtin",
|
|
93
|
-
".struct": "builtin",
|
|
94
|
-
".subsection": "builtin",
|
|
95
|
-
".symver": "builtin",
|
|
96
|
-
".tag": "builtin",
|
|
97
|
-
".text": "builtin",
|
|
98
|
-
".title": "builtin",
|
|
99
|
-
".type": "builtin",
|
|
100
|
-
".uleb128": "builtin",
|
|
101
|
-
".val": "builtin",
|
|
102
|
-
".version": "builtin",
|
|
103
|
-
".vtable_entry": "builtin",
|
|
104
|
-
".vtable_inherit": "builtin",
|
|
105
|
-
".warning": "builtin",
|
|
106
|
-
".weak": "builtin",
|
|
107
|
-
".weakref": "builtin",
|
|
108
|
-
".word": "builtin"
|
|
109
|
-
}, i = {};
|
|
110
|
-
function p() {
|
|
111
|
-
b = "#", i.al = "variable", i.ah = "variable", i.ax = "variable", i.eax = "variableName.special", i.rax = "variableName.special", i.bl = "variable", i.bh = "variable", i.bx = "variable", i.ebx = "variableName.special", i.rbx = "variableName.special", i.cl = "variable", i.ch = "variable", i.cx = "variable", i.ecx = "variableName.special", i.rcx = "variableName.special", i.dl = "variable", i.dh = "variable", i.dx = "variable", i.edx = "variableName.special", i.rdx = "variableName.special", i.si = "variable", i.esi = "variableName.special", i.rsi = "variableName.special", i.di = "variable", i.edi = "variableName.special", i.rdi = "variableName.special", i.sp = "variable", i.esp = "variableName.special", i.rsp = "variableName.special", i.bp = "variable", i.ebp = "variableName.special", i.rbp = "variableName.special", i.ip = "variable", i.eip = "variableName.special", i.rip = "variableName.special", i.cs = "keyword", i.ds = "keyword", i.ss = "keyword", i.es = "keyword", i.fs = "keyword", i.gs = "keyword";
|
|
112
|
-
}
|
|
113
|
-
function f() {
|
|
114
|
-
b = "@", o.syntax = "builtin", i.r0 = "variable", i.r1 = "variable", i.r2 = "variable", i.r3 = "variable", i.r4 = "variable", i.r5 = "variable", i.r6 = "variable", i.r7 = "variable", i.r8 = "variable", i.r9 = "variable", i.r10 = "variable", i.r11 = "variable", i.r12 = "variable", i.sp = "variableName.special", i.lr = "variableName.special", i.pc = "variableName.special", i.r13 = i.sp, i.r14 = i.lr, i.r15 = i.pc, u.push(function(l, n) {
|
|
115
|
-
if (l === "#")
|
|
116
|
-
return n.eatWhile(/\w/), "number";
|
|
117
|
-
});
|
|
118
|
-
}
|
|
119
|
-
r === "x86" ? p() : (r === "arm" || r === "armv6") && f();
|
|
120
|
-
function d(l, n) {
|
|
121
|
-
for (var e = !1, a; (a = l.next()) != null; ) {
|
|
122
|
-
if (a === n && !e)
|
|
123
|
-
return !1;
|
|
124
|
-
e = !e && a === "\\";
|
|
125
|
-
}
|
|
126
|
-
return e;
|
|
127
|
-
}
|
|
128
|
-
function s(l, n) {
|
|
129
|
-
for (var e = !1, a; (a = l.next()) != null; ) {
|
|
130
|
-
if (a === "/" && e) {
|
|
131
|
-
n.tokenize = null;
|
|
132
|
-
break;
|
|
133
|
-
}
|
|
134
|
-
e = a === "*";
|
|
135
|
-
}
|
|
136
|
-
return "comment";
|
|
137
|
-
}
|
|
138
|
-
return {
|
|
139
|
-
name: "gas",
|
|
140
|
-
startState: function() {
|
|
141
|
-
return {
|
|
142
|
-
tokenize: null
|
|
143
|
-
};
|
|
144
|
-
},
|
|
145
|
-
token: function(l, n) {
|
|
146
|
-
if (n.tokenize)
|
|
147
|
-
return n.tokenize(l, n);
|
|
148
|
-
if (l.eatSpace())
|
|
149
|
-
return null;
|
|
150
|
-
var e, a, t = l.next();
|
|
151
|
-
if (t === "/" && l.eat("*"))
|
|
152
|
-
return n.tokenize = s, s(l, n);
|
|
153
|
-
if (t === b)
|
|
154
|
-
return l.skipToEnd(), "comment";
|
|
155
|
-
if (t === '"')
|
|
156
|
-
return d(l, '"'), "string";
|
|
157
|
-
if (t === ".")
|
|
158
|
-
return l.eatWhile(/\w/), a = l.current().toLowerCase(), e = o[a], e || null;
|
|
159
|
-
if (t === "=")
|
|
160
|
-
return l.eatWhile(/\w/), "tag";
|
|
161
|
-
if (t === "{" || t === "}")
|
|
162
|
-
return "bracket";
|
|
163
|
-
if (/\d/.test(t))
|
|
164
|
-
return t === "0" && l.eat("x") ? (l.eatWhile(/[0-9a-fA-F]/), "number") : (l.eatWhile(/\d/), "number");
|
|
165
|
-
if (/\w/.test(t))
|
|
166
|
-
return l.eatWhile(/\w/), l.eat(":") ? "tag" : (a = l.current().toLowerCase(), e = i[a], e || null);
|
|
167
|
-
for (var c = 0; c < u.length; c++)
|
|
168
|
-
if (e = u[c](t, l, n), e)
|
|
169
|
-
return e;
|
|
170
|
-
},
|
|
171
|
-
languageData: {
|
|
172
|
-
commentTokens: {
|
|
173
|
-
line: b,
|
|
174
|
-
block: { open: "/*", close: "*/" }
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
};
|
|
178
|
-
}
|
|
179
|
-
const m = v("x86"), g = v("arm");
|
|
180
|
-
export {
|
|
181
|
-
m as gas,
|
|
182
|
-
g as gasArm
|
|
183
|
-
};
|
package/dist/gherkin-CJuwpceU.js
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
const a = {
|
|
2
|
-
name: "gherkin",
|
|
3
|
-
startState: function() {
|
|
4
|
-
return {
|
|
5
|
-
lineNumber: 0,
|
|
6
|
-
tableHeaderLine: !1,
|
|
7
|
-
allowFeature: !0,
|
|
8
|
-
allowBackground: !1,
|
|
9
|
-
allowScenario: !1,
|
|
10
|
-
allowSteps: !1,
|
|
11
|
-
allowPlaceholders: !1,
|
|
12
|
-
allowMultilineArgument: !1,
|
|
13
|
-
inMultilineString: !1,
|
|
14
|
-
inMultilineTable: !1,
|
|
15
|
-
inKeywordLine: !1
|
|
16
|
-
};
|
|
17
|
-
},
|
|
18
|
-
token: function(n, e) {
|
|
19
|
-
if (n.sol() && (e.lineNumber++, e.inKeywordLine = !1, e.inMultilineTable && (e.tableHeaderLine = !1, n.match(/\s*\|/, !1) || (e.allowMultilineArgument = !1, e.inMultilineTable = !1))), n.eatSpace(), e.allowMultilineArgument) {
|
|
20
|
-
if (e.inMultilineString)
|
|
21
|
-
return n.match('"""') ? (e.inMultilineString = !1, e.allowMultilineArgument = !1) : n.match(/.*/), "string";
|
|
22
|
-
if (e.inMultilineTable)
|
|
23
|
-
return n.match(/\|\s*/) ? "bracket" : (n.match(/[^\|]*/), e.tableHeaderLine ? "header" : "string");
|
|
24
|
-
if (n.match('"""'))
|
|
25
|
-
return e.inMultilineString = !0, "string";
|
|
26
|
-
if (n.match("|"))
|
|
27
|
-
return e.inMultilineTable = !0, e.tableHeaderLine = !0, "bracket";
|
|
28
|
-
}
|
|
29
|
-
return n.match(/#.*/) ? "comment" : !e.inKeywordLine && n.match(/@\S+/) ? "tag" : !e.inKeywordLine && e.allowFeature && n.match(/(機能|功能|フィーチャ|기능|โครงหลัก|ความสามารถ|ความต้องการทางธุรกิจ|ಹೆಚ್ಚಳ|గుణము|ਮੁਹਾਂਦਰਾ|ਨਕਸ਼ ਨੁਹਾਰ|ਖਾਸੀਅਤ|रूप लेख|وِیژگی|خاصية|תכונה|Функціонал|Функция|Функционалност|Функционал|Үзенчәлеклелек|Свойство|Особина|Мөмкинлек|Могућност|Λειτουργία|Δυνατότητα|Właściwość|Vlastnosť|Trajto|Tính năng|Savybė|Pretty much|Požiadavka|Požadavek|Potrzeba biznesowa|Özellik|Osobina|Ominaisuus|Omadus|OH HAI|Mogućnost|Mogucnost|Jellemző|Hwæt|Hwaet|Funzionalità|Funktionalitéit|Funktionalität|Funkcja|Funkcionalnost|Funkcionalitāte|Funkcia|Fungsi|Functionaliteit|Funcționalitate|Funcţionalitate|Functionalitate|Funcionalitat|Funcionalidade|Fonctionnalité|Fitur|Fīča|Feature|Eiginleiki|Egenskap|Egenskab|Característica|Caracteristica|Business Need|Aspekt|Arwedd|Ahoy matey!|Ability):/) ? (e.allowScenario = !0, e.allowBackground = !0, e.allowPlaceholders = !1, e.allowSteps = !1, e.allowMultilineArgument = !1, e.inKeywordLine = !0, "keyword") : !e.inKeywordLine && e.allowBackground && n.match(/(背景|배경|แนวคิด|ಹಿನ್ನೆಲೆ|నేపథ్యం|ਪਿਛੋਕੜ|पृष्ठभूमि|زمینه|الخلفية|רקע|Тарих|Предыстория|Предистория|Позадина|Передумова|Основа|Контекст|Кереш|Υπόβαθρο|Założenia|Yo\-ho\-ho|Tausta|Taust|Situācija|Rerefons|Pozadina|Pozadie|Pozadí|Osnova|Latar Belakang|Kontext|Konteksts|Kontekstas|Kontekst|Háttér|Hannergrond|Grundlage|Geçmiş|Fundo|Fono|First off|Dis is what went down|Dasar|Contexto|Contexte|Context|Contesto|Cenário de Fundo|Cenario de Fundo|Cefndir|Bối cảnh|Bakgrunnur|Bakgrunn|Bakgrund|Baggrund|Background|B4|Antecedents|Antecedentes|Ær|Aer|Achtergrond):/) ? (e.allowPlaceholders = !1, e.allowSteps = !0, e.allowBackground = !1, e.allowMultilineArgument = !1, e.inKeywordLine = !0, "keyword") : !e.inKeywordLine && e.allowScenario && n.match(/(場景大綱|场景大纲|劇本大綱|剧本大纲|テンプレ|シナリオテンプレート|シナリオテンプレ|シナリオアウトライン|시나리오 개요|สรุปเหตุการณ์|โครงสร้างของเหตุการณ์|ವಿವರಣೆ|కథనం|ਪਟਕਥਾ ਰੂਪ ਰੇਖਾ|ਪਟਕਥਾ ਢਾਂਚਾ|परिदृश्य रूपरेखा|سيناريو مخطط|الگوی سناریو|תבנית תרחיש|Сценарийның төзелеше|Сценарий структураси|Структура сценарію|Структура сценария|Структура сценарија|Скица|Рамка на сценарий|Концепт|Περιγραφή Σεναρίου|Wharrimean is|Template Situai|Template Senario|Template Keadaan|Tapausaihio|Szenariogrundriss|Szablon scenariusza|Swa hwær swa|Swa hwaer swa|Struktura scenarija|Structură scenariu|Structura scenariu|Skica|Skenario konsep|Shiver me timbers|Senaryo taslağı|Schema dello scenario|Scenariomall|Scenariomal|Scenario Template|Scenario Outline|Scenario Amlinellol|Scenārijs pēc parauga|Scenarijaus šablonas|Reckon it's like|Raamstsenaarium|Plang vum Szenario|Plan du Scénario|Plan du scénario|Osnova scénáře|Osnova Scenára|Náčrt Scenáru|Náčrt Scénáře|Náčrt Scenára|MISHUN SRSLY|Menggariskan Senario|Lýsing Dæma|Lýsing Atburðarásar|Konturo de la scenaro|Koncept|Khung tình huống|Khung kịch bản|Forgatókönyv vázlat|Esquema do Cenário|Esquema do Cenario|Esquema del escenario|Esquema de l'escenari|Esbozo do escenario|Delineação do Cenário|Delineacao do Cenario|All y'all|Abstrakt Scenario|Abstract Scenario):/) ? (e.allowPlaceholders = !0, e.allowSteps = !0, e.allowMultilineArgument = !1, e.inKeywordLine = !0, "keyword") : e.allowScenario && n.match(/(例子|例|サンプル|예|ชุดของเหตุการณ์|ชุดของตัวอย่าง|ಉದಾಹರಣೆಗಳು|ఉదాహరణలు|ਉਦਾਹਰਨਾਂ|उदाहरण|نمونه ها|امثلة|דוגמאות|Үрнәкләр|Сценарији|Примеры|Примери|Приклади|Мисоллар|Мисаллар|Σενάρια|Παραδείγματα|You'll wanna|Voorbeelden|Variantai|Tapaukset|Se þe|Se the|Se ðe|Scenarios|Scenariji|Scenarijai|Przykłady|Primjeri|Primeri|Příklady|Príklady|Piemēri|Példák|Pavyzdžiai|Paraugs|Örnekler|Juhtumid|Exemplos|Exemples|Exemple|Exempel|EXAMPLZ|Examples|Esempi|Enghreifftiau|Ekzemploj|Eksempler|Ejemplos|Dữ liệu|Dead men tell no tales|Dæmi|Contoh|Cenários|Cenarios|Beispiller|Beispiele|Atburðarásir):/) ? (e.allowPlaceholders = !1, e.allowSteps = !0, e.allowBackground = !1, e.allowMultilineArgument = !0, "keyword") : !e.inKeywordLine && e.allowScenario && n.match(/(場景|场景|劇本|剧本|シナリオ|시나리오|เหตุการณ์|ಕಥಾಸಾರಾಂಶ|సన్నివేశం|ਪਟਕਥਾ|परिदृश्य|سيناريو|سناریو|תרחיש|Сценарій|Сценарио|Сценарий|Пример|Σενάριο|Tình huống|The thing of it is|Tapaus|Szenario|Swa|Stsenaarium|Skenario|Situai|Senaryo|Senario|Scenaro|Scenariusz|Scenariu|Scénario|Scenario|Scenarijus|Scenārijs|Scenarij|Scenarie|Scénář|Scenár|Primer|MISHUN|Kịch bản|Keadaan|Heave to|Forgatókönyv|Escenario|Escenari|Cenário|Cenario|Awww, look mate|Atburðarás):/) ? (e.allowPlaceholders = !1, e.allowSteps = !0, e.allowBackground = !1, e.allowMultilineArgument = !1, e.inKeywordLine = !0, "keyword") : !e.inKeywordLine && e.allowSteps && n.match(/(那麼|那么|而且|當|当|并且|同時|同时|前提|假设|假設|假定|假如|但是|但し|並且|もし|ならば|ただし|しかし|かつ|하지만|조건|먼저|만일|만약|단|그리고|그러면|และ |เมื่อ |แต่ |ดังนั้น |กำหนดให้ |ಸ್ಥಿತಿಯನ್ನು |ಮತ್ತು |ನೀಡಿದ |ನಂತರ |ಆದರೆ |మరియు |చెప్పబడినది |కాని |ఈ పరిస్థితిలో |అప్పుడు |ਪਰ |ਤਦ |ਜੇਕਰ |ਜਿਵੇਂ ਕਿ |ਜਦੋਂ |ਅਤੇ |यदि |परन्तु |पर |तब |तदा |तथा |जब |चूंकि |किन्तु |कदा |और |अगर |و |هنگامی |متى |لكن |عندما |ثم |بفرض |با فرض |اما |اذاً |آنگاه |כאשר |וגם |בהינתן |אזי |אז |אבל |Якщо |Һәм |Унда |Тоді |Тогда |То |Также |Та |Пусть |Припустимо, що |Припустимо |Онда |Но |Нехай |Нәтиҗәдә |Лекин |Ләкин |Коли |Когда |Когато |Када |Кад |К тому же |І |И |Задато |Задати |Задате |Если |Допустим |Дано |Дадено |Вә |Ва |Бирок |Әмма |Әйтик |Әгәр |Аммо |Али |Але |Агар |А також |А |Τότε |Όταν |Και |Δεδομένου |Αλλά |Þurh |Þegar |Þa þe |Þá |Þa |Zatati |Zakładając |Zadato |Zadate |Zadano |Zadani |Zadan |Za předpokladu |Za predpokladu |Youse know when youse got |Youse know like when |Yna |Yeah nah |Y'know |Y |Wun |Wtedy |When y'all |When |Wenn |WEN |wann |Ve |Và |Und |Un |ugeholl |Too right |Thurh |Thì |Then y'all |Then |Tha the |Tha |Tetapi |Tapi |Tak |Tada |Tad |Stel |Soit |Siis |Și |Şi |Si |Sed |Se |Så |Quando |Quand |Quan |Pryd |Potom |Pokud |Pokiaľ |Però |Pero |Pak |Oraz |Onda |Ond |Oletetaan |Og |Och |O zaman |Niin |Nhưng |När |Når |Mutta |Men |Mas |Maka |Majd |Mając |Mais |Maar |mä |Ma |Lorsque |Lorsqu'|Logo |Let go and haul |Kun |Kuid |Kui |Kiedy |Khi |Ketika |Kemudian |Keď |Když |Kaj |Kai |Kada |Kad |Jeżeli |Jeśli |Ja |It's just unbelievable |Ir |I CAN HAZ |I |Ha |Givun |Givet |Given y'all |Given |Gitt |Gegeven |Gegeben seien |Gegeben sei |Gdy |Gangway! |Fakat |Étant donnés |Etant donnés |Étant données |Etant données |Étant donnée |Etant donnée |Étant donné |Etant donné |Et |És |Entonces |Entón |Então |Entao |En |Eğer ki |Ef |Eeldades |E |Ðurh |Duota |Dun |Donitaĵo |Donat |Donada |Do |Diyelim ki |Diberi |Dengan |Den youse gotta |DEN |De |Dato |Dați fiind |Daţi fiind |Dati fiind |Dati |Date fiind |Date |Data |Dat fiind |Dar |Dann |dann |Dan |Dados |Dado |Dadas |Dada |Ða ðe |Ða |Cuando |Cho |Cando |Când |Cand |Cal |But y'all |But at the end of the day I reckon |BUT |But |Buh |Blimey! |Biết |Bet |Bagi |Aye |awer |Avast! |Atunci |Atesa |Atès |Apabila |Anrhegedig a |Angenommen |And y'all |And |AN |An |an |Amikor |Amennyiben |Ama |Als |Alors |Allora |Ali |Aleshores |Ale |Akkor |Ak |Adott |Ac |Aber |A zároveň |A tiež |A taktiež |A také |A |a |7 |\* )/) ? (e.inStep = !0, e.allowPlaceholders = !0, e.allowMultilineArgument = !0, e.inKeywordLine = !0, "keyword") : n.match(/"[^"]*"?/) ? "string" : e.allowPlaceholders && n.match(/<[^>]*>?/) ? "variable" : (n.next(), n.eatWhile(/[^@"<#]/), null);
|
|
30
|
-
}
|
|
31
|
-
};
|
|
32
|
-
export {
|
|
33
|
-
a as gherkin
|
|
34
|
-
};
|
package/dist/groovy-DZeT_VM-.js
DELETED
|
@@ -1,146 +0,0 @@
|
|
|
1
|
-
function a(e) {
|
|
2
|
-
for (var n = {}, t = e.split(" "), i = 0; i < t.length; ++i) n[t[i]] = !0;
|
|
3
|
-
return n;
|
|
4
|
-
}
|
|
5
|
-
var b = a(
|
|
6
|
-
"abstract as assert boolean break byte case catch char class const continue def default do double else enum extends final finally float for goto if implements import in instanceof int interface long native new package private protected public return short static strictfp super switch synchronized threadsafe throw throws trait transient try void volatile while"
|
|
7
|
-
), g = a("catch class def do else enum finally for if interface switch trait try while"), x = a("return break continue"), z = a("null true false this"), r;
|
|
8
|
-
function k(e, n) {
|
|
9
|
-
var t = e.next();
|
|
10
|
-
if (t == '"' || t == "'")
|
|
11
|
-
return y(t, e, n);
|
|
12
|
-
if (/[\[\]{}\(\),;\:\.]/.test(t))
|
|
13
|
-
return r = t, null;
|
|
14
|
-
if (/\d/.test(t))
|
|
15
|
-
return e.eatWhile(/[\w\.]/), e.eat(/eE/) && (e.eat(/\+\-/), e.eatWhile(/\d/)), "number";
|
|
16
|
-
if (t == "/") {
|
|
17
|
-
if (e.eat("*"))
|
|
18
|
-
return n.tokenize.push(v), v(e, n);
|
|
19
|
-
if (e.eat("/"))
|
|
20
|
-
return e.skipToEnd(), "comment";
|
|
21
|
-
if (h(n.lastToken, !1))
|
|
22
|
-
return y(t, e, n);
|
|
23
|
-
}
|
|
24
|
-
if (t == "-" && e.eat(">"))
|
|
25
|
-
return r = "->", null;
|
|
26
|
-
if (/[+\-*&%=<>!?|\/~]/.test(t))
|
|
27
|
-
return e.eatWhile(/[+\-*&%=<>|~]/), "operator";
|
|
28
|
-
if (e.eatWhile(/[\w\$_]/), t == "@")
|
|
29
|
-
return e.eatWhile(/[\w\$_\.]/), "meta";
|
|
30
|
-
if (n.lastToken == ".") return "property";
|
|
31
|
-
if (e.eat(":"))
|
|
32
|
-
return r = "proplabel", "property";
|
|
33
|
-
var i = e.current();
|
|
34
|
-
return z.propertyIsEnumerable(i) ? "atom" : b.propertyIsEnumerable(i) ? (g.propertyIsEnumerable(i) ? r = "newstatement" : x.propertyIsEnumerable(i) && (r = "standalone"), "keyword") : "variable";
|
|
35
|
-
}
|
|
36
|
-
k.isBase = !0;
|
|
37
|
-
function y(e, n, t) {
|
|
38
|
-
var i = !1;
|
|
39
|
-
if (e != "/" && n.eat(e))
|
|
40
|
-
if (n.eat(e)) i = !0;
|
|
41
|
-
else return "string";
|
|
42
|
-
function o(l, d) {
|
|
43
|
-
for (var f = !1, c, s = !i; (c = l.next()) != null; ) {
|
|
44
|
-
if (c == e && !f) {
|
|
45
|
-
if (!i)
|
|
46
|
-
break;
|
|
47
|
-
if (l.match(e + e)) {
|
|
48
|
-
s = !0;
|
|
49
|
-
break;
|
|
50
|
-
}
|
|
51
|
-
}
|
|
52
|
-
if (e == '"' && c == "$" && !f) {
|
|
53
|
-
if (l.eat("{"))
|
|
54
|
-
return d.tokenize.push(m()), "string";
|
|
55
|
-
if (l.match(/^\w/, !1))
|
|
56
|
-
return d.tokenize.push(E), "string";
|
|
57
|
-
}
|
|
58
|
-
f = !f && c == "\\";
|
|
59
|
-
}
|
|
60
|
-
return s && d.tokenize.pop(), "string";
|
|
61
|
-
}
|
|
62
|
-
return t.tokenize.push(o), o(n, t);
|
|
63
|
-
}
|
|
64
|
-
function m() {
|
|
65
|
-
var e = 1;
|
|
66
|
-
function n(t, i) {
|
|
67
|
-
if (t.peek() == "}") {
|
|
68
|
-
if (e--, e == 0)
|
|
69
|
-
return i.tokenize.pop(), i.tokenize[i.tokenize.length - 1](t, i);
|
|
70
|
-
} else t.peek() == "{" && e++;
|
|
71
|
-
return k(t, i);
|
|
72
|
-
}
|
|
73
|
-
return n.isBase = !0, n;
|
|
74
|
-
}
|
|
75
|
-
function E(e, n) {
|
|
76
|
-
var t = e.match(/^(\.|[\w\$_]+)/);
|
|
77
|
-
return (!t || !e.match(t[0] == "." ? /^[\w$_]/ : /^\./)) && n.tokenize.pop(), t ? t[0] == "." ? null : "variable" : n.tokenize[n.tokenize.length - 1](e, n);
|
|
78
|
-
}
|
|
79
|
-
function v(e, n) {
|
|
80
|
-
for (var t = !1, i; i = e.next(); ) {
|
|
81
|
-
if (i == "/" && t) {
|
|
82
|
-
n.tokenize.pop();
|
|
83
|
-
break;
|
|
84
|
-
}
|
|
85
|
-
t = i == "*";
|
|
86
|
-
}
|
|
87
|
-
return "comment";
|
|
88
|
-
}
|
|
89
|
-
function h(e, n) {
|
|
90
|
-
return !e || e == "operator" || e == "->" || /[\.\[\{\(,;:]/.test(e) || e == "newstatement" || e == "keyword" || e == "proplabel" || e == "standalone" && !n;
|
|
91
|
-
}
|
|
92
|
-
function w(e, n, t, i, o) {
|
|
93
|
-
this.indented = e, this.column = n, this.type = t, this.align = i, this.prev = o;
|
|
94
|
-
}
|
|
95
|
-
function p(e, n, t) {
|
|
96
|
-
return e.context = new w(e.indented, n, t, null, e.context);
|
|
97
|
-
}
|
|
98
|
-
function u(e) {
|
|
99
|
-
var n = e.context.type;
|
|
100
|
-
return (n == ")" || n == "]" || n == "}") && (e.indented = e.context.indented), e.context = e.context.prev;
|
|
101
|
-
}
|
|
102
|
-
const T = {
|
|
103
|
-
name: "groovy",
|
|
104
|
-
startState: function(e) {
|
|
105
|
-
return {
|
|
106
|
-
tokenize: [k],
|
|
107
|
-
context: new w(-e, 0, "top", !1),
|
|
108
|
-
indented: 0,
|
|
109
|
-
startOfLine: !0,
|
|
110
|
-
lastToken: null
|
|
111
|
-
};
|
|
112
|
-
},
|
|
113
|
-
token: function(e, n) {
|
|
114
|
-
var t = n.context;
|
|
115
|
-
if (e.sol() && (t.align == null && (t.align = !1), n.indented = e.indentation(), n.startOfLine = !0, t.type == "statement" && !h(n.lastToken, !0) && (u(n), t = n.context)), e.eatSpace()) return null;
|
|
116
|
-
r = null;
|
|
117
|
-
var i = n.tokenize[n.tokenize.length - 1](e, n);
|
|
118
|
-
if (i == "comment") return i;
|
|
119
|
-
if (t.align == null && (t.align = !0), (r == ";" || r == ":") && t.type == "statement") u(n);
|
|
120
|
-
else if (r == "->" && t.type == "statement" && t.prev.type == "}")
|
|
121
|
-
u(n), n.context.align = !1;
|
|
122
|
-
else if (r == "{") p(n, e.column(), "}");
|
|
123
|
-
else if (r == "[") p(n, e.column(), "]");
|
|
124
|
-
else if (r == "(") p(n, e.column(), ")");
|
|
125
|
-
else if (r == "}") {
|
|
126
|
-
for (; t.type == "statement"; ) t = u(n);
|
|
127
|
-
for (t.type == "}" && (t = u(n)); t.type == "statement"; ) t = u(n);
|
|
128
|
-
} else r == t.type ? u(n) : (t.type == "}" || t.type == "top" || t.type == "statement" && r == "newstatement") && p(n, e.column(), "statement");
|
|
129
|
-
return n.startOfLine = !1, n.lastToken = r || i, i;
|
|
130
|
-
},
|
|
131
|
-
indent: function(e, n, t) {
|
|
132
|
-
if (!e.tokenize[e.tokenize.length - 1].isBase) return null;
|
|
133
|
-
var i = n && n.charAt(0), o = e.context;
|
|
134
|
-
o.type == "statement" && !h(e.lastToken, !0) && (o = o.prev);
|
|
135
|
-
var l = i == o.type;
|
|
136
|
-
return o.type == "statement" ? o.indented + (i == "{" ? 0 : t.unit) : o.align ? o.column + (l ? 0 : 1) : o.indented + (l ? 0 : t.unit);
|
|
137
|
-
},
|
|
138
|
-
languageData: {
|
|
139
|
-
indentOnInput: /^\s*[{}]$/,
|
|
140
|
-
commentTokens: { line: "//", block: { open: "/*", close: "*/" } },
|
|
141
|
-
closeBrackets: { brackets: ["(", "[", "{", "'", '"', "'''", '"""'] }
|
|
142
|
-
}
|
|
143
|
-
};
|
|
144
|
-
export {
|
|
145
|
-
T as groovy
|
|
146
|
-
};
|