origam 2.3.0 → 2.6.1
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/dist/src/assets/css/tokens/dark.css +3878 -3492
- package/dist/src/assets/css/tokens/light.css +1939 -1746
- package/dist/src/assets/css/tokens/primitive.css +2 -0
- package/dist/src/assets/css/tokens/themes-all.css +44226 -0
- package/dist/src/assets/locales/en.json +70 -2
- package/dist/src/assets/locales/fr.json +67 -2
- package/dist/src/assets/locales/index.js +2 -2
- package/dist/src/assets/scss/tokens/_dark.scss +1939 -1746
- package/dist/src/assets/scss/tokens/_light.scss +1939 -1746
- package/dist/src/assets/scss/tokens/_primitive.scss +2 -0
- package/dist/src/assets/scss/tokens/_themes-all.scss +44241 -0
- package/dist/src/components/Alert/OrigamAlert.vue +19 -23
- package/dist/src/components/App/OrigamApp.vue +9 -3
- package/dist/src/components/App/OrigamAppBar.vue +37 -19
- package/dist/src/components/Audio/OrigamAudio.vue +1536 -0
- package/dist/src/components/Audio/index.cjs +13 -0
- package/dist/src/components/Audio/index.d.ts +1 -0
- package/dist/src/components/Audio/index.js +1 -0
- package/dist/src/components/Avatar/OrigamAvatar.vue +14 -12
- package/dist/src/components/Avatar/OrigamAvatarGroup.vue +28 -10
- package/dist/src/components/Badge/OrigamBadge.vue +15 -5
- package/dist/src/components/Blockquote/OrigamBlockquote.vue +415 -0
- package/dist/src/components/Blockquote/index.cjs +13 -0
- package/dist/src/components/Blockquote/index.d.ts +1 -0
- package/dist/src/components/Blockquote/index.js +1 -0
- package/dist/src/components/BottomNav/OrigamBottomNav.vue +37 -6
- package/dist/src/components/Bracket/OrigamBracket.vue +430 -53
- package/dist/src/components/Bracket/OrigamBracketCompetitor.vue +190 -13
- package/dist/src/components/Bracket/OrigamBracketMatch.vue +197 -42
- package/dist/src/components/Bracket/OrigamBracketRound.vue +13 -3
- package/dist/src/components/Breadcrumb/OrigamBreadcrumb.vue +19 -15
- package/dist/src/components/Breadcrumb/OrigamBreadcrumbDivider.vue +5 -2
- package/dist/src/components/Breadcrumb/OrigamBreadcrumbItem.vue +6 -8
- package/dist/src/components/Btn/OrigamBtn.vue +75 -26
- package/dist/src/components/Btn/OrigamBtnGroup.vue +36 -9
- package/dist/src/components/Btn/OrigamBtnToggle.vue +6 -9
- package/dist/src/components/Calendar/OrigamCalendar.vue +1302 -0
- package/dist/src/components/Calendar/index.cjs +13 -0
- package/dist/src/components/Calendar/index.d.ts +1 -0
- package/dist/src/components/Calendar/index.js +1 -0
- package/dist/src/components/Card/OrigamCard.vue +26 -5
- package/dist/src/components/Card/OrigamCardHeader.vue +18 -4
- package/dist/src/components/Card/OrigamCardText.vue +29 -7
- package/dist/src/components/Carousel/OrigamCarousel.vue +35 -10
- package/dist/src/components/Carousel/OrigamCarouselItem.vue +4 -4
- package/dist/src/components/Chart/OrigamChart.vue +884 -0
- package/dist/src/components/Chart/OrigamChartAxis.vue +141 -0
- package/dist/src/components/Chart/OrigamChartBoxPlot.vue +898 -0
- package/dist/src/components/Chart/OrigamChartBullet.vue +840 -0
- package/dist/src/components/Chart/OrigamChartCandlestick.vue +749 -0
- package/dist/src/components/Chart/OrigamChartCartesian.vue +1454 -0
- package/dist/src/components/Chart/OrigamChartGauge.vue +406 -0
- package/dist/src/components/Chart/OrigamChartHeatmap.vue +701 -0
- package/dist/src/components/Chart/OrigamChartHoneycomb.vue +727 -0
- package/dist/src/components/Chart/OrigamChartLegend.vue +58 -0
- package/dist/src/components/Chart/OrigamChartMap.vue +742 -0
- package/dist/src/components/Chart/OrigamChartPareto.vue +953 -0
- package/dist/src/components/Chart/OrigamChartPictorial.vue +1027 -0
- package/dist/src/components/Chart/OrigamChartPolar.vue +742 -0
- package/dist/src/components/Chart/OrigamChartPolarBar.vue +723 -0
- package/dist/src/components/Chart/OrigamChartPyramid.vue +710 -0
- package/dist/src/components/Chart/OrigamChartRadar.vue +506 -0
- package/dist/src/components/Chart/OrigamChartRangeSelector.vue +121 -0
- package/dist/src/components/Chart/OrigamChartSankey.vue +947 -0
- package/dist/src/components/Chart/OrigamChartSparkline.vue +476 -0
- package/dist/src/components/Chart/OrigamChartStreamgraph.vue +876 -0
- package/dist/src/components/Chart/OrigamChartSunburst.vue +869 -0
- package/dist/src/components/Chart/OrigamChartTooltip.vue +55 -0
- package/dist/src/components/Chart/OrigamChartTreemap.vue +748 -0
- package/dist/src/components/Chart/OrigamChartVariwide.vue +819 -0
- package/dist/src/components/Chart/OrigamChartWordCloud.vue +672 -0
- package/dist/src/components/Chart/index.cjs +188 -0
- package/dist/src/components/Chart/index.d.ts +26 -0
- package/dist/src/components/Chart/index.js +26 -0
- package/dist/src/components/Checkbox/OrigamCheckbox.vue +20 -5
- package/dist/src/components/Checkbox/OrigamCheckboxBtn.vue +6 -4
- package/dist/src/components/Chip/OrigamChip.vue +31 -16
- package/dist/src/components/Chip/OrigamChipGroup.vue +20 -8
- package/dist/src/components/ClientOnly/OrigamClientOnly.vue +1 -1
- package/dist/src/components/Clipboard/OrigamClipboard.vue +203 -0
- package/dist/src/components/Clipboard/index.cjs +13 -0
- package/dist/src/components/Clipboard/index.d.ts +1 -0
- package/dist/src/components/Clipboard/index.js +1 -0
- package/dist/src/components/Code/OrigamCode.vue +212 -97
- package/dist/src/components/ColorPicker/OrigamColorPicker.vue +9 -3
- package/dist/src/components/ColorPicker/OrigamColorPickerCanvas.vue +77 -2
- package/dist/src/components/ColorPicker/OrigamColorPickerEdit.vue +2 -2
- package/dist/src/components/ColorPicker/OrigamColorPickerPreview.vue +1 -1
- package/dist/src/components/ColorPicker/OrigamColorPickerSwatches.vue +1 -1
- package/dist/src/components/ColorPickerField/OrigamColorPickerField.vue +16 -6
- package/dist/src/components/CommandPalette/OrigamCommandPalette.vue +35 -19
- package/dist/src/components/ConfirmWrapper/OrigamConfirmWrapper.vue +2 -2
- package/dist/src/components/ContextualMenu/OrigamContextualMenu.vue +9 -4
- package/dist/src/components/Counter/OrigamCounter.vue +3 -2
- package/dist/src/components/DataList/OrigamDataList.vue +23 -7
- package/dist/src/components/DataList/OrigamDataText.vue +7 -3
- package/dist/src/components/DataList/OrigamDataTitle.vue +7 -3
- package/dist/src/components/DataTable/OrigamDataTable.vue +23 -9
- package/dist/src/components/DataTable/OrigamDataTableColumnCell.vue +2 -1
- package/dist/src/components/DataTable/OrigamDataTableFooter.vue +2 -2
- package/dist/src/components/DataTable/OrigamDataTableGroupHeaderRow.vue +2 -2
- package/dist/src/components/DataTable/OrigamDataTableHeaderCell.vue +4 -2
- package/dist/src/components/DataTable/OrigamDataTableHeaders.vue +3 -2
- package/dist/src/components/DataTable/OrigamDataTableHeadersCell.vue +2 -2
- package/dist/src/components/DataTable/OrigamDataTableHeadersCellMobile.vue +3 -3
- package/dist/src/components/DataTable/OrigamDataTableRow.vue +10 -3
- package/dist/src/components/DataTable/OrigamDataTableRows.vue +8 -6
- package/dist/src/components/DatePicker/OrigamDatePicker.vue +15 -14
- package/dist/src/components/DatePicker/OrigamDatePickerControls.vue +2 -2
- package/dist/src/components/DatePicker/OrigamDatePickerHeader.vue +2 -2
- package/dist/src/components/DatePicker/OrigamDatePickerMonth.vue +9 -16
- package/dist/src/components/DatePicker/OrigamDatePickerMonths.vue +4 -4
- package/dist/src/components/DatePicker/OrigamDatePickerYears.vue +4 -4
- package/dist/src/components/DatePickerField/OrigamDatePickerField.vue +32 -21
- package/dist/src/components/DefaultsProvider/OrigamDefaultsProvider.vue +1 -1
- package/dist/src/components/Dialog/OrigamDialog.vue +13 -5
- package/dist/src/components/Dialog/OrigamDialogConfirmation.vue +3 -3
- package/dist/src/components/Divider/OrigamDivider.vue +4 -4
- package/dist/src/components/Drawer/OrigamDrawer.vue +15 -13
- package/dist/src/components/EmptyState/OrigamEmptyState.vue +241 -0
- package/dist/src/components/EmptyState/index.cjs +13 -0
- package/dist/src/components/EmptyState/index.d.ts +1 -0
- package/dist/src/components/EmptyState/index.js +1 -0
- package/dist/src/components/ExpansionPanel/OrigamExpansionPanel.vue +14 -4
- package/dist/src/components/ExpansionPanel/OrigamExpansionPanelContent.vue +8 -3
- package/dist/src/components/ExpansionPanel/OrigamExpansionPanelHeader.vue +17 -6
- package/dist/src/components/ExpansionPanel/OrigamExpansionPanels.vue +4 -3
- package/dist/src/components/Field/OrigamField.vue +28 -11
- package/dist/src/components/FileField/OrigamFileField.vue +10 -5
- package/dist/src/components/FileField/OrigamFileFieldDragNDropItem.vue +15 -5
- package/dist/src/components/FileField/OrigamFileFieldListItem.vue +15 -5
- package/dist/src/components/Form/OrigamForm.vue +10 -2
- package/dist/src/components/Grid/OrigamGrid.vue +197 -0
- package/dist/src/components/Grid/OrigamGridItem.vue +69 -0
- package/dist/src/components/Grid/index.cjs +20 -0
- package/dist/src/components/Grid/index.d.ts +2 -0
- package/dist/src/components/Grid/index.js +2 -0
- package/dist/src/components/Grids/OrigamCol.vue +3 -3
- package/dist/src/components/Grids/OrigamContainer.vue +1 -1
- package/dist/src/components/Grids/OrigamRow.vue +7 -3
- package/dist/src/components/Grids/OrigamSpacer.vue +1 -1
- package/dist/src/components/Icon/OrigamClassIcon.vue +15 -3
- package/dist/src/components/Icon/OrigamComponentIcon.vue +15 -3
- package/dist/src/components/Icon/OrigamIcon.vue +22 -3
- package/dist/src/components/Icon/OrigamLigatureIcon.vue +15 -3
- package/dist/src/components/Icon/OrigamSvgIcon.vue +17 -5
- package/dist/src/components/Img/OrigamImg.vue +12 -11
- package/dist/src/components/InfiniteScroll/OrigamInfiniteScroll.vue +16 -9
- package/dist/src/components/InfiniteScroll/OrigamInfiniteScrollIntersect.vue +3 -2
- package/dist/src/components/InlineEdit/OrigamInlineEdit.vue +486 -0
- package/dist/src/components/InlineEdit/index.cjs +13 -0
- package/dist/src/components/InlineEdit/index.d.ts +1 -0
- package/dist/src/components/InlineEdit/index.js +1 -0
- package/dist/src/components/Input/OrigamInput.vue +19 -5
- package/dist/src/components/ItemGroup/OrigamItem.vue +1 -1
- package/dist/src/components/ItemGroup/OrigamItemGroup.vue +1 -1
- package/dist/src/components/Kbd/OrigamKbd.vue +20 -10
- package/dist/src/components/Label/OrigamLabel.vue +16 -5
- package/dist/src/components/Layout/OrigamLayout.vue +74 -5
- package/dist/src/components/Lazy/OrigamLazy.vue +2 -1
- package/dist/src/components/List/OrigamList.vue +4 -3
- package/dist/src/components/List/OrigamListChildren.vue +1 -1
- package/dist/src/components/List/OrigamListGroup.vue +6 -3
- package/dist/src/components/List/OrigamListGroupActivator.vue +1 -1
- package/dist/src/components/List/OrigamListItem.vue +16 -5
- package/dist/src/components/List/OrigamListSubheader.vue +15 -5
- package/dist/src/components/Loader/OrigamLoader.vue +4 -2
- package/dist/src/components/Main/OrigamMain.vue +13 -3
- package/dist/src/components/Masonry/OrigamMasonry.vue +277 -0
- package/dist/src/components/Masonry/index.cjs +13 -0
- package/dist/src/components/Masonry/index.d.ts +1 -0
- package/dist/src/components/Masonry/index.js +1 -0
- package/dist/src/components/Media/OrigamMediaController.vue +529 -0
- package/dist/src/components/Media/OrigamMediaScrubber.vue +442 -0
- package/dist/src/components/Media/OrigamMediaVolumeControl.vue +152 -0
- package/dist/src/components/Media/index.cjs +27 -0
- package/dist/src/components/Media/index.d.ts +3 -0
- package/dist/src/components/Media/index.js +3 -0
- package/dist/src/components/Menu/OrigamMenu.vue +32 -7
- package/dist/src/components/Messages/OrigamMessages.vue +15 -6
- package/dist/src/components/NumberField/OrigamNumberField.vue +86 -46
- package/dist/src/components/NumberFormat/OrigamNumberFormat.vue +97 -0
- package/dist/src/components/NumberFormat/index.cjs +13 -0
- package/dist/src/components/NumberFormat/index.d.ts +1 -0
- package/dist/src/components/NumberFormat/index.js +1 -0
- package/dist/src/components/OtpInputField/OrigamOtpInputField.vue +119 -23
- package/dist/src/components/Overlay/OrigamOverlay.vue +2 -2
- package/dist/src/components/Overlay/OrigamOverlayScrim.vue +3 -2
- package/dist/src/components/Pagination/OrigamPagination.vue +20 -14
- package/dist/src/components/Parallax/OrigamParallax.vue +38 -3
- package/dist/src/components/Parallax/OrigamParallaxElement.vue +1 -1
- package/dist/src/components/Parallax/OrigamParallaxLayer.vue +2 -2
- package/dist/src/components/PasswordField/OrigamPasswordField.vue +15 -8
- package/dist/src/components/Picker/OrigamPicker.vue +12 -7
- package/dist/src/components/Picker/OrigamPickerTitle.vue +11 -4
- package/dist/src/components/Progress/OrigamProgress.vue +7 -2
- package/dist/src/components/Progress/OrigamProgressCircular.vue +11 -2
- package/dist/src/components/Progress/OrigamProgressLinear.vue +18 -7
- package/dist/src/components/QrCode/OrigamQrCode.vue +246 -0
- package/dist/src/components/QrCode/index.cjs +13 -0
- package/dist/src/components/QrCode/index.d.ts +1 -0
- package/dist/src/components/QrCode/index.js +1 -0
- package/dist/src/components/Radio/OrigamRadio.vue +22 -13
- package/dist/src/components/Radio/OrigamRadioBtn.vue +6 -4
- package/dist/src/components/Radio/OrigamRadioGroup.vue +50 -43
- package/dist/src/components/RatingField/OrigamRatingField.vue +29 -33
- package/dist/src/components/RatingField/OrigamRatingFieldItem.vue +4 -7
- package/dist/src/components/Responsive/OrigamResponsive.vue +1 -1
- package/dist/src/components/Section/OrigamSection.vue +1 -1
- package/dist/src/components/Select/OrigamSelect.vue +64 -21
- package/dist/src/components/SelectionControl/OrigamSelectionControl.vue +18 -8
- package/dist/src/components/SelectionControl/OrigamSelectionControlGroup.vue +4 -3
- package/dist/src/components/Sheet/OrigamSheet.vue +14 -6
- package/dist/src/components/Skeleton/OrigamSkeleton.vue +11 -6
- package/dist/src/components/Slide/OrigamSlideGroup.vue +1 -1
- package/dist/src/components/SliderField/OrigamSliderField.vue +1067 -331
- package/dist/src/components/SliderField/OrigamSliderFieldTrack.vue +34 -46
- package/dist/src/components/SliderField/index.cjs +0 -7
- package/dist/src/components/SliderField/index.d.ts +0 -1
- package/dist/src/components/SliderField/index.js +0 -1
- package/dist/src/components/Snackbar/OrigamSnackbar.vue +260 -269
- package/dist/src/components/Snackbar/OrigamSnackbarGroup.vue +238 -0
- package/dist/src/components/Snackbar/OrigamSnackbarItem.vue +271 -0
- package/dist/src/components/Snackbar/index.cjs +14 -0
- package/dist/src/components/Snackbar/index.d.ts +2 -0
- package/dist/src/components/Snackbar/index.js +2 -0
- package/dist/src/components/Stepper/OrigamStepper.vue +72 -9
- package/dist/src/components/Stepper/OrigamStepperItem.vue +10 -3
- package/dist/src/components/Switch/OrigamSwitch.vue +162 -47
- package/dist/src/components/Switch/OrigamSwitchTrack.vue +21 -16
- package/dist/src/components/SystemBar/OrigamSystemBar.vue +16 -6
- package/dist/src/components/Table/OrigamTable.vue +49 -4
- package/dist/src/components/Tabs/OrigamTab.vue +13 -3
- package/dist/src/components/Tabs/OrigamTabPanel.vue +1 -1
- package/dist/src/components/Tabs/OrigamTabPanels.vue +1 -1
- package/dist/src/components/Tabs/OrigamTabs.vue +3 -3
- package/dist/src/components/TextField/OrigamTextField.vue +12 -3
- package/dist/src/components/TextMask/OrigamTextMask.vue +147 -0
- package/dist/src/components/TextMask/index.cjs +13 -0
- package/dist/src/components/TextMask/index.d.ts +1 -0
- package/dist/src/components/TextMask/index.js +1 -0
- package/dist/src/components/TextareaField/OrigamRichToolbar.vue +15 -11
- package/dist/src/components/TextareaField/OrigamTextareaField.vue +15 -3
- package/dist/src/components/ThemeProvider/OrigamThemeProvider.vue +4 -1
- package/dist/src/components/Timeline/OrigamTimeline.vue +4 -4
- package/dist/src/components/Timeline/OrigamTimelineItem.vue +4 -2
- package/dist/src/components/Title/OrigamTitle.vue +22 -10
- package/dist/src/components/Toolbar/OrigamToolbar.vue +19 -7
- package/dist/src/components/Tooltip/OrigamTooltip.vue +13 -4
- package/dist/src/components/Transition/OrigamExpandX.vue +1 -1
- package/dist/src/components/Transition/OrigamExpandY.vue +1 -1
- package/dist/src/components/Transition/OrigamFade.vue +1 -1
- package/dist/src/components/Transition/OrigamReverseTranslatePicker.vue +1 -1
- package/dist/src/components/Transition/OrigamScaleRotate.vue +1 -1
- package/dist/src/components/Transition/OrigamSlideX.vue +1 -1
- package/dist/src/components/Transition/OrigamSlideY.vue +1 -1
- package/dist/src/components/Transition/OrigamSnack.vue +1 -1
- package/dist/src/components/Transition/OrigamTransition.vue +1 -1
- package/dist/src/components/Transition/OrigamTranslateBottom.vue +1 -1
- package/dist/src/components/Transition/OrigamTranslatePicker.vue +1 -1
- package/dist/src/components/Transition/OrigamTranslateScale.vue +1 -1
- package/dist/src/components/Transition/OrigamWindowXReverseTranslate.vue +1 -1
- package/dist/src/components/Transition/OrigamWindowXTranslate.vue +1 -1
- package/dist/src/components/Transition/OrigamWindowYReverseTranslate.vue +1 -1
- package/dist/src/components/Transition/OrigamWindowYTranslate.vue +1 -1
- package/dist/src/components/Treeview/OrigamTreeview.vue +3 -5
- package/dist/src/components/Treeview/OrigamTreeviewNode.vue +7 -5
- package/dist/src/components/Video/OrigamVideo.vue +1080 -0
- package/dist/src/components/Video/index.cjs +13 -0
- package/dist/src/components/Video/index.d.ts +1 -0
- package/dist/src/components/Video/index.js +1 -0
- package/dist/src/components/VirtualScroll/OrigamVirtualScroll.vue +1 -1
- package/dist/src/components/VirtualScroll/OrigamVirtualScrollItem.vue +1 -6
- package/dist/src/components/Watermark/OrigamWatermark.vue +187 -0
- package/dist/src/components/Watermark/index.cjs +13 -0
- package/dist/src/components/Watermark/index.d.ts +1 -0
- package/dist/src/components/Watermark/index.js +1 -0
- package/dist/src/components/Window/OrigamWindow.vue +32 -2
- package/dist/src/components/Window/OrigamWindowItem.vue +1 -1
- package/dist/src/components/index.cjs +165 -11
- package/dist/src/components/index.d.ts +15 -1
- package/dist/src/components/index.js +15 -1
- package/dist/src/composables/Audio/use-audio-player.composable.cjs +26 -0
- package/dist/src/composables/Audio/use-audio-player.composable.d.ts +29 -0
- package/dist/src/composables/Audio/use-audio-player.composable.js +17 -0
- package/dist/src/composables/Audio/use-waveform.composable.cjs +91 -0
- package/dist/src/composables/Audio/use-waveform.composable.d.ts +32 -0
- package/dist/src/composables/Audio/use-waveform.composable.js +81 -0
- package/dist/src/composables/Calendar/calendar.composable.cjs +184 -0
- package/dist/src/composables/Calendar/calendar.composable.d.ts +72 -0
- package/dist/src/composables/Calendar/calendar.composable.js +182 -0
- package/dist/src/composables/Chart/chart-gauge.composable.cjs +54 -0
- package/dist/src/composables/Chart/chart-gauge.composable.d.ts +21 -0
- package/dist/src/composables/Chart/chart-gauge.composable.js +47 -0
- package/dist/src/composables/Chart/chart-header-typography.composable.cjs +20 -0
- package/dist/src/composables/Chart/chart-header-typography.composable.d.ts +27 -0
- package/dist/src/composables/Chart/chart-header-typography.composable.js +11 -0
- package/dist/src/composables/Chart/chart-zoom.composable.cjs +92 -0
- package/dist/src/composables/Chart/chart-zoom.composable.d.ts +34 -0
- package/dist/src/composables/Chart/chart-zoom.composable.js +86 -0
- package/dist/src/composables/Chart/chart.composable.cjs +882 -0
- package/dist/src/composables/Chart/chart.composable.d.ts +97 -0
- package/dist/src/composables/Chart/chart.composable.js +818 -0
- package/dist/src/composables/Clipboard/clipboard.composable.cjs +78 -0
- package/dist/src/composables/Clipboard/clipboard.composable.d.ts +21 -0
- package/dist/src/composables/Clipboard/clipboard.composable.js +79 -0
- package/dist/src/composables/Code/code.composable.cjs +21 -17
- package/dist/src/composables/Code/code.composable.js +17 -10
- package/dist/src/composables/Commons/audio.composable.d.ts +11 -11
- package/dist/src/composables/Commons/border.composable.cjs +10 -0
- package/dist/src/composables/Commons/border.composable.js +7 -0
- package/dist/src/composables/Commons/color.composable.cjs +70 -35
- package/dist/src/composables/Commons/color.composable.d.ts +8 -3
- package/dist/src/composables/Commons/color.composable.js +48 -13
- package/dist/src/composables/Commons/{calendar.composable.cjs → date-picker-calendar.composable.cjs} +3 -3
- package/dist/src/composables/Commons/{calendar.composable.d.ts → date-picker-calendar.composable.d.ts} +3 -3
- package/dist/src/composables/Commons/{calendar.composable.js → date-picker-calendar.composable.js} +2 -2
- package/dist/src/composables/Commons/defaults.composable.cjs +10 -9
- package/dist/src/composables/Commons/defaults.composable.js +10 -9
- package/dist/src/composables/Commons/delay.composable.cjs +8 -3
- package/dist/src/composables/Commons/delay.composable.js +7 -4
- package/dist/src/composables/Commons/density.composable.cjs +1 -1
- package/dist/src/composables/Commons/density.composable.js +2 -2
- package/dist/src/composables/Commons/dragResizer.composable.cjs +7 -9
- package/dist/src/composables/Commons/dragResizer.composable.js +8 -9
- package/dist/src/composables/Commons/elevation.composable.cjs +4 -5
- package/dist/src/composables/Commons/elevation.composable.js +1 -18
- package/dist/src/composables/Commons/focus.composable.cjs +1 -1
- package/dist/src/composables/Commons/focus.composable.js +1 -1
- package/dist/src/composables/Commons/layout.composable.cjs +12 -0
- package/dist/src/composables/Commons/layout.composable.js +14 -0
- package/dist/src/composables/Commons/message.composable.cjs +1 -1
- package/dist/src/composables/Commons/message.composable.d.ts +1 -1
- package/dist/src/composables/Commons/message.composable.js +1 -1
- package/dist/src/composables/Commons/rounded.composable.cjs +15 -4
- package/dist/src/composables/Commons/rounded.composable.d.ts +1 -1
- package/dist/src/composables/Commons/rounded.composable.js +17 -6
- package/dist/src/composables/Commons/scroll.composable.cjs +2 -2
- package/dist/src/composables/Commons/scroll.composable.js +2 -2
- package/dist/src/composables/Commons/stateEffect.composable.cjs +36 -14
- package/dist/src/composables/Commons/stateEffect.composable.js +38 -14
- package/dist/src/composables/Commons/status.composable.cjs +11 -1
- package/dist/src/composables/Commons/status.composable.d.ts +2 -0
- package/dist/src/composables/Commons/status.composable.js +10 -1
- package/dist/src/composables/Commons/sticky.composable.d.ts +2 -14
- package/dist/src/composables/Commons/style.composable.cjs +5 -3
- package/dist/src/composables/Commons/style.composable.js +5 -3
- package/dist/src/composables/Commons/typography.composable.cjs +23 -0
- package/dist/src/composables/Commons/typography.composable.d.ts +7 -0
- package/dist/src/composables/Commons/typography.composable.js +21 -0
- package/dist/src/composables/CssSupport/cssSupport.composable.cjs +5 -26
- package/dist/src/composables/CssSupport/cssSupport.composable.d.ts +1 -23
- package/dist/src/composables/CssSupport/cssSupport.composable.js +1 -22
- package/dist/src/composables/DataTable/headers.composable.d.ts +4 -364
- package/dist/src/composables/Icon/icon.composable.cjs +6 -1
- package/dist/src/composables/Icon/icon.composable.js +4 -1
- package/dist/src/composables/InlineEdit/inline-edit.composable.cjs +101 -0
- package/dist/src/composables/InlineEdit/inline-edit.composable.d.ts +36 -0
- package/dist/src/composables/InlineEdit/inline-edit.composable.js +100 -0
- package/dist/src/composables/Masonry/masonry.composable.cjs +160 -0
- package/dist/src/composables/Masonry/masonry.composable.d.ts +133 -0
- package/dist/src/composables/Masonry/masonry.composable.js +160 -0
- package/dist/src/composables/Media/use-media-player.composable.cjs +286 -0
- package/dist/src/composables/Media/use-media-player.composable.d.ts +43 -0
- package/dist/src/composables/Media/use-media-player.composable.js +289 -0
- package/dist/src/composables/NumberFormat/number-format.composable.cjs +165 -0
- package/dist/src/composables/NumberFormat/number-format.composable.d.ts +33 -0
- package/dist/src/composables/NumberFormat/number-format.composable.js +146 -0
- package/dist/src/composables/QrCode/qr-code.composable.cjs +111 -0
- package/dist/src/composables/QrCode/qr-code.composable.d.ts +31 -0
- package/dist/src/composables/QrCode/qr-code.composable.js +120 -0
- package/dist/src/composables/Responsive/aspect.composable.cjs +9 -1
- package/dist/src/composables/Responsive/aspect.composable.d.ts +1 -1
- package/dist/src/composables/Responsive/aspect.composable.js +9 -1
- package/dist/src/composables/Sheet/sheetSwipe.composable.cjs +5 -5
- package/dist/src/composables/Sheet/sheetSwipe.composable.d.ts +1 -1
- package/dist/src/composables/Sheet/sheetSwipe.composable.js +3 -3
- package/dist/src/composables/SliderField/slider-field.composable.cjs +0 -213
- package/dist/src/composables/SliderField/slider-field.composable.d.ts +11 -5
- package/dist/src/composables/SliderField/slider-field.composable.js +2 -191
- package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.cjs → Snackbar/snackbar-group.composable.cjs} +10 -10
- package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.d.ts → Snackbar/snackbar-group.composable.d.ts} +14 -14
- package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.js → Snackbar/snackbar-group.composable.js} +9 -9
- package/dist/src/composables/Theme/installed-themes.composable.cjs +11 -0
- package/dist/src/composables/Theme/installed-themes.composable.d.ts +19 -0
- package/dist/src/composables/Theme/installed-themes.composable.js +5 -0
- package/dist/src/composables/Theme/theme.composable.cjs +91 -21
- package/dist/src/composables/Theme/theme.composable.d.ts +55 -10
- package/dist/src/composables/Theme/theme.composable.js +88 -18
- package/dist/src/composables/Video/video-player.composable.cjs +129 -0
- package/dist/src/composables/Video/video-player.composable.d.ts +44 -0
- package/dist/src/composables/Video/video-player.composable.js +128 -0
- package/dist/src/composables/Watermark/watermark.composable.cjs +147 -0
- package/dist/src/composables/Watermark/watermark.composable.d.ts +28 -0
- package/dist/src/composables/Watermark/watermark.composable.js +158 -0
- package/dist/src/composables/index.cjs +273 -8
- package/dist/src/composables/index.d.ts +17 -2
- package/dist/src/composables/index.js +17 -2
- package/dist/src/consts/Audio/audio.const.cjs +25 -0
- package/dist/src/consts/Audio/audio.const.d.ts +30 -0
- package/dist/src/consts/Audio/audio.const.js +19 -0
- package/dist/src/consts/Blockquote/blockquote.const.cjs +32 -0
- package/dist/src/consts/Blockquote/blockquote.const.d.ts +37 -0
- package/dist/src/consts/Blockquote/blockquote.const.js +30 -0
- package/dist/src/consts/Bracket/bracket.const.cjs +4 -2
- package/dist/src/consts/Bracket/bracket.const.d.ts +12 -0
- package/dist/src/consts/Bracket/bracket.const.js +2 -0
- package/dist/src/consts/Chart/chart.const.cjs +26 -0
- package/dist/src/consts/Chart/chart.const.d.ts +32 -0
- package/dist/src/consts/Chart/chart.const.js +9 -0
- package/dist/src/consts/Chart/country-centroids.const.cjs +43 -0
- package/dist/src/consts/Chart/country-centroids.const.d.ts +10 -0
- package/dist/src/consts/Chart/country-centroids.const.js +37 -0
- package/dist/src/consts/Chart/pictorial-icons.const.cjs +12 -0
- package/dist/src/consts/Chart/pictorial-icons.const.d.ts +18 -0
- package/dist/src/consts/Chart/pictorial-icons.const.js +6 -0
- package/dist/src/consts/Chart/world-geographic.const.cjs +152 -0
- package/dist/src/consts/Chart/world-geographic.const.d.ts +22 -0
- package/dist/src/consts/Chart/world-geographic.const.js +1722 -0
- package/dist/src/consts/Chart/world-map.const.cjs +43 -0
- package/dist/src/consts/Chart/world-map.const.d.ts +14 -0
- package/dist/src/consts/Chart/world-map.const.js +37 -0
- package/dist/src/consts/Clipboard/clipboard.const.cjs +7 -0
- package/dist/src/consts/Clipboard/clipboard.const.d.ts +6 -0
- package/dist/src/consts/Clipboard/clipboard.const.js +1 -0
- package/dist/src/consts/Code/code.const.cjs +3 -6
- package/dist/src/consts/Code/code.const.d.ts +8 -12
- package/dist/src/consts/Code/code.const.js +3 -6
- package/dist/src/consts/Commons/density.const.cjs +2 -2
- package/dist/src/consts/Commons/density.const.d.ts +1 -1
- package/dist/src/consts/Commons/density.const.js +1 -1
- package/dist/src/consts/Commons/elevation.const.cjs +8 -0
- package/dist/src/consts/Commons/elevation.const.d.ts +17 -0
- package/dist/src/consts/Commons/elevation.const.js +18 -0
- package/dist/src/consts/Commons/rounded.const.cjs +4 -2
- package/dist/src/consts/Commons/rounded.const.d.ts +22 -2
- package/dist/src/consts/Commons/rounded.const.js +3 -1
- package/dist/src/consts/CssSupport/css-support.const.cjs +29 -0
- package/dist/src/consts/CssSupport/css-support.const.d.ts +40 -0
- package/dist/src/consts/CssSupport/css-support.const.js +23 -0
- package/dist/src/consts/DataTable/select.const.cjs +3 -2
- package/dist/src/consts/DataTable/select.const.d.ts +2 -1
- package/dist/src/consts/DataTable/select.const.js +2 -1
- package/dist/src/consts/EmptyState/empty-state.const.cjs +32 -0
- package/dist/src/consts/EmptyState/empty-state.const.d.ts +29 -0
- package/dist/src/consts/EmptyState/empty-state.const.js +39 -0
- package/dist/src/consts/Grid/grid.const.cjs +28 -0
- package/dist/src/consts/Grid/grid.const.d.ts +49 -0
- package/dist/src/consts/Grid/grid.const.js +46 -0
- package/dist/src/consts/Icon/mdi.const.cjs +6 -1
- package/dist/src/consts/Icon/mdi.const.js +10 -2
- package/dist/src/consts/Masonry/masonry.const.cjs +14 -0
- package/dist/src/consts/Masonry/masonry.const.d.ts +27 -0
- package/dist/src/consts/Masonry/masonry.const.js +11 -0
- package/dist/src/consts/Media/media.const.cjs +8 -0
- package/dist/src/consts/Media/media.const.d.ts +14 -0
- package/dist/src/consts/Media/media.const.js +2 -0
- package/dist/src/consts/NumberFormat/number-format.const.cjs +9 -0
- package/dist/src/consts/NumberFormat/number-format.const.d.ts +19 -0
- package/dist/src/consts/NumberFormat/number-format.const.js +3 -0
- package/dist/src/consts/QrCode/qr-code.const.cjs +12 -0
- package/dist/src/consts/QrCode/qr-code.const.d.ts +33 -0
- package/dist/src/consts/QrCode/qr-code.const.js +6 -0
- package/dist/src/consts/Sheet/sheet-swipe.const.cjs +7 -0
- package/dist/src/consts/Sheet/sheet-swipe.const.d.ts +11 -0
- package/dist/src/consts/Sheet/sheet-swipe.const.js +1 -0
- package/dist/src/consts/Snackbar/snackbar-group.const.cjs +12 -0
- package/dist/src/consts/Snackbar/snackbar-group.const.d.ts +33 -0
- package/dist/src/consts/Snackbar/snackbar-group.const.js +18 -0
- package/dist/src/consts/Theme/theme.const.cjs +11 -1
- package/dist/src/consts/Theme/theme.const.d.ts +16 -0
- package/dist/src/consts/Theme/theme.const.js +10 -0
- package/dist/src/consts/Video/video.const.cjs +7 -0
- package/dist/src/consts/Video/video.const.d.ts +7 -0
- package/dist/src/consts/Video/video.const.js +1 -0
- package/dist/src/consts/Watermark/watermark.const.cjs +16 -0
- package/dist/src/consts/Watermark/watermark.const.d.ts +27 -0
- package/dist/src/consts/Watermark/watermark.const.js +10 -0
- package/dist/src/consts/index.cjs +188 -12
- package/dist/src/consts/index.d.ts +18 -2
- package/dist/src/consts/index.js +18 -2
- package/dist/src/directives/Contrast/contrast.directive.cjs +150 -0
- package/dist/src/directives/Contrast/contrast.directive.d.ts +5 -0
- package/dist/src/directives/Contrast/contrast.directive.js +131 -0
- package/dist/src/directives/index.cjs +7 -0
- package/dist/src/directives/index.d.ts +1 -0
- package/dist/src/directives/index.js +1 -0
- package/dist/src/enums/Audio/audio-loop-mode.enum.cjs +12 -0
- package/dist/src/enums/Audio/audio-loop-mode.enum.d.ts +17 -0
- package/dist/src/enums/Audio/audio-loop-mode.enum.js +6 -0
- package/dist/src/enums/Audio/audio-variant.enum.cjs +13 -0
- package/dist/src/enums/Audio/audio-variant.enum.d.ts +26 -0
- package/dist/src/enums/Audio/audio-variant.enum.js +7 -0
- package/dist/src/enums/Audio/cover-position.enum.cjs +11 -0
- package/dist/src/enums/Audio/cover-position.enum.d.ts +9 -0
- package/dist/src/enums/Audio/cover-position.enum.js +5 -0
- package/dist/src/enums/Blockquote/blockquote-lang.enum.cjs +14 -0
- package/dist/src/enums/Blockquote/blockquote-lang.enum.d.ts +7 -0
- package/dist/src/enums/Blockquote/blockquote-lang.enum.js +8 -0
- package/dist/src/enums/Blockquote/blockquote-variant.enum.cjs +14 -0
- package/dist/src/enums/Blockquote/blockquote-variant.enum.d.ts +7 -0
- package/dist/src/enums/Blockquote/blockquote-variant.enum.js +8 -0
- package/dist/src/enums/BottomNav/bottom-nav-position.enum.cjs +12 -0
- package/dist/src/enums/BottomNav/bottom-nav-position.enum.d.ts +10 -0
- package/dist/src/enums/BottomNav/bottom-nav-position.enum.js +6 -0
- package/dist/src/enums/Chart/chart-bullet-orientation.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-bullet-orientation.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-bullet-orientation.enum.js +5 -0
- package/dist/src/enums/Chart/chart-cartesian-kind.enum.cjs +16 -0
- package/dist/src/enums/Chart/chart-cartesian-kind.enum.d.ts +14 -0
- package/dist/src/enums/Chart/chart-cartesian-kind.enum.js +10 -0
- package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.js +5 -0
- package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.js +5 -0
- package/dist/src/enums/Chart/chart-map-mode.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-map-mode.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-map-mode.enum.js +5 -0
- package/dist/src/enums/Chart/chart-pictorial-direction.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-pictorial-direction.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-pictorial-direction.enum.js +5 -0
- package/dist/src/enums/Chart/chart-pictorial-mode.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-pictorial-mode.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-pictorial-mode.enum.js +5 -0
- package/dist/src/enums/Chart/chart-polar-kind.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-polar-kind.enum.d.ts +8 -0
- package/dist/src/enums/Chart/chart-polar-kind.enum.js +5 -0
- package/dist/src/enums/Chart/chart-pyramid-kind.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-pyramid-kind.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-pyramid-kind.enum.js +5 -0
- package/dist/src/enums/Chart/chart-sparkline-kind.enum.cjs +13 -0
- package/dist/src/enums/Chart/chart-sparkline-kind.enum.d.ts +6 -0
- package/dist/src/enums/Chart/chart-sparkline-kind.enum.js +7 -0
- package/dist/src/enums/Chart/chart-stacking.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-stacking.enum.d.ts +14 -0
- package/dist/src/enums/Chart/chart-stacking.enum.js +5 -0
- package/dist/src/enums/Chart/chart-streamgraph-offset.enum.cjs +13 -0
- package/dist/src/enums/Chart/chart-streamgraph-offset.enum.d.ts +6 -0
- package/dist/src/enums/Chart/chart-streamgraph-offset.enum.js +7 -0
- package/dist/src/enums/Chart/chart-treemap-algorithm.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-treemap-algorithm.enum.d.ts +9 -0
- package/dist/src/enums/Chart/chart-treemap-algorithm.enum.js +5 -0
- package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.cjs +12 -0
- package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.d.ts +5 -0
- package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.js +6 -0
- package/dist/src/enums/Chart/chart.enum.cjs +38 -0
- package/dist/src/enums/Chart/chart.enum.d.ts +31 -0
- package/dist/src/enums/Chart/chart.enum.js +32 -0
- package/dist/src/enums/EmptyState/empty-state-preset.enum.cjs +14 -0
- package/dist/src/enums/EmptyState/empty-state-preset.enum.d.ts +16 -0
- package/dist/src/enums/EmptyState/empty-state-preset.enum.js +8 -0
- package/dist/src/enums/InlineEdit/inline-edit-action.enum.cjs +12 -0
- package/dist/src/enums/InlineEdit/inline-edit-action.enum.d.ts +10 -0
- package/dist/src/enums/InlineEdit/inline-edit-action.enum.js +6 -0
- package/dist/src/enums/SliderField/slider-field-variant.enum.cjs +12 -0
- package/dist/src/enums/SliderField/slider-field-variant.enum.d.ts +21 -0
- package/dist/src/enums/SliderField/slider-field-variant.enum.js +6 -0
- package/dist/src/enums/Toolbar/toolbar.enum.cjs +1 -0
- package/dist/src/enums/Toolbar/toolbar.enum.d.ts +2 -1
- package/dist/src/enums/Toolbar/toolbar.enum.js +1 -0
- package/dist/src/enums/index.cjs +254 -1
- package/dist/src/enums/index.d.ts +24 -1
- package/dist/src/enums/index.js +24 -1
- package/dist/src/interfaces/Alert/alert.interface.d.ts +6 -3
- package/dist/src/interfaces/App/app-bar.interface.d.ts +23 -2
- package/dist/src/interfaces/App/app.interface.d.ts +24 -0
- package/dist/src/interfaces/Audio/audio-player.interface.d.ts +427 -0
- package/dist/src/interfaces/Avatar/avatar-group.interface.d.ts +5 -1
- package/dist/src/interfaces/Avatar/avatar.interface.d.ts +5 -4
- package/dist/src/interfaces/Badge/badge.interface.d.ts +2 -2
- package/dist/src/interfaces/Blockquote/blockquote.interface.d.ts +86 -0
- package/dist/src/interfaces/BottomNav/bottom-nav.interface.d.ts +16 -4
- package/dist/src/interfaces/Bracket/bracket-competitor-component.interface.d.ts +17 -6
- package/dist/src/interfaces/Bracket/bracket-match-component.interface.d.ts +13 -6
- package/dist/src/interfaces/Bracket/bracket-match.interface.d.ts +22 -0
- package/dist/src/interfaces/Bracket/bracket-round-component.interface.d.ts +2 -2
- package/dist/src/interfaces/Bracket/bracket.interface.d.ts +18 -10
- package/dist/src/interfaces/Breadcrumb/breadcrumb-divider.interface.d.ts +2 -2
- package/dist/src/interfaces/Breadcrumb/breadcrumb-item.interface.d.ts +4 -1
- package/dist/src/interfaces/Breadcrumb/breadcrumb.interface.d.ts +2 -3
- package/dist/src/interfaces/Btn/btn-group.interface.d.ts +2 -2
- package/dist/src/interfaces/Btn/btn-toggle.interface.d.ts +4 -1
- package/dist/src/interfaces/Btn/btn.interface.d.ts +15 -3
- package/dist/src/interfaces/Calendar/calendar.interface.d.ts +164 -0
- package/dist/src/interfaces/Calendar/event.interface.d.ts +54 -0
- package/dist/src/interfaces/Card/card-header.interface.d.ts +5 -2
- package/dist/src/interfaces/Card/card-text.interface.d.ts +2 -2
- package/dist/src/interfaces/Card/card.interface.d.ts +5 -1
- package/dist/src/interfaces/Carousel/carousel.interface.d.ts +5 -2
- package/dist/src/interfaces/Chart/chart-annotation.interface.d.ts +99 -0
- package/dist/src/interfaces/Chart/chart-axis.interface.d.ts +78 -0
- package/dist/src/interfaces/Chart/chart-base.interface.d.ts +88 -0
- package/dist/src/interfaces/Chart/chart-box-plot.interface.d.ts +203 -0
- package/dist/src/interfaces/Chart/chart-bullet.interface.d.ts +140 -0
- package/dist/src/interfaces/Chart/chart-candlestick.interface.d.ts +131 -0
- package/dist/src/interfaces/Chart/chart-cartesian.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-cartesian.interface.d.ts +124 -0
- package/dist/src/interfaces/Chart/chart-cartesian.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-drilldown.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-drilldown.interface.d.ts +60 -0
- package/dist/src/interfaces/Chart/chart-drilldown.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-gauge.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-gauge.interface.d.ts +130 -0
- package/dist/src/interfaces/Chart/chart-gauge.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-heatmap.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-heatmap.interface.d.ts +128 -0
- package/dist/src/interfaces/Chart/chart-heatmap.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-honeycomb.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-honeycomb.interface.d.ts +109 -0
- package/dist/src/interfaces/Chart/chart-honeycomb.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-legend.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-legend.interface.d.ts +48 -0
- package/dist/src/interfaces/Chart/chart-legend.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-map.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-map.interface.d.ts +137 -0
- package/dist/src/interfaces/Chart/chart-map.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-pareto.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-pareto.interface.d.ts +124 -0
- package/dist/src/interfaces/Chart/chart-pareto.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-pictorial.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-pictorial.interface.d.ts +114 -0
- package/dist/src/interfaces/Chart/chart-pictorial.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-plot-band.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-plot-band.interface.d.ts +34 -0
- package/dist/src/interfaces/Chart/chart-plot-band.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-plot-line.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-plot-line.interface.d.ts +39 -0
- package/dist/src/interfaces/Chart/chart-plot-line.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-point.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-point.interface.d.ts +20 -0
- package/dist/src/interfaces/Chart/chart-point.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-polar-bar.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-polar-bar.interface.d.ts +118 -0
- package/dist/src/interfaces/Chart/chart-polar-bar.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-polar.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-polar.interface.d.ts +43 -0
- package/dist/src/interfaces/Chart/chart-polar.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-pyramid.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-pyramid.interface.d.ts +96 -0
- package/dist/src/interfaces/Chart/chart-pyramid.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-radar.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-radar.interface.d.ts +10 -0
- package/dist/src/interfaces/Chart/chart-radar.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-range-selector.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-range-selector.interface.d.ts +38 -0
- package/dist/src/interfaces/Chart/chart-range-selector.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-sankey.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-sankey.interface.d.ts +124 -0
- package/dist/src/interfaces/Chart/chart-sankey.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-series.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-series.interface.d.ts +80 -0
- package/dist/src/interfaces/Chart/chart-series.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-sparkline.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-sparkline.interface.d.ts +108 -0
- package/dist/src/interfaces/Chart/chart-sparkline.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-streamgraph.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-streamgraph.interface.d.ts +82 -0
- package/dist/src/interfaces/Chart/chart-streamgraph.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-sunburst.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-sunburst.interface.d.ts +100 -0
- package/dist/src/interfaces/Chart/chart-sunburst.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-tooltip.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-tooltip.interface.d.ts +55 -0
- package/dist/src/interfaces/Chart/chart-tooltip.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-treemap.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-treemap.interface.d.ts +106 -0
- package/dist/src/interfaces/Chart/chart-treemap.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-variwide.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-variwide.interface.d.ts +132 -0
- package/dist/src/interfaces/Chart/chart-variwide.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-word-cloud.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-word-cloud.interface.d.ts +83 -0
- package/dist/src/interfaces/Chart/chart-word-cloud.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart.interface.d.ts +287 -0
- package/dist/src/interfaces/Chart/chart.interface.js +0 -0
- package/dist/src/interfaces/Checkbox/checkbox-btn.interface.d.ts +3 -3
- package/dist/src/interfaces/Checkbox/checkbox.interface.d.ts +10 -9
- package/dist/src/interfaces/Chip/chip-group.interface.d.ts +6 -1
- package/dist/src/interfaces/Chip/chip.interface.d.ts +6 -2
- package/dist/src/interfaces/Clipboard/clipboard.interface.cjs +1 -0
- package/dist/src/interfaces/Clipboard/clipboard.interface.d.ts +106 -0
- package/dist/src/interfaces/Clipboard/clipboard.interface.js +0 -0
- package/dist/src/interfaces/Code/code.interface.d.ts +21 -14
- package/dist/src/interfaces/ColorPicker/color-picker-canvas.interface.d.ts +5 -1
- package/dist/src/interfaces/ColorPicker/color-picker-edit.interface.d.ts +5 -1
- package/dist/src/interfaces/ColorPicker/color-picker-preview.interface.d.ts +4 -1
- package/dist/src/interfaces/ColorPicker/color-picker-swatches.interface.d.ts +5 -1
- package/dist/src/interfaces/ColorPicker/color-picker.interface.d.ts +18 -2
- package/dist/src/interfaces/ColorPickerField/color-picker-field.interface.d.ts +2 -2
- package/dist/src/interfaces/CommandPalette/command-palette.interface.d.ts +2 -1
- package/dist/src/interfaces/Commons/audio.interface.d.ts +7 -1
- package/dist/src/interfaces/Commons/calendar.interface.d.ts +3 -3
- package/dist/src/interfaces/Commons/clickOutside.interface.d.ts +5 -0
- package/dist/src/interfaces/Commons/commons.interface.d.ts +52 -1
- package/dist/src/interfaces/Commons/filters.interface.d.ts +2 -2
- package/dist/src/interfaces/Commons/gradient.interface.cjs +1 -0
- package/dist/src/interfaces/Commons/gradient.interface.d.ts +39 -0
- package/dist/src/interfaces/Commons/gradient.interface.js +0 -0
- package/dist/src/interfaces/Commons/group.interface.d.ts +6 -0
- package/dist/src/interfaces/Commons/hover.interface.d.ts +22 -3
- package/dist/src/interfaces/Commons/layout.interface.d.ts +2 -2
- package/dist/src/interfaces/Commons/lazy.interface.d.ts +5 -1
- package/dist/src/interfaces/Commons/scroll.interface.d.ts +8 -1
- package/dist/src/interfaces/Commons/typography.interface.cjs +1 -0
- package/dist/src/interfaces/Commons/typography.interface.d.ts +52 -0
- package/dist/src/interfaces/Commons/typography.interface.js +0 -0
- package/dist/src/interfaces/Commons/validation.interface.d.ts +3 -1
- package/dist/src/interfaces/Counter/counter.interface.d.ts +2 -2
- package/dist/src/interfaces/DataList/data-list.interface.d.ts +2 -2
- package/dist/src/interfaces/DataList/data-text.interface.d.ts +5 -0
- package/dist/src/interfaces/DataList/data-title.interface.d.ts +5 -0
- package/dist/src/interfaces/DataTable/data-table.interface.d.ts +12 -1
- package/dist/src/interfaces/DataTable/headers.interface.d.ts +10 -5
- package/dist/src/interfaces/DataTable/row.interface.d.ts +11 -0
- package/dist/src/interfaces/DatePicker/date-picker-controls.interface.d.ts +19 -2
- package/dist/src/interfaces/DatePicker/date-picker-header.interface.d.ts +6 -0
- package/dist/src/interfaces/DatePicker/date-picker-months.interface.d.ts +6 -2
- package/dist/src/interfaces/DatePicker/date-picker-years.interface.d.ts +5 -1
- package/dist/src/interfaces/DatePicker/date-picker.interface.d.ts +10 -2
- package/dist/src/interfaces/DatePickerField/date-picker-field.interface.d.ts +2 -2
- package/dist/src/interfaces/Dialog/dialog-confirmation.interface.d.ts +5 -0
- package/dist/src/interfaces/Dialog/dialog.interface.d.ts +8 -1
- package/dist/src/interfaces/Drawer/drawer.interface.d.ts +4 -0
- package/dist/src/interfaces/EmptyState/empty-state.interface.cjs +1 -0
- package/dist/src/interfaces/EmptyState/empty-state.interface.d.ts +107 -0
- package/dist/src/interfaces/EmptyState/empty-state.interface.js +0 -0
- package/dist/src/interfaces/ExpensionPanel/expansion-panel-header.interface.d.ts +5 -2
- package/dist/src/interfaces/ExpensionPanel/expansion-panel.interface.d.ts +4 -1
- package/dist/src/interfaces/ExpensionPanel/expansion-panels.interface.d.ts +4 -1
- package/dist/src/interfaces/Field/field.interface.d.ts +7 -2
- package/dist/src/interfaces/FileField/file-field-dragndrop-item.interface.d.ts +2 -3
- package/dist/src/interfaces/FileField/file-field-list-item.interface.d.ts +2 -3
- package/dist/src/interfaces/FileField/file-field.interface.d.ts +1 -1
- package/dist/src/interfaces/Form/form.interface.d.ts +2 -2
- package/dist/src/interfaces/Grid/grid-item.interface.cjs +1 -0
- package/dist/src/interfaces/Grid/grid-item.interface.d.ts +55 -0
- package/dist/src/interfaces/Grid/grid-item.interface.js +0 -0
- package/dist/src/interfaces/Grid/grid.interface.cjs +1 -0
- package/dist/src/interfaces/Grid/grid.interface.d.ts +121 -0
- package/dist/src/interfaces/Grid/grid.interface.js +0 -0
- package/dist/src/interfaces/Grids/row.interface.d.ts +2 -2
- package/dist/src/interfaces/Icon/icon.interface.d.ts +2 -2
- package/dist/src/interfaces/Img/img.interface.d.ts +14 -0
- package/dist/src/interfaces/InfiniteScroll/infinite-scroll.interface.d.ts +18 -2
- package/dist/src/interfaces/InlineEdit/inline-edit.interface.cjs +1 -0
- package/dist/src/interfaces/InlineEdit/inline-edit.interface.d.ts +270 -0
- package/dist/src/interfaces/InlineEdit/inline-edit.interface.js +0 -0
- package/dist/src/interfaces/Input/input.interface.d.ts +4 -3
- package/dist/src/interfaces/ItemGroup/item-group.interface.d.ts +4 -1
- package/dist/src/interfaces/Kbd/kbd.interface.d.ts +2 -2
- package/dist/src/interfaces/Label/label.interface.d.ts +2 -2
- package/dist/src/interfaces/List/list-group.interface.d.ts +8 -0
- package/dist/src/interfaces/List/list-item.interface.d.ts +5 -2
- package/dist/src/interfaces/List/list-subheader.interface.d.ts +2 -2
- package/dist/src/interfaces/List/list.interface.d.ts +16 -0
- package/dist/src/interfaces/Main/main.interface.d.ts +2 -2
- package/dist/src/interfaces/Masonry/masonry.interface.cjs +1 -0
- package/dist/src/interfaces/Masonry/masonry.interface.d.ts +80 -0
- package/dist/src/interfaces/Masonry/masonry.interface.js +0 -0
- package/dist/src/interfaces/Media/index.cjs +49 -0
- package/dist/src/interfaces/Media/index.d.ts +4 -0
- package/dist/src/interfaces/Media/index.js +4 -0
- package/dist/src/interfaces/Media/media-controller.interface.cjs +1 -0
- package/dist/src/interfaces/Media/media-controller.interface.d.ts +159 -0
- package/dist/src/interfaces/Media/media-controller.interface.js +0 -0
- package/dist/src/interfaces/Media/media-player.interface.cjs +1 -0
- package/dist/src/interfaces/Media/media-player.interface.d.ts +121 -0
- package/dist/src/interfaces/Media/media-player.interface.js +0 -0
- package/dist/src/interfaces/Media/media-scrubber.interface.cjs +1 -0
- package/dist/src/interfaces/Media/media-scrubber.interface.d.ts +137 -0
- package/dist/src/interfaces/Media/media-scrubber.interface.js +0 -0
- package/dist/src/interfaces/Media/media-volume-control.interface.cjs +1 -0
- package/dist/src/interfaces/Media/media-volume-control.interface.d.ts +68 -0
- package/dist/src/interfaces/Media/media-volume-control.interface.js +0 -0
- package/dist/src/interfaces/Menu/menu.interface.d.ts +7 -1
- package/dist/src/interfaces/Messages/messages.interface.d.ts +2 -2
- package/dist/src/interfaces/NumberField/number-field.interface.d.ts +3 -3
- package/dist/src/interfaces/NumberFormat/number-format.interface.cjs +1 -0
- package/dist/src/interfaces/NumberFormat/number-format.interface.d.ts +161 -0
- package/dist/src/interfaces/NumberFormat/number-format.interface.js +0 -0
- package/dist/src/interfaces/Nuxt/nuxt-module.interface.d.ts +55 -15
- package/dist/src/interfaces/OtpInputField/otp-input-field.interface.d.ts +6 -4
- package/dist/src/interfaces/Overlay/overlay-scrim.interface.d.ts +8 -1
- package/dist/src/interfaces/Overlay/overlay.interface.d.ts +8 -1
- package/dist/src/interfaces/Pagination/pagination.interface.d.ts +26 -3
- package/dist/src/interfaces/Parallax/parallax.interface.d.ts +2 -2
- package/dist/src/interfaces/PasswordField/password-field.interface.d.ts +3 -3
- package/dist/src/interfaces/Picker/picker-title.interface.d.ts +2 -2
- package/dist/src/interfaces/Picker/picker.interface.d.ts +2 -2
- package/dist/src/interfaces/Progress/progress.interface.d.ts +8 -2
- package/dist/src/interfaces/QrCode/qr-code-logo.interface.cjs +1 -0
- package/dist/src/interfaces/QrCode/qr-code-logo.interface.d.ts +47 -0
- package/dist/src/interfaces/QrCode/qr-code-logo.interface.js +0 -0
- package/dist/src/interfaces/QrCode/qr-code.interface.cjs +1 -0
- package/dist/src/interfaces/QrCode/qr-code.interface.d.ts +152 -0
- package/dist/src/interfaces/QrCode/qr-code.interface.js +0 -0
- package/dist/src/interfaces/Radio/radio-btn.interface.d.ts +4 -1
- package/dist/src/interfaces/Radio/radio.interface.d.ts +4 -1
- package/dist/src/interfaces/RatingField/rating-field-item.interface.d.ts +9 -2
- package/dist/src/interfaces/RatingField/rating-field.interface.d.ts +5 -2
- package/dist/src/interfaces/Select/select.interface.d.ts +9 -1
- package/dist/src/interfaces/SelectionControl/selection-control-group.interface.d.ts +2 -1
- package/dist/src/interfaces/SelectionControl/selection-control.interface.d.ts +23 -5
- package/dist/src/interfaces/Sheet/sheet.interface.d.ts +2 -2
- package/dist/src/interfaces/Slide/slide-group.interface.d.ts +4 -1
- package/dist/src/interfaces/SliderField/slider-field-track.interface.d.ts +17 -0
- package/dist/src/interfaces/SliderField/slider-field.interface.d.ts +77 -59
- package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.cjs +1 -0
- package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.d.ts → Snackbar/snackbar-group-item.interface.d.ts} +5 -5
- package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.js +0 -0
- package/dist/src/interfaces/Snackbar/snackbar-group.interface.cjs +1 -0
- package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.d.ts → Snackbar/snackbar-group.interface.d.ts} +7 -7
- package/dist/src/interfaces/Snackbar/snackbar-group.interface.js +0 -0
- package/dist/src/interfaces/Snackbar/snackbar-item.interface.cjs +1 -0
- package/dist/src/interfaces/Snackbar/snackbar-item.interface.d.ts +79 -0
- package/dist/src/interfaces/Snackbar/snackbar-item.interface.js +0 -0
- package/dist/src/interfaces/Stepper/stepper.interface.d.ts +2 -2
- package/dist/src/interfaces/Switch/switch-track.interface.d.ts +8 -0
- package/dist/src/interfaces/Switch/switch.interface.d.ts +5 -1
- package/dist/src/interfaces/SystemBar/system-bar.interface.d.ts +2 -2
- package/dist/src/interfaces/Table/table.interface.d.ts +5 -2
- package/dist/src/interfaces/Tabs/tab-panels.interface.d.ts +4 -1
- package/dist/src/interfaces/Tabs/tab.interface.d.ts +7 -2
- package/dist/src/interfaces/Tabs/tabs.interface.d.ts +4 -1
- package/dist/src/interfaces/TextField/text-field.interface.d.ts +1 -1
- package/dist/src/interfaces/TextMask/text-mask.interface.cjs +1 -0
- package/dist/src/interfaces/TextMask/text-mask.interface.d.ts +86 -0
- package/dist/src/interfaces/TextMask/text-mask.interface.js +0 -0
- package/dist/src/interfaces/TextareaField/textarea-field.interface.d.ts +3 -3
- package/dist/src/interfaces/Theme/origam-theme.interface.cjs +1 -0
- package/dist/src/interfaces/Theme/origam-theme.interface.d.ts +114 -0
- package/dist/src/interfaces/Theme/origam-theme.interface.js +0 -0
- package/dist/src/interfaces/Timeline/timeline.interface.d.ts +1 -1
- package/dist/src/interfaces/Title/title.interface.d.ts +2 -2
- package/dist/src/interfaces/Toolbar/toolbar.interface.d.ts +2 -2
- package/dist/src/interfaces/Tooltip/tooltip.interface.d.ts +5 -2
- package/dist/src/interfaces/Video/video-track.interface.cjs +1 -0
- package/dist/src/interfaces/Video/video-track.interface.d.ts +76 -0
- package/dist/src/interfaces/Video/video-track.interface.js +0 -0
- package/dist/src/interfaces/Video/video.interface.cjs +1 -0
- package/dist/src/interfaces/Video/video.interface.d.ts +317 -0
- package/dist/src/interfaces/Video/video.interface.js +0 -0
- package/dist/src/interfaces/VirtualScroll/virtual-scroll-item.interface.d.ts +6 -0
- package/dist/src/interfaces/Watermark/watermark.interface.cjs +1 -0
- package/dist/src/interfaces/Watermark/watermark.interface.d.ts +163 -0
- package/dist/src/interfaces/Watermark/watermark.interface.js +0 -0
- package/dist/src/interfaces/Window/window-item.interface.d.ts +4 -1
- package/dist/src/interfaces/Window/window.interface.d.ts +5 -2
- package/dist/src/interfaces/index.cjs +621 -49
- package/dist/src/interfaces/index.d.ts +58 -6
- package/dist/src/interfaces/index.js +58 -6
- package/dist/src/nuxt/module.cjs +78 -8
- package/dist/src/nuxt/module.js +81 -9
- package/dist/src/nuxt/plugin.client.cjs +28 -10
- package/dist/src/nuxt/plugin.client.js +28 -10
- package/dist/src/nuxt/plugin.server.cjs +52 -12
- package/dist/src/nuxt/plugin.server.js +55 -13
- package/dist/src/origam.cjs +39 -2
- package/dist/src/origam.d.ts +19 -1
- package/dist/src/origam.js +46 -5
- package/dist/src/themes/index.cjs +24 -0
- package/dist/src/themes/index.d.ts +1 -0
- package/dist/src/themes/index.js +1 -0
- package/dist/src/themes/origam.theme.cjs +906 -0
- package/dist/src/themes/origam.theme.d.ts +4 -0
- package/dist/src/themes/origam.theme.js +379 -0
- package/dist/src/types/Audio/audio-controls.type.cjs +1 -0
- package/dist/src/types/Audio/audio-controls.type.d.ts +12 -0
- package/dist/src/types/Audio/audio-controls.type.js +0 -0
- package/dist/src/types/Audio/audio-loop-mode.type.cjs +1 -0
- package/dist/src/types/Audio/audio-loop-mode.type.d.ts +5 -0
- package/dist/src/types/Audio/audio-loop-mode.type.js +0 -0
- package/dist/src/types/Audio/audio-variant.type.cjs +1 -0
- package/dist/src/types/Audio/audio-variant.type.d.ts +7 -0
- package/dist/src/types/Audio/audio-variant.type.js +0 -0
- package/dist/src/types/Audio/cover-position.type.cjs +1 -0
- package/dist/src/types/Audio/cover-position.type.d.ts +6 -0
- package/dist/src/types/Audio/cover-position.type.js +0 -0
- package/dist/src/types/Blockquote/blockquote-align.type.cjs +1 -0
- package/dist/src/types/Blockquote/blockquote-align.type.d.ts +5 -0
- package/dist/src/types/Blockquote/blockquote-align.type.js +0 -0
- package/dist/src/types/Blockquote/blockquote-lang.type.cjs +1 -0
- package/dist/src/types/Blockquote/blockquote-lang.type.d.ts +18 -0
- package/dist/src/types/Blockquote/blockquote-lang.type.js +0 -0
- package/dist/src/types/Blockquote/blockquote-variant.type.cjs +1 -0
- package/dist/src/types/Blockquote/blockquote-variant.type.d.ts +17 -0
- package/dist/src/types/Blockquote/blockquote-variant.type.js +0 -0
- package/dist/src/types/BottomNav/bottom-nav.type.d.ts +2 -0
- package/dist/src/types/Calendar/calendar-time-format.type.cjs +1 -0
- package/dist/src/types/Calendar/calendar-time-format.type.d.ts +13 -0
- package/dist/src/types/Calendar/calendar-time-format.type.js +0 -0
- package/dist/src/types/Calendar/calendar-view.type.cjs +1 -0
- package/dist/src/types/Calendar/calendar-view.type.d.ts +10 -0
- package/dist/src/types/Calendar/calendar-view.type.js +0 -0
- package/dist/src/types/Chart/chart-bullet-orientation.type.cjs +1 -0
- package/dist/src/types/Chart/chart-bullet-orientation.type.d.ts +1 -0
- package/dist/src/types/Chart/chart-bullet-orientation.type.js +0 -0
- package/dist/src/types/Chart/chart-cartesian-kind.type.cjs +1 -0
- package/dist/src/types/Chart/chart-cartesian-kind.type.d.ts +18 -0
- package/dist/src/types/Chart/chart-cartesian-kind.type.js +0 -0
- package/dist/src/types/Chart/chart-honeycomb-color-mode.type.cjs +1 -0
- package/dist/src/types/Chart/chart-honeycomb-color-mode.type.d.ts +2 -0
- package/dist/src/types/Chart/chart-honeycomb-color-mode.type.js +0 -0
- package/dist/src/types/Chart/chart-honeycomb-orientation.type.cjs +1 -0
- package/dist/src/types/Chart/chart-honeycomb-orientation.type.d.ts +2 -0
- package/dist/src/types/Chart/chart-honeycomb-orientation.type.js +0 -0
- package/dist/src/types/Chart/chart-item.type.cjs +1 -0
- package/dist/src/types/Chart/chart-item.type.d.ts +9 -0
- package/dist/src/types/Chart/chart-item.type.js +0 -0
- package/dist/src/types/Chart/chart-legend-position.type.cjs +1 -0
- package/dist/src/types/Chart/chart-legend-position.type.d.ts +6 -0
- package/dist/src/types/Chart/chart-legend-position.type.js +0 -0
- package/dist/src/types/Chart/chart-map-mode.type.cjs +1 -0
- package/dist/src/types/Chart/chart-map-mode.type.d.ts +8 -0
- package/dist/src/types/Chart/chart-map-mode.type.js +0 -0
- package/dist/src/types/Chart/chart-pictorial-direction.type.cjs +1 -0
- package/dist/src/types/Chart/chart-pictorial-direction.type.d.ts +1 -0
- package/dist/src/types/Chart/chart-pictorial-direction.type.js +0 -0
- package/dist/src/types/Chart/chart-pictorial-mode.type.cjs +1 -0
- package/dist/src/types/Chart/chart-pictorial-mode.type.d.ts +1 -0
- package/dist/src/types/Chart/chart-pictorial-mode.type.js +0 -0
- package/dist/src/types/Chart/chart-polar-kind.type.cjs +1 -0
- package/dist/src/types/Chart/chart-polar-kind.type.d.ts +14 -0
- package/dist/src/types/Chart/chart-polar-kind.type.js +0 -0
- package/dist/src/types/Chart/chart-pyramid-kind.type.cjs +1 -0
- package/dist/src/types/Chart/chart-pyramid-kind.type.d.ts +9 -0
- package/dist/src/types/Chart/chart-pyramid-kind.type.js +0 -0
- package/dist/src/types/Chart/chart-smoothing.type.cjs +1 -0
- package/dist/src/types/Chart/chart-smoothing.type.d.ts +17 -0
- package/dist/src/types/Chart/chart-smoothing.type.js +0 -0
- package/dist/src/types/Chart/chart-sparkline-kind.type.cjs +1 -0
- package/dist/src/types/Chart/chart-sparkline-kind.type.d.ts +10 -0
- package/dist/src/types/Chart/chart-sparkline-kind.type.js +0 -0
- package/dist/src/types/Chart/chart-stacking.type.cjs +1 -0
- package/dist/src/types/Chart/chart-stacking.type.d.ts +9 -0
- package/dist/src/types/Chart/chart-stacking.type.js +0 -0
- package/dist/src/types/Chart/chart-streamgraph-offset.type.cjs +1 -0
- package/dist/src/types/Chart/chart-streamgraph-offset.type.d.ts +1 -0
- package/dist/src/types/Chart/chart-streamgraph-offset.type.js +0 -0
- package/dist/src/types/Chart/chart-treemap-algorithm.type.cjs +1 -0
- package/dist/src/types/Chart/chart-treemap-algorithm.type.d.ts +12 -0
- package/dist/src/types/Chart/chart-treemap-algorithm.type.js +0 -0
- package/dist/src/types/Chart/chart-type.type.cjs +1 -0
- package/dist/src/types/Chart/chart-type.type.d.ts +7 -0
- package/dist/src/types/Chart/chart-type.type.js +0 -0
- package/dist/src/types/Chart/chart-word-cloud-rotation.type.cjs +1 -0
- package/dist/src/types/Chart/chart-word-cloud-rotation.type.d.ts +8 -0
- package/dist/src/types/Chart/chart-word-cloud-rotation.type.js +0 -0
- package/dist/src/types/Commons/color.type.d.ts +18 -1
- package/dist/src/types/Commons/font-family.type.cjs +1 -0
- package/dist/src/types/Commons/font-family.type.d.ts +5 -0
- package/dist/src/types/Commons/font-family.type.js +0 -0
- package/dist/src/types/Commons/font-size.type.cjs +1 -0
- package/dist/src/types/Commons/font-size.type.d.ts +6 -0
- package/dist/src/types/Commons/font-size.type.js +0 -0
- package/dist/src/types/Commons/font-weight.type.cjs +1 -0
- package/dist/src/types/Commons/font-weight.type.d.ts +5 -0
- package/dist/src/types/Commons/font-weight.type.js +0 -0
- package/dist/src/types/Commons/letter-spacing.type.cjs +1 -0
- package/dist/src/types/Commons/letter-spacing.type.d.ts +5 -0
- package/dist/src/types/Commons/letter-spacing.type.js +0 -0
- package/dist/src/types/Commons/line-height.type.cjs +1 -0
- package/dist/src/types/Commons/line-height.type.d.ts +5 -0
- package/dist/src/types/Commons/line-height.type.js +0 -0
- package/dist/src/types/Commons/mode.type.d.ts +1 -1
- package/dist/src/types/EmptyState/empty-state-align.type.cjs +1 -0
- package/dist/src/types/EmptyState/empty-state-align.type.d.ts +10 -0
- package/dist/src/types/EmptyState/empty-state-align.type.js +0 -0
- package/dist/src/types/EmptyState/empty-state-preset.type.cjs +1 -0
- package/dist/src/types/EmptyState/empty-state-preset.type.d.ts +14 -0
- package/dist/src/types/EmptyState/empty-state-preset.type.js +0 -0
- package/dist/src/types/EmptyState/empty-state-size.type.cjs +1 -0
- package/dist/src/types/EmptyState/empty-state-size.type.d.ts +9 -0
- package/dist/src/types/EmptyState/empty-state-size.type.js +0 -0
- package/dist/src/types/Grid/grid-align.type.cjs +1 -0
- package/dist/src/types/Grid/grid-align.type.d.ts +28 -0
- package/dist/src/types/Grid/grid-align.type.js +0 -0
- package/dist/src/types/Grid/grid-flow.type.cjs +1 -0
- package/dist/src/types/Grid/grid-flow.type.d.ts +10 -0
- package/dist/src/types/Grid/grid-flow.type.js +0 -0
- package/dist/src/types/InlineEdit/inline-edit-input-type.type.cjs +1 -0
- package/dist/src/types/InlineEdit/inline-edit-input-type.type.d.ts +7 -0
- package/dist/src/types/InlineEdit/inline-edit-input-type.type.js +0 -0
- package/dist/src/types/Masonry/masonry-align.type.cjs +1 -0
- package/dist/src/types/Masonry/masonry-align.type.d.ts +16 -0
- package/dist/src/types/Masonry/masonry-align.type.js +0 -0
- package/dist/src/types/Media/index.cjs +27 -0
- package/dist/src/types/Media/index.d.ts +2 -0
- package/dist/src/types/Media/index.js +2 -0
- package/dist/src/types/Media/media-scrubber-orientation.type.cjs +1 -0
- package/dist/src/types/Media/media-scrubber-orientation.type.d.ts +6 -0
- package/dist/src/types/Media/media-scrubber-orientation.type.js +0 -0
- package/dist/src/types/Media/quality-option.type.cjs +1 -0
- package/dist/src/types/Media/quality-option.type.d.ts +25 -0
- package/dist/src/types/Media/quality-option.type.js +0 -0
- package/dist/src/types/NumberFormat/number-format-format.type.cjs +1 -0
- package/dist/src/types/NumberFormat/number-format-format.type.d.ts +56 -0
- package/dist/src/types/NumberFormat/number-format-format.type.js +0 -0
- package/dist/src/types/QrCode/qr-code-error-correction.type.cjs +1 -0
- package/dist/src/types/QrCode/qr-code-error-correction.type.d.ts +22 -0
- package/dist/src/types/QrCode/qr-code-error-correction.type.js +0 -0
- package/dist/src/types/SliderField/slider-field-variant.type.cjs +1 -0
- package/dist/src/types/SliderField/slider-field-variant.type.d.ts +10 -0
- package/dist/src/types/SliderField/slider-field-variant.type.js +0 -0
- package/dist/src/types/Snackbar/snackbar-group-direction.type.cjs +1 -0
- package/dist/src/types/{SnackbarStack/snackbar-stack-direction.type.d.ts → Snackbar/snackbar-group-direction.type.d.ts} +2 -2
- package/dist/src/types/Snackbar/snackbar-group-direction.type.js +0 -0
- package/dist/src/types/Snackbar/snackbar-group-location.type.cjs +1 -0
- package/dist/src/types/{SnackbarStack/snackbar-stack-location.type.d.ts → Snackbar/snackbar-group-location.type.d.ts} +2 -2
- package/dist/src/types/Snackbar/snackbar-group-location.type.js +0 -0
- package/dist/src/types/Snackbar/snackbar-group.type.cjs +1 -0
- package/dist/src/types/Snackbar/snackbar-group.type.d.ts +2 -0
- package/dist/src/types/Snackbar/snackbar-group.type.js +0 -0
- package/dist/src/types/TextMask/text-mask-animation.type.cjs +1 -0
- package/dist/src/types/TextMask/text-mask-animation.type.d.ts +16 -0
- package/dist/src/types/TextMask/text-mask-animation.type.js +0 -0
- package/dist/src/types/TextMask/text-mask.type.cjs +1 -0
- package/dist/src/types/TextMask/text-mask.type.d.ts +2 -0
- package/dist/src/types/TextMask/text-mask.type.js +0 -0
- package/dist/src/types/Theme/installed-theme.type.cjs +1 -0
- package/dist/src/types/Theme/installed-theme.type.d.ts +31 -0
- package/dist/src/types/Theme/installed-theme.type.js +0 -0
- package/dist/src/types/Theme/semantic-tree.type.cjs +1 -0
- package/dist/src/types/Theme/semantic-tree.type.d.ts +48 -0
- package/dist/src/types/Theme/semantic-tree.type.js +0 -0
- package/dist/src/types/Theme/theme.type.d.ts +27 -6
- package/dist/src/types/Theme/token-tree.type.cjs +1 -0
- package/dist/src/types/Theme/token-tree.type.d.ts +10 -0
- package/dist/src/types/Theme/token-tree.type.js +0 -0
- package/dist/src/types/Video/video-controls.type.cjs +1 -0
- package/dist/src/types/Video/video-controls.type.d.ts +17 -0
- package/dist/src/types/Video/video-controls.type.js +0 -0
- package/dist/src/types/Video/video-track-kind.type.cjs +1 -0
- package/dist/src/types/Video/video-track-kind.type.d.ts +11 -0
- package/dist/src/types/Video/video-track-kind.type.js +0 -0
- package/dist/src/types/index.cjs +555 -38
- package/dist/src/types/index.d.ts +53 -6
- package/dist/src/types/index.js +53 -6
- package/dist/src/types/tokens.type.d.ts +1 -1
- package/dist/src/utils/Bracket/bracket-surface.util.cjs +106 -0
- package/dist/src/utils/Bracket/bracket-surface.util.d.ts +47 -0
- package/dist/src/utils/Bracket/bracket-surface.util.js +88 -0
- package/dist/src/utils/Calendar/date.util.cjs +181 -0
- package/dist/src/utils/Calendar/date.util.d.ts +96 -0
- package/dist/src/utils/Calendar/date.util.js +114 -0
- package/dist/src/utils/Calendar/rrule.util.cjs +105 -0
- package/dist/src/utils/Calendar/rrule.util.d.ts +49 -0
- package/dist/src/utils/Calendar/rrule.util.js +92 -0
- package/dist/src/utils/Chart/box-plot.util.cjs +62 -0
- package/dist/src/utils/Chart/box-plot.util.d.ts +32 -0
- package/dist/src/utils/Chart/box-plot.util.js +47 -0
- package/dist/src/utils/Chart/mercator.util.cjs +53 -0
- package/dist/src/utils/Chart/mercator.util.d.ts +51 -0
- package/dist/src/utils/Chart/mercator.util.js +44 -0
- package/dist/src/utils/Chart/path.util.cjs +150 -0
- package/dist/src/utils/Chart/path.util.d.ts +116 -0
- package/dist/src/utils/Chart/path.util.js +143 -0
- package/dist/src/utils/Commons/color.util.cjs +4 -2
- package/dist/src/utils/Commons/color.util.js +4 -2
- package/dist/src/utils/Commons/commons.util.cjs +3 -2
- package/dist/src/utils/Commons/commons.util.js +3 -2
- package/dist/src/utils/Commons/dom.util.d.ts +1 -1
- package/dist/src/utils/Commons/elevation.util.cjs +1 -1
- package/dist/src/utils/Commons/elevation.util.js +1 -1
- package/dist/src/utils/Commons/forwardRefs.util.cjs +1 -1
- package/dist/src/utils/Commons/forwardRefs.util.js +1 -1
- package/dist/src/utils/Commons/gradient.util.cjs +74 -0
- package/dist/src/utils/Commons/gradient.util.d.ts +36 -0
- package/dist/src/utils/Commons/gradient.util.js +66 -0
- package/dist/src/utils/Commons/hover.util.cjs +5 -1
- package/dist/src/utils/Commons/hover.util.js +5 -1
- package/dist/src/utils/Commons/ripple.util.cjs +1 -2
- package/dist/src/utils/Commons/ripple.util.js +2 -3
- package/dist/src/utils/Commons/rounded.util.cjs +5 -0
- package/dist/src/utils/Commons/rounded.util.d.ts +9 -0
- package/dist/src/utils/Commons/rounded.util.js +4 -0
- package/dist/src/utils/DataTable/headers.util.cjs +1 -1
- package/dist/src/utils/DataTable/headers.util.js +1 -1
- package/dist/src/utils/DataTable/sort.util.cjs +2 -2
- package/dist/src/utils/DataTable/sort.util.js +2 -2
- package/dist/src/utils/List/list-item.util.d.ts +7 -0
- package/dist/src/utils/Media/format-time.util.cjs +16 -0
- package/dist/src/utils/Media/format-time.util.d.ts +16 -0
- package/dist/src/utils/Media/format-time.util.js +10 -0
- package/dist/src/utils/QrCode/qr-code-adapters.util.cjs +34 -0
- package/dist/src/utils/QrCode/qr-code-adapters.util.d.ts +49 -0
- package/dist/src/utils/QrCode/qr-code-adapters.util.js +27 -0
- package/dist/src/utils/Theme/apply-theme.util.cjs +148 -0
- package/dist/src/utils/Theme/apply-theme.util.d.ts +65 -0
- package/dist/src/utils/Theme/apply-theme.util.js +125 -0
- package/dist/src/utils/Theme/token-name.util.cjs +47 -0
- package/dist/src/utils/Theme/token-name.util.d.ts +54 -0
- package/dist/src/utils/Theme/token-name.util.js +55 -0
- package/dist/src/utils/index.cjs +77 -22
- package/dist/src/utils/index.d.ts +7 -2
- package/dist/src/utils/index.js +7 -2
- package/package.json +18 -52
- package/CHANGELOG.md +0 -650
- package/README.md +0 -275
- package/dist/src/App.vue +0 -25
- package/dist/src/components/SliderField/OrigamSliderFieldThumb.vue +0 -384
- package/dist/src/components/SnackbarStack/OrigamSnackbarStack.vue +0 -457
- package/dist/src/components/SnackbarStack/index.cjs +0 -13
- package/dist/src/components/SnackbarStack/index.d.ts +0 -1
- package/dist/src/components/SnackbarStack/index.js +0 -1
- package/dist/src/consts/SliderField/slider-field.const.cjs +0 -7
- package/dist/src/consts/SliderField/slider-field.const.d.ts +0 -3
- package/dist/src/consts/SliderField/slider-field.const.js +0 -1
- package/dist/src/consts/SnackbarStack/snackbar-stack.const.cjs +0 -12
- package/dist/src/consts/SnackbarStack/snackbar-stack.const.d.ts +0 -33
- package/dist/src/consts/SnackbarStack/snackbar-stack.const.js +0 -18
- package/dist/src/enums/Charts/chart.enum.cjs +0 -12
- package/dist/src/enums/Charts/chart.enum.d.ts +0 -5
- package/dist/src/enums/Charts/chart.enum.js +0 -6
- package/dist/src/interfaces/Charts/chart-bar.interface.d.ts +0 -4
- package/dist/src/interfaces/Charts/chart-line.interface.d.ts +0 -15
- package/dist/src/interfaces/Charts/chart.interface.d.ts +0 -21
- package/dist/src/interfaces/SliderField/slider-field-thumb.interface.d.ts +0 -12
- package/dist/src/main.cjs +0 -7
- package/dist/src/main.d.ts +0 -1
- package/dist/src/main.js +0 -4
- package/dist/src/types/Charts/chart.type.d.ts +0 -5
- package/dist/src/types/SliderField/slider-field-thumb.type.d.ts +0 -2
- package/dist/src/types/SnackbarStack/snackbar-stack.type.d.ts +0 -2
- package/dist/src/utils/Charts/chart.util.cjs +0 -50
- package/dist/src/utils/Charts/chart.util.d.ts +0 -30
- package/dist/src/utils/Charts/chart.util.js +0 -40
- package/dist/src/utils/SliderField/slider-field.util.cjs +0 -12
- package/dist/src/utils/SliderField/slider-field.util.d.ts +0 -8
- package/dist/src/utils/SliderField/slider-field.util.js +0 -6
- /package/dist/src/interfaces/{Charts/chart-bar.interface.cjs → App/app.interface.cjs} +0 -0
- /package/dist/src/interfaces/{Charts/chart-bar.interface.js → App/app.interface.js} +0 -0
- /package/dist/src/interfaces/{Charts/chart-line.interface.cjs → Audio/audio-player.interface.cjs} +0 -0
- /package/dist/src/interfaces/{Charts/chart-line.interface.js → Audio/audio-player.interface.js} +0 -0
- /package/dist/src/interfaces/{Charts/chart.interface.cjs → Blockquote/blockquote.interface.cjs} +0 -0
- /package/dist/src/interfaces/{Charts/chart.interface.js → Blockquote/blockquote.interface.js} +0 -0
- /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.cjs → Calendar/calendar.interface.cjs} +0 -0
- /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.js → Calendar/calendar.interface.js} +0 -0
- /package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.cjs → Calendar/event.interface.cjs} +0 -0
- /package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.js → Calendar/event.interface.js} +0 -0
- /package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.cjs → Chart/chart-annotation.interface.cjs} +0 -0
- /package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.js → Chart/chart-annotation.interface.js} +0 -0
- /package/dist/src/{types/Charts/chart.type.cjs → interfaces/Chart/chart-axis.interface.cjs} +0 -0
- /package/dist/src/{types/Charts/chart.type.js → interfaces/Chart/chart-axis.interface.js} +0 -0
- /package/dist/src/{types/SliderField/slider-field-thumb.type.cjs → interfaces/Chart/chart-base.interface.cjs} +0 -0
- /package/dist/src/{types/SliderField/slider-field-thumb.type.js → interfaces/Chart/chart-base.interface.js} +0 -0
- /package/dist/src/{types/SnackbarStack/snackbar-stack-direction.type.cjs → interfaces/Chart/chart-box-plot.interface.cjs} +0 -0
- /package/dist/src/{types/SnackbarStack/snackbar-stack-direction.type.js → interfaces/Chart/chart-box-plot.interface.js} +0 -0
- /package/dist/src/{types/SnackbarStack/snackbar-stack-location.type.cjs → interfaces/Chart/chart-bullet.interface.cjs} +0 -0
- /package/dist/src/{types/SnackbarStack/snackbar-stack-location.type.js → interfaces/Chart/chart-bullet.interface.js} +0 -0
- /package/dist/src/{types/SnackbarStack/snackbar-stack.type.cjs → interfaces/Chart/chart-candlestick.interface.cjs} +0 -0
- /package/dist/src/{types/SnackbarStack/snackbar-stack.type.js → interfaces/Chart/chart-candlestick.interface.js} +0 -0
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export * from './Alert/alert.interface';
|
|
2
|
+
export * from './App/app.interface';
|
|
2
3
|
export * from './App/app-bar.interface';
|
|
3
4
|
export * from './Avatar/avatar.interface';
|
|
4
5
|
export * from './Avatar/avatar-group.interface';
|
|
5
6
|
export * from './Badge/badge.interface';
|
|
7
|
+
export * from './Blockquote/blockquote.interface';
|
|
6
8
|
export * from './BottomNav/bottom-nav.interface';
|
|
7
9
|
export * from './Bracket/bracket.interface';
|
|
8
10
|
export * from './Bracket/bracket-competitor.interface';
|
|
@@ -23,13 +25,11 @@ export * from './Card/card-header.interface';
|
|
|
23
25
|
export * from './Card/card-text.interface';
|
|
24
26
|
export * from './Carousel/carousel.interface';
|
|
25
27
|
export * from './Carousel/carousel-item.interface';
|
|
26
|
-
export * from './Charts/chart.interface';
|
|
27
|
-
export * from './Charts/chart-bar.interface';
|
|
28
|
-
export * from './Charts/chart-line.interface';
|
|
29
28
|
export * from './Checkbox/checkbox.interface';
|
|
30
29
|
export * from './Checkbox/checkbox-btn.interface';
|
|
31
30
|
export * from './Chip/chip.interface';
|
|
32
31
|
export * from './Chip/chip-group.interface';
|
|
32
|
+
export * from './Clipboard/clipboard.interface';
|
|
33
33
|
export * from './Code/code.interface';
|
|
34
34
|
export * from './ColorPicker/color-picker.interface';
|
|
35
35
|
export * from './ColorPicker/color-picker-canvas.interface';
|
|
@@ -49,6 +49,7 @@ export * from './Commons/box.interface';
|
|
|
49
49
|
export * from './Commons/clickOutside.interface';
|
|
50
50
|
export * from './Commons/calendar.interface';
|
|
51
51
|
export * from './Commons/color.interface';
|
|
52
|
+
export * from './Commons/gradient.interface';
|
|
52
53
|
export * from './Commons/commons.interface';
|
|
53
54
|
export * from './Commons/control.interface';
|
|
54
55
|
export * from './Commons/date.interface';
|
|
@@ -90,6 +91,7 @@ export * from './Commons/status.interface';
|
|
|
90
91
|
export * from './Commons/sticky.interface';
|
|
91
92
|
export * from './Commons/style.interface';
|
|
92
93
|
export * from './Commons/touch.interface';
|
|
94
|
+
export * from './Commons/typography.interface';
|
|
93
95
|
export * from './Commons/validation.interface';
|
|
94
96
|
export * from './Commons/virtual.interface';
|
|
95
97
|
export * from './ContextualMenu/contextual-menu.interface';
|
|
@@ -122,6 +124,7 @@ export * from './Dialog/dialog.interface';
|
|
|
122
124
|
export * from './Dialog/dialog-confirmation.interface';
|
|
123
125
|
export * from './Divider/divider.interface';
|
|
124
126
|
export * from './Drawer/drawer.interface';
|
|
127
|
+
export * from './EmptyState/empty-state.interface';
|
|
125
128
|
export * from './ExpensionPanel/expansion-panels.interface';
|
|
126
129
|
export * from './ExpensionPanel/expansion-panel.interface';
|
|
127
130
|
export * from './ExpensionPanel/expansion-panel-header.interface';
|
|
@@ -135,9 +138,16 @@ export * from './Grids/container.interface';
|
|
|
135
138
|
export * from './Grids/row.interface';
|
|
136
139
|
export * from './Grids/col.interface';
|
|
137
140
|
export * from './Grids/spacer.interface';
|
|
141
|
+
export * from './Grid/grid.interface';
|
|
142
|
+
export * from './Grid/grid-item.interface';
|
|
143
|
+
export * from './Masonry/masonry.interface';
|
|
144
|
+
export * from './Media';
|
|
145
|
+
export * from './Audio/audio-player.interface';
|
|
138
146
|
export * from './Icon/icon.interface';
|
|
139
147
|
export * from './Img/img.interface';
|
|
140
148
|
export * from './InfiniteScroll/infinite-scroll.interface';
|
|
149
|
+
export * from './InlineEdit/inline-edit.interface';
|
|
150
|
+
export * from './NumberFormat/number-format.interface';
|
|
141
151
|
export * from './Input/input.interface';
|
|
142
152
|
export * from './Label/label.interface';
|
|
143
153
|
export * from './List/list.interface';
|
|
@@ -180,10 +190,10 @@ export * from './Sheet/sheet-swipe-return.interface';
|
|
|
180
190
|
export * from './Slide/slide-group.interface';
|
|
181
191
|
export * from './SliderField/slider-field.interface';
|
|
182
192
|
export * from './SliderField/slider-field-track.interface';
|
|
183
|
-
export * from './SliderField/slider-field-thumb.interface';
|
|
184
193
|
export * from './Snackbar/snackbar.interface';
|
|
185
|
-
export * from './
|
|
186
|
-
export * from './
|
|
194
|
+
export * from './Snackbar/snackbar-item.interface';
|
|
195
|
+
export * from './Snackbar/snackbar-group.interface';
|
|
196
|
+
export * from './Snackbar/snackbar-group-item.interface';
|
|
187
197
|
export * from './CommandPalette/command.interface';
|
|
188
198
|
export * from './CommandPalette/command-palette.interface';
|
|
189
199
|
export * from './Switch/switch.interface';
|
|
@@ -198,6 +208,7 @@ export * from './TextareaField/textarea-field.interface';
|
|
|
198
208
|
export * from './Textarea/textarea-rich.interface';
|
|
199
209
|
export * from './Textarea/textarea-toolbar.interface';
|
|
200
210
|
export * from './TextField/text-field.interface';
|
|
211
|
+
export * from './TextMask/text-mask.interface';
|
|
201
212
|
export * from './Title/title.interface';
|
|
202
213
|
export * from './Toolbar/toolbar.interface';
|
|
203
214
|
export * from './Tooltip/tooltip.interface';
|
|
@@ -214,3 +225,44 @@ export * from './Timeline/timeline.interface';
|
|
|
214
225
|
export * from './Treeview/treeview.interface';
|
|
215
226
|
export * from './Mask/mask-options.interface';
|
|
216
227
|
export * from './Nuxt/nuxt-module.interface';
|
|
228
|
+
export * from './Theme/origam-theme.interface';
|
|
229
|
+
export * from './QrCode/qr-code.interface';
|
|
230
|
+
export * from './QrCode/qr-code-logo.interface';
|
|
231
|
+
export * from './Watermark/watermark.interface';
|
|
232
|
+
export * from './Video/video.interface';
|
|
233
|
+
export * from './Video/video-track.interface';
|
|
234
|
+
export * from './Calendar/event.interface';
|
|
235
|
+
export * from './Calendar/calendar.interface';
|
|
236
|
+
export * from './Chart/chart-series.interface';
|
|
237
|
+
export * from './Chart/chart-point.interface';
|
|
238
|
+
export * from './Chart/chart-drilldown.interface';
|
|
239
|
+
export * from './Chart/chart-plot-band.interface';
|
|
240
|
+
export * from './Chart/chart-plot-line.interface';
|
|
241
|
+
export * from './Chart/chart-annotation.interface';
|
|
242
|
+
export * from './Chart/chart.interface';
|
|
243
|
+
export * from './Chart/chart-base.interface';
|
|
244
|
+
export * from './Chart/chart-range-selector.interface';
|
|
245
|
+
export * from './Chart/chart-axis.interface';
|
|
246
|
+
export * from './Chart/chart-legend.interface';
|
|
247
|
+
export * from './Chart/chart-tooltip.interface';
|
|
248
|
+
export * from './Chart/chart-cartesian.interface';
|
|
249
|
+
export * from './Chart/chart-polar.interface';
|
|
250
|
+
export * from './Chart/chart-radar.interface';
|
|
251
|
+
export * from './Chart/chart-gauge.interface';
|
|
252
|
+
export * from './Chart/chart-pyramid.interface';
|
|
253
|
+
export * from './Chart/chart-honeycomb.interface';
|
|
254
|
+
export * from './Chart/chart-treemap.interface';
|
|
255
|
+
export * from './Chart/chart-sankey.interface';
|
|
256
|
+
export * from './Chart/chart-word-cloud.interface';
|
|
257
|
+
export * from './Chart/chart-heatmap.interface';
|
|
258
|
+
export * from './Chart/chart-sunburst.interface';
|
|
259
|
+
export * from './Chart/chart-box-plot.interface';
|
|
260
|
+
export * from './Chart/chart-pictorial.interface';
|
|
261
|
+
export * from './Chart/chart-streamgraph.interface';
|
|
262
|
+
export * from './Chart/chart-candlestick.interface';
|
|
263
|
+
export * from './Chart/chart-variwide.interface';
|
|
264
|
+
export * from './Chart/chart-polar-bar.interface';
|
|
265
|
+
export * from './Chart/chart-bullet.interface';
|
|
266
|
+
export * from './Chart/chart-pareto.interface';
|
|
267
|
+
export * from './Chart/chart-map.interface';
|
|
268
|
+
export * from './Chart/chart-sparkline.interface';
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
export * from "./Alert/alert.interface.js";
|
|
2
|
+
export * from "./App/app.interface.js";
|
|
2
3
|
export * from "./App/app-bar.interface.js";
|
|
3
4
|
export * from "./Avatar/avatar.interface.js";
|
|
4
5
|
export * from "./Avatar/avatar-group.interface.js";
|
|
5
6
|
export * from "./Badge/badge.interface.js";
|
|
7
|
+
export * from "./Blockquote/blockquote.interface.js";
|
|
6
8
|
export * from "./BottomNav/bottom-nav.interface.js";
|
|
7
9
|
export * from "./Bracket/bracket.interface.js";
|
|
8
10
|
export * from "./Bracket/bracket-competitor.interface.js";
|
|
@@ -23,13 +25,11 @@ export * from "./Card/card-header.interface.js";
|
|
|
23
25
|
export * from "./Card/card-text.interface.js";
|
|
24
26
|
export * from "./Carousel/carousel.interface.js";
|
|
25
27
|
export * from "./Carousel/carousel-item.interface.js";
|
|
26
|
-
export * from "./Charts/chart.interface.js";
|
|
27
|
-
export * from "./Charts/chart-bar.interface.js";
|
|
28
|
-
export * from "./Charts/chart-line.interface.js";
|
|
29
28
|
export * from "./Checkbox/checkbox.interface.js";
|
|
30
29
|
export * from "./Checkbox/checkbox-btn.interface.js";
|
|
31
30
|
export * from "./Chip/chip.interface.js";
|
|
32
31
|
export * from "./Chip/chip-group.interface.js";
|
|
32
|
+
export * from "./Clipboard/clipboard.interface.js";
|
|
33
33
|
export * from "./Code/code.interface.js";
|
|
34
34
|
export * from "./ColorPicker/color-picker.interface.js";
|
|
35
35
|
export * from "./ColorPicker/color-picker-canvas.interface.js";
|
|
@@ -49,6 +49,7 @@ export * from "./Commons/box.interface.js";
|
|
|
49
49
|
export * from "./Commons/clickOutside.interface.js";
|
|
50
50
|
export * from "./Commons/calendar.interface.js";
|
|
51
51
|
export * from "./Commons/color.interface.js";
|
|
52
|
+
export * from "./Commons/gradient.interface.js";
|
|
52
53
|
export * from "./Commons/commons.interface.js";
|
|
53
54
|
export * from "./Commons/control.interface.js";
|
|
54
55
|
export * from "./Commons/date.interface.js";
|
|
@@ -90,6 +91,7 @@ export * from "./Commons/status.interface.js";
|
|
|
90
91
|
export * from "./Commons/sticky.interface.js";
|
|
91
92
|
export * from "./Commons/style.interface.js";
|
|
92
93
|
export * from "./Commons/touch.interface.js";
|
|
94
|
+
export * from "./Commons/typography.interface.js";
|
|
93
95
|
export * from "./Commons/validation.interface.js";
|
|
94
96
|
export * from "./Commons/virtual.interface.js";
|
|
95
97
|
export * from "./ContextualMenu/contextual-menu.interface.js";
|
|
@@ -122,6 +124,7 @@ export * from "./Dialog/dialog.interface.js";
|
|
|
122
124
|
export * from "./Dialog/dialog-confirmation.interface.js";
|
|
123
125
|
export * from "./Divider/divider.interface.js";
|
|
124
126
|
export * from "./Drawer/drawer.interface.js";
|
|
127
|
+
export * from "./EmptyState/empty-state.interface.js";
|
|
125
128
|
export * from "./ExpensionPanel/expansion-panels.interface.js";
|
|
126
129
|
export * from "./ExpensionPanel/expansion-panel.interface.js";
|
|
127
130
|
export * from "./ExpensionPanel/expansion-panel-header.interface.js";
|
|
@@ -135,9 +138,16 @@ export * from "./Grids/container.interface.js";
|
|
|
135
138
|
export * from "./Grids/row.interface.js";
|
|
136
139
|
export * from "./Grids/col.interface.js";
|
|
137
140
|
export * from "./Grids/spacer.interface.js";
|
|
141
|
+
export * from "./Grid/grid.interface.js";
|
|
142
|
+
export * from "./Grid/grid-item.interface.js";
|
|
143
|
+
export * from "./Masonry/masonry.interface.js";
|
|
144
|
+
export * from "./Media/index.js";
|
|
145
|
+
export * from "./Audio/audio-player.interface.js";
|
|
138
146
|
export * from "./Icon/icon.interface.js";
|
|
139
147
|
export * from "./Img/img.interface.js";
|
|
140
148
|
export * from "./InfiniteScroll/infinite-scroll.interface.js";
|
|
149
|
+
export * from "./InlineEdit/inline-edit.interface.js";
|
|
150
|
+
export * from "./NumberFormat/number-format.interface.js";
|
|
141
151
|
export * from "./Input/input.interface.js";
|
|
142
152
|
export * from "./Label/label.interface.js";
|
|
143
153
|
export * from "./List/list.interface.js";
|
|
@@ -180,10 +190,10 @@ export * from "./Sheet/sheet-swipe-return.interface.js";
|
|
|
180
190
|
export * from "./Slide/slide-group.interface.js";
|
|
181
191
|
export * from "./SliderField/slider-field.interface.js";
|
|
182
192
|
export * from "./SliderField/slider-field-track.interface.js";
|
|
183
|
-
export * from "./SliderField/slider-field-thumb.interface.js";
|
|
184
193
|
export * from "./Snackbar/snackbar.interface.js";
|
|
185
|
-
export * from "./
|
|
186
|
-
export * from "./
|
|
194
|
+
export * from "./Snackbar/snackbar-item.interface.js";
|
|
195
|
+
export * from "./Snackbar/snackbar-group.interface.js";
|
|
196
|
+
export * from "./Snackbar/snackbar-group-item.interface.js";
|
|
187
197
|
export * from "./CommandPalette/command.interface.js";
|
|
188
198
|
export * from "./CommandPalette/command-palette.interface.js";
|
|
189
199
|
export * from "./Switch/switch.interface.js";
|
|
@@ -198,6 +208,7 @@ export * from "./TextareaField/textarea-field.interface.js";
|
|
|
198
208
|
export * from "./Textarea/textarea-rich.interface.js";
|
|
199
209
|
export * from "./Textarea/textarea-toolbar.interface.js";
|
|
200
210
|
export * from "./TextField/text-field.interface.js";
|
|
211
|
+
export * from "./TextMask/text-mask.interface.js";
|
|
201
212
|
export * from "./Title/title.interface.js";
|
|
202
213
|
export * from "./Toolbar/toolbar.interface.js";
|
|
203
214
|
export * from "./Tooltip/tooltip.interface.js";
|
|
@@ -214,3 +225,44 @@ export * from "./Timeline/timeline.interface.js";
|
|
|
214
225
|
export * from "./Treeview/treeview.interface.js";
|
|
215
226
|
export * from "./Mask/mask-options.interface.js";
|
|
216
227
|
export * from "./Nuxt/nuxt-module.interface.js";
|
|
228
|
+
export * from "./Theme/origam-theme.interface.js";
|
|
229
|
+
export * from "./QrCode/qr-code.interface.js";
|
|
230
|
+
export * from "./QrCode/qr-code-logo.interface.js";
|
|
231
|
+
export * from "./Watermark/watermark.interface.js";
|
|
232
|
+
export * from "./Video/video.interface.js";
|
|
233
|
+
export * from "./Video/video-track.interface.js";
|
|
234
|
+
export * from "./Calendar/event.interface.js";
|
|
235
|
+
export * from "./Calendar/calendar.interface.js";
|
|
236
|
+
export * from "./Chart/chart-series.interface.js";
|
|
237
|
+
export * from "./Chart/chart-point.interface.js";
|
|
238
|
+
export * from "./Chart/chart-drilldown.interface.js";
|
|
239
|
+
export * from "./Chart/chart-plot-band.interface.js";
|
|
240
|
+
export * from "./Chart/chart-plot-line.interface.js";
|
|
241
|
+
export * from "./Chart/chart-annotation.interface.js";
|
|
242
|
+
export * from "./Chart/chart.interface.js";
|
|
243
|
+
export * from "./Chart/chart-base.interface.js";
|
|
244
|
+
export * from "./Chart/chart-range-selector.interface.js";
|
|
245
|
+
export * from "./Chart/chart-axis.interface.js";
|
|
246
|
+
export * from "./Chart/chart-legend.interface.js";
|
|
247
|
+
export * from "./Chart/chart-tooltip.interface.js";
|
|
248
|
+
export * from "./Chart/chart-cartesian.interface.js";
|
|
249
|
+
export * from "./Chart/chart-polar.interface.js";
|
|
250
|
+
export * from "./Chart/chart-radar.interface.js";
|
|
251
|
+
export * from "./Chart/chart-gauge.interface.js";
|
|
252
|
+
export * from "./Chart/chart-pyramid.interface.js";
|
|
253
|
+
export * from "./Chart/chart-honeycomb.interface.js";
|
|
254
|
+
export * from "./Chart/chart-treemap.interface.js";
|
|
255
|
+
export * from "./Chart/chart-sankey.interface.js";
|
|
256
|
+
export * from "./Chart/chart-word-cloud.interface.js";
|
|
257
|
+
export * from "./Chart/chart-heatmap.interface.js";
|
|
258
|
+
export * from "./Chart/chart-sunburst.interface.js";
|
|
259
|
+
export * from "./Chart/chart-box-plot.interface.js";
|
|
260
|
+
export * from "./Chart/chart-pictorial.interface.js";
|
|
261
|
+
export * from "./Chart/chart-streamgraph.interface.js";
|
|
262
|
+
export * from "./Chart/chart-candlestick.interface.js";
|
|
263
|
+
export * from "./Chart/chart-variwide.interface.js";
|
|
264
|
+
export * from "./Chart/chart-polar-bar.interface.js";
|
|
265
|
+
export * from "./Chart/chart-bullet.interface.js";
|
|
266
|
+
export * from "./Chart/chart-pareto.interface.js";
|
|
267
|
+
export * from "./Chart/chart-map.interface.js";
|
|
268
|
+
export * from "./Chart/chart-sparkline.interface.js";
|
package/dist/src/nuxt/module.cjs
CHANGED
|
@@ -4,18 +4,36 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
|
|
7
|
+
var _nodeFs = require("node:fs");
|
|
8
|
+
var _nodePath = require("node:path");
|
|
7
9
|
var _kit = require("@nuxt/kit");
|
|
8
10
|
const MODULE_NAME = "origam-nuxt";
|
|
9
11
|
const CONFIG_KEY = "origam";
|
|
12
|
+
const NUXT_COMPOSABLES_BLOCKLIST = /* @__PURE__ */new Set(["useRoute", "useRouter", "useLink", "useHydration"]);
|
|
13
|
+
const DEFAULT_THEMES = [];
|
|
14
|
+
const DEFAULT_MODES = ["light", "dark"];
|
|
10
15
|
const DEFAULTS = {
|
|
11
|
-
themes:
|
|
16
|
+
themes: DEFAULT_THEMES,
|
|
12
17
|
defaultTheme: "auto",
|
|
18
|
+
modes: DEFAULT_MODES,
|
|
19
|
+
defaultMode: "auto",
|
|
13
20
|
cookieName: "origam-theme",
|
|
21
|
+
modeCookieName: "origam-mode",
|
|
14
22
|
cookieMaxAge: 60 * 60 * 24 * 365,
|
|
15
23
|
autoImport: true,
|
|
16
24
|
includeUtilities: true,
|
|
17
25
|
prefix: "Origam"
|
|
18
26
|
};
|
|
27
|
+
const SCALAR_DEFAULTS = {
|
|
28
|
+
defaultTheme: DEFAULTS.defaultTheme,
|
|
29
|
+
defaultMode: DEFAULTS.defaultMode,
|
|
30
|
+
cookieName: DEFAULTS.cookieName,
|
|
31
|
+
modeCookieName: DEFAULTS.modeCookieName,
|
|
32
|
+
cookieMaxAge: DEFAULTS.cookieMaxAge,
|
|
33
|
+
autoImport: DEFAULTS.autoImport,
|
|
34
|
+
includeUtilities: DEFAULTS.includeUtilities,
|
|
35
|
+
prefix: DEFAULTS.prefix
|
|
36
|
+
};
|
|
19
37
|
module.exports = (0, _kit.defineNuxtModule)({
|
|
20
38
|
meta: {
|
|
21
39
|
name: MODULE_NAME,
|
|
@@ -24,12 +42,15 @@ module.exports = (0, _kit.defineNuxtModule)({
|
|
|
24
42
|
nuxt: "^3.0.0 || ^4.0.0"
|
|
25
43
|
}
|
|
26
44
|
},
|
|
27
|
-
defaults:
|
|
45
|
+
defaults: SCALAR_DEFAULTS,
|
|
28
46
|
setup(options, nuxt) {
|
|
29
47
|
const resolver = (0, _kit.createResolver)(require('url').pathToFileURL(__filename).toString());
|
|
30
|
-
const themes = options.themes ??
|
|
48
|
+
const themes = options.themes ?? DEFAULT_THEMES;
|
|
31
49
|
const defaultTheme = options.defaultTheme ?? DEFAULTS.defaultTheme;
|
|
50
|
+
const modes = options.modes ?? DEFAULT_MODES;
|
|
51
|
+
const defaultMode = options.defaultMode ?? DEFAULTS.defaultMode;
|
|
32
52
|
const cookieName = options.cookieName ?? DEFAULTS.cookieName;
|
|
53
|
+
const modeCookieName = options.modeCookieName ?? DEFAULTS.modeCookieName;
|
|
33
54
|
const cookieMaxAge = options.cookieMaxAge ?? DEFAULTS.cookieMaxAge;
|
|
34
55
|
const autoImport = options.autoImport ?? DEFAULTS.autoImport;
|
|
35
56
|
const includeUtilities = options.includeUtilities ?? DEFAULTS.includeUtilities;
|
|
@@ -37,10 +58,9 @@ module.exports = (0, _kit.defineNuxtModule)({
|
|
|
37
58
|
if (!nuxt.options.css.includes("origam/tokens/css/primitive")) {
|
|
38
59
|
nuxt.options.css.unshift("origam/tokens/css/primitive");
|
|
39
60
|
}
|
|
40
|
-
for (const
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
nuxt.options.css.push(cssId);
|
|
61
|
+
for (const sheet of ["origam/tokens/css/light", "origam/tokens/css/dark"]) {
|
|
62
|
+
if (!nuxt.options.css.includes(sheet)) {
|
|
63
|
+
nuxt.options.css.push(sheet);
|
|
44
64
|
}
|
|
45
65
|
}
|
|
46
66
|
if (includeUtilities && !nuxt.options.css.includes("origam/tokens/css/utilities")) {
|
|
@@ -55,7 +75,52 @@ module.exports = (0, _kit.defineNuxtModule)({
|
|
|
55
75
|
mode: "client"
|
|
56
76
|
});
|
|
57
77
|
if (autoImport) {
|
|
58
|
-
|
|
78
|
+
const composablesRoot = resolver.resolve("../composables");
|
|
79
|
+
const exportNameRegex = /export\s+(?:async\s+)?(?:function|const|let|var)\s+([A-Za-z_$][\w$]*)/g;
|
|
80
|
+
const collect = (dir, acc) => {
|
|
81
|
+
let entries;
|
|
82
|
+
try {
|
|
83
|
+
entries = (0, _nodeFs.readdirSync)(dir);
|
|
84
|
+
} catch {
|
|
85
|
+
return;
|
|
86
|
+
}
|
|
87
|
+
for (const entry of entries) {
|
|
88
|
+
const full = (0, _nodePath.join)(dir, entry);
|
|
89
|
+
let s;
|
|
90
|
+
try {
|
|
91
|
+
s = (0, _nodeFs.statSync)(full);
|
|
92
|
+
} catch {
|
|
93
|
+
continue;
|
|
94
|
+
}
|
|
95
|
+
if (s.isDirectory()) {
|
|
96
|
+
collect(full, acc);
|
|
97
|
+
continue;
|
|
98
|
+
}
|
|
99
|
+
if (!/\.(?:m?js|ts)$/.test(entry)) continue;
|
|
100
|
+
if (entry.endsWith(".d.ts")) continue;
|
|
101
|
+
let src = "";
|
|
102
|
+
try {
|
|
103
|
+
src = (0, _nodeFs.readFileSync)(full, "utf-8");
|
|
104
|
+
} catch {
|
|
105
|
+
continue;
|
|
106
|
+
}
|
|
107
|
+
let m;
|
|
108
|
+
exportNameRegex.lastIndex = 0;
|
|
109
|
+
while (m = exportNameRegex.exec(src)) {
|
|
110
|
+
const name = m[1];
|
|
111
|
+
if (NUXT_COMPOSABLES_BLOCKLIST.has(name)) continue;
|
|
112
|
+
acc.push({
|
|
113
|
+
name,
|
|
114
|
+
from: full
|
|
115
|
+
});
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
};
|
|
119
|
+
const imports = [];
|
|
120
|
+
collect(composablesRoot, imports);
|
|
121
|
+
if (imports.length) {
|
|
122
|
+
(0, _kit.addImports)(imports);
|
|
123
|
+
}
|
|
59
124
|
(0, _kit.addComponentsDir)({
|
|
60
125
|
path: resolver.resolve("../components"),
|
|
61
126
|
prefix: "",
|
|
@@ -65,9 +130,14 @@ module.exports = (0, _kit.defineNuxtModule)({
|
|
|
65
130
|
}
|
|
66
131
|
nuxt.options.runtimeConfig.public = nuxt.options.runtimeConfig.public || {};
|
|
67
132
|
nuxt.options.runtimeConfig.public.origam = {
|
|
133
|
+
// Installed theme OBJECTS, passed straight to createOrigam in the
|
|
134
|
+
// plugins (ADR-004 — no preset-name resolution).
|
|
68
135
|
themes,
|
|
69
136
|
defaultTheme,
|
|
137
|
+
modes,
|
|
138
|
+
defaultMode,
|
|
70
139
|
cookieName,
|
|
140
|
+
modeCookieName,
|
|
71
141
|
cookieMaxAge
|
|
72
142
|
};
|
|
73
143
|
}
|
package/dist/src/nuxt/module.js
CHANGED
|
@@ -1,15 +1,38 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { readdirSync, readFileSync, statSync } from "node:fs";
|
|
2
|
+
import { join } from "node:path";
|
|
3
|
+
import { addComponentsDir, addImports, addPlugin, createResolver, defineNuxtModule } from "@nuxt/kit";
|
|
2
4
|
const MODULE_NAME = "origam-nuxt";
|
|
3
5
|
const CONFIG_KEY = "origam";
|
|
6
|
+
const NUXT_COMPOSABLES_BLOCKLIST = /* @__PURE__ */ new Set([
|
|
7
|
+
"useRoute",
|
|
8
|
+
"useRouter",
|
|
9
|
+
"useLink",
|
|
10
|
+
"useHydration"
|
|
11
|
+
]);
|
|
12
|
+
const DEFAULT_THEMES = [];
|
|
13
|
+
const DEFAULT_MODES = ["light", "dark"];
|
|
4
14
|
const DEFAULTS = {
|
|
5
|
-
themes:
|
|
15
|
+
themes: DEFAULT_THEMES,
|
|
6
16
|
defaultTheme: "auto",
|
|
17
|
+
modes: DEFAULT_MODES,
|
|
18
|
+
defaultMode: "auto",
|
|
7
19
|
cookieName: "origam-theme",
|
|
20
|
+
modeCookieName: "origam-mode",
|
|
8
21
|
cookieMaxAge: 60 * 60 * 24 * 365,
|
|
9
22
|
autoImport: true,
|
|
10
23
|
includeUtilities: true,
|
|
11
24
|
prefix: "Origam"
|
|
12
25
|
};
|
|
26
|
+
const SCALAR_DEFAULTS = {
|
|
27
|
+
defaultTheme: DEFAULTS.defaultTheme,
|
|
28
|
+
defaultMode: DEFAULTS.defaultMode,
|
|
29
|
+
cookieName: DEFAULTS.cookieName,
|
|
30
|
+
modeCookieName: DEFAULTS.modeCookieName,
|
|
31
|
+
cookieMaxAge: DEFAULTS.cookieMaxAge,
|
|
32
|
+
autoImport: DEFAULTS.autoImport,
|
|
33
|
+
includeUtilities: DEFAULTS.includeUtilities,
|
|
34
|
+
prefix: DEFAULTS.prefix
|
|
35
|
+
};
|
|
13
36
|
export default defineNuxtModule({
|
|
14
37
|
meta: {
|
|
15
38
|
name: MODULE_NAME,
|
|
@@ -18,12 +41,15 @@ export default defineNuxtModule({
|
|
|
18
41
|
nuxt: "^3.0.0 || ^4.0.0"
|
|
19
42
|
}
|
|
20
43
|
},
|
|
21
|
-
defaults:
|
|
44
|
+
defaults: SCALAR_DEFAULTS,
|
|
22
45
|
setup(options, nuxt) {
|
|
23
46
|
const resolver = createResolver(import.meta.url);
|
|
24
|
-
const themes = options.themes ??
|
|
47
|
+
const themes = options.themes ?? DEFAULT_THEMES;
|
|
25
48
|
const defaultTheme = options.defaultTheme ?? DEFAULTS.defaultTheme;
|
|
49
|
+
const modes = options.modes ?? DEFAULT_MODES;
|
|
50
|
+
const defaultMode = options.defaultMode ?? DEFAULTS.defaultMode;
|
|
26
51
|
const cookieName = options.cookieName ?? DEFAULTS.cookieName;
|
|
52
|
+
const modeCookieName = options.modeCookieName ?? DEFAULTS.modeCookieName;
|
|
27
53
|
const cookieMaxAge = options.cookieMaxAge ?? DEFAULTS.cookieMaxAge;
|
|
28
54
|
const autoImport = options.autoImport ?? DEFAULTS.autoImport;
|
|
29
55
|
const includeUtilities = options.includeUtilities ?? DEFAULTS.includeUtilities;
|
|
@@ -31,10 +57,9 @@ export default defineNuxtModule({
|
|
|
31
57
|
if (!nuxt.options.css.includes("origam/tokens/css/primitive")) {
|
|
32
58
|
nuxt.options.css.unshift("origam/tokens/css/primitive");
|
|
33
59
|
}
|
|
34
|
-
for (const
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
nuxt.options.css.push(cssId);
|
|
60
|
+
for (const sheet of ["origam/tokens/css/light", "origam/tokens/css/dark"]) {
|
|
61
|
+
if (!nuxt.options.css.includes(sheet)) {
|
|
62
|
+
nuxt.options.css.push(sheet);
|
|
38
63
|
}
|
|
39
64
|
}
|
|
40
65
|
if (includeUtilities && !nuxt.options.css.includes("origam/tokens/css/utilities")) {
|
|
@@ -49,7 +74,49 @@ export default defineNuxtModule({
|
|
|
49
74
|
mode: "client"
|
|
50
75
|
});
|
|
51
76
|
if (autoImport) {
|
|
52
|
-
|
|
77
|
+
const composablesRoot = resolver.resolve("../composables");
|
|
78
|
+
const exportNameRegex = /export\s+(?:async\s+)?(?:function|const|let|var)\s+([A-Za-z_$][\w$]*)/g;
|
|
79
|
+
const collect = (dir, acc) => {
|
|
80
|
+
let entries;
|
|
81
|
+
try {
|
|
82
|
+
entries = readdirSync(dir);
|
|
83
|
+
} catch {
|
|
84
|
+
return;
|
|
85
|
+
}
|
|
86
|
+
for (const entry of entries) {
|
|
87
|
+
const full = join(dir, entry);
|
|
88
|
+
let s;
|
|
89
|
+
try {
|
|
90
|
+
s = statSync(full);
|
|
91
|
+
} catch {
|
|
92
|
+
continue;
|
|
93
|
+
}
|
|
94
|
+
if (s.isDirectory()) {
|
|
95
|
+
collect(full, acc);
|
|
96
|
+
continue;
|
|
97
|
+
}
|
|
98
|
+
if (!/\.(?:m?js|ts)$/.test(entry)) continue;
|
|
99
|
+
if (entry.endsWith(".d.ts")) continue;
|
|
100
|
+
let src = "";
|
|
101
|
+
try {
|
|
102
|
+
src = readFileSync(full, "utf-8");
|
|
103
|
+
} catch {
|
|
104
|
+
continue;
|
|
105
|
+
}
|
|
106
|
+
let m;
|
|
107
|
+
exportNameRegex.lastIndex = 0;
|
|
108
|
+
while (m = exportNameRegex.exec(src)) {
|
|
109
|
+
const name = m[1];
|
|
110
|
+
if (NUXT_COMPOSABLES_BLOCKLIST.has(name)) continue;
|
|
111
|
+
acc.push({ name, from: full });
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
};
|
|
115
|
+
const imports = [];
|
|
116
|
+
collect(composablesRoot, imports);
|
|
117
|
+
if (imports.length) {
|
|
118
|
+
addImports(imports);
|
|
119
|
+
}
|
|
53
120
|
addComponentsDir({
|
|
54
121
|
path: resolver.resolve("../components"),
|
|
55
122
|
prefix: "",
|
|
@@ -59,9 +126,14 @@ export default defineNuxtModule({
|
|
|
59
126
|
}
|
|
60
127
|
nuxt.options.runtimeConfig.public = nuxt.options.runtimeConfig.public || {};
|
|
61
128
|
nuxt.options.runtimeConfig.public.origam = {
|
|
129
|
+
// Installed theme OBJECTS, passed straight to createOrigam in the
|
|
130
|
+
// plugins (ADR-004 — no preset-name resolution).
|
|
62
131
|
themes,
|
|
63
132
|
defaultTheme,
|
|
133
|
+
modes,
|
|
134
|
+
defaultMode,
|
|
64
135
|
cookieName,
|
|
136
|
+
modeCookieName,
|
|
65
137
|
cookieMaxAge
|
|
66
138
|
};
|
|
67
139
|
}
|
|
@@ -6,7 +6,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
|
|
7
7
|
var _vue = require("vue");
|
|
8
8
|
var _composables = require("../composables/index.cjs");
|
|
9
|
-
var _consts = require("../consts/index.cjs");
|
|
10
9
|
var _origam = require("../origam.cjs");
|
|
11
10
|
var _app = require("#app");
|
|
12
11
|
module.exports = (0, _app.defineNuxtPlugin)({
|
|
@@ -14,29 +13,48 @@ module.exports = (0, _app.defineNuxtPlugin)({
|
|
|
14
13
|
setup(nuxtApp) {
|
|
15
14
|
const runtimeConfig = (0, _app.useRuntimeConfig)().public;
|
|
16
15
|
const config = runtimeConfig.origam;
|
|
17
|
-
const
|
|
16
|
+
const themeCookie = (0, _app.useCookie)(config.cookieName, {
|
|
18
17
|
maxAge: config.cookieMaxAge,
|
|
19
18
|
sameSite: "lax",
|
|
20
19
|
path: "/"
|
|
21
20
|
});
|
|
22
|
-
const
|
|
23
|
-
|
|
24
|
-
|
|
21
|
+
const modeCookie = (0, _app.useCookie)(config.modeCookieName, {
|
|
22
|
+
maxAge: config.cookieMaxAge,
|
|
23
|
+
sameSite: "lax",
|
|
24
|
+
path: "/"
|
|
25
|
+
});
|
|
26
|
+
const themeFromDom = typeof document !== "undefined" && document.documentElement.dataset.theme || null;
|
|
27
|
+
const initialTheme = themeFromDom ?? themeCookie.value ?? config.defaultTheme;
|
|
28
|
+
const initialMode = modeCookie.value ?? config.defaultMode;
|
|
29
|
+
const themes = config.themes ?? [];
|
|
30
|
+
const origam = (0, _origam.createOrigam)({
|
|
31
|
+
themes,
|
|
32
|
+
ssr: true
|
|
33
|
+
});
|
|
25
34
|
nuxtApp.vueApp.use(origam);
|
|
26
35
|
const themeApi = (0, _composables.useTheme)();
|
|
27
36
|
themeApi.setTheme(initialTheme);
|
|
37
|
+
themeApi.setMode(initialMode);
|
|
38
|
+
(0, _vue.watch)([themeApi.theme, themeApi.resolvedMode], ([brand, mode]) => {
|
|
39
|
+
origam._defaultsRef.value = origam._activeDefaultsFor(brand === "auto" ? "" : brand, mode);
|
|
40
|
+
}, {
|
|
41
|
+
immediate: true
|
|
42
|
+
});
|
|
28
43
|
(0, _vue.watch)(themeApi.theme, next => {
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
44
|
+
themeCookie.value = next;
|
|
45
|
+
}, {
|
|
46
|
+
flush: "post"
|
|
47
|
+
});
|
|
48
|
+
(0, _vue.watch)(themeApi.mode, next => {
|
|
49
|
+
modeCookie.value = next;
|
|
33
50
|
}, {
|
|
34
51
|
flush: "post"
|
|
35
52
|
});
|
|
36
53
|
return {
|
|
37
54
|
provide: {
|
|
38
55
|
origam: {
|
|
39
|
-
theme: initialTheme
|
|
56
|
+
theme: initialTheme,
|
|
57
|
+
mode: initialMode
|
|
40
58
|
}
|
|
41
59
|
}
|
|
42
60
|
};
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { watch } from "vue";
|
|
2
2
|
import { useTheme } from "../composables/index.js";
|
|
3
|
-
import { ORIGAM_THEME_ATTR } from "../consts/index.js";
|
|
4
3
|
import { createOrigam } from "../origam.js";
|
|
5
4
|
import { defineNuxtPlugin, useCookie, useRuntimeConfig } from "#app";
|
|
6
5
|
export default defineNuxtPlugin({
|
|
@@ -8,27 +7,46 @@ export default defineNuxtPlugin({
|
|
|
8
7
|
setup(nuxtApp) {
|
|
9
8
|
const runtimeConfig = useRuntimeConfig().public;
|
|
10
9
|
const config = runtimeConfig.origam;
|
|
11
|
-
const
|
|
10
|
+
const themeCookie = useCookie(config.cookieName, {
|
|
12
11
|
maxAge: config.cookieMaxAge,
|
|
13
12
|
sameSite: "lax",
|
|
14
13
|
path: "/"
|
|
15
14
|
});
|
|
16
|
-
const
|
|
17
|
-
|
|
18
|
-
|
|
15
|
+
const modeCookie = useCookie(config.modeCookieName, {
|
|
16
|
+
maxAge: config.cookieMaxAge,
|
|
17
|
+
sameSite: "lax",
|
|
18
|
+
path: "/"
|
|
19
|
+
});
|
|
20
|
+
const themeFromDom = typeof document !== "undefined" && document.documentElement.dataset.theme || null;
|
|
21
|
+
const initialTheme = themeFromDom ?? themeCookie.value ?? config.defaultTheme;
|
|
22
|
+
const initialMode = modeCookie.value ?? config.defaultMode;
|
|
23
|
+
const themes = config.themes ?? [];
|
|
24
|
+
const origam = createOrigam({ themes, ssr: true });
|
|
19
25
|
nuxtApp.vueApp.use(origam);
|
|
20
26
|
const themeApi = useTheme();
|
|
21
27
|
themeApi.setTheme(initialTheme);
|
|
28
|
+
themeApi.setMode(initialMode);
|
|
29
|
+
watch(
|
|
30
|
+
[themeApi.theme, themeApi.resolvedMode],
|
|
31
|
+
([brand, mode]) => {
|
|
32
|
+
origam._defaultsRef.value = origam._activeDefaultsFor(
|
|
33
|
+
brand === "auto" ? "" : brand,
|
|
34
|
+
mode
|
|
35
|
+
);
|
|
36
|
+
},
|
|
37
|
+
{ immediate: true }
|
|
38
|
+
);
|
|
22
39
|
watch(themeApi.theme, (next) => {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
40
|
+
themeCookie.value = next;
|
|
41
|
+
}, { flush: "post" });
|
|
42
|
+
watch(themeApi.mode, (next) => {
|
|
43
|
+
modeCookie.value = next;
|
|
27
44
|
}, { flush: "post" });
|
|
28
45
|
return {
|
|
29
46
|
provide: {
|
|
30
47
|
origam: {
|
|
31
|
-
theme: initialTheme
|
|
48
|
+
theme: initialTheme,
|
|
49
|
+
mode: initialMode
|
|
32
50
|
}
|
|
33
51
|
}
|
|
34
52
|
};
|