sit-onyx 1.0.0-beta.99 → 1.0.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/README.md +1 -5
- package/dist/components/OnyxAccordion/OnyxAccordion.d.vue.ts +26 -0
- package/dist/components/OnyxAccordion/types.d.ts +45 -0
- package/dist/components/OnyxAccordionItem/OnyxAccordionItem.d.vue.ts +37 -0
- package/dist/components/OnyxAccordionItem/types.d.ts +17 -0
- package/dist/components/OnyxAlertModal/OnyxAlertModal.d.vue.ts +69 -0
- package/dist/components/OnyxAlertModal/types.d.ts +8 -0
- package/dist/components/OnyxAppLayout/OnyxAppLayout.d.vue.ts +50 -0
- package/dist/components/OnyxAppLayout/types.d.ts +3 -1
- package/dist/components/OnyxAvatar/OnyxAvatar.d.vue.ts +5 -0
- package/dist/components/OnyxAvatar/types.d.ts +16 -4
- package/dist/components/OnyxAvatarStack/{OnyxAvatarStack.vue.d.ts → OnyxAvatarStack.d.vue.ts} +1 -1
- package/dist/components/OnyxBadge/{OnyxBadge.vue.d.ts → OnyxBadge.d.vue.ts} +4 -4
- package/dist/components/OnyxBadge/types.d.ts +2 -2
- package/dist/components/{OnyxDialog/OnyxDialog.vue.d.ts → OnyxBasicDialog/OnyxBasicDialog.d.vue.ts} +12 -7
- package/dist/components/OnyxBasicDialog/types.d.ts +35 -0
- package/dist/components/OnyxBasicPopover/OnyxBasicPopover.d.vue.ts +64 -0
- package/dist/components/OnyxBasicPopover/types.d.ts +37 -0
- package/dist/components/OnyxBottomBar/OnyxBottomBar.d.vue.ts +36 -0
- package/dist/components/OnyxBottomBar/types.d.ts +7 -0
- package/dist/components/OnyxBreadcrumb/OnyxBreadcrumb.d.vue.ts +32 -0
- package/dist/components/OnyxBreadcrumb/types.d.ts +32 -0
- package/dist/components/OnyxBreadcrumbItem/OnyxBreadcrumbItem.d.vue.ts +33 -0
- package/dist/components/OnyxBreadcrumbItem/types.d.ts +15 -0
- package/dist/components/OnyxButton/ButtonOrLinkLayout.d.vue.ts +33 -0
- package/dist/components/OnyxButton/OnyxButton.d.vue.ts +26 -0
- package/dist/components/OnyxButton/types.d.ts +14 -4
- package/dist/components/{OnyxHeadline/OnyxHeadline.vue.d.ts → OnyxCard/OnyxCard.d.vue.ts} +6 -4
- package/dist/components/OnyxCard/types.d.ts +9 -0
- package/dist/components/OnyxCheckbox/{OnyxCheckbox.vue.d.ts → OnyxCheckbox.d.vue.ts} +7 -7
- package/dist/components/OnyxCheckbox/types.d.ts +3 -5
- package/dist/components/OnyxCheckboxGroup/{OnyxCheckboxGroup.vue.d.ts → OnyxCheckboxGroup.d.vue.ts} +7 -7
- package/dist/components/OnyxCheckboxGroup/types.d.ts +9 -20
- package/dist/components/OnyxDataGrid/OnyxDataGrid.d.vue.ts +16 -0
- package/dist/components/OnyxDataGrid/OnyxDataGridRenderer/{OnyxDataGridRenderer.vue.d.ts → OnyxDataGridRenderer.d.vue.ts} +6 -8
- package/dist/components/OnyxDataGrid/OnyxDataGridRenderer/types.d.ts +34 -14
- package/dist/components/OnyxDataGrid/features/{HeaderCell.vue.d.ts → HeaderCell.d.vue.ts} +1 -1
- package/dist/components/OnyxDataGrid/features/all.d.ts +15 -2
- package/dist/components/OnyxDataGrid/features/base/base.d.ts +52 -0
- package/dist/components/OnyxDataGrid/features/base/types.d.ts +8 -0
- package/dist/components/OnyxDataGrid/features/filtering/filtering.d.ts +31 -0
- package/dist/components/OnyxDataGrid/features/filtering/types.d.ts +66 -0
- package/dist/components/OnyxDataGrid/features/hideColumns/hideColumns.d.ts +43 -0
- package/dist/components/OnyxDataGrid/features/hideColumns/types.d.ts +13 -0
- package/dist/components/OnyxDataGrid/features/index.d.ts +225 -15
- package/dist/components/OnyxDataGrid/features/pagination/pagination.d.ts +28 -0
- package/dist/components/OnyxDataGrid/features/pagination/types.d.ts +51 -0
- package/dist/components/OnyxDataGrid/features/renderer.d.ts +71 -0
- package/dist/components/OnyxDataGrid/features/resizing/resizing.d.ts +51 -0
- package/dist/components/OnyxDataGrid/features/resizing/types.d.ts +7 -0
- package/dist/components/OnyxDataGrid/features/selection/selection.d.ts +17 -0
- package/dist/components/OnyxDataGrid/features/selection/types.d.ts +39 -0
- package/dist/components/OnyxDataGrid/features/sorting/{SortAction.vue.d.ts → SortAction.d.vue.ts} +2 -2
- package/dist/components/OnyxDataGrid/features/sorting/defaults.d.ts +9 -0
- package/dist/components/OnyxDataGrid/features/sorting/sorting.d.ts +34 -4
- package/dist/components/OnyxDataGrid/features/sorting/types.d.ts +13 -18
- package/dist/components/OnyxDataGrid/features/stickyColumns/stickyColumns.d.ts +13 -0
- package/dist/components/OnyxDataGrid/features/stickyColumns/types.d.ts +14 -0
- package/dist/components/OnyxDataGrid/types.d.ts +79 -5
- package/dist/components/OnyxDataGrid/types.spec-d.d.ts +1 -0
- package/dist/components/OnyxDatePicker/OnyxDatePicker.d.vue.ts +20 -0
- package/dist/components/OnyxDatePicker/types.d.ts +3 -2
- package/dist/components/OnyxDialog/OnyxDialog.d.vue.ts +68 -0
- package/dist/components/OnyxDialog/types.d.ts +4 -24
- package/dist/components/OnyxEmpty/{OnyxEmpty.vue.d.ts → OnyxEmpty.d.vue.ts} +10 -2
- package/dist/components/OnyxErrorTooltip/{OnyxErrorTooltip.vue.d.ts → OnyxErrorTooltip.d.vue.ts} +7 -3
- package/dist/components/OnyxExternalLinkIcon/OnyxExternalLinkIcon.d.vue.ts +5 -0
- package/dist/components/OnyxExternalLinkIcon/types.d.ts +2 -5
- package/dist/components/OnyxFAB/OnyxFAB.d.vue.ts +34 -0
- package/dist/components/OnyxFAB/types.d.ts +13 -0
- package/dist/components/OnyxFABButton/OnyxFABButton.d.vue.ts +5 -0
- package/dist/components/OnyxFABButton/types.d.ts +22 -0
- package/dist/components/OnyxFABItem/OnyxFABItem.d.vue.ts +3 -0
- package/dist/components/OnyxFABItem/types.d.ts +17 -0
- package/dist/components/OnyxFileCard/OnyxFileCard.d.vue.ts +34 -0
- package/dist/components/OnyxFileCard/types.d.ts +49 -0
- package/dist/components/OnyxFileTypeIcon/OnyxFileTypeIcon.d.vue.ts +3 -0
- package/dist/components/OnyxFileTypeIcon/types.d.ts +13 -0
- package/dist/components/OnyxFileUpload/OnyxFileUpload.d.vue.ts +40 -0
- package/dist/components/OnyxFileUpload/types.d.ts +91 -0
- package/dist/components/OnyxFilterTag/OnyxFilterTag.d.vue.ts +10 -0
- package/dist/components/OnyxFilterTag/types.d.ts +8 -0
- package/dist/components/OnyxForm/OnyxForm.core.d.ts +46 -17
- package/dist/components/OnyxForm/{OnyxForm.vue.d.ts → OnyxForm.d.vue.ts} +4 -4
- package/dist/components/OnyxForm/types.d.ts +3 -3
- package/dist/components/OnyxFormElement/FormMessage.d.vue.ts +13 -0
- package/dist/components/OnyxFormElement/OnyxFormElement.ct-utils.d.ts +2 -2
- package/dist/components/OnyxFormElement/OnyxFormElement.d.vue.ts +27 -0
- package/dist/components/OnyxFormElement/types.d.ts +22 -19
- package/dist/components/OnyxGlobalFAB/OnyxGlobalFAB.d.vue.ts +2 -0
- package/dist/components/OnyxGlobalFAB/useGlobalFAB.d.ts +56 -0
- package/dist/components/OnyxHeadline/OnyxHeadline.d.vue.ts +28 -0
- package/dist/components/OnyxHeadline/types.d.ts +18 -2
- package/dist/components/OnyxIcon/OnyxIcon.d.vue.ts +3 -0
- package/dist/components/OnyxIcon/types.d.ts +5 -1
- package/dist/components/OnyxIconButton/OnyxIconButton.d.vue.ts +27 -0
- package/dist/components/OnyxIconButton/types.d.ts +6 -6
- package/dist/components/OnyxImage/OnyxImage.d.vue.ts +6 -0
- package/dist/components/OnyxImage/types.d.ts +43 -0
- package/dist/components/OnyxInfoCard/OnyxInfoCard.d.vue.ts +42 -0
- package/dist/components/OnyxInfoCard/types.d.ts +21 -0
- package/dist/components/OnyxInfoTooltip/OnyxInfoTooltip.d.vue.ts +12 -0
- package/dist/components/OnyxInfoTooltip/types.d.ts +2 -2
- package/dist/components/OnyxInput/OnyxInput.d.vue.ts +62 -0
- package/dist/components/OnyxInput/types.d.ts +5 -64
- package/dist/components/OnyxLink/{OnyxLink.vue.d.ts → OnyxLink.d.vue.ts} +4 -4
- package/dist/components/OnyxLink/types.d.ts +3 -10
- package/dist/components/OnyxListItem/{OnyxListItem.vue.d.ts → OnyxListItem.d.vue.ts} +4 -4
- package/dist/components/OnyxListItem/types.d.ts +2 -2
- package/dist/components/OnyxLoadingIndicator/OnyxCircleSpinner.d.vue.ts +2 -0
- package/dist/components/OnyxLoadingIndicator/OnyxLoadingDots.d.vue.ts +2 -0
- package/dist/components/OnyxLoadingIndicator/OnyxLoadingIndicator.d.vue.ts +5 -0
- package/dist/components/OnyxMiniSearch/OnyxMiniSearch.d.vue.ts +16 -0
- package/dist/components/OnyxMiniSearch/types.d.ts +5 -3
- package/dist/components/OnyxMobileNavButton/{OnyxMobileNavButton.vue.d.ts → OnyxMobileNavButton.d.vue.ts} +4 -4
- package/dist/components/OnyxMobileNavButton/types.d.ts +4 -0
- package/dist/components/{OnyxModalDialog/OnyxModalDialog.vue.d.ts → OnyxModal/OnyxModal.d.vue.ts} +17 -8
- package/dist/components/OnyxModal/types.d.ts +2 -0
- package/dist/components/OnyxMoreList/{OnyxMoreList.vue.d.ts → OnyxMoreList.d.vue.ts} +11 -6
- package/dist/components/OnyxMoreList/types.d.ts +12 -3
- package/dist/components/OnyxNavAppArea/{OnyxNavAppArea.vue.d.ts → OnyxNavAppArea.d.vue.ts} +5 -3
- package/dist/components/OnyxNavAppArea/types.d.ts +2 -1
- package/dist/components/OnyxNavBar/OnyxNavBar.d.vue.ts +44 -0
- package/dist/components/OnyxNavBar/modules/OnyxColorSchemeDialog/OnyxColorSchemeDialog.d.vue.ts +12 -0
- package/dist/components/OnyxNavBar/modules/OnyxColorSchemeDialog/types.d.ts +3 -3
- package/dist/components/OnyxNavBar/modules/OnyxColorSchemeMenuItem/OnyxColorSchemeMenuItem.d.vue.ts +8 -0
- package/dist/components/OnyxNavBar/modules/OnyxColorSchemeMenuItem/types.d.ts +1 -1
- package/dist/components/OnyxNavBar/modules/OnyxFlyoutMenu/{OnyxFlyoutMenu.vue.d.ts → OnyxFlyoutMenu.d.vue.ts} +9 -12
- package/dist/components/OnyxNavBar/modules/OnyxFlyoutMenu/types.d.ts +11 -7
- package/dist/components/OnyxNavBar/modules/OnyxLanguageMenuItem/OnyxLanguageMenuItem.d.vue.ts +16 -0
- package/dist/components/OnyxNavBar/modules/OnyxLanguageMenuItem/types.d.ts +11 -0
- package/dist/components/OnyxNavBar/modules/OnyxMenuItem/OnyxMenuItem.d.vue.ts +427 -0
- package/dist/components/OnyxNavBar/modules/OnyxMenuItem/types.d.ts +13 -9
- package/dist/components/OnyxNavBar/modules/OnyxNavItem/OnyxNavItem.d.vue.ts +185 -0
- package/dist/components/OnyxNavBar/modules/OnyxNavItem/types.d.ts +19 -2
- package/dist/components/OnyxNavBar/modules/OnyxNavItemFacade/OnyxNavItemFacade.d.vue.ts +41 -0
- package/dist/components/OnyxNavBar/modules/OnyxTimer/OnyxTimer.d.vue.ts +12 -0
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/{OnyxUserMenu.vue.d.ts → OnyxUserMenu.d.vue.ts} +7 -7
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/{UserMenuLayout.vue.d.ts → UserMenuLayout.d.vue.ts} +13 -13
- package/dist/components/OnyxNavBar/modules/OnyxUserMenu/types.d.ts +13 -7
- package/dist/components/OnyxNavBar/modules/index.d.ts +17 -17
- package/dist/components/OnyxNavBar/types.d.ts +53 -12
- package/dist/components/OnyxNotificationCard/OnyxNotificationCard.d.vue.ts +48 -0
- package/dist/components/OnyxNotificationCard/types.d.ts +25 -0
- package/dist/components/OnyxNotificationDot/OnyxNotificationDot.d.vue.ts +29 -0
- package/dist/components/OnyxNotificationDot/types.d.ts +11 -0
- package/dist/components/OnyxNotificationMessage/OnyxNotificationMessage.d.vue.ts +40 -0
- package/dist/components/OnyxNotificationMessage/types.d.ts +17 -0
- package/dist/components/OnyxNotifications/OnyxNotifications.d.vue.ts +2 -0
- package/dist/components/OnyxNotifications/useNotification.d.ts +60 -0
- package/dist/components/OnyxPageLayout/OnyxPageLayout.d.vue.ts +66 -0
- package/dist/components/OnyxPageLayout/types.d.ts +11 -8
- package/dist/components/OnyxPagination/OnyxPagination.d.vue.ts +10 -0
- package/dist/components/OnyxPagination/OnyxSelectPagination.d.vue.ts +9 -0
- package/dist/components/OnyxPagination/types.d.ts +6 -1
- package/dist/components/OnyxProgressItem/OnyxProgressItem.d.vue.ts +31 -0
- package/dist/components/OnyxProgressItem/types.d.ts +31 -0
- package/dist/components/OnyxProgressSteps/OnyxProgressSteps.d.vue.ts +41 -0
- package/dist/components/OnyxProgressSteps/types.d.ts +30 -0
- package/dist/components/OnyxRadioButton/{OnyxRadioButton.vue.d.ts → OnyxRadioButton.d.vue.ts} +7 -7
- package/dist/components/OnyxRadioButton/types.d.ts +2 -10
- package/dist/components/OnyxRadioGroup/{OnyxRadioGroup.vue.d.ts → OnyxRadioGroup.d.vue.ts} +9 -9
- package/dist/components/OnyxRadioGroup/types.d.ts +6 -19
- package/dist/components/OnyxResizeHandle/OnyxResizeHandle.d.vue.ts +16 -0
- package/dist/components/OnyxResizeHandle/types.d.ts +23 -0
- package/dist/components/OnyxRipple/OnyxRipple.d.vue.ts +6 -0
- package/dist/components/OnyxRouterLink/OnyxRouterLink.d.vue.ts +21 -0
- package/dist/components/OnyxRouterLink/types.d.ts +22 -0
- package/dist/components/OnyxSegmentedControl/OnyxSegmentedControl.d.vue.ts +17 -0
- package/dist/components/OnyxSegmentedControl/types.d.ts +28 -0
- package/dist/components/OnyxSegmentedControlElement/OnyxSegmentedControlElement.d.vue.ts +7 -0
- package/dist/components/OnyxSegmentedControlElement/types.d.ts +5 -0
- package/dist/components/OnyxSelect/{OnyxSelect.vue.d.ts → OnyxSelect.d.vue.ts} +13 -12
- package/dist/components/OnyxSelect/types.d.ts +34 -47
- package/dist/components/OnyxSelectDialog/OnyxSelectDialog.d.vue.ts +28 -0
- package/dist/components/OnyxSelectDialog/types.d.ts +30 -0
- package/dist/components/OnyxSelectInput/{OnyxSelectInput.vue.d.ts → OnyxSelectInput.d.vue.ts} +6 -8
- package/dist/components/OnyxSelectInput/types.d.ts +2 -24
- package/dist/components/OnyxSelectOption/{OnyxSelectOption.vue.d.ts → OnyxSelectOption.d.vue.ts} +5 -5
- package/dist/components/OnyxSelectOption/types.d.ts +2 -2
- package/dist/components/OnyxSeparator/OnyxSeparator.d.vue.ts +5 -0
- package/dist/components/OnyxSeparator/types.d.ts +7 -0
- package/dist/components/OnyxSidebar/OnyxSidebar.d.vue.ts +190 -0
- package/dist/components/OnyxSidebar/modules/OnyxSidebarItem/OnyxSidebarItem.d.vue.ts +28 -0
- package/dist/components/OnyxSidebar/modules/OnyxSidebarItem/types.d.ts +9 -0
- package/dist/components/OnyxSidebar/modules/index.d.ts +2 -0
- package/dist/components/OnyxSidebar/types.d.ts +40 -0
- package/dist/components/OnyxSkeleton/OnyxSkeleton.d.vue.ts +2 -0
- package/dist/components/OnyxStepper/OnyxStepper.d.vue.ts +22 -0
- package/dist/components/OnyxStepper/types.d.ts +26 -32
- package/dist/components/OnyxSwitch/OnyxSwitch.d.vue.ts +22 -0
- package/dist/components/OnyxSwitch/types.d.ts +3 -29
- package/dist/components/OnyxSystemButton/OnyxSystemButton.d.vue.ts +8 -0
- package/dist/components/OnyxSystemButton/types.d.ts +2 -2
- package/dist/components/OnyxTab/{OnyxTab.vue.d.ts → OnyxTab.d.vue.ts} +4 -4
- package/dist/components/OnyxTab/types.d.ts +2 -2
- package/dist/components/OnyxTable/OnyxTable.d.vue.ts +24 -0
- package/dist/components/OnyxTable/types.d.ts +43 -1
- package/dist/components/OnyxTabs/{OnyxTabs.vue.d.ts → OnyxTabs.d.vue.ts} +4 -6
- package/dist/components/OnyxTabs/types.d.ts +6 -6
- package/dist/components/OnyxTag/OnyxTag.d.vue.ts +6 -0
- package/dist/components/OnyxTag/types.d.ts +25 -2
- package/dist/components/OnyxTextarea/OnyxTextarea.d.vue.ts +22 -0
- package/dist/components/OnyxTextarea/types.d.ts +2 -5
- package/dist/components/OnyxToast/OnyxToast.d.vue.ts +2 -0
- package/dist/components/OnyxToast/useToast.d.ts +2 -2
- package/dist/components/OnyxToastMessage/OnyxToastMessage.d.vue.ts +12 -0
- package/dist/components/OnyxToastMessage/types.d.ts +2 -2
- package/dist/components/OnyxTooltip/OnyxTooltip.ct-utils.d.ts +1 -1
- package/dist/components/OnyxTooltip/{OnyxTooltip.vue.d.ts → OnyxTooltip.d.vue.ts} +22 -12
- package/dist/components/OnyxTooltip/types.d.ts +31 -15
- package/dist/components/OnyxVisuallyHidden/{OnyxVisuallyHidden.vue.d.ts → OnyxVisuallyHidden.d.vue.ts} +3 -3
- package/dist/components/examples/ComponentShowcase/ComponentShowcase.d.vue.ts +9 -0
- package/dist/components/illustrations/OnyxErrorSVG/OnyxErrorSVG.d.vue.ts +2 -0
- package/dist/components/illustrations/OnyxFileUploadSVG/OnyxFileUploadSVG.d.vue.ts +3 -0
- package/dist/components/illustrations/OnyxFileUploadSVG/types.d.ts +10 -0
- package/dist/components/illustrations/index.d.ts +3 -0
- package/dist/composables/animation.d.ts +5 -0
- package/dist/composables/checkAll.d.ts +3 -3
- package/dist/composables/density.d.ts +1 -1
- package/dist/composables/required.d.ts +6 -12
- package/dist/composables/scrollEnd.d.ts +2 -2
- package/dist/composables/themeTransition.d.ts +2 -2
- package/dist/composables/useAnchorPositionPolyfill.d.ts +20 -0
- package/dist/composables/useAutoFocus.d.ts +5 -0
- package/dist/composables/useCustomValidity.d.ts +21 -13
- package/dist/composables/useErrorClass.d.ts +2 -2
- package/dist/composables/useFileSize.d.ts +10 -0
- package/dist/composables/useIntersectionObserver.d.ts +25 -0
- package/dist/composables/useLenientMaxLengthValidation.ct-utils.d.ts +3 -0
- package/dist/composables/useLenientMaxLengthValidation.d.ts +93 -0
- package/dist/composables/useLink.d.ts +29 -0
- package/dist/composables/useLink.spec-d.d.ts +1 -0
- package/dist/composables/useMoreList.d.ts +15 -7
- package/dist/composables/useOpenAlignment.d.ts +13 -0
- package/dist/composables/useOpenDirection.d.ts +5 -5
- package/dist/composables/useRelativeTimeFormat.d.ts +23 -0
- package/dist/composables/useResizeObserver.d.ts +6 -2
- package/dist/composables/useRipple.d.ts +5 -5
- package/dist/composables/useSkeletonState.d.ts +1 -1
- package/dist/composables/useTimer.d.ts +3 -3
- package/dist/composables/useVModel.d.ts +34 -0
- package/dist/composables/useVModel.spec-d.d.ts +1 -0
- package/dist/i18n/datetime-formats.d.ts +22 -0
- package/dist/i18n/index.d.ts +24 -12
- package/dist/i18n/locales/de-DE.json +96 -2
- package/dist/i18n/locales/en-US.json +94 -9
- package/{src/i18n/locales/en-US.json → dist/i18n/locales/en-US.json.d.ts} +98 -10
- package/dist/i18n/number-formats.d.ts +6 -0
- package/dist/index.d.ts +176 -106
- package/dist/index.esm-bundler.js +13471 -0
- package/dist/index.esm-bundler.js.map +1 -0
- package/dist/index.js +9574 -4712
- package/dist/style.css +1 -1
- package/dist/types/components.d.ts +7 -9
- package/dist/types/index.d.ts +7 -8
- package/dist/types/utils.d.ts +66 -1
- package/dist/types/utils.spec-d.d.ts +1 -0
- package/dist/utils/attrs.d.ts +35 -4
- package/dist/utils/breakpoints.d.ts +17 -0
- package/dist/utils/console.d.ts +11 -0
- package/dist/utils/dom.d.ts +5 -0
- package/dist/utils/feature.d.ts +15 -0
- package/dist/utils/file.d.ts +10 -0
- package/dist/utils/numbers.d.ts +29 -9
- package/dist/utils/objects.d.ts +18 -0
- package/dist/utils/plugin.d.ts +11 -2
- package/dist/utils/router.d.ts +9 -0
- package/dist/utils/storybook.d.ts +43 -2
- package/dist/utils/strings.d.ts +13 -0
- package/package.json +34 -24
- package/src/styles/breakpoints.scss +14 -10
- package/src/styles/fonts.scss +7 -7
- package/src/styles/global.css +3 -3
- package/src/styles/grid.ct.tsx +186 -73
- package/src/styles/grid.scss +139 -38
- package/src/styles/index.scss +1 -2
- package/src/styles/layers.scss +1 -1
- package/src/styles/mixins/checkbox.scss +18 -4
- package/src/styles/mixins/input.scss +24 -5
- package/src/styles/mixins/layers.scss +6 -0
- package/src/styles/mixins/list.scss +1 -1
- package/src/styles/mixins/sizes.scss +12 -8
- package/src/styles/mixins/visibility.scss +11 -0
- package/src/styles/root.scss +7 -2
- package/src/styles/variables/density-compact.css +2 -2
- package/src/styles/variables/density-cozy.css +2 -2
- package/src/styles/variables/density-default.css +2 -2
- package/src/styles/variables/spacing.css +1 -1
- package/src/styles/variables/themes/onyx.css +387 -0
- package/src/styles/variables/themes/value.css +217 -159
- package/dist/components/OnyxAlertDialog/OnyxAlertDialog.vue.d.ts +0 -60
- package/dist/components/OnyxAlertDialog/types.d.ts +0 -8
- package/dist/components/OnyxAppLayout/OnyxAppLayout.vue.d.ts +0 -36
- package/dist/components/OnyxAvatar/OnyxAvatar.vue.d.ts +0 -28
- package/dist/components/OnyxButton/OnyxButton.vue.d.ts +0 -10
- package/dist/components/OnyxDataGrid/OnyxDataGrid.vue.d.ts +0 -17
- package/dist/components/OnyxDataGrid/features/sorting/TestCase.vue.d.ts +0 -9
- package/dist/components/OnyxDatePicker/OnyxDatePicker.vue.d.ts +0 -17
- package/dist/components/OnyxExternalLinkIcon/OnyxExternalLinkIcon.vue.d.ts +0 -5
- package/dist/components/OnyxFormElement/FormMessage.vue.d.ts +0 -13
- package/dist/components/OnyxFormElement/OnyxFormElement.vue.d.ts +0 -29
- package/dist/components/OnyxIcon/OnyxIcon.vue.d.ts +0 -3
- package/dist/components/OnyxIconButton/OnyxIconButton.vue.d.ts +0 -27
- package/dist/components/OnyxInfoTooltip/OnyxInfoTooltip.vue.d.ts +0 -6
- package/dist/components/OnyxInput/OnyxInput.vue.d.ts +0 -24
- package/dist/components/OnyxLoadingIndicator/OnyxCircleSpinner.vue.d.ts +0 -2
- package/dist/components/OnyxLoadingIndicator/OnyxLoadingDots.vue.d.ts +0 -2
- package/dist/components/OnyxLoadingIndicator/OnyxLoadingIndicator.vue.d.ts +0 -5
- package/dist/components/OnyxMiniSearch/OnyxMiniSearch.vue.d.ts +0 -14
- package/dist/components/OnyxModalDialog/types.d.ts +0 -2
- package/dist/components/OnyxNavBar/OnyxNavBar.vue.d.ts +0 -91
- package/dist/components/OnyxNavBar/modules/OnyxColorSchemeDialog/OnyxColorSchemeDialog.vue.d.ts +0 -11
- package/dist/components/OnyxNavBar/modules/OnyxColorSchemeMenuItem/OnyxColorSchemeMenuItem.vue.d.ts +0 -8
- package/dist/components/OnyxNavBar/modules/OnyxMenuItem/OnyxMenuItem.vue.d.ts +0 -28
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/NavButtonLayout.vue.d.ts +0 -48
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/OnyxNavButton.vue.d.ts +0 -122
- package/dist/components/OnyxNavBar/modules/OnyxNavButton/types.d.ts +0 -19
- package/dist/components/OnyxNavBar/modules/OnyxNavItem/OnyxNavItem.vue.d.ts +0 -31
- package/dist/components/OnyxNavBar/modules/OnyxNavSeparator/OnyxNavSeparator.vue.d.ts +0 -5
- package/dist/components/OnyxNavBar/modules/OnyxNavSeparator/types.d.ts +0 -3
- package/dist/components/OnyxNavBar/modules/OnyxTimer/OnyxTimer.vue.d.ts +0 -7
- package/dist/components/OnyxPageLayout/OnyxPageLayout.vue.d.ts +0 -30
- package/dist/components/OnyxPagination/OnyxPagination.vue.d.ts +0 -9
- package/dist/components/OnyxPagination/OnyxSelectPagination.vue.d.ts +0 -7
- package/dist/components/OnyxRipple/OnyxRipple.vue.d.ts +0 -4
- package/dist/components/OnyxSkeleton/OnyxSkeleton.vue.d.ts +0 -2
- package/dist/components/OnyxStepper/OnyxStepper.vue.d.ts +0 -21
- package/dist/components/OnyxSwitch/OnyxSwitch.vue.d.ts +0 -15
- package/dist/components/OnyxSystemButton/OnyxSystemButton.vue.d.ts +0 -8
- package/dist/components/OnyxSystemButton/examples/WithFlyoutMenu.vue.d.ts +0 -2
- package/dist/components/OnyxSystemButton/examples/WithTooltip.vue.d.ts +0 -2
- package/dist/components/OnyxTable/OnyxTable.vue.d.ts +0 -57
- package/dist/components/OnyxTag/OnyxTag.vue.d.ts +0 -5
- package/dist/components/OnyxTextarea/OnyxTextarea.vue.d.ts +0 -17
- package/dist/components/OnyxToast/OnyxToast.vue.d.ts +0 -2
- package/dist/components/OnyxToast/StorybookExample.vue.d.ts +0 -2
- package/dist/components/OnyxToastMessage/OnyxToastMessage.vue.d.ts +0 -12
- package/dist/components/examples/ComponentShowcase/ComponentShowcase.vue.d.ts +0 -9
- package/dist/components/examples/DataGrid/SortingDataGrid.vue.d.ts +0 -26
- package/dist/components/examples/FormExample/FormExample.vue.d.ts +0 -3
- package/dist/components/examples/GridPlayground/EditGridElementDialog/EditGridElementDialog.vue.d.ts +0 -26
- package/dist/components/examples/GridPlayground/GridBadge/GridBadge.vue.d.ts +0 -17
- package/dist/components/examples/GridPlayground/GridElement/GridElement.vue.d.ts +0 -42
- package/dist/components/examples/GridPlayground/GridOverlay/GridOverlay.vue.d.ts +0 -10
- package/dist/components/examples/GridPlayground/GridPlayground.vue.d.ts +0 -2
- package/dist/composables/asymmetricComputed.d.ts +0 -13
- package/dist/composables/useManagedState.d.ts +0 -31
- package/dist/composables/useWedgePosition.d.ts +0 -13
- package/dist/index.cjs +0 -183
- package/dist/playwright/a11y.d.ts +0 -28
- package/dist/playwright/screenshots.d.ts +0 -33
- package/dist/types/themes.d.ts +0 -2
- package/dist/utils/index.d.ts +0 -4
- package/src/i18n/locales/de-DE.json +0 -135
- package/src/i18n/locales/ko-KR.json +0 -27
- package/src/styles/variables/themes/digits-dark.css +0 -129
- package/src/styles/variables/themes/digits-light.css +0 -129
- package/src/styles/variables/themes/kaufland-dark.css +0 -129
- package/src/styles/variables/themes/kaufland-light.css +0 -129
- package/src/styles/variables/themes/lidl-dark.css +0 -129
- package/src/styles/variables/themes/lidl-light.css +0 -129
- package/src/styles/variables/themes/onyx-dark.css +0 -129
- package/src/styles/variables/themes/onyx-light.css +0 -129
- package/src/styles/variables/themes/schwarz-dark.css +0 -129
- package/src/styles/variables/themes/schwarz-light.css +0 -129
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
import type { OnyxFormElementProps } from "./types";
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
/** The place for the actual form element */
|
|
6
|
-
default(props: {
|
|
7
|
-
id: string;
|
|
8
|
-
}): unknown;
|
|
9
|
-
}> & {
|
|
10
|
-
/** The place for the actual form element */
|
|
11
|
-
default(props: {
|
|
12
|
-
id: string;
|
|
13
|
-
}): unknown;
|
|
14
|
-
};
|
|
15
|
-
refs: {};
|
|
16
|
-
rootEl: HTMLDivElement;
|
|
17
|
-
};
|
|
18
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
-
declare const __VLS_component: import("vue").DefineComponent<OnyxFormElementProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxFormElementProps> & Readonly<{}>, {
|
|
20
|
-
required: boolean;
|
|
21
|
-
id: string;
|
|
22
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
23
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
24
|
-
export default _default;
|
|
25
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
26
|
-
new (): {
|
|
27
|
-
$slots: S;
|
|
28
|
-
};
|
|
29
|
-
};
|
|
@@ -1,3 +0,0 @@
|
|
|
1
|
-
import type { OnyxIconProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxIconProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxIconProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
3
|
-
export default _default;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import type { OnyxIconButtonProps } from "./types";
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
/** Slot for an custom icon. Will have no effect if property `icon` is passed. */
|
|
6
|
-
default(): unknown;
|
|
7
|
-
}> & {
|
|
8
|
-
/** Slot for an custom icon. Will have no effect if property `icon` is passed. */
|
|
9
|
-
default(): unknown;
|
|
10
|
-
};
|
|
11
|
-
refs: {};
|
|
12
|
-
rootEl: any;
|
|
13
|
-
};
|
|
14
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
-
declare const __VLS_component: import("vue").DefineComponent<OnyxIconButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxIconButtonProps> & Readonly<{}>, {
|
|
16
|
-
type: import("../OnyxButton/types.ts").ButtonType;
|
|
17
|
-
color: import("../OnyxButton/types.ts").ButtonColor;
|
|
18
|
-
disabled: import("../OnyxForm/OnyxForm.core").FormInjected<boolean>;
|
|
19
|
-
skeleton: import("../../composables/useSkeletonState").SkeletonInjected;
|
|
20
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
22
|
-
export default _default;
|
|
23
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
24
|
-
new (): {
|
|
25
|
-
$slots: S;
|
|
26
|
-
};
|
|
27
|
-
};
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { OnyxInfoTooltipProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxInfoTooltipProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxInfoTooltipProps> & Readonly<{}>, {
|
|
3
|
-
open: import("../OnyxTooltip/types.ts").TooltipOpen;
|
|
4
|
-
color: Extract<import("../../index.ts").OnyxColor, "neutral" | "danger" | "success">;
|
|
5
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
6
|
-
export default _default;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import type { OnyxInputProps } from "./types";
|
|
2
|
-
type __VLS_Props = OnyxInputProps;
|
|
3
|
-
type __VLS_PublicProps = {
|
|
4
|
-
modelValue?: string;
|
|
5
|
-
} & __VLS_Props;
|
|
6
|
-
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
validityChange: (validity: ValidityState) => any;
|
|
8
|
-
"update:modelValue": (...args: unknown[]) => any;
|
|
9
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
10
|
-
onValidityChange?: ((validity: ValidityState) => any) | undefined;
|
|
11
|
-
"onUpdate:modelValue"?: ((...args: unknown[]) => any) | undefined;
|
|
12
|
-
}>, {
|
|
13
|
-
required: boolean;
|
|
14
|
-
type: import("./types").InputType;
|
|
15
|
-
loading: boolean;
|
|
16
|
-
autocapitalize: import("./types").Autocapitalize;
|
|
17
|
-
disabled: boolean | symbol;
|
|
18
|
-
readonly: boolean;
|
|
19
|
-
skeleton: import("../../composables/useSkeletonState").SkeletonInjected;
|
|
20
|
-
showError: boolean | symbol | "touched";
|
|
21
|
-
hideSuccessIcon: boolean;
|
|
22
|
-
hideClearIcon: boolean;
|
|
23
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
24
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2
|
-
export default _default;
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import type { OnyxLoadingIndicatorProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxLoadingIndicatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxLoadingIndicatorProps> & Readonly<{}>, {
|
|
3
|
-
type: "circle" | "dots";
|
|
4
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
5
|
-
export default _default;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import type { OnyxMiniSearchProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxMiniSearchProps, {
|
|
3
|
-
/**
|
|
4
|
-
* Focuses the input.
|
|
5
|
-
*/
|
|
6
|
-
focus: () => void | undefined;
|
|
7
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
-
clear: () => any;
|
|
9
|
-
"update:modelValue": (input: string) => any;
|
|
10
|
-
}, string, import("vue").PublicProps, Readonly<OnyxMiniSearchProps> & Readonly<{
|
|
11
|
-
onClear?: (() => any) | undefined;
|
|
12
|
-
"onUpdate:modelValue"?: ((input: string) => any) | undefined;
|
|
13
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
14
|
-
export default _default;
|
|
@@ -1,91 +0,0 @@
|
|
|
1
|
-
import { type OnyxNavBarProps } from "./types";
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
/**
|
|
6
|
-
* Nav buttons, only `OnyxNavButton` components should be placed here.
|
|
7
|
-
*/
|
|
8
|
-
default?: () => unknown;
|
|
9
|
-
/**
|
|
10
|
-
* Optional slot to override the app area content (logo and app name, e.g. with a custom icon / `OnyxIcon` component).
|
|
11
|
-
*/
|
|
12
|
-
appArea?: () => unknown;
|
|
13
|
-
/**
|
|
14
|
-
* Optional context area on the right to display additional (global) components, like user login, global settings etc.
|
|
15
|
-
*/
|
|
16
|
-
contextArea?: () => unknown;
|
|
17
|
-
/**
|
|
18
|
-
* Same as `contextArea` slot on desktop (will be placed next to it) but on mobile, the components inside will stay
|
|
19
|
-
* in the mobile nav bar itself and will not be collapsed into the context menu button.
|
|
20
|
-
*
|
|
21
|
-
* Global actions like e.g. search or notification center can be placed here that should always be directly accessible on mobile.
|
|
22
|
-
*/
|
|
23
|
-
globalContextArea?: () => unknown;
|
|
24
|
-
/**
|
|
25
|
-
* Label for displaying the currently active page in mobile mode.
|
|
26
|
-
* If a child of a nav item is active, it should displayed the child label instead of the parent.
|
|
27
|
-
*/
|
|
28
|
-
mobileActivePage?: () => unknown;
|
|
29
|
-
}> & {
|
|
30
|
-
/**
|
|
31
|
-
* Nav buttons, only `OnyxNavButton` components should be placed here.
|
|
32
|
-
*/
|
|
33
|
-
default?: () => unknown;
|
|
34
|
-
/**
|
|
35
|
-
* Optional slot to override the app area content (logo and app name, e.g. with a custom icon / `OnyxIcon` component).
|
|
36
|
-
*/
|
|
37
|
-
appArea?: () => unknown;
|
|
38
|
-
/**
|
|
39
|
-
* Optional context area on the right to display additional (global) components, like user login, global settings etc.
|
|
40
|
-
*/
|
|
41
|
-
contextArea?: () => unknown;
|
|
42
|
-
/**
|
|
43
|
-
* Same as `contextArea` slot on desktop (will be placed next to it) but on mobile, the components inside will stay
|
|
44
|
-
* in the mobile nav bar itself and will not be collapsed into the context menu button.
|
|
45
|
-
*
|
|
46
|
-
* Global actions like e.g. search or notification center can be placed here that should always be directly accessible on mobile.
|
|
47
|
-
*/
|
|
48
|
-
globalContextArea?: () => unknown;
|
|
49
|
-
/**
|
|
50
|
-
* Label for displaying the currently active page in mobile mode.
|
|
51
|
-
* If a child of a nav item is active, it should displayed the child label instead of the parent.
|
|
52
|
-
*/
|
|
53
|
-
mobileActivePage?: () => unknown;
|
|
54
|
-
};
|
|
55
|
-
refs: {
|
|
56
|
-
navBarRef: HTMLElement;
|
|
57
|
-
};
|
|
58
|
-
rootEl: HTMLElement;
|
|
59
|
-
};
|
|
60
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
61
|
-
declare const __VLS_component: import("vue").DefineComponent<OnyxNavBarProps, {
|
|
62
|
-
/**
|
|
63
|
-
* Closes the mobile burger and context menu.
|
|
64
|
-
* Useful if you want to e.g. close them when a nav item is clicked.
|
|
65
|
-
*
|
|
66
|
-
* Example usage:
|
|
67
|
-
*
|
|
68
|
-
* ```ts
|
|
69
|
-
* const route = useRoute();
|
|
70
|
-
* const navBarRef = ref<ComponentInstance<typeof OnyxNavBar>>();
|
|
71
|
-
*
|
|
72
|
-
* watch(() => route.path, () => navBarRef.value?.closeMobileMenus());
|
|
73
|
-
* ```
|
|
74
|
-
*/
|
|
75
|
-
closeMobileMenus: () => void;
|
|
76
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
77
|
-
navigateToStart: (event: MouseEvent) => any;
|
|
78
|
-
navigateBack: (event: MouseEvent) => any;
|
|
79
|
-
}, string, import("vue").PublicProps, Readonly<OnyxNavBarProps> & Readonly<{
|
|
80
|
-
onNavigateToStart?: ((event: MouseEvent) => any) | undefined;
|
|
81
|
-
onNavigateBack?: ((event: MouseEvent) => any) | undefined;
|
|
82
|
-
}>, {
|
|
83
|
-
mobileBreakpoint: import("@sit-onyx/shared/breakpoints").OnyxBreakpoint | number;
|
|
84
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLElement>;
|
|
85
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
86
|
-
export default _default;
|
|
87
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
88
|
-
new (): {
|
|
89
|
-
$slots: S;
|
|
90
|
-
};
|
|
91
|
-
};
|
package/dist/components/OnyxNavBar/modules/OnyxColorSchemeDialog/OnyxColorSchemeDialog.vue.d.ts
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import type { ColorSchemeValue, OnyxColorSchemeDialogProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxColorSchemeDialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
close: () => any;
|
|
4
|
-
"update:modelValue": (value: ColorSchemeValue) => any;
|
|
5
|
-
}, string, import("vue").PublicProps, Readonly<OnyxColorSchemeDialogProps> & Readonly<{
|
|
6
|
-
onClose?: (() => any) | undefined;
|
|
7
|
-
"onUpdate:modelValue"?: ((value: ColorSchemeValue) => any) | undefined;
|
|
8
|
-
}>, {
|
|
9
|
-
open: boolean;
|
|
10
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
11
|
-
export default _default;
|
package/dist/components/OnyxNavBar/modules/OnyxColorSchemeMenuItem/OnyxColorSchemeMenuItem.vue.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { ColorSchemeValue } from "../OnyxColorSchemeDialog/types";
|
|
2
|
-
import type { OnyxColorSchemeMenuItemProps } from "./types";
|
|
3
|
-
declare const _default: import("vue").DefineComponent<OnyxColorSchemeMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
4
|
-
"update:modelValue": (value: ColorSchemeValue) => any;
|
|
5
|
-
}, string, import("vue").PublicProps, Readonly<OnyxColorSchemeMenuItemProps> & Readonly<{
|
|
6
|
-
"onUpdate:modelValue"?: ((value: ColorSchemeValue) => any) | undefined;
|
|
7
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
8
|
-
export default _default;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import { type OnyxMenuItemProps } from "./types";
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
/**
|
|
6
|
-
* Text content of the menu item.
|
|
7
|
-
*/
|
|
8
|
-
default: () => unknown;
|
|
9
|
-
}> & {
|
|
10
|
-
/**
|
|
11
|
-
* Text content of the menu item.
|
|
12
|
-
*/
|
|
13
|
-
default: () => unknown;
|
|
14
|
-
};
|
|
15
|
-
refs: {};
|
|
16
|
-
rootEl: HTMLLIElement;
|
|
17
|
-
};
|
|
18
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
19
|
-
declare const __VLS_component: import("vue").DefineComponent<OnyxMenuItemProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxMenuItemProps> & Readonly<{}>, {
|
|
20
|
-
target: import("../../../OnyxLink/types.ts").LinkTarget;
|
|
21
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
22
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
23
|
-
export default _default;
|
|
24
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
25
|
-
new (): {
|
|
26
|
-
$slots: S;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
@@ -1,48 +0,0 @@
|
|
|
1
|
-
import type { OnyxNavButtonProps } from "./types";
|
|
2
|
-
type __VLS_Props = OnyxNavButtonProps & {
|
|
3
|
-
/**
|
|
4
|
-
* If the mobile layout should be used.
|
|
5
|
-
*/
|
|
6
|
-
isMobile: boolean;
|
|
7
|
-
};
|
|
8
|
-
declare function __VLS_template(): {
|
|
9
|
-
attrs: Partial<{}>;
|
|
10
|
-
slots: Readonly<{
|
|
11
|
-
/**
|
|
12
|
-
* The trigger for the flyout menu. Should be an interactive component like a button or link.
|
|
13
|
-
*/
|
|
14
|
-
button?(params: {
|
|
15
|
-
/**
|
|
16
|
-
* Attributes and event listeners that must be bound to an interactive element (button or link), that should act as the flyout trigger.
|
|
17
|
-
*/
|
|
18
|
-
trigger: object;
|
|
19
|
-
}): unknown;
|
|
20
|
-
options?(): unknown;
|
|
21
|
-
}> & {
|
|
22
|
-
/**
|
|
23
|
-
* The trigger for the flyout menu. Should be an interactive component like a button or link.
|
|
24
|
-
*/
|
|
25
|
-
button?(params: {
|
|
26
|
-
/**
|
|
27
|
-
* Attributes and event listeners that must be bound to an interactive element (button or link), that should act as the flyout trigger.
|
|
28
|
-
*/
|
|
29
|
-
trigger: object;
|
|
30
|
-
}): unknown;
|
|
31
|
-
options?(): unknown;
|
|
32
|
-
};
|
|
33
|
-
refs: {};
|
|
34
|
-
rootEl: HTMLLIElement;
|
|
35
|
-
};
|
|
36
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
37
|
-
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
38
|
-
"update:mobileChildrenOpen": (isOpen: boolean) => any;
|
|
39
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
40
|
-
"onUpdate:mobileChildrenOpen"?: ((isOpen: boolean) => any) | undefined;
|
|
41
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
42
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
43
|
-
export default _default;
|
|
44
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
45
|
-
new (): {
|
|
46
|
-
$slots: S;
|
|
47
|
-
};
|
|
48
|
-
};
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import type { OnyxNavButtonProps } from "./types";
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
/**
|
|
6
|
-
* An optional slot to override the label content.
|
|
7
|
-
*/
|
|
8
|
-
default?(): unknown;
|
|
9
|
-
/**
|
|
10
|
-
* An optional slot to render nested children.
|
|
11
|
-
*/
|
|
12
|
-
children?(): unknown;
|
|
13
|
-
}> & {
|
|
14
|
-
/**
|
|
15
|
-
* An optional slot to override the label content.
|
|
16
|
-
*/
|
|
17
|
-
default?(): unknown;
|
|
18
|
-
/**
|
|
19
|
-
* An optional slot to render nested children.
|
|
20
|
-
*/
|
|
21
|
-
children?(): unknown;
|
|
22
|
-
};
|
|
23
|
-
refs: {
|
|
24
|
-
componentRef: ({
|
|
25
|
-
$: import("vue").ComponentInternalInstance;
|
|
26
|
-
$data: {};
|
|
27
|
-
$props: {
|
|
28
|
-
readonly href?: string | undefined;
|
|
29
|
-
readonly withExternalIcon?: (boolean | "auto") | undefined;
|
|
30
|
-
readonly mobileChildrenOpen?: import("../../../../composables/useManagedState").ManagedProp<boolean> | undefined;
|
|
31
|
-
readonly label: string;
|
|
32
|
-
readonly active?: boolean | undefined;
|
|
33
|
-
readonly isMobile: boolean;
|
|
34
|
-
readonly "onUpdate:mobileChildrenOpen"?: ((isOpen: boolean) => any) | undefined;
|
|
35
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
36
|
-
$attrs: {
|
|
37
|
-
[x: string]: unknown;
|
|
38
|
-
};
|
|
39
|
-
$refs: {
|
|
40
|
-
[x: string]: unknown;
|
|
41
|
-
};
|
|
42
|
-
$slots: Readonly<{
|
|
43
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
44
|
-
}>;
|
|
45
|
-
$root: import("vue").ComponentPublicInstance | null;
|
|
46
|
-
$parent: import("vue").ComponentPublicInstance | null;
|
|
47
|
-
$host: Element | null;
|
|
48
|
-
$emit: (event: "update:mobileChildrenOpen", isOpen: boolean) => void;
|
|
49
|
-
$el: HTMLLIElement;
|
|
50
|
-
$options: import("vue").ComponentOptionsBase<Readonly<import("../../../OnyxExternalLinkIcon/types.ts").OnyxExternalLinkIcon & {
|
|
51
|
-
mobileChildrenOpen?: import("../../../../composables/useManagedState").ManagedProp<boolean>;
|
|
52
|
-
label: string;
|
|
53
|
-
active?: boolean;
|
|
54
|
-
} & {
|
|
55
|
-
isMobile: boolean;
|
|
56
|
-
}> & Readonly<{
|
|
57
|
-
"onUpdate:mobileChildrenOpen"?: ((isOpen: boolean) => any) | undefined;
|
|
58
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
59
|
-
"update:mobileChildrenOpen": (isOpen: boolean) => any;
|
|
60
|
-
}, string, {}, {}, string, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, import("vue").ComponentProvideOptions> & {
|
|
61
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
62
|
-
created?: (() => void) | (() => void)[];
|
|
63
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
64
|
-
mounted?: (() => void) | (() => void)[];
|
|
65
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
66
|
-
updated?: (() => void) | (() => void)[];
|
|
67
|
-
activated?: (() => void) | (() => void)[];
|
|
68
|
-
deactivated?: (() => void) | (() => void)[];
|
|
69
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
70
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
71
|
-
destroyed?: (() => void) | (() => void)[];
|
|
72
|
-
unmounted?: (() => void) | (() => void)[];
|
|
73
|
-
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
74
|
-
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
75
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
76
|
-
};
|
|
77
|
-
$forceUpdate: () => void;
|
|
78
|
-
$nextTick: typeof import("vue").nextTick;
|
|
79
|
-
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import("@vue/reactivity").OnCleanup]) => any : (...args: [any, any, import("@vue/reactivity").OnCleanup]) => any, options?: import("vue").WatchOptions): import("vue").WatchStopHandle;
|
|
80
|
-
} & Readonly<{}> & Omit<Readonly<import("../../../OnyxExternalLinkIcon/types.ts").OnyxExternalLinkIcon & {
|
|
81
|
-
mobileChildrenOpen?: import("../../../../composables/useManagedState").ManagedProp<boolean>;
|
|
82
|
-
label: string;
|
|
83
|
-
active?: boolean;
|
|
84
|
-
} & {
|
|
85
|
-
isMobile: boolean;
|
|
86
|
-
}> & Readonly<{
|
|
87
|
-
"onUpdate:mobileChildrenOpen"?: ((isOpen: boolean) => any) | undefined;
|
|
88
|
-
}>, never> & import("vue").ShallowUnwrapRef<{}> & {} & import("vue").ComponentCustomProperties & {} & {
|
|
89
|
-
$slots: Readonly<{
|
|
90
|
-
button?(params: {
|
|
91
|
-
trigger: object;
|
|
92
|
-
}): unknown;
|
|
93
|
-
options?(): unknown;
|
|
94
|
-
}> & {
|
|
95
|
-
button?(params: {
|
|
96
|
-
trigger: object;
|
|
97
|
-
}): unknown;
|
|
98
|
-
options?(): unknown;
|
|
99
|
-
};
|
|
100
|
-
}) | null;
|
|
101
|
-
};
|
|
102
|
-
rootEl: HTMLLIElement;
|
|
103
|
-
};
|
|
104
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
105
|
-
declare const __VLS_component: import("vue").DefineComponent<OnyxNavButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
106
|
-
navigate: (href: string, event: MouseEvent) => any;
|
|
107
|
-
"update:mobileChildrenOpen": (isOpen: boolean) => any;
|
|
108
|
-
}, string, import("vue").PublicProps, Readonly<OnyxNavButtonProps> & Readonly<{
|
|
109
|
-
onNavigate?: ((href: string, event: MouseEvent) => any) | undefined;
|
|
110
|
-
"onUpdate:mobileChildrenOpen"?: ((isOpen: boolean) => any) | undefined;
|
|
111
|
-
}>, {
|
|
112
|
-
active: boolean;
|
|
113
|
-
withExternalIcon: boolean | "auto";
|
|
114
|
-
mobileChildrenOpen: import("../../../../composables/useManagedState").ManagedProp<boolean>;
|
|
115
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
116
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
117
|
-
export default _default;
|
|
118
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
119
|
-
new (): {
|
|
120
|
-
$slots: S;
|
|
121
|
-
};
|
|
122
|
-
};
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import type { ManagedProp } from "../../../../composables/useManagedState";
|
|
2
|
-
import type { OnyxExternalLinkIcon } from "../../../OnyxExternalLinkIcon/types";
|
|
3
|
-
export type OnyxNavButtonProps = OnyxExternalLinkIcon & {
|
|
4
|
-
/**
|
|
5
|
-
* Controls the open state for the mobile children.
|
|
6
|
-
* Is managed internally if not provided.
|
|
7
|
-
*/
|
|
8
|
-
mobileChildrenOpen?: ManagedProp<boolean>;
|
|
9
|
-
/**
|
|
10
|
-
* Label to show inside the Nav item.
|
|
11
|
-
* You can use the `default` slot to display custom content.
|
|
12
|
-
*/
|
|
13
|
-
label: string;
|
|
14
|
-
/**
|
|
15
|
-
* Whether the nav item is currently active.
|
|
16
|
-
* If any nested option is active, the parent nav item will also be marked as active.
|
|
17
|
-
*/
|
|
18
|
-
active?: boolean;
|
|
19
|
-
};
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
declare function __VLS_template(): {
|
|
2
|
-
attrs: Partial<{}>;
|
|
3
|
-
slots: Readonly<{
|
|
4
|
-
/**
|
|
5
|
-
* Content of the nav item.
|
|
6
|
-
*/
|
|
7
|
-
default?(): unknown;
|
|
8
|
-
}> & {
|
|
9
|
-
/**
|
|
10
|
-
* Content of the nav item.
|
|
11
|
-
*/
|
|
12
|
-
default?(): unknown;
|
|
13
|
-
};
|
|
14
|
-
refs: {};
|
|
15
|
-
rootEl: HTMLLIElement;
|
|
16
|
-
};
|
|
17
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
-
declare const __VLS_component: import("vue").DefineComponent<import("../index.ts").OnyxNavButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
19
|
-
navigate: (href: string, event: MouseEvent) => any;
|
|
20
|
-
}, string, import("vue").PublicProps, Readonly<import("../index.ts").OnyxNavButtonProps> & Readonly<{
|
|
21
|
-
onNavigate?: ((href: string, event: MouseEvent) => any) | undefined;
|
|
22
|
-
}>, {
|
|
23
|
-
withExternalIcon: boolean | "auto";
|
|
24
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLLIElement>;
|
|
25
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
26
|
-
export default _default;
|
|
27
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
28
|
-
new (): {
|
|
29
|
-
$slots: S;
|
|
30
|
-
};
|
|
31
|
-
};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import type { OnyxNavSeparatorProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxNavSeparatorProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxNavSeparatorProps> & Readonly<{}>, {
|
|
3
|
-
orientation: "horizontal" | "vertical";
|
|
4
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
5
|
-
export default _default;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { OnyxTimerProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxTimerProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
timerEnded: () => any;
|
|
4
|
-
}, string, import("vue").PublicProps, Readonly<OnyxTimerProps> & Readonly<{
|
|
5
|
-
onTimerEnded?: (() => any) | undefined;
|
|
6
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
7
|
-
export default _default;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import type { OnyxPageLayoutProps } from "./types";
|
|
2
|
-
declare function __VLS_template(): {
|
|
3
|
-
attrs: Partial<{}>;
|
|
4
|
-
slots: Readonly<{
|
|
5
|
-
/** Main content area of the page */
|
|
6
|
-
default(): unknown;
|
|
7
|
-
/** Optional sidebar of the page */
|
|
8
|
-
sidebar?(): unknown;
|
|
9
|
-
/** Optional footer of the page*/
|
|
10
|
-
footer?(): unknown;
|
|
11
|
-
}> & {
|
|
12
|
-
/** Main content area of the page */
|
|
13
|
-
default(): unknown;
|
|
14
|
-
/** Optional sidebar of the page */
|
|
15
|
-
sidebar?(): unknown;
|
|
16
|
-
/** Optional footer of the page*/
|
|
17
|
-
footer?(): unknown;
|
|
18
|
-
};
|
|
19
|
-
refs: {};
|
|
20
|
-
rootEl: HTMLDivElement;
|
|
21
|
-
};
|
|
22
|
-
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
23
|
-
declare const __VLS_component: import("vue").DefineComponent<OnyxPageLayoutProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxPageLayoutProps> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
24
|
-
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
25
|
-
export default _default;
|
|
26
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
27
|
-
new (): {
|
|
28
|
-
$slots: S;
|
|
29
|
-
};
|
|
30
|
-
};
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import type { OnyxPaginationProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxPaginationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
"update:modelValue": (page: number) => any;
|
|
4
|
-
}, string, import("vue").PublicProps, Readonly<OnyxPaginationProps> & Readonly<{
|
|
5
|
-
"onUpdate:modelValue"?: ((page: number) => any) | undefined;
|
|
6
|
-
}>, {
|
|
7
|
-
disabled: boolean;
|
|
8
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
9
|
-
export default _default;
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import type { OnyxPaginationProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxPaginationProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
"update:modelValue": (page: number) => any;
|
|
4
|
-
}, string, import("vue").PublicProps, Readonly<OnyxPaginationProps> & Readonly<{
|
|
5
|
-
"onUpdate:modelValue"?: ((page: number) => any) | undefined;
|
|
6
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
7
|
-
export default _default;
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {
|
|
2
|
-
events: import("vue").Ref<Record<string, (event: MouseEvent) => void>, Record<string, (event: MouseEvent) => void>>;
|
|
3
|
-
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLSpanElement>;
|
|
4
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, HTMLElement>;
|
|
2
|
-
export default _default;
|
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type { OnyxStepperProps } from "./types";
|
|
2
|
-
type __VLS_Props = OnyxStepperProps;
|
|
3
|
-
type __VLS_PublicProps = {
|
|
4
|
-
modelValue?: number;
|
|
5
|
-
} & __VLS_Props;
|
|
6
|
-
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
validityChange: (validity: ValidityState) => any;
|
|
8
|
-
"update:modelValue": (value: number) => any;
|
|
9
|
-
}, string, import("vue").PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
10
|
-
onValidityChange?: ((validity: ValidityState) => any) | undefined;
|
|
11
|
-
"onUpdate:modelValue"?: ((value: number) => any) | undefined;
|
|
12
|
-
}>, {
|
|
13
|
-
loading: boolean;
|
|
14
|
-
disabled: boolean | symbol;
|
|
15
|
-
readonly: boolean;
|
|
16
|
-
skeleton: import("../../composables/useSkeletonState").SkeletonInjected;
|
|
17
|
-
showError: boolean | symbol | "touched";
|
|
18
|
-
precision: number;
|
|
19
|
-
stripStep: boolean;
|
|
20
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
-
export default _default;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import type { OnyxSwitchProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxSwitchProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
3
|
-
validityChange: (validity: ValidityState) => any;
|
|
4
|
-
"update:modelValue": (value: boolean) => any;
|
|
5
|
-
}, string, import("vue").PublicProps, Readonly<OnyxSwitchProps> & Readonly<{
|
|
6
|
-
onValidityChange?: ((validity: ValidityState) => any) | undefined;
|
|
7
|
-
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
8
|
-
}>, {
|
|
9
|
-
loading: boolean;
|
|
10
|
-
disabled: boolean | symbol;
|
|
11
|
-
skeleton: import("../../composables/useSkeletonState").SkeletonInjected;
|
|
12
|
-
modelValue: boolean;
|
|
13
|
-
truncation: import("../../index.ts").TruncationType;
|
|
14
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
-
export default _default;
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import type { OnyxSystemButtonProps } from "./types";
|
|
2
|
-
declare const _default: import("vue").DefineComponent<OnyxSystemButtonProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<OnyxSystemButtonProps> & Readonly<{}>, {
|
|
3
|
-
color: import("./types").SystemButtonColor;
|
|
4
|
-
autofocus: boolean;
|
|
5
|
-
disabled: import("../OnyxForm/OnyxForm.core").FormInjected<boolean>;
|
|
6
|
-
skeleton: import("../../composables/useSkeletonState").SkeletonInjected;
|
|
7
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
8
|
-
export default _default;
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
-
export default _default;
|