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/dist/src/types/index.cjs
CHANGED
|
@@ -58,6 +58,39 @@ Object.keys(_badge).forEach(function (key) {
|
|
|
58
58
|
}
|
|
59
59
|
});
|
|
60
60
|
});
|
|
61
|
+
var _blockquoteVariant = require("./Blockquote/blockquote-variant.type.cjs");
|
|
62
|
+
Object.keys(_blockquoteVariant).forEach(function (key) {
|
|
63
|
+
if (key === "default" || key === "__esModule") return;
|
|
64
|
+
if (key in exports && exports[key] === _blockquoteVariant[key]) return;
|
|
65
|
+
Object.defineProperty(exports, key, {
|
|
66
|
+
enumerable: true,
|
|
67
|
+
get: function () {
|
|
68
|
+
return _blockquoteVariant[key];
|
|
69
|
+
}
|
|
70
|
+
});
|
|
71
|
+
});
|
|
72
|
+
var _blockquoteLang = require("./Blockquote/blockquote-lang.type.cjs");
|
|
73
|
+
Object.keys(_blockquoteLang).forEach(function (key) {
|
|
74
|
+
if (key === "default" || key === "__esModule") return;
|
|
75
|
+
if (key in exports && exports[key] === _blockquoteLang[key]) return;
|
|
76
|
+
Object.defineProperty(exports, key, {
|
|
77
|
+
enumerable: true,
|
|
78
|
+
get: function () {
|
|
79
|
+
return _blockquoteLang[key];
|
|
80
|
+
}
|
|
81
|
+
});
|
|
82
|
+
});
|
|
83
|
+
var _blockquoteAlign = require("./Blockquote/blockquote-align.type.cjs");
|
|
84
|
+
Object.keys(_blockquoteAlign).forEach(function (key) {
|
|
85
|
+
if (key === "default" || key === "__esModule") return;
|
|
86
|
+
if (key in exports && exports[key] === _blockquoteAlign[key]) return;
|
|
87
|
+
Object.defineProperty(exports, key, {
|
|
88
|
+
enumerable: true,
|
|
89
|
+
get: function () {
|
|
90
|
+
return _blockquoteAlign[key];
|
|
91
|
+
}
|
|
92
|
+
});
|
|
93
|
+
});
|
|
61
94
|
var _bottomNav = require("./BottomNav/bottom-nav.type.cjs");
|
|
62
95
|
Object.keys(_bottomNav).forEach(function (key) {
|
|
63
96
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -234,17 +267,6 @@ Object.keys(_carouselItem).forEach(function (key) {
|
|
|
234
267
|
}
|
|
235
268
|
});
|
|
236
269
|
});
|
|
237
|
-
var _chart = require("./Charts/chart.type.cjs");
|
|
238
|
-
Object.keys(_chart).forEach(function (key) {
|
|
239
|
-
if (key === "default" || key === "__esModule") return;
|
|
240
|
-
if (key in exports && exports[key] === _chart[key]) return;
|
|
241
|
-
Object.defineProperty(exports, key, {
|
|
242
|
-
enumerable: true,
|
|
243
|
-
get: function () {
|
|
244
|
-
return _chart[key];
|
|
245
|
-
}
|
|
246
|
-
});
|
|
247
|
-
});
|
|
248
270
|
var _checkbox = require("./Checkbox/checkbox.type.cjs");
|
|
249
271
|
Object.keys(_checkbox).forEach(function (key) {
|
|
250
272
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -300,17 +322,6 @@ Object.keys(_codeLang).forEach(function (key) {
|
|
|
300
322
|
}
|
|
301
323
|
});
|
|
302
324
|
});
|
|
303
|
-
var _codeTheme = require("./Code/code-theme.type.cjs");
|
|
304
|
-
Object.keys(_codeTheme).forEach(function (key) {
|
|
305
|
-
if (key === "default" || key === "__esModule") return;
|
|
306
|
-
if (key in exports && exports[key] === _codeTheme[key]) return;
|
|
307
|
-
Object.defineProperty(exports, key, {
|
|
308
|
-
enumerable: true,
|
|
309
|
-
get: function () {
|
|
310
|
-
return _codeTheme[key];
|
|
311
|
-
}
|
|
312
|
-
});
|
|
313
|
-
});
|
|
314
325
|
var _colorPicker = require("./ColorPicker/color-picker.type.cjs");
|
|
315
326
|
Object.keys(_colorPicker).forEach(function (key) {
|
|
316
327
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -476,6 +487,61 @@ Object.keys(_density).forEach(function (key) {
|
|
|
476
487
|
}
|
|
477
488
|
});
|
|
478
489
|
});
|
|
490
|
+
var _fontFamily = require("./Commons/font-family.type.cjs");
|
|
491
|
+
Object.keys(_fontFamily).forEach(function (key) {
|
|
492
|
+
if (key === "default" || key === "__esModule") return;
|
|
493
|
+
if (key in exports && exports[key] === _fontFamily[key]) return;
|
|
494
|
+
Object.defineProperty(exports, key, {
|
|
495
|
+
enumerable: true,
|
|
496
|
+
get: function () {
|
|
497
|
+
return _fontFamily[key];
|
|
498
|
+
}
|
|
499
|
+
});
|
|
500
|
+
});
|
|
501
|
+
var _fontSize = require("./Commons/font-size.type.cjs");
|
|
502
|
+
Object.keys(_fontSize).forEach(function (key) {
|
|
503
|
+
if (key === "default" || key === "__esModule") return;
|
|
504
|
+
if (key in exports && exports[key] === _fontSize[key]) return;
|
|
505
|
+
Object.defineProperty(exports, key, {
|
|
506
|
+
enumerable: true,
|
|
507
|
+
get: function () {
|
|
508
|
+
return _fontSize[key];
|
|
509
|
+
}
|
|
510
|
+
});
|
|
511
|
+
});
|
|
512
|
+
var _fontWeight = require("./Commons/font-weight.type.cjs");
|
|
513
|
+
Object.keys(_fontWeight).forEach(function (key) {
|
|
514
|
+
if (key === "default" || key === "__esModule") return;
|
|
515
|
+
if (key in exports && exports[key] === _fontWeight[key]) return;
|
|
516
|
+
Object.defineProperty(exports, key, {
|
|
517
|
+
enumerable: true,
|
|
518
|
+
get: function () {
|
|
519
|
+
return _fontWeight[key];
|
|
520
|
+
}
|
|
521
|
+
});
|
|
522
|
+
});
|
|
523
|
+
var _letterSpacing = require("./Commons/letter-spacing.type.cjs");
|
|
524
|
+
Object.keys(_letterSpacing).forEach(function (key) {
|
|
525
|
+
if (key === "default" || key === "__esModule") return;
|
|
526
|
+
if (key in exports && exports[key] === _letterSpacing[key]) return;
|
|
527
|
+
Object.defineProperty(exports, key, {
|
|
528
|
+
enumerable: true,
|
|
529
|
+
get: function () {
|
|
530
|
+
return _letterSpacing[key];
|
|
531
|
+
}
|
|
532
|
+
});
|
|
533
|
+
});
|
|
534
|
+
var _lineHeight = require("./Commons/line-height.type.cjs");
|
|
535
|
+
Object.keys(_lineHeight).forEach(function (key) {
|
|
536
|
+
if (key === "default" || key === "__esModule") return;
|
|
537
|
+
if (key in exports && exports[key] === _lineHeight[key]) return;
|
|
538
|
+
Object.defineProperty(exports, key, {
|
|
539
|
+
enumerable: true,
|
|
540
|
+
get: function () {
|
|
541
|
+
return _lineHeight[key];
|
|
542
|
+
}
|
|
543
|
+
});
|
|
544
|
+
});
|
|
479
545
|
var _rounded = require("./Commons/rounded.type.cjs");
|
|
480
546
|
Object.keys(_rounded).forEach(function (key) {
|
|
481
547
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1070,6 +1136,39 @@ Object.keys(_drawer).forEach(function (key) {
|
|
|
1070
1136
|
}
|
|
1071
1137
|
});
|
|
1072
1138
|
});
|
|
1139
|
+
var _emptyStatePreset = require("./EmptyState/empty-state-preset.type.cjs");
|
|
1140
|
+
Object.keys(_emptyStatePreset).forEach(function (key) {
|
|
1141
|
+
if (key === "default" || key === "__esModule") return;
|
|
1142
|
+
if (key in exports && exports[key] === _emptyStatePreset[key]) return;
|
|
1143
|
+
Object.defineProperty(exports, key, {
|
|
1144
|
+
enumerable: true,
|
|
1145
|
+
get: function () {
|
|
1146
|
+
return _emptyStatePreset[key];
|
|
1147
|
+
}
|
|
1148
|
+
});
|
|
1149
|
+
});
|
|
1150
|
+
var _emptyStateSize = require("./EmptyState/empty-state-size.type.cjs");
|
|
1151
|
+
Object.keys(_emptyStateSize).forEach(function (key) {
|
|
1152
|
+
if (key === "default" || key === "__esModule") return;
|
|
1153
|
+
if (key in exports && exports[key] === _emptyStateSize[key]) return;
|
|
1154
|
+
Object.defineProperty(exports, key, {
|
|
1155
|
+
enumerable: true,
|
|
1156
|
+
get: function () {
|
|
1157
|
+
return _emptyStateSize[key];
|
|
1158
|
+
}
|
|
1159
|
+
});
|
|
1160
|
+
});
|
|
1161
|
+
var _emptyStateAlign = require("./EmptyState/empty-state-align.type.cjs");
|
|
1162
|
+
Object.keys(_emptyStateAlign).forEach(function (key) {
|
|
1163
|
+
if (key === "default" || key === "__esModule") return;
|
|
1164
|
+
if (key in exports && exports[key] === _emptyStateAlign[key]) return;
|
|
1165
|
+
Object.defineProperty(exports, key, {
|
|
1166
|
+
enumerable: true,
|
|
1167
|
+
get: function () {
|
|
1168
|
+
return _emptyStateAlign[key];
|
|
1169
|
+
}
|
|
1170
|
+
});
|
|
1171
|
+
});
|
|
1073
1172
|
var _expansionPanel = require("./ExpansionPanel/expansion-panel.type.cjs");
|
|
1074
1173
|
Object.keys(_expansionPanel).forEach(function (key) {
|
|
1075
1174
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1191,6 +1290,50 @@ Object.keys(_spacer).forEach(function (key) {
|
|
|
1191
1290
|
}
|
|
1192
1291
|
});
|
|
1193
1292
|
});
|
|
1293
|
+
var _gridFlow = require("./Grid/grid-flow.type.cjs");
|
|
1294
|
+
Object.keys(_gridFlow).forEach(function (key) {
|
|
1295
|
+
if (key === "default" || key === "__esModule") return;
|
|
1296
|
+
if (key in exports && exports[key] === _gridFlow[key]) return;
|
|
1297
|
+
Object.defineProperty(exports, key, {
|
|
1298
|
+
enumerable: true,
|
|
1299
|
+
get: function () {
|
|
1300
|
+
return _gridFlow[key];
|
|
1301
|
+
}
|
|
1302
|
+
});
|
|
1303
|
+
});
|
|
1304
|
+
var _gridAlign = require("./Grid/grid-align.type.cjs");
|
|
1305
|
+
Object.keys(_gridAlign).forEach(function (key) {
|
|
1306
|
+
if (key === "default" || key === "__esModule") return;
|
|
1307
|
+
if (key in exports && exports[key] === _gridAlign[key]) return;
|
|
1308
|
+
Object.defineProperty(exports, key, {
|
|
1309
|
+
enumerable: true,
|
|
1310
|
+
get: function () {
|
|
1311
|
+
return _gridAlign[key];
|
|
1312
|
+
}
|
|
1313
|
+
});
|
|
1314
|
+
});
|
|
1315
|
+
var _masonryAlign = require("./Masonry/masonry-align.type.cjs");
|
|
1316
|
+
Object.keys(_masonryAlign).forEach(function (key) {
|
|
1317
|
+
if (key === "default" || key === "__esModule") return;
|
|
1318
|
+
if (key in exports && exports[key] === _masonryAlign[key]) return;
|
|
1319
|
+
Object.defineProperty(exports, key, {
|
|
1320
|
+
enumerable: true,
|
|
1321
|
+
get: function () {
|
|
1322
|
+
return _masonryAlign[key];
|
|
1323
|
+
}
|
|
1324
|
+
});
|
|
1325
|
+
});
|
|
1326
|
+
var _Media = require("./Media/index.cjs");
|
|
1327
|
+
Object.keys(_Media).forEach(function (key) {
|
|
1328
|
+
if (key === "default" || key === "__esModule") return;
|
|
1329
|
+
if (key in exports && exports[key] === _Media[key]) return;
|
|
1330
|
+
Object.defineProperty(exports, key, {
|
|
1331
|
+
enumerable: true,
|
|
1332
|
+
get: function () {
|
|
1333
|
+
return _Media[key];
|
|
1334
|
+
}
|
|
1335
|
+
});
|
|
1336
|
+
});
|
|
1194
1337
|
var _classIcon = require("./Icon/class-icon.type.cjs");
|
|
1195
1338
|
Object.keys(_classIcon).forEach(function (key) {
|
|
1196
1339
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1279,6 +1422,28 @@ Object.keys(_infiniteScrollIntersect).forEach(function (key) {
|
|
|
1279
1422
|
}
|
|
1280
1423
|
});
|
|
1281
1424
|
});
|
|
1425
|
+
var _inlineEditInputType = require("./InlineEdit/inline-edit-input-type.type.cjs");
|
|
1426
|
+
Object.keys(_inlineEditInputType).forEach(function (key) {
|
|
1427
|
+
if (key === "default" || key === "__esModule") return;
|
|
1428
|
+
if (key in exports && exports[key] === _inlineEditInputType[key]) return;
|
|
1429
|
+
Object.defineProperty(exports, key, {
|
|
1430
|
+
enumerable: true,
|
|
1431
|
+
get: function () {
|
|
1432
|
+
return _inlineEditInputType[key];
|
|
1433
|
+
}
|
|
1434
|
+
});
|
|
1435
|
+
});
|
|
1436
|
+
var _numberFormatFormat = require("./NumberFormat/number-format-format.type.cjs");
|
|
1437
|
+
Object.keys(_numberFormatFormat).forEach(function (key) {
|
|
1438
|
+
if (key === "default" || key === "__esModule") return;
|
|
1439
|
+
if (key in exports && exports[key] === _numberFormatFormat[key]) return;
|
|
1440
|
+
Object.defineProperty(exports, key, {
|
|
1441
|
+
enumerable: true,
|
|
1442
|
+
get: function () {
|
|
1443
|
+
return _numberFormatFormat[key];
|
|
1444
|
+
}
|
|
1445
|
+
});
|
|
1446
|
+
});
|
|
1282
1447
|
var _input = require("./Input/input.type.cjs");
|
|
1283
1448
|
Object.keys(_input).forEach(function (key) {
|
|
1284
1449
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -1763,14 +1928,14 @@ Object.keys(_sliderFieldTrack).forEach(function (key) {
|
|
|
1763
1928
|
}
|
|
1764
1929
|
});
|
|
1765
1930
|
});
|
|
1766
|
-
var
|
|
1767
|
-
Object.keys(
|
|
1931
|
+
var _sliderFieldVariant = require("./SliderField/slider-field-variant.type.cjs");
|
|
1932
|
+
Object.keys(_sliderFieldVariant).forEach(function (key) {
|
|
1768
1933
|
if (key === "default" || key === "__esModule") return;
|
|
1769
|
-
if (key in exports && exports[key] ===
|
|
1934
|
+
if (key in exports && exports[key] === _sliderFieldVariant[key]) return;
|
|
1770
1935
|
Object.defineProperty(exports, key, {
|
|
1771
1936
|
enumerable: true,
|
|
1772
1937
|
get: function () {
|
|
1773
|
-
return
|
|
1938
|
+
return _sliderFieldVariant[key];
|
|
1774
1939
|
}
|
|
1775
1940
|
});
|
|
1776
1941
|
});
|
|
@@ -1785,36 +1950,36 @@ Object.keys(_snackbar).forEach(function (key) {
|
|
|
1785
1950
|
}
|
|
1786
1951
|
});
|
|
1787
1952
|
});
|
|
1788
|
-
var
|
|
1789
|
-
Object.keys(
|
|
1953
|
+
var _snackbarGroup = require("./Snackbar/snackbar-group.type.cjs");
|
|
1954
|
+
Object.keys(_snackbarGroup).forEach(function (key) {
|
|
1790
1955
|
if (key === "default" || key === "__esModule") return;
|
|
1791
|
-
if (key in exports && exports[key] ===
|
|
1956
|
+
if (key in exports && exports[key] === _snackbarGroup[key]) return;
|
|
1792
1957
|
Object.defineProperty(exports, key, {
|
|
1793
1958
|
enumerable: true,
|
|
1794
1959
|
get: function () {
|
|
1795
|
-
return
|
|
1960
|
+
return _snackbarGroup[key];
|
|
1796
1961
|
}
|
|
1797
1962
|
});
|
|
1798
1963
|
});
|
|
1799
|
-
var
|
|
1800
|
-
Object.keys(
|
|
1964
|
+
var _snackbarGroupLocation = require("./Snackbar/snackbar-group-location.type.cjs");
|
|
1965
|
+
Object.keys(_snackbarGroupLocation).forEach(function (key) {
|
|
1801
1966
|
if (key === "default" || key === "__esModule") return;
|
|
1802
|
-
if (key in exports && exports[key] ===
|
|
1967
|
+
if (key in exports && exports[key] === _snackbarGroupLocation[key]) return;
|
|
1803
1968
|
Object.defineProperty(exports, key, {
|
|
1804
1969
|
enumerable: true,
|
|
1805
1970
|
get: function () {
|
|
1806
|
-
return
|
|
1971
|
+
return _snackbarGroupLocation[key];
|
|
1807
1972
|
}
|
|
1808
1973
|
});
|
|
1809
1974
|
});
|
|
1810
|
-
var
|
|
1811
|
-
Object.keys(
|
|
1975
|
+
var _snackbarGroupDirection = require("./Snackbar/snackbar-group-direction.type.cjs");
|
|
1976
|
+
Object.keys(_snackbarGroupDirection).forEach(function (key) {
|
|
1812
1977
|
if (key === "default" || key === "__esModule") return;
|
|
1813
|
-
if (key in exports && exports[key] ===
|
|
1978
|
+
if (key in exports && exports[key] === _snackbarGroupDirection[key]) return;
|
|
1814
1979
|
Object.defineProperty(exports, key, {
|
|
1815
1980
|
enumerable: true,
|
|
1816
1981
|
get: function () {
|
|
1817
|
-
return
|
|
1982
|
+
return _snackbarGroupDirection[key];
|
|
1818
1983
|
}
|
|
1819
1984
|
});
|
|
1820
1985
|
});
|
|
@@ -1928,6 +2093,28 @@ Object.keys(_textField).forEach(function (key) {
|
|
|
1928
2093
|
}
|
|
1929
2094
|
});
|
|
1930
2095
|
});
|
|
2096
|
+
var _textMask = require("./TextMask/text-mask.type.cjs");
|
|
2097
|
+
Object.keys(_textMask).forEach(function (key) {
|
|
2098
|
+
if (key === "default" || key === "__esModule") return;
|
|
2099
|
+
if (key in exports && exports[key] === _textMask[key]) return;
|
|
2100
|
+
Object.defineProperty(exports, key, {
|
|
2101
|
+
enumerable: true,
|
|
2102
|
+
get: function () {
|
|
2103
|
+
return _textMask[key];
|
|
2104
|
+
}
|
|
2105
|
+
});
|
|
2106
|
+
});
|
|
2107
|
+
var _textMaskAnimation = require("./TextMask/text-mask-animation.type.cjs");
|
|
2108
|
+
Object.keys(_textMaskAnimation).forEach(function (key) {
|
|
2109
|
+
if (key === "default" || key === "__esModule") return;
|
|
2110
|
+
if (key in exports && exports[key] === _textMaskAnimation[key]) return;
|
|
2111
|
+
Object.defineProperty(exports, key, {
|
|
2112
|
+
enumerable: true,
|
|
2113
|
+
get: function () {
|
|
2114
|
+
return _textMaskAnimation[key];
|
|
2115
|
+
}
|
|
2116
|
+
});
|
|
2117
|
+
});
|
|
1931
2118
|
var _title = require("./Title/title.type.cjs");
|
|
1932
2119
|
Object.keys(_title).forEach(function (key) {
|
|
1933
2120
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -2214,6 +2401,39 @@ Object.keys(_theme).forEach(function (key) {
|
|
|
2214
2401
|
}
|
|
2215
2402
|
});
|
|
2216
2403
|
});
|
|
2404
|
+
var _tokenTree = require("./Theme/token-tree.type.cjs");
|
|
2405
|
+
Object.keys(_tokenTree).forEach(function (key) {
|
|
2406
|
+
if (key === "default" || key === "__esModule") return;
|
|
2407
|
+
if (key in exports && exports[key] === _tokenTree[key]) return;
|
|
2408
|
+
Object.defineProperty(exports, key, {
|
|
2409
|
+
enumerable: true,
|
|
2410
|
+
get: function () {
|
|
2411
|
+
return _tokenTree[key];
|
|
2412
|
+
}
|
|
2413
|
+
});
|
|
2414
|
+
});
|
|
2415
|
+
var _semanticTree = require("./Theme/semantic-tree.type.cjs");
|
|
2416
|
+
Object.keys(_semanticTree).forEach(function (key) {
|
|
2417
|
+
if (key === "default" || key === "__esModule") return;
|
|
2418
|
+
if (key in exports && exports[key] === _semanticTree[key]) return;
|
|
2419
|
+
Object.defineProperty(exports, key, {
|
|
2420
|
+
enumerable: true,
|
|
2421
|
+
get: function () {
|
|
2422
|
+
return _semanticTree[key];
|
|
2423
|
+
}
|
|
2424
|
+
});
|
|
2425
|
+
});
|
|
2426
|
+
var _installedTheme = require("./Theme/installed-theme.type.cjs");
|
|
2427
|
+
Object.keys(_installedTheme).forEach(function (key) {
|
|
2428
|
+
if (key === "default" || key === "__esModule") return;
|
|
2429
|
+
if (key in exports && exports[key] === _installedTheme[key]) return;
|
|
2430
|
+
Object.defineProperty(exports, key, {
|
|
2431
|
+
enumerable: true,
|
|
2432
|
+
get: function () {
|
|
2433
|
+
return _installedTheme[key];
|
|
2434
|
+
}
|
|
2435
|
+
});
|
|
2436
|
+
});
|
|
2217
2437
|
var _windowItem = require("./Window/window-item.type.cjs");
|
|
2218
2438
|
Object.keys(_windowItem).forEach(function (key) {
|
|
2219
2439
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -2312,4 +2532,301 @@ Object.keys(_mask).forEach(function (key) {
|
|
|
2312
2532
|
return _mask[key];
|
|
2313
2533
|
}
|
|
2314
2534
|
});
|
|
2535
|
+
});
|
|
2536
|
+
var _qrCodeErrorCorrection = require("./QrCode/qr-code-error-correction.type.cjs");
|
|
2537
|
+
Object.keys(_qrCodeErrorCorrection).forEach(function (key) {
|
|
2538
|
+
if (key === "default" || key === "__esModule") return;
|
|
2539
|
+
if (key in exports && exports[key] === _qrCodeErrorCorrection[key]) return;
|
|
2540
|
+
Object.defineProperty(exports, key, {
|
|
2541
|
+
enumerable: true,
|
|
2542
|
+
get: function () {
|
|
2543
|
+
return _qrCodeErrorCorrection[key];
|
|
2544
|
+
}
|
|
2545
|
+
});
|
|
2546
|
+
});
|
|
2547
|
+
var _videoControls = require("./Video/video-controls.type.cjs");
|
|
2548
|
+
Object.keys(_videoControls).forEach(function (key) {
|
|
2549
|
+
if (key === "default" || key === "__esModule") return;
|
|
2550
|
+
if (key in exports && exports[key] === _videoControls[key]) return;
|
|
2551
|
+
Object.defineProperty(exports, key, {
|
|
2552
|
+
enumerable: true,
|
|
2553
|
+
get: function () {
|
|
2554
|
+
return _videoControls[key];
|
|
2555
|
+
}
|
|
2556
|
+
});
|
|
2557
|
+
});
|
|
2558
|
+
var _videoTrackKind = require("./Video/video-track-kind.type.cjs");
|
|
2559
|
+
Object.keys(_videoTrackKind).forEach(function (key) {
|
|
2560
|
+
if (key === "default" || key === "__esModule") return;
|
|
2561
|
+
if (key in exports && exports[key] === _videoTrackKind[key]) return;
|
|
2562
|
+
Object.defineProperty(exports, key, {
|
|
2563
|
+
enumerable: true,
|
|
2564
|
+
get: function () {
|
|
2565
|
+
return _videoTrackKind[key];
|
|
2566
|
+
}
|
|
2567
|
+
});
|
|
2568
|
+
});
|
|
2569
|
+
var _audioControls = require("./Audio/audio-controls.type.cjs");
|
|
2570
|
+
Object.keys(_audioControls).forEach(function (key) {
|
|
2571
|
+
if (key === "default" || key === "__esModule") return;
|
|
2572
|
+
if (key in exports && exports[key] === _audioControls[key]) return;
|
|
2573
|
+
Object.defineProperty(exports, key, {
|
|
2574
|
+
enumerable: true,
|
|
2575
|
+
get: function () {
|
|
2576
|
+
return _audioControls[key];
|
|
2577
|
+
}
|
|
2578
|
+
});
|
|
2579
|
+
});
|
|
2580
|
+
var _audioVariant = require("./Audio/audio-variant.type.cjs");
|
|
2581
|
+
Object.keys(_audioVariant).forEach(function (key) {
|
|
2582
|
+
if (key === "default" || key === "__esModule") return;
|
|
2583
|
+
if (key in exports && exports[key] === _audioVariant[key]) return;
|
|
2584
|
+
Object.defineProperty(exports, key, {
|
|
2585
|
+
enumerable: true,
|
|
2586
|
+
get: function () {
|
|
2587
|
+
return _audioVariant[key];
|
|
2588
|
+
}
|
|
2589
|
+
});
|
|
2590
|
+
});
|
|
2591
|
+
var _audioLoopMode = require("./Audio/audio-loop-mode.type.cjs");
|
|
2592
|
+
Object.keys(_audioLoopMode).forEach(function (key) {
|
|
2593
|
+
if (key === "default" || key === "__esModule") return;
|
|
2594
|
+
if (key in exports && exports[key] === _audioLoopMode[key]) return;
|
|
2595
|
+
Object.defineProperty(exports, key, {
|
|
2596
|
+
enumerable: true,
|
|
2597
|
+
get: function () {
|
|
2598
|
+
return _audioLoopMode[key];
|
|
2599
|
+
}
|
|
2600
|
+
});
|
|
2601
|
+
});
|
|
2602
|
+
var _coverPosition = require("./Audio/cover-position.type.cjs");
|
|
2603
|
+
Object.keys(_coverPosition).forEach(function (key) {
|
|
2604
|
+
if (key === "default" || key === "__esModule") return;
|
|
2605
|
+
if (key in exports && exports[key] === _coverPosition[key]) return;
|
|
2606
|
+
Object.defineProperty(exports, key, {
|
|
2607
|
+
enumerable: true,
|
|
2608
|
+
get: function () {
|
|
2609
|
+
return _coverPosition[key];
|
|
2610
|
+
}
|
|
2611
|
+
});
|
|
2612
|
+
});
|
|
2613
|
+
var _calendarView = require("./Calendar/calendar-view.type.cjs");
|
|
2614
|
+
Object.keys(_calendarView).forEach(function (key) {
|
|
2615
|
+
if (key === "default" || key === "__esModule") return;
|
|
2616
|
+
if (key in exports && exports[key] === _calendarView[key]) return;
|
|
2617
|
+
Object.defineProperty(exports, key, {
|
|
2618
|
+
enumerable: true,
|
|
2619
|
+
get: function () {
|
|
2620
|
+
return _calendarView[key];
|
|
2621
|
+
}
|
|
2622
|
+
});
|
|
2623
|
+
});
|
|
2624
|
+
var _calendarTimeFormat = require("./Calendar/calendar-time-format.type.cjs");
|
|
2625
|
+
Object.keys(_calendarTimeFormat).forEach(function (key) {
|
|
2626
|
+
if (key === "default" || key === "__esModule") return;
|
|
2627
|
+
if (key in exports && exports[key] === _calendarTimeFormat[key]) return;
|
|
2628
|
+
Object.defineProperty(exports, key, {
|
|
2629
|
+
enumerable: true,
|
|
2630
|
+
get: function () {
|
|
2631
|
+
return _calendarTimeFormat[key];
|
|
2632
|
+
}
|
|
2633
|
+
});
|
|
2634
|
+
});
|
|
2635
|
+
var _chartLegendPosition = require("./Chart/chart-legend-position.type.cjs");
|
|
2636
|
+
Object.keys(_chartLegendPosition).forEach(function (key) {
|
|
2637
|
+
if (key === "default" || key === "__esModule") return;
|
|
2638
|
+
if (key in exports && exports[key] === _chartLegendPosition[key]) return;
|
|
2639
|
+
Object.defineProperty(exports, key, {
|
|
2640
|
+
enumerable: true,
|
|
2641
|
+
get: function () {
|
|
2642
|
+
return _chartLegendPosition[key];
|
|
2643
|
+
}
|
|
2644
|
+
});
|
|
2645
|
+
});
|
|
2646
|
+
var _chartSmoothing = require("./Chart/chart-smoothing.type.cjs");
|
|
2647
|
+
Object.keys(_chartSmoothing).forEach(function (key) {
|
|
2648
|
+
if (key === "default" || key === "__esModule") return;
|
|
2649
|
+
if (key in exports && exports[key] === _chartSmoothing[key]) return;
|
|
2650
|
+
Object.defineProperty(exports, key, {
|
|
2651
|
+
enumerable: true,
|
|
2652
|
+
get: function () {
|
|
2653
|
+
return _chartSmoothing[key];
|
|
2654
|
+
}
|
|
2655
|
+
});
|
|
2656
|
+
});
|
|
2657
|
+
var _chartStacking = require("./Chart/chart-stacking.type.cjs");
|
|
2658
|
+
Object.keys(_chartStacking).forEach(function (key) {
|
|
2659
|
+
if (key === "default" || key === "__esModule") return;
|
|
2660
|
+
if (key in exports && exports[key] === _chartStacking[key]) return;
|
|
2661
|
+
Object.defineProperty(exports, key, {
|
|
2662
|
+
enumerable: true,
|
|
2663
|
+
get: function () {
|
|
2664
|
+
return _chartStacking[key];
|
|
2665
|
+
}
|
|
2666
|
+
});
|
|
2667
|
+
});
|
|
2668
|
+
var _chartType = require("./Chart/chart-type.type.cjs");
|
|
2669
|
+
Object.keys(_chartType).forEach(function (key) {
|
|
2670
|
+
if (key === "default" || key === "__esModule") return;
|
|
2671
|
+
if (key in exports && exports[key] === _chartType[key]) return;
|
|
2672
|
+
Object.defineProperty(exports, key, {
|
|
2673
|
+
enumerable: true,
|
|
2674
|
+
get: function () {
|
|
2675
|
+
return _chartType[key];
|
|
2676
|
+
}
|
|
2677
|
+
});
|
|
2678
|
+
});
|
|
2679
|
+
var _chartItem = require("./Chart/chart-item.type.cjs");
|
|
2680
|
+
Object.keys(_chartItem).forEach(function (key) {
|
|
2681
|
+
if (key === "default" || key === "__esModule") return;
|
|
2682
|
+
if (key in exports && exports[key] === _chartItem[key]) return;
|
|
2683
|
+
Object.defineProperty(exports, key, {
|
|
2684
|
+
enumerable: true,
|
|
2685
|
+
get: function () {
|
|
2686
|
+
return _chartItem[key];
|
|
2687
|
+
}
|
|
2688
|
+
});
|
|
2689
|
+
});
|
|
2690
|
+
var _chartCartesianKind = require("./Chart/chart-cartesian-kind.type.cjs");
|
|
2691
|
+
Object.keys(_chartCartesianKind).forEach(function (key) {
|
|
2692
|
+
if (key === "default" || key === "__esModule") return;
|
|
2693
|
+
if (key in exports && exports[key] === _chartCartesianKind[key]) return;
|
|
2694
|
+
Object.defineProperty(exports, key, {
|
|
2695
|
+
enumerable: true,
|
|
2696
|
+
get: function () {
|
|
2697
|
+
return _chartCartesianKind[key];
|
|
2698
|
+
}
|
|
2699
|
+
});
|
|
2700
|
+
});
|
|
2701
|
+
var _chartPolarKind = require("./Chart/chart-polar-kind.type.cjs");
|
|
2702
|
+
Object.keys(_chartPolarKind).forEach(function (key) {
|
|
2703
|
+
if (key === "default" || key === "__esModule") return;
|
|
2704
|
+
if (key in exports && exports[key] === _chartPolarKind[key]) return;
|
|
2705
|
+
Object.defineProperty(exports, key, {
|
|
2706
|
+
enumerable: true,
|
|
2707
|
+
get: function () {
|
|
2708
|
+
return _chartPolarKind[key];
|
|
2709
|
+
}
|
|
2710
|
+
});
|
|
2711
|
+
});
|
|
2712
|
+
var _chartPyramidKind = require("./Chart/chart-pyramid-kind.type.cjs");
|
|
2713
|
+
Object.keys(_chartPyramidKind).forEach(function (key) {
|
|
2714
|
+
if (key === "default" || key === "__esModule") return;
|
|
2715
|
+
if (key in exports && exports[key] === _chartPyramidKind[key]) return;
|
|
2716
|
+
Object.defineProperty(exports, key, {
|
|
2717
|
+
enumerable: true,
|
|
2718
|
+
get: function () {
|
|
2719
|
+
return _chartPyramidKind[key];
|
|
2720
|
+
}
|
|
2721
|
+
});
|
|
2722
|
+
});
|
|
2723
|
+
var _chartHoneycombOrientation = require("./Chart/chart-honeycomb-orientation.type.cjs");
|
|
2724
|
+
Object.keys(_chartHoneycombOrientation).forEach(function (key) {
|
|
2725
|
+
if (key === "default" || key === "__esModule") return;
|
|
2726
|
+
if (key in exports && exports[key] === _chartHoneycombOrientation[key]) return;
|
|
2727
|
+
Object.defineProperty(exports, key, {
|
|
2728
|
+
enumerable: true,
|
|
2729
|
+
get: function () {
|
|
2730
|
+
return _chartHoneycombOrientation[key];
|
|
2731
|
+
}
|
|
2732
|
+
});
|
|
2733
|
+
});
|
|
2734
|
+
var _chartHoneycombColorMode = require("./Chart/chart-honeycomb-color-mode.type.cjs");
|
|
2735
|
+
Object.keys(_chartHoneycombColorMode).forEach(function (key) {
|
|
2736
|
+
if (key === "default" || key === "__esModule") return;
|
|
2737
|
+
if (key in exports && exports[key] === _chartHoneycombColorMode[key]) return;
|
|
2738
|
+
Object.defineProperty(exports, key, {
|
|
2739
|
+
enumerable: true,
|
|
2740
|
+
get: function () {
|
|
2741
|
+
return _chartHoneycombColorMode[key];
|
|
2742
|
+
}
|
|
2743
|
+
});
|
|
2744
|
+
});
|
|
2745
|
+
var _chartTreemapAlgorithm = require("./Chart/chart-treemap-algorithm.type.cjs");
|
|
2746
|
+
Object.keys(_chartTreemapAlgorithm).forEach(function (key) {
|
|
2747
|
+
if (key === "default" || key === "__esModule") return;
|
|
2748
|
+
if (key in exports && exports[key] === _chartTreemapAlgorithm[key]) return;
|
|
2749
|
+
Object.defineProperty(exports, key, {
|
|
2750
|
+
enumerable: true,
|
|
2751
|
+
get: function () {
|
|
2752
|
+
return _chartTreemapAlgorithm[key];
|
|
2753
|
+
}
|
|
2754
|
+
});
|
|
2755
|
+
});
|
|
2756
|
+
var _chartWordCloudRotation = require("./Chart/chart-word-cloud-rotation.type.cjs");
|
|
2757
|
+
Object.keys(_chartWordCloudRotation).forEach(function (key) {
|
|
2758
|
+
if (key === "default" || key === "__esModule") return;
|
|
2759
|
+
if (key in exports && exports[key] === _chartWordCloudRotation[key]) return;
|
|
2760
|
+
Object.defineProperty(exports, key, {
|
|
2761
|
+
enumerable: true,
|
|
2762
|
+
get: function () {
|
|
2763
|
+
return _chartWordCloudRotation[key];
|
|
2764
|
+
}
|
|
2765
|
+
});
|
|
2766
|
+
});
|
|
2767
|
+
var _chartPictorialDirection = require("./Chart/chart-pictorial-direction.type.cjs");
|
|
2768
|
+
Object.keys(_chartPictorialDirection).forEach(function (key) {
|
|
2769
|
+
if (key === "default" || key === "__esModule") return;
|
|
2770
|
+
if (key in exports && exports[key] === _chartPictorialDirection[key]) return;
|
|
2771
|
+
Object.defineProperty(exports, key, {
|
|
2772
|
+
enumerable: true,
|
|
2773
|
+
get: function () {
|
|
2774
|
+
return _chartPictorialDirection[key];
|
|
2775
|
+
}
|
|
2776
|
+
});
|
|
2777
|
+
});
|
|
2778
|
+
var _chartPictorialMode = require("./Chart/chart-pictorial-mode.type.cjs");
|
|
2779
|
+
Object.keys(_chartPictorialMode).forEach(function (key) {
|
|
2780
|
+
if (key === "default" || key === "__esModule") return;
|
|
2781
|
+
if (key in exports && exports[key] === _chartPictorialMode[key]) return;
|
|
2782
|
+
Object.defineProperty(exports, key, {
|
|
2783
|
+
enumerable: true,
|
|
2784
|
+
get: function () {
|
|
2785
|
+
return _chartPictorialMode[key];
|
|
2786
|
+
}
|
|
2787
|
+
});
|
|
2788
|
+
});
|
|
2789
|
+
var _chartStreamgraphOffset = require("./Chart/chart-streamgraph-offset.type.cjs");
|
|
2790
|
+
Object.keys(_chartStreamgraphOffset).forEach(function (key) {
|
|
2791
|
+
if (key === "default" || key === "__esModule") return;
|
|
2792
|
+
if (key in exports && exports[key] === _chartStreamgraphOffset[key]) return;
|
|
2793
|
+
Object.defineProperty(exports, key, {
|
|
2794
|
+
enumerable: true,
|
|
2795
|
+
get: function () {
|
|
2796
|
+
return _chartStreamgraphOffset[key];
|
|
2797
|
+
}
|
|
2798
|
+
});
|
|
2799
|
+
});
|
|
2800
|
+
var _chartBulletOrientation = require("./Chart/chart-bullet-orientation.type.cjs");
|
|
2801
|
+
Object.keys(_chartBulletOrientation).forEach(function (key) {
|
|
2802
|
+
if (key === "default" || key === "__esModule") return;
|
|
2803
|
+
if (key in exports && exports[key] === _chartBulletOrientation[key]) return;
|
|
2804
|
+
Object.defineProperty(exports, key, {
|
|
2805
|
+
enumerable: true,
|
|
2806
|
+
get: function () {
|
|
2807
|
+
return _chartBulletOrientation[key];
|
|
2808
|
+
}
|
|
2809
|
+
});
|
|
2810
|
+
});
|
|
2811
|
+
var _chartMapMode = require("./Chart/chart-map-mode.type.cjs");
|
|
2812
|
+
Object.keys(_chartMapMode).forEach(function (key) {
|
|
2813
|
+
if (key === "default" || key === "__esModule") return;
|
|
2814
|
+
if (key in exports && exports[key] === _chartMapMode[key]) return;
|
|
2815
|
+
Object.defineProperty(exports, key, {
|
|
2816
|
+
enumerable: true,
|
|
2817
|
+
get: function () {
|
|
2818
|
+
return _chartMapMode[key];
|
|
2819
|
+
}
|
|
2820
|
+
});
|
|
2821
|
+
});
|
|
2822
|
+
var _chartSparklineKind = require("./Chart/chart-sparkline-kind.type.cjs");
|
|
2823
|
+
Object.keys(_chartSparklineKind).forEach(function (key) {
|
|
2824
|
+
if (key === "default" || key === "__esModule") return;
|
|
2825
|
+
if (key in exports && exports[key] === _chartSparklineKind[key]) return;
|
|
2826
|
+
Object.defineProperty(exports, key, {
|
|
2827
|
+
enumerable: true,
|
|
2828
|
+
get: function () {
|
|
2829
|
+
return _chartSparklineKind[key];
|
|
2830
|
+
}
|
|
2831
|
+
});
|
|
2315
2832
|
});
|