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
package/CHANGELOG.md
DELETED
|
@@ -1,650 +0,0 @@
|
|
|
1
|
-
# origam — Changelog
|
|
2
|
-
|
|
3
|
-
This changelog tracks releases of the `origam` package itself. Token-value
|
|
4
|
-
churn (Tokens Studio sync from Figma, semantic primitive shifts) lives in
|
|
5
|
-
[`tokens/CHANGELOG.md`](./tokens/CHANGELOG.md) — keep them separate so
|
|
6
|
-
"the design moved" never blocks a release of "the code shipped a new
|
|
7
|
-
component".
|
|
8
|
-
|
|
9
|
-
Format inspired by [Keep a Changelog](https://keepachangelog.com).
|
|
10
|
-
This project follows [Semantic Versioning](https://semver.org).
|
|
11
|
-
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
## [Unreleased]
|
|
15
|
-
|
|
16
|
-
_(empty — next features will land here.)_
|
|
17
|
-
|
|
18
|
-
---
|
|
19
|
-
|
|
20
|
-
## [2.3.0] — 2026-05-15
|
|
21
|
-
|
|
22
|
-
> **The features release.** Four new components, four major
|
|
23
|
-
> enrichments, an official Nuxt module, and a comprehensive SSR
|
|
24
|
-
> safety audit. All additions are backward-compatible — drop-in
|
|
25
|
-
> upgrade from 2.2.x. 378 unit tests (+158 vs 2.2.1), 0 lint errors.
|
|
26
|
-
|
|
27
|
-
### Added
|
|
28
|
-
|
|
29
|
-
- `origam/nuxt` sub-export — official Nuxt 3 / Nuxt 4 module. Auto-imports
|
|
30
|
-
components and composables. SSR-safe theme resolution via cookie +
|
|
31
|
-
`Sec-CH-Prefers-Color-Scheme` header (no FOUC, no hydration mismatch).
|
|
32
|
-
Auto-injects token CSS files (primitive + selected themes + utilities).
|
|
33
|
-
Configurable via `origam: {}` in `nuxt.config.ts`. Resolves through
|
|
34
|
-
`modules: ['origam/nuxt']`. New `IOrigamNuxtModuleOptions` and
|
|
35
|
-
`IOrigamNuxtRuntimeConfig` interfaces; new theme constants
|
|
36
|
-
(`ORIGAM_THEME_AUTO`, `ORIGAM_THEME_LIGHT`, `ORIGAM_THEME_DARK`,
|
|
37
|
-
`ORIGAM_THEME_ATTR`, `ORIGAM_THEME_STORAGE_KEY`). Reference
|
|
38
|
-
documentation at `docs/integrations/nuxt.md`.
|
|
39
|
-
|
|
40
|
-
### Changed
|
|
41
|
-
|
|
42
|
-
- `OrigamTextField` — new `mask` prop with built-in patterns
|
|
43
|
-
(`phone:fr`, `phone:us`, `phone:international`, `iban`, `siret`,
|
|
44
|
-
`creditcard`, `date:iso`, `date:fr`, `date:us`, `time`, `time:12h`,
|
|
45
|
-
`postcode:fr`, `postcode:us`) plus a custom pattern syntax
|
|
46
|
-
(`#` = digit, `A` = letter, `*` = any, anything else is a literal).
|
|
47
|
-
In-house mask engine — zero external dependency (no `imask.js` /
|
|
48
|
-
`cleave.js` / `vue-the-mask`). Reactive validation pipeline with
|
|
49
|
-
built-in `luhn` (credit card), `iban` (mod-97) and date parsers
|
|
50
|
-
(`date:iso` / `date:fr` / `date:us`); custom validators accepted as
|
|
51
|
-
`(unmasked) => boolean`. New emits `@valid(boolean)` and
|
|
52
|
-
`@complete({ complete, unmasked })` fire on every value change. The
|
|
53
|
-
v-model exposes the **unmasked** value while the DOM input displays
|
|
54
|
-
the formatted (masked) one — paste handling strips literals and
|
|
55
|
-
reformats, `aria-invalid` toggles on touched fields, and the engine
|
|
56
|
-
auto-promotes phone-shaped patterns to `type="tel"` for mobile
|
|
57
|
-
keyboard hints. New `useMask` composable, `applyMask` / `unmaskValue`
|
|
58
|
-
/ `resolveMaskConfig` / `validatePattern` utils, new `IMaskOptions`
|
|
59
|
-
interface and `TMask` / `TBuiltInPattern` / `TPatternValidator`
|
|
60
|
-
types.
|
|
61
|
-
- `OrigamTextareaField` — new `mode="rich"` enabling a lightweight
|
|
62
|
-
HTML / Markdown editor based on `contenteditable`. Built in-house
|
|
63
|
-
with zero external dependencies (no TipTap, ProseMirror, Quill).
|
|
64
|
-
9 toolbar commands (`bold`, `italic`, `underline`, `link`,
|
|
65
|
-
`list-bullet`, `list-ordered`, `heading`, `code-inline`,
|
|
66
|
-
`clear-format`), customisable via the new `toolbar` prop (or
|
|
67
|
-
`toolbar: false` to hide). Keyboard shortcuts (Cmd/Ctrl+B/I/U/K/E
|
|
68
|
-
and Cmd/Ctrl+Shift+7/8 for the two list modes). New `output` prop
|
|
69
|
-
switches the v-model serialisation between `'html'` (sanitised) and
|
|
70
|
-
`'markdown'` (CommonMark-flavoured subset). New `toolbarPosition`
|
|
71
|
-
prop (`'top' | 'bottom' | 'floating'`). New `format` emit fired on
|
|
72
|
-
every toolbar click or keyboard shortcut with the command id (and
|
|
73
|
-
the URL for link insertion). New slots `#toolbar` and
|
|
74
|
-
`#toolbar-item` allow replacing the default UI entirely. Internal
|
|
75
|
-
sub-component `OrigamRichToolbar.vue` + composable
|
|
76
|
-
`useTextareaRich` own the contenteditable contract. In-house HTML
|
|
77
|
-
sanitiser with allowlist on tags (`p`, `br`, `strong`, `b`, `em`,
|
|
78
|
-
`i`, `u`, `a`, `ul`, `ol`, `li`, `h1`, `h2`, `h3`, `code`),
|
|
79
|
-
attributes (`href` restricted to `http:` / `https:` / `mailto:` /
|
|
80
|
-
`tel:` plus relative URLs; `class` restricted to the
|
|
81
|
-
`origam-rich--*` prefix), and stripping every `on*` event handler
|
|
82
|
-
before per-tag filtering. External links are auto-hardened with
|
|
83
|
-
`rel="noopener noreferrer nofollow" target="_blank"`. ARIA:
|
|
84
|
-
`role="toolbar" + aria-label` on the toolbar, real `<button>` per
|
|
85
|
-
command with `aria-label` + `aria-pressed`, the editing surface
|
|
86
|
-
carries `role="textbox" + aria-multiline="true"`. New tokens under
|
|
87
|
-
`component/textarea-field/rich-*` (toolbar surface, button states,
|
|
88
|
-
content padding, inline-code colors, link color, heading sizes).
|
|
89
|
-
The plain-mode (`mode="plain"`, default) API is fully
|
|
90
|
-
backward-compatible — passing nothing keeps the previous
|
|
91
|
-
`<textarea>` behaviour.
|
|
92
|
-
|
|
93
|
-
- `OrigamCode` — major enrichment via shiki integration. Syntax
|
|
94
|
-
highlighting for 13 languages (vue, ts, js, tsx, jsx, scss, css, json,
|
|
95
|
-
bash, html, xml, yaml, md) plus `plaintext`. New props: `lineNumbers`,
|
|
96
|
-
`highlightLines` (accepts both `number[]` and the range syntax
|
|
97
|
-
`'2,5-7'`), `copyable`, `maxHeight`, `theme` (`'auto' | 'light' | 'dark'`),
|
|
98
|
-
`wrap`, `filename`. Copy button with `navigator.clipboard` and an
|
|
99
|
-
`execCommand('copy')` fallback for legacy WebViews. Lazy-init shiki
|
|
100
|
-
highlighter cached as a module-level singleton across instances; an
|
|
101
|
-
LRU (max 64 entries) caches highlighted HTML by `(code, lang, theme)`
|
|
102
|
-
so re-renders never re-tokenise. Theme defaults to `auto` and tracks
|
|
103
|
-
the host `<html data-theme>` attribute. New `useCode` composable
|
|
104
|
-
exposing `{ highlight, prime, isReady, resetCacheForTesting }`. New
|
|
105
|
-
utility `parseHighlightLines()` shared with stories/tests. Pure-CSS
|
|
106
|
-
line-numbers gutter (CSS counter, no JS layout) and line-highlight
|
|
107
|
-
swap (class toggle on already-rendered rows, no re-tokenisation).
|
|
108
|
-
ARIA: `role="region"` on the surface, `aria-live="polite"` on the
|
|
109
|
-
copy feedback, hidden line numbers. `shiki` (`^3.8.1`) promoted from
|
|
110
|
-
`devDependencies` to `dependencies` (it's a runtime dep now); the
|
|
111
|
-
bundle adds ~3 MB to installed `node_modules` for the curated subset.
|
|
112
|
-
New tokens under `component/code` (35 vars: surface, header, filename,
|
|
113
|
-
copy button, line-number gutter, line-highlight, scrollbar). The v2.x
|
|
114
|
-
plain-text `<pre>` API is fully backward-compatible — passing just
|
|
115
|
-
`code` and `lang` keeps the previous behaviour.
|
|
116
|
-
|
|
117
|
-
- `OrigamParallax` — major enrichment. Multi-layer support via new
|
|
118
|
-
`OrigamParallaxLayer` subcomponent (`speed`, `offsetX`, `offsetY`,
|
|
119
|
-
`zIndex` props; layers register themselves into the host runtime and
|
|
120
|
-
receive direct DOM mutations of `transform` outside Vue reactivity).
|
|
121
|
-
Host gains `direction` (`'vertical' | 'horizontal' | 'both'`),
|
|
122
|
-
`easing` (`'linear' | 'ease-out' | 'spring'`, in addition to the
|
|
123
|
-
legacy raw CSS timing-function string), `disabled`, `speed`,
|
|
124
|
-
`threshold` props. New emits: `@enter`, `@leave`,
|
|
125
|
-
`@scroll-progress(0→1)` driven by `IntersectionObserver` +
|
|
126
|
-
`requestAnimationFrame`. `prefers-reduced-motion: reduce` is honoured
|
|
127
|
-
natively — layers stay at `translate3d(offsetX, offsetY, 0)` and the
|
|
128
|
-
rAF loop short-circuits. CSS-first scroll-driven animations
|
|
129
|
-
(`animation-timeline: view()`) when `view-timeline` is supported
|
|
130
|
-
(Chrome 115+, Edge 115+) AND `easing === 'linear'`; JS fallback
|
|
131
|
-
otherwise. Spring easing implemented as a damped lerp in the JS path.
|
|
132
|
-
Existing single-layer / `<OrigamParallaxElement>` API preserved (the
|
|
133
|
-
two layer kinds use independent injection contexts and can coexist
|
|
134
|
-
inside the same host). New tokens: `parallax.transition-duration-spring`,
|
|
135
|
-
`parallax.transition-easing-default` / `-spring`,
|
|
136
|
-
`parallax.layer.will-change` / `.transform-origin`.
|
|
137
|
-
|
|
138
|
-
### Added
|
|
139
|
-
|
|
140
|
-
- `OrigamCommandPalette` — ⌘K command launcher. Built on a teleported
|
|
141
|
-
dialog with focus trap + focus restoration. Custom subsequence-based
|
|
142
|
-
fuzzy-match algorithm (no external dep) ranks results by
|
|
143
|
-
consecutive-run + label-prefix + first-position bonuses. Composable
|
|
144
|
-
`useCommand` exposes a process-wide command registry — entries
|
|
145
|
-
registered inside a Vue effect scope auto-unregister on dispose.
|
|
146
|
-
Reuses `OrigamKbd` for inline shortcut display. Hotkey listener
|
|
147
|
-
built on `useHotkey` (default `⌘+K` on macOS, `Ctrl+K` on
|
|
148
|
-
Windows / Linux, configurable per combination or disabled with
|
|
149
|
-
`:hotkey="null"`). ARIA combobox pattern (`role="combobox"` on the
|
|
150
|
-
input, `role="listbox"` on the result list, `role="option"` per
|
|
151
|
-
item, `aria-activedescendant` tracking the keyboard cursor) +
|
|
152
|
-
`role="dialog"` + `aria-modal="true"` on the surface. Tokens exposed
|
|
153
|
-
under `tokens/component/command-palette.json`
|
|
154
|
-
(`--origam-command-palette---*`,
|
|
155
|
-
`--origam-command-palette__input---*`,
|
|
156
|
-
`--origam-command-palette__item---*`,
|
|
157
|
-
`--origam-command-palette__group-title---*`,
|
|
158
|
-
`--origam-command-palette__empty---*`,
|
|
159
|
-
`--origam-command-palette__footer---*`,
|
|
160
|
-
`--origam-command-palette--backdrop---*`).
|
|
161
|
-
|
|
162
|
-
- `OrigamBracket` — e-sport tournament tree. Supports single-elimination,
|
|
163
|
-
double-elimination and round-robin variants. SVG connectors
|
|
164
|
-
auto-computed from `nextMatchId` (with positional fallback). Slots for
|
|
165
|
-
custom match / competitor / round-title / connector rendering. ARIA
|
|
166
|
-
`role="region"` with per-round `role="group"` + `aria-labelledby`
|
|
167
|
-
pointing at title headings. Tokens exposed under
|
|
168
|
-
`tokens/component/bracket.json` (`--origam-bracket---*`,
|
|
169
|
-
`--origam-bracket-match---*`, `--origam-bracket-competitor---*`,
|
|
170
|
-
`--origam-bracket-connector---*`, `--origam-bracket-round-robin---*`).
|
|
171
|
-
|
|
172
|
-
- `OrigamSnackbarStack` — multi-toast notification system. Reuses
|
|
173
|
-
`OrigamSnackbar` styling vocabulary for rendering. Composable
|
|
174
|
-
`useSnackbarStack({ id })` exposes `notify` / `dismiss` /
|
|
175
|
-
`dismissAll`. 8 anchor locations, max stack size with FIFO eviction,
|
|
176
|
-
per-item auto-dismiss (or `0` for sticky), action buttons with
|
|
177
|
-
optional `keepOpen`, ARIA `role="region"` on the stack root +
|
|
178
|
-
`role="status"` / `"alert"` per intent on each item with matching
|
|
179
|
-
`aria-live`. Slide-in / slide-out transitions degrade to a fade under
|
|
180
|
-
`prefers-reduced-motion`. Tokens exposed under
|
|
181
|
-
`tokens/component/snackbar-stack.json`
|
|
182
|
-
(`--origam-snackbar-stack---*`, `--origam-snackbar-stack__item---*`).
|
|
183
|
-
|
|
184
|
-
- `OrigamTabs` / `OrigamTab` / `OrigamTabPanels` / `OrigamTabPanel` —
|
|
185
|
-
full tab system with horizontal / vertical orientation, three visual
|
|
186
|
-
variants (`default` / `pills` / `underline`), ARIA `role="tablist"` +
|
|
187
|
-
`role="tab"` + `role="tabpanel"` wiring, full keyboard navigation
|
|
188
|
-
(`←`/`→`/`↑`/`↓`/`Home`/`End`/`Enter`/`Space`), lazy or eager panel
|
|
189
|
-
mounting, optional touch-swipeable panels. Reuses the shared
|
|
190
|
-
`useGroup` orchestration so the selection state, mandatory behaviour
|
|
191
|
-
and disabled-tab semantics align with the rest of the system
|
|
192
|
-
(`OrigamBtnToggle`, `OrigamCarousel`, `OrigamBottomNav`). Tokens
|
|
193
|
-
exposed under `tokens/component/tabs.json` (item color, indicator
|
|
194
|
-
color, panel padding, transition duration).
|
|
195
|
-
|
|
196
|
-
- `OrigamClientOnly` — SSR helper component that renders its default
|
|
197
|
-
slot only after `onMounted`. Optional `#fallback` slot (or
|
|
198
|
-
`placeholder-tag` / `placeholder-class` props) reserves layout space
|
|
199
|
-
during SSR to avoid CLS. Use to wrap fragments whose markup truly must
|
|
200
|
-
differ between server and client (audio, deviceorientation,
|
|
201
|
-
IntersectionObserver-driven features, …) without triggering hydration
|
|
202
|
-
mismatches.
|
|
203
|
-
|
|
204
|
-
- `useCssSupportClient(feature, { defaultValue })` — hydration-safe
|
|
205
|
-
feature-gate helper. Returns a `Ref<boolean>` that starts at
|
|
206
|
-
`defaultValue` (default `false`) on both SSR and first client render,
|
|
207
|
-
then flips to the real `CSS.supports()` result inside `onMounted`.
|
|
208
|
-
Use to gate **markup** branches (template `v-if`) when the regular
|
|
209
|
-
`useCssSupport().css.value.X` would produce a hydration mismatch
|
|
210
|
-
(class-only branches keep using the existing API — Vue 3 reconciles
|
|
211
|
-
class diffs fine).
|
|
212
|
-
|
|
213
|
-
### Fixed
|
|
214
|
-
|
|
215
|
-
- SSR safety — comprehensive audit of all composables and components
|
|
216
|
-
that previously could crash on server render (`window is not defined`,
|
|
217
|
-
`document is not defined`). `useCssSupport` already returned all-false
|
|
218
|
-
flags during SSR; the rest of the surface (`useTheme`, `useCommand`,
|
|
219
|
-
`useSnackbarStack`, `useCode`, `useMask`, `useTouch`, `useHotkey`,
|
|
220
|
-
`useSticky`, `useSheetSwipe`, `useScroll`, `useParallax`, `useStyleTag`,
|
|
221
|
-
`useTeleport`, `useLocationStrategies`, `useScrollStrategies`,
|
|
222
|
-
`useDisplay`) was confirmed safe via the audit and patched where a
|
|
223
|
-
composable's public method or a `computed` could be evaluated during
|
|
224
|
-
SSR. Specifically: `useAspectRatio` no longer dereferences
|
|
225
|
-
`window.innerWidth/Height` when no explicit `aspectRatio` prop is
|
|
226
|
-
given; `useVirtual`'s `viewportHeight` computed guards
|
|
227
|
-
`document.documentElement`; `useSnackbarStack.dismiss()` guards
|
|
228
|
-
`window.clearTimeout`. Overlay components (Dialog, Drawer, Menu,
|
|
229
|
-
Tooltip, Snackbar, ContextualMenu, SnackbarStack, CommandPalette)
|
|
230
|
-
confirmed SSR-safe via `<Teleport>` (Vue defers the mount until the
|
|
231
|
-
client). New guide `docs/guide/ssr.md`. New `src/__tests__/ssr-smoke.spec.ts`
|
|
232
|
-
exercises every refactored composable in a simulated SSR environment
|
|
233
|
-
(window/document/CSS stripped) **and** through `@vue/server-renderer`'s
|
|
234
|
-
real `renderToString()`.
|
|
235
|
-
|
|
236
|
-
---
|
|
237
|
-
|
|
238
|
-
## [2.2.1] — 2026-05-14
|
|
239
|
-
|
|
240
|
-
### Fixed
|
|
241
|
-
|
|
242
|
-
- Expose `./package.json` explicitly in the `exports` map. The catch-all
|
|
243
|
-
`"./*": "./dist/src/*"` previously intercepted `import 'origam/package.json'`
|
|
244
|
-
and re-routed it to a non-existent file inside `dist/`. Standard
|
|
245
|
-
consumer pattern (reading the version from the package metadata) was
|
|
246
|
-
broken — fixed by adding `"./package.json": "./package.json"` ahead
|
|
247
|
-
of the catch-all so it matches first.
|
|
248
|
-
- 2.2.0 was tagged but never published to npm. 2.2.1 is the first
|
|
249
|
-
version that lands on the registry.
|
|
250
|
-
|
|
251
|
-
---
|
|
252
|
-
|
|
253
|
-
## [2.2.0] — 2026-05-14
|
|
254
|
-
|
|
255
|
-
> **The "ready for npm" release.** Package metadata, peer dependencies,
|
|
256
|
-
> tree-shaking signals and a real README are all in. Tarball preview
|
|
257
|
-
> shrunk from 5.6 MB to **867.9 kB** (2 343 files, zero suspect entry).
|
|
258
|
-
> No public API change vs 2.1.0 — every consumer upgrade is a
|
|
259
|
-
> drop-in.
|
|
260
|
-
|
|
261
|
-
### Added — stories, slots, emits coverage
|
|
262
|
-
|
|
263
|
-
- 525+ missing `Slot` / `Emit` Variants across 113 component stories
|
|
264
|
-
(`feat(stories)`). Every documented slot now has a dedicated Variant
|
|
265
|
-
with a custom-content example, and every emit a Variant that logs
|
|
266
|
-
to a live counter.
|
|
267
|
-
- `OrigamSwitchTrack` extracted as a standalone primitive (track-only)
|
|
268
|
-
so consumers can build switch-like compounds without rewriting the
|
|
269
|
-
thumb logic.
|
|
270
|
-
- Tooling: `useStateEffect` now reacts to every per-axis composable
|
|
271
|
-
(`useHover` / `useActive` / `useFocus`) in a single call — collapses
|
|
272
|
-
the 14 components that historically wired them axis by axis.
|
|
273
|
-
|
|
274
|
-
### Fixed
|
|
275
|
-
|
|
276
|
-
- `useStyle` now instrumented across the 124 components that
|
|
277
|
-
previously inlined `*Styles` arrays — single source of truth for the
|
|
278
|
-
inline-style escape hatch.
|
|
279
|
-
- Carousel — `progress` prop renders a real-time progress bar wired to
|
|
280
|
-
the cycle timer (was rendering a static "step / total" bar).
|
|
281
|
-
- Carousel — `hideDelimiterBackground` finally has a background to
|
|
282
|
-
hide (default `__controls` bg = `rgba(0, 0, 0, 0.4)`).
|
|
283
|
-
- Histoire sandbox/panel sash now resizes the iframe in **both
|
|
284
|
-
directions** (was capped at the 720 px responsive-preset width when
|
|
285
|
-
dragging right).
|
|
286
|
-
- `useRounded` — utility variants (`xs|sm|md|lg|xl|none|full`) now
|
|
287
|
-
emit BOTH the `.origam--rounded-*` class AND an inline
|
|
288
|
-
`border-radius` declaration as a specificity escape hatch (Strategy
|
|
289
|
-
A documented in `CLAUDE.md`).
|
|
290
|
-
- 130 unused-vars cleared from `src/`, 39 ESLint warnings fixed.
|
|
291
|
-
|
|
292
|
-
### Changed — package for npm
|
|
293
|
-
|
|
294
|
-
- `peerDependencies` introduced: `vue ^3.5`, `vue-i18n ^11`,
|
|
295
|
-
`vue-router ^4.5` (last two `optional` via `peerDependenciesMeta`).
|
|
296
|
-
They are no longer auto-installed as `dependencies` — consumers
|
|
297
|
-
bring their own versions.
|
|
298
|
-
- `sideEffects: ["**/*.css", "**/*.scss", "**/*.vue"]` for downstream
|
|
299
|
-
tree-shaking.
|
|
300
|
-
- `engines.node: ">=22"` (matches `.nvmrc`).
|
|
301
|
-
- `prepublishOnly` script chains `tokens:build` → `server:build` →
|
|
302
|
-
unit tests. Every `npm publish` rebuilds from scratch with green
|
|
303
|
-
tests.
|
|
304
|
-
- `files` whitelist tightened to `dist/src/`, `dist/tokens/`, LICENSE,
|
|
305
|
-
README, CHANGELOG. The Histoire bundle (`dist/stories/`, ~13 MB) is
|
|
306
|
-
no longer shipped to consumers.
|
|
307
|
-
- `build.config.ts` `externals` extended to `['vue', 'vue-i18n',
|
|
308
|
-
'vue-router', '@mdi/font']` so peer deps don't get re-bundled.
|
|
309
|
-
- mkdist exclusion patterns expanded: `.spec.ts`, `__tests__/**`,
|
|
310
|
-
`.cy.ts`, `.story.vue` are stripped from `dist/`.
|
|
311
|
-
- ESLint config ignores `docs/.vitepress/cache/**` and
|
|
312
|
-
`figma-plugin/**` (these aren't part of the published library).
|
|
313
|
-
|
|
314
|
-
### Documentation
|
|
315
|
-
|
|
316
|
-
- Full `README.md` written from scratch (253 lines) — install,
|
|
317
|
-
peer deps, plugin registration, theming (`data-theme` +
|
|
318
|
-
`useTheme()` + `<OrigamThemeProvider>`), token tiers, component
|
|
319
|
-
families, composable table, CSS-first principle.
|
|
320
|
-
|
|
321
|
-
### Internal
|
|
322
|
-
|
|
323
|
-
- ESLint rule `no-restricted-imports` blocks `@origam` /
|
|
324
|
-
`@stories` / `@docs` / `@cypress` aliases inside `src/` — once
|
|
325
|
-
published, those aliases can't be resolved by consumers.
|
|
326
|
-
- 124 components instrumented with `useStyle` following the
|
|
327
|
-
canonical pattern.
|
|
328
|
-
- `.tsbuildinfo` and other transient artefacts removed from the tree.
|
|
329
|
-
|
|
330
|
-
---
|
|
331
|
-
|
|
332
|
-
## [2.1.0] — 2026-05-07
|
|
333
|
-
|
|
334
|
-
> **The classes-first release.** The 13 transversal composables
|
|
335
|
-
> (`useColor`, `useBackgroundColor`, `useTextColor`, `useColorEffect`,
|
|
336
|
-
> `useElevation`, `useRounded`, `useBorder`, `useMargin`, `usePadding`,
|
|
337
|
-
> `useSize`) now emit utility classes (e.g. `.origam--bg-primary`,
|
|
338
|
-
> `.origam--shadow-md`) when the consumer passes a tokenised value. The
|
|
339
|
-
> existing `*Styles` outputs stay populated only when the value is
|
|
340
|
-
> non-tokenisable (legacy hex, custom dimensions) — the inline style
|
|
341
|
-
> stack on a typical button drops from ~12 to ~6 declarations.
|
|
342
|
-
>
|
|
343
|
-
> **Non-breaking.** Every composable keeps its previous return shape;
|
|
344
|
-
> the new `*Classes` keys are additive. Components have been migrated
|
|
345
|
-
> to read both shapes in parallel (transition strategy A).
|
|
346
|
-
|
|
347
|
-
### Migrating from v2.0 to v2.1
|
|
348
|
-
|
|
349
|
-
Nothing is required. The release is additive; existing consumers keep
|
|
350
|
-
working unchanged. To start using the new path:
|
|
351
|
-
|
|
352
|
-
```vue
|
|
353
|
-
<!-- v2.0 — still works, still emits inline style -->
|
|
354
|
-
<OrigamBtn color="primary">Click</OrigamBtn>
|
|
355
|
-
|
|
356
|
-
<!-- v2.1 — same code, but the emitted DOM now also carries the
|
|
357
|
-
`.origam--bg-primary` utility class instead of inline
|
|
358
|
-
`background-color: var(...)`. Inspecting the DOM is much cleaner. -->
|
|
359
|
-
```
|
|
360
|
-
|
|
361
|
-
If you write your own components on top of `useColor*` / `useElevation`
|
|
362
|
-
/ `useRounded` / etc., you can now destructure the new `*Classes`
|
|
363
|
-
return:
|
|
364
|
-
|
|
365
|
-
```ts
|
|
366
|
-
const { colorClasses, colorStyles } = useColorEffect(props, isHover, isActive, isDisabled)
|
|
367
|
-
// colorClasses: ['origam--bg-primary'] when intent
|
|
368
|
-
// colorStyles : [] when intent
|
|
369
|
-
// colorClasses: [] when '#7c3aed'
|
|
370
|
-
// colorStyles : ['background-color: ...']when '#7c3aed'
|
|
371
|
-
```
|
|
372
|
-
|
|
373
|
-
Bind both — `:class="[..., colorClasses]"` AND `:style="[..., colorStyles]"`.
|
|
374
|
-
The hover/active/disabled state still flows through `colorStyles` (utility
|
|
375
|
-
classes are static, by design).
|
|
376
|
-
|
|
377
|
-
### Added
|
|
378
|
-
|
|
379
|
-
- **66 utility classes** generated by Style Dictionary, exposed at
|
|
380
|
-
`origam/tokens/css/utilities` and forwarded by `origam/styles`:
|
|
381
|
-
- `.origam--color-{primary|secondary|success|warning|danger|info|neutral}`
|
|
382
|
-
- `.origam--bg-{primary|secondary|success|warning|danger|info|neutral}`
|
|
383
|
-
- `.origam--shadow-{none|xs|sm|md|lg|xl}`
|
|
384
|
-
- `.origam--rounded-{none|xs|sm|md|lg|xl|full}`
|
|
385
|
-
- `.origam--border-{none|thin|thick}`
|
|
386
|
-
- `.origam--p-{0..12}`, `.origam--m-{0..12}`, `.origam--gap-{0..12}`
|
|
387
|
-
- `.origam--text-{xs|sm|md|lg|xl|2xl}`
|
|
388
|
-
- New return keys on transversal composables:
|
|
389
|
-
`colorClasses`, `backgroundColorClasses`, `textColorClasses`,
|
|
390
|
-
`elevationClasses` (extended), `roundedClasses` (extended),
|
|
391
|
-
`borderClasses` (extended), `marginClasses`, `paddingClasses`,
|
|
392
|
-
`sizeClasses`.
|
|
393
|
-
- `tests/e2e/utilities.spec.ts` — 66 Playwright tests, one per
|
|
394
|
-
utility class, asserting both class presence and `getComputedStyle`
|
|
395
|
-
resolution against the CSS var pipeline.
|
|
396
|
-
- `tests/e2e/prop-audit-phase4.spec.ts` — DOM audit on representative
|
|
397
|
-
components confirming the inline-style pile reduction.
|
|
398
|
-
- 79 new Vitest unit specs in `src/composables/Commons/__tests__/`
|
|
399
|
-
covering the classes-first branch of every refactored composable.
|
|
400
|
-
|
|
401
|
-
### Changed
|
|
402
|
-
|
|
403
|
-
- ~54 components migrated to consume `*Classes` in parallel with
|
|
404
|
-
`*Styles`. Notable surface-bearing children: Menu/Tooltip/Picker/
|
|
405
|
-
Snackbar/Badge — utility class lands on the `__content` / `__pill` /
|
|
406
|
-
`__wrapper` BEM child, never on the teleport root.
|
|
407
|
-
- `OrigamSelectionControl.__wrapper` now carries
|
|
408
|
-
`useTextColor(color)`'s class + style on its root element. This
|
|
409
|
-
re-instates the Switch thumb tinting (`currentColor`) for tokenised
|
|
410
|
-
intents, which had silently broken when `OrigamSwitchTrack` was
|
|
411
|
-
extracted earlier in the cycle.
|
|
412
|
-
- `OrigamSwitch` SCSS — the legacy `[style*="color:"]` selector is
|
|
413
|
-
joined by a class-driven set
|
|
414
|
-
(`.origam-selection-control__wrapper.origam--color-{intent} &__thumb`)
|
|
415
|
-
so both the new tokenised path and the legacy hex path tint the thumb
|
|
416
|
-
via `currentColor`.
|
|
417
|
-
|
|
418
|
-
### Deprecated
|
|
419
|
-
|
|
420
|
-
- `*Styles` returns on the 10 refactored composables — prefer the
|
|
421
|
-
matching `*Classes` for tokenised values. Both are kept for one
|
|
422
|
-
major cycle; removal scheduled for v3.0.0.
|
|
423
|
-
|
|
424
|
-
### Fixed
|
|
425
|
-
|
|
426
|
-
- `OrigamSwitch` thumb stayed white when `color="primary"` (or any
|
|
427
|
-
tokenised intent) — regression from the `OrigamSwitchTrack`
|
|
428
|
-
extraction. Re-introduced via classes-first.
|
|
429
|
-
- `OrigamSnackbar` `__wrapper` no longer duplicates the
|
|
430
|
-
`roundedClasses`/`borderClasses` already applied at the root.
|
|
431
|
-
|
|
432
|
-
### Known limits — planned for v2.2 (Phase 1.5)
|
|
433
|
-
|
|
434
|
-
- No utility for margin / padding axes (`mx`, `my`, `mt`, `mb`, `ml`,
|
|
435
|
-
`mr`, `px`, `py`, `pt`, `pb`, `pl`, `pr`). Components passing
|
|
436
|
-
axis-specific values fall back to inline styles for now.
|
|
437
|
-
- No `2xl` / `3xl` shadow utilities (the rungs exist as primitives but
|
|
438
|
-
are off the manifest).
|
|
439
|
-
- Legacy `ROUNDED` enum (`x-small | small | default | medium | large
|
|
440
|
-
| x-large | shaped | shaped-invert`) does not bridge to the
|
|
441
|
-
`none|xs|sm|md|lg|xl|full` utility taxonomy — components passing a
|
|
442
|
-
legacy value get their existing component-scoped BEM modifier and an
|
|
443
|
-
inline style fallback.
|
|
444
|
-
- `useColorEffect` does NOT emit a `*Classes` value when `isHover` /
|
|
445
|
-
`isActive` / `isDisabled` is true (states are inline-only by design).
|
|
446
|
-
Components that bind `useActive(props, 'modelValue')` (Alert, Badge,
|
|
447
|
-
BottomNav) therefore never carry a utility class while visible — the
|
|
448
|
-
inline style still paints them correctly. This is intentional; do not
|
|
449
|
-
rely on the utility class for state-dependent styling.
|
|
450
|
-
|
|
451
|
-
---
|
|
452
|
-
|
|
453
|
-
## [2.0.0] — 2026-04-26
|
|
454
|
-
|
|
455
|
-
> **The design tokens release.** Every component now resolves its colors,
|
|
456
|
-
> spacing, typography, and motion through a centralised, theme-aware
|
|
457
|
-
> token pipeline (Style Dictionary v4 + Tokens Studio for Figma). 50+
|
|
458
|
-
> components migrated; 18 of them also picked up real bug fixes from the
|
|
459
|
-
> companion `optimus-design-system` codebase. Multi-theme (light / dark)
|
|
460
|
-
> works out of the box; `brand-X` themes are an additive layer.
|
|
461
|
-
|
|
462
|
-
### Migrating from v0.x to v2.0.0
|
|
463
|
-
|
|
464
|
-
This is a major bump because three things change:
|
|
465
|
-
|
|
466
|
-
1. **The CSS variables that components read are now generated.** The old
|
|
467
|
-
`<style>:root{}` blocks that each component shipped have been removed.
|
|
468
|
-
Consumers MUST load the generated token CSS — either:
|
|
469
|
-
|
|
470
|
-
```ts
|
|
471
|
-
import 'origam/styles' // primitive + light + dark + helpers
|
|
472
|
-
```
|
|
473
|
-
or pick the layers separately:
|
|
474
|
-
```ts
|
|
475
|
-
import 'origam/tokens/css/primitive'
|
|
476
|
-
import 'origam/tokens/css/light'
|
|
477
|
-
import 'origam/tokens/css/dark' // applied via [data-theme="dark"]
|
|
478
|
-
```
|
|
479
|
-
|
|
480
|
-
If you were overriding origam vars at the document root (e.g.
|
|
481
|
-
`:root { --origam-btn---background-color: red }`), that still works —
|
|
482
|
-
the generated CSS is just a default. But if you depended on the
|
|
483
|
-
per-component `:root{}` block being injected when the component
|
|
484
|
-
mounted, that's gone. The vars are now set once globally.
|
|
485
|
-
|
|
486
|
-
2. **`useColorEffect` is intent-aware.** The `color` / `bgColor` props on
|
|
487
|
-
`<OrigamBtn>`, `<OrigamChip>`, `<OrigamAvatar>`, etc. now expect a
|
|
488
|
-
semantic intent (`'primary'`, `'success'`, `'danger'`, …) rather than
|
|
489
|
-
a raw hex. Raw hex still works but emits a one-shot `console.warn`
|
|
490
|
-
per `(prop, value)` pair (full removal in v3.0.0).
|
|
491
|
-
|
|
492
|
-
```vue
|
|
493
|
-
<!-- v0.x -->
|
|
494
|
-
<OrigamBtn color="#7c3aed">Click</OrigamBtn>
|
|
495
|
-
|
|
496
|
-
<!-- v2.0 -->
|
|
497
|
-
<OrigamBtn color="primary">Click</OrigamBtn>
|
|
498
|
-
|
|
499
|
-
<!-- One-off custom color -->
|
|
500
|
-
<OrigamBtn :style="{ '--origam-btn---background-color': '#7c3aed' }">…</OrigamBtn>
|
|
501
|
-
```
|
|
502
|
-
|
|
503
|
-
3. **`useElevation` no longer computes shadows in JS.** The `bgColor`
|
|
504
|
-
parameter is accepted for signature compat but ignored. The composable
|
|
505
|
-
now emits `box-shadow: var(--origam-shadow-{rung})` and the rung is
|
|
506
|
-
themed at the token level (different shadow recipes for light vs dark).
|
|
507
|
-
|
|
508
|
-
The legacy `formatElevationStyle(level, bgColor)` utility is still
|
|
509
|
-
exported but `@deprecated` — it will be removed in v3.0.0.
|
|
510
|
-
|
|
511
|
-
### Added
|
|
512
|
-
|
|
513
|
-
- **Multi-tier design tokens** (`tokens/`):
|
|
514
|
-
- Primitive: 12 color ramps, 12 spacing steps, full font / radius /
|
|
515
|
-
shadow / motion / zIndex / opacity / border ladders.
|
|
516
|
-
- Semantic: `surface`, `text`, `border`, `action.{primary,secondary,
|
|
517
|
-
ghost}`, `feedback.{success,warning,danger,info}`, `overlay`. Per
|
|
518
|
-
theme (light + dark), with hooks for brand-X.
|
|
519
|
-
- Component: ~60 files, one per component, in DTCG / Tokens Studio
|
|
520
|
-
format — editable from the Figma plugin.
|
|
521
|
-
- **Pipeline**: Style Dictionary v4 + sd-transforms. Outputs CSS,
|
|
522
|
-
SCSS partials, and TypeScript union types. `npm run tokens:build`,
|
|
523
|
-
`tokens:watch`, `tokens:lint`.
|
|
524
|
-
- **GitHub Action** (`.github/workflows/tokens-sync.yml`): consumes
|
|
525
|
-
Figma → Tokens Studio → `tokens-sync` branch, rebuilds artifacts,
|
|
526
|
-
opens a PR to `develop` automatically.
|
|
527
|
-
- **Multi-theme runtime**:
|
|
528
|
-
- `useTheme()` composable — singleton ref, persistence, prefers-
|
|
529
|
-
color-scheme fallback, toggle helper.
|
|
530
|
-
- `<OrigamThemeProvider theme="dark">` for sub-tree overrides.
|
|
531
|
-
- **CSS-first / JS-fallback principle**:
|
|
532
|
-
- `useCssSupport()` composable — feature detection layer wrapping
|
|
533
|
-
`CSS.supports()` with caching for 20 modern features (subgrid,
|
|
534
|
-
container queries, `:has()`, aspect-ratio, color-mix, anchor
|
|
535
|
-
positioning, view transitions, …). Components now branch via
|
|
536
|
-
this composable instead of calling `CSS.supports()` directly.
|
|
537
|
-
- **Defaults system** (ported from optimus):
|
|
538
|
-
- `useDefaults()` composable + `<OrigamDefaultsProvider>` for
|
|
539
|
-
cascading default props (mirrors Vuetify's `<v-defaults-provider>`).
|
|
540
|
-
- `IDefault`, `IDefaultProviderProps`, `IDefaultProviderSlots`.
|
|
541
|
-
- **`<OrigamConfirmWrapper>`** — type-it-twice form helper with
|
|
542
|
-
auto-injected validation, two render modes (slot-based / `field=`
|
|
543
|
-
shortcut), and bidirectional defaults forwarding.
|
|
544
|
-
- **`SCSS helpers`** (`src/assets/scss/_helpers.scss`): `ds-intent`,
|
|
545
|
-
`ds-elevation`, `ds-text-style`, `ds-space`, `ds-focus-ring`,
|
|
546
|
-
`ds-visually-hidden`.
|
|
547
|
-
- **VARIANT / VARIANT_INPUT enums** + `TVariant` / `TVariantInput`
|
|
548
|
-
types.
|
|
549
|
-
- Common emit / slot interfaces: `IFieldEmits`, `IFieldSlots`,
|
|
550
|
-
`IFieldDefaultSlotProps`, `IInputEmits`, `IInputSlots`,
|
|
551
|
-
`IAdjacentEmits`, `IAdjacentSlots`, `IAdjacentInnerEmits`,
|
|
552
|
-
`IAdjacentInnerSlots`, `IActiveEmits`, `IFocusEmits`,
|
|
553
|
-
`ICommonsComponentEmits`, `ICommonsComponentSlots`.
|
|
554
|
-
|
|
555
|
-
### Changed
|
|
556
|
-
|
|
557
|
-
- **Every component** with chrome (~50) now consumes design tokens
|
|
558
|
-
rather than hardcoded values. The per-component `<style>:root{}`
|
|
559
|
-
blocks are gone.
|
|
560
|
-
- **`OrigamPasswordField`** rebuilt from the optimus version (629
|
|
561
|
-
vs 399 lines). New features: strength-requirements popup
|
|
562
|
-
(`requirements` + `need*` flags + `minLength`), auto-injected
|
|
563
|
-
validation rules, show/hide toggle, intersect-driven autofocus,
|
|
564
|
-
click:control / mousedown:control emits.
|
|
565
|
-
- **`OrigamFileField`** split into 3 files (FileField + DragNDropItem
|
|
566
|
-
+ ListItem) for clearer responsibility boundaries; drag-and-drop
|
|
567
|
-
mode reworked, `maxFileSize` validation added, typed emits.
|
|
568
|
-
- **`OrigamForm`** grew form-level validation, `scrollToError`,
|
|
569
|
-
global `messages` rendering through OrigamMessages.
|
|
570
|
-
- **`OrigamField`** now exposes the `outline__notch` BEM child for
|
|
571
|
-
the floating-label rendering, slot-based prefix/suffix detection,
|
|
572
|
-
and proper focus↔active synchronisation.
|
|
573
|
-
- **Snackbar z-index** normalised from `10000` to `1060` via
|
|
574
|
-
`{zIndex.toast}`. Consumers stacking custom overlays on top must
|
|
575
|
-
verify their stacking context.
|
|
576
|
-
- **`color.action.primary.bgSubtle / fgSubtle`** added to the
|
|
577
|
-
semantic layer (was missing — Select selected-item background and
|
|
578
|
-
Slider thumb focus ring needed it).
|
|
579
|
-
|
|
580
|
-
### Fixed
|
|
581
|
-
|
|
582
|
-
- **OrigamMessages**: `:id` was bound to the entire messages array
|
|
583
|
-
instead of the current message. Fixed by using a kebab-cased
|
|
584
|
-
per-message key.
|
|
585
|
-
- **OrigamNumberField**: `watchEffect` → `watch(props.modelValue)` —
|
|
586
|
-
the eager mode was causing reactive write loops while the user
|
|
587
|
-
typed. Increment / decrement handlers split.
|
|
588
|
-
- **OrigamOtpInputField**: undefined-current crash guard;
|
|
589
|
-
`isValidNumber` → `isInvalidValue` (semantic was inverted);
|
|
590
|
-
double `update:focused` emit prevented; handleClear added.
|
|
591
|
-
- **OrigamFileField**: `@clik:append` and `@lick:append-inner` typo
|
|
592
|
-
fixes; drag&drop append mode no longer overwrites existing files;
|
|
593
|
-
locale arg shape `t(key, [arg])` corrected.
|
|
594
|
-
- **OrigamMenu**: stray `console.log()` removed.
|
|
595
|
-
- **OrigamOverlayScrim**: `<style scoped>` block was missing
|
|
596
|
-
entirely — scrim wasn't rendering.
|
|
597
|
-
- **OrigamProgressCircular**: `backgroundColorClasses` /
|
|
598
|
-
`loaderColorClasses` were missing on the SVG `<circle>` elements.
|
|
599
|
-
- **OrigamProgressLinear**: `useBackgroundColor` → `useTextColor`
|
|
600
|
-
(the bar's color was being applied as background, washing it out).
|
|
601
|
-
- **OrigamListSubheader**: vuetify-specific
|
|
602
|
-
`rgba(var(--v-theme-on-surface), …)` references replaced with
|
|
603
|
-
origam-native tokens. Style block converted from `lang="css"` to
|
|
604
|
-
`lang="scss"`.
|
|
605
|
-
- **OrigamExpansionPanel**: vuetify shadow var leak
|
|
606
|
-
(`var(--v-shadow-key-umbra-opacity, …)`) removed; selector
|
|
607
|
-
`:not(.v-expansion-panel-title--static)` matched a vuetify class
|
|
608
|
-
that never renders in origam — corrected to the origam class.
|
|
609
|
-
- **OrigamSlideGroup**: `<style scoped>` block was missing entirely.
|
|
610
|
-
- **OrigamCheckbox / OrigamCheckboxBtn / OrigamSelectionControl**:
|
|
611
|
-
`handleClickLabel` argument typed `MouseEvent` (was `Event` —
|
|
612
|
-
caused TS strict failures).
|
|
613
|
-
- **OrigamSelectionControlGroup**: `item` slot now exposes
|
|
614
|
-
`{ item, index }` (was `{ item }` only).
|
|
615
|
-
|
|
616
|
-
### Deprecated
|
|
617
|
-
|
|
618
|
-
- `formatElevationStyle(level, bgColor)` — replaced by the
|
|
619
|
-
`--origam-shadow-{rung}` token ladder. Kept exported for one
|
|
620
|
-
major version; full removal in v3.0.0.
|
|
621
|
-
- Raw hex / rgb passed to `useColorEffect` color props — pass a
|
|
622
|
-
`TIntent` value or use `:style` for one-off custom colors. Removal
|
|
623
|
-
in v3.0.0.
|
|
624
|
-
|
|
625
|
-
### Outstanding (deferred to v2.x or v3.0.0)
|
|
626
|
-
|
|
627
|
-
- Several form components still carry hardcoded hex inside their
|
|
628
|
-
scoped styles (Switch 11, Select 8, DatePickerField 5,
|
|
629
|
-
ColorPickerField 2, Img 2, Highlight 3). The token JSONs are in
|
|
630
|
-
place; the `var(--origam-…)` references need to be wired in a
|
|
631
|
-
follow-up. Fallback-only behaviour ensures consumers see the
|
|
632
|
-
intended design today.
|
|
633
|
-
- Outstanding token-naming gaps: `color.surface.chrome` (SystemBar),
|
|
634
|
-
`color.overlay.backdrop` (Drawer / Overlay scrim), `color.surface
|
|
635
|
-
.inverse` (Tooltip), `opacity.20` / `opacity.30`, `radius.xs2: 6px`,
|
|
636
|
-
`font.size.6xl: 45px`, `font.letterSpacing.widish`. Promote at
|
|
637
|
-
next ui-designer review.
|
|
638
|
-
- `OrigamMain` uses `--origam-main--{prop}` (double-tiret) instead
|
|
639
|
-
of the canonical `---` convention. Cosmetic, breaks consumer
|
|
640
|
-
overrides. To be aligned at v3.
|
|
641
|
-
|
|
642
|
-
---
|
|
643
|
-
|
|
644
|
-
## Pre-2.0 history
|
|
645
|
-
|
|
646
|
-
The `[WIP]` commits before this release were the foundation work
|
|
647
|
-
(audit, Figma integration spike, package layout). The design-token
|
|
648
|
-
migration started at commit `2124ab8` (Lot 0) and shipped over
|
|
649
|
-
ten incremental commits visible in `git log --oneline main..HEAD`.
|
|
650
|
-
|