origam 2.3.0 → 2.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +158 -1
- package/dist/src/assets/css/tokens/dark.css +424 -58
- package/dist/src/assets/css/tokens/light.css +212 -29
- package/dist/src/assets/locales/en.json +36 -0
- package/dist/src/assets/locales/fr.json +33 -0
- package/dist/src/assets/locales/index.js +2 -2
- package/dist/src/assets/scss/tokens/_dark.scss +212 -29
- package/dist/src/assets/scss/tokens/_light.scss +212 -29
- package/dist/src/components/Alert/OrigamAlert.vue +5 -4
- package/dist/src/components/App/OrigamApp.vue +38 -1
- package/dist/src/components/App/OrigamAppBar.vue +2 -2
- package/dist/src/components/Audio/OrigamAudio.vue +1465 -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 +3 -3
- package/dist/src/components/Avatar/OrigamAvatarGroup.vue +2 -2
- package/dist/src/components/Badge/OrigamBadge.vue +2 -2
- package/dist/src/components/Blockquote/OrigamBlockquote.vue +291 -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 +3 -2
- package/dist/src/components/Bracket/OrigamBracket.vue +64 -9
- package/dist/src/components/Bracket/OrigamBracketRound.vue +2 -0
- package/dist/src/components/Breadcrumb/OrigamBreadcrumb.vue +5 -3
- package/dist/src/components/Breadcrumb/OrigamBreadcrumbDivider.vue +1 -1
- package/dist/src/components/Breadcrumb/OrigamBreadcrumbItem.vue +3 -3
- package/dist/src/components/Btn/OrigamBtn.vue +14 -4
- package/dist/src/components/Btn/OrigamBtnGroup.vue +3 -2
- package/dist/src/components/Btn/OrigamBtnToggle.vue +2 -2
- package/dist/src/components/Calendar/OrigamCalendar.vue +1175 -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 +2 -2
- package/dist/src/components/Card/OrigamCardHeader.vue +1 -1
- package/dist/src/components/Carousel/OrigamCarousel.vue +6 -1
- package/dist/src/components/Carousel/OrigamCarouselItem.vue +2 -2
- package/dist/src/components/Chart/OrigamChart.vue +882 -0
- package/dist/src/components/Chart/OrigamChartAxis.vue +141 -0
- package/dist/src/components/Chart/OrigamChartBoxPlot.vue +894 -0
- package/dist/src/components/Chart/OrigamChartBullet.vue +836 -0
- package/dist/src/components/Chart/OrigamChartCandlestick.vue +745 -0
- package/dist/src/components/Chart/OrigamChartCartesian.vue +1450 -0
- package/dist/src/components/Chart/OrigamChartGauge.vue +402 -0
- package/dist/src/components/Chart/OrigamChartHeatmap.vue +697 -0
- package/dist/src/components/Chart/OrigamChartHoneycomb.vue +723 -0
- package/dist/src/components/Chart/OrigamChartLegend.vue +59 -0
- package/dist/src/components/Chart/OrigamChartMap.vue +738 -0
- package/dist/src/components/Chart/OrigamChartPareto.vue +949 -0
- package/dist/src/components/Chart/OrigamChartPictorial.vue +1024 -0
- package/dist/src/components/Chart/OrigamChartPolar.vue +735 -0
- package/dist/src/components/Chart/OrigamChartPolarBar.vue +719 -0
- package/dist/src/components/Chart/OrigamChartPyramid.vue +706 -0
- package/dist/src/components/Chart/OrigamChartRadar.vue +504 -0
- package/dist/src/components/Chart/OrigamChartRangeSelector.vue +122 -0
- package/dist/src/components/Chart/OrigamChartSankey.vue +943 -0
- package/dist/src/components/Chart/OrigamChartSparkline.vue +474 -0
- package/dist/src/components/Chart/OrigamChartStreamgraph.vue +872 -0
- package/dist/src/components/Chart/OrigamChartSunburst.vue +865 -0
- package/dist/src/components/Chart/OrigamChartTooltip.vue +55 -0
- package/dist/src/components/Chart/OrigamChartTreemap.vue +744 -0
- package/dist/src/components/Chart/OrigamChartVariwide.vue +815 -0
- package/dist/src/components/Chart/OrigamChartWordCloud.vue +671 -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 +2 -2
- package/dist/src/components/Checkbox/OrigamCheckboxBtn.vue +2 -2
- package/dist/src/components/Chip/OrigamChip.vue +9 -7
- package/dist/src/components/Chip/OrigamChipGroup.vue +15 -3
- package/dist/src/components/Clipboard/OrigamClipboard.vue +195 -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 +79 -69
- package/dist/src/components/ColorPicker/OrigamColorPicker.vue +3 -2
- package/dist/src/components/ColorPicker/OrigamColorPickerCanvas.vue +75 -1
- package/dist/src/components/ColorPickerField/OrigamColorPickerField.vue +2 -2
- package/dist/src/components/CommandPalette/OrigamCommandPalette.vue +22 -16
- package/dist/src/components/ConfirmWrapper/OrigamConfirmWrapper.vue +1 -1
- package/dist/src/components/ContextualMenu/OrigamContextualMenu.vue +2 -2
- package/dist/src/components/Counter/OrigamCounter.vue +1 -1
- package/dist/src/components/DataList/OrigamDataList.vue +2 -2
- package/dist/src/components/DataList/OrigamDataText.vue +2 -2
- package/dist/src/components/DataList/OrigamDataTitle.vue +2 -2
- package/dist/src/components/DataTable/OrigamDataTable.vue +9 -3
- package/dist/src/components/DataTable/OrigamDataTableColumnCell.vue +1 -0
- package/dist/src/components/DataTable/OrigamDataTableFooter.vue +1 -1
- package/dist/src/components/DataTable/OrigamDataTableGroupHeaderRow.vue +1 -1
- package/dist/src/components/DataTable/OrigamDataTableHeaderCell.vue +2 -1
- package/dist/src/components/DataTable/OrigamDataTableHeaders.vue +1 -1
- package/dist/src/components/DataTable/OrigamDataTableHeadersCell.vue +1 -1
- package/dist/src/components/DataTable/OrigamDataTableHeadersCellMobile.vue +2 -2
- package/dist/src/components/DataTable/OrigamDataTableRow.vue +6 -1
- package/dist/src/components/DataTable/OrigamDataTableRows.vue +5 -3
- package/dist/src/components/DatePicker/OrigamDatePicker.vue +22 -12
- package/dist/src/components/DatePicker/OrigamDatePickerHeader.vue +1 -1
- package/dist/src/components/DatePicker/OrigamDatePickerMonth.vue +20 -15
- package/dist/src/components/DatePicker/OrigamDatePickerMonths.vue +1 -1
- package/dist/src/components/DatePicker/OrigamDatePickerYears.vue +1 -1
- package/dist/src/components/DatePickerField/OrigamDatePickerField.vue +5 -5
- package/dist/src/components/Dialog/OrigamDialog.vue +12 -4
- package/dist/src/components/Dialog/OrigamDialogConfirmation.vue +2 -2
- package/dist/src/components/Divider/OrigamDivider.vue +2 -2
- package/dist/src/components/Drawer/OrigamDrawer.vue +10 -2
- package/dist/src/components/EmptyState/OrigamEmptyState.vue +231 -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 +2 -2
- package/dist/src/components/ExpansionPanel/OrigamExpansionPanelContent.vue +5 -2
- package/dist/src/components/ExpansionPanel/OrigamExpansionPanelHeader.vue +4 -2
- package/dist/src/components/ExpansionPanel/OrigamExpansionPanels.vue +2 -2
- package/dist/src/components/Field/OrigamField.vue +2 -2
- package/dist/src/components/FileField/OrigamFileField.vue +2 -2
- package/dist/src/components/FileField/OrigamFileFieldDragNDropItem.vue +2 -2
- package/dist/src/components/FileField/OrigamFileFieldListItem.vue +2 -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 +2 -2
- package/dist/src/components/Grids/OrigamRow.vue +1 -1
- package/dist/src/components/Icon/OrigamClassIcon.vue +14 -2
- package/dist/src/components/Icon/OrigamComponentIcon.vue +14 -2
- package/dist/src/components/Icon/OrigamIcon.vue +21 -2
- package/dist/src/components/Icon/OrigamLigatureIcon.vue +14 -2
- package/dist/src/components/Icon/OrigamSvgIcon.vue +15 -3
- package/dist/src/components/Img/OrigamImg.vue +2 -2
- package/dist/src/components/InfiniteScroll/OrigamInfiniteScroll.vue +4 -4
- package/dist/src/components/InlineEdit/OrigamInlineEdit.vue +477 -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 +2 -2
- package/dist/src/components/Kbd/OrigamKbd.vue +2 -2
- package/dist/src/components/Label/OrigamLabel.vue +2 -2
- package/dist/src/components/Layout/OrigamLayout.vue +73 -4
- package/dist/src/components/Lazy/OrigamLazy.vue +1 -0
- package/dist/src/components/List/OrigamList.vue +3 -2
- package/dist/src/components/List/OrigamListGroup.vue +2 -2
- package/dist/src/components/List/OrigamListItem.vue +3 -2
- package/dist/src/components/List/OrigamListSubheader.vue +2 -2
- package/dist/src/components/Loader/OrigamLoader.vue +3 -1
- package/dist/src/components/Main/OrigamMain.vue +12 -2
- 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 +441 -0
- package/dist/src/components/Media/OrigamMediaVolumeControl.vue +151 -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 +23 -5
- package/dist/src/components/Messages/OrigamMessages.vue +2 -2
- package/dist/src/components/NumberField/OrigamNumberField.vue +6 -6
- 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 +12 -12
- package/dist/src/components/Overlay/OrigamOverlay.vue +1 -1
- package/dist/src/components/Overlay/OrigamOverlayScrim.vue +2 -1
- package/dist/src/components/Pagination/OrigamPagination.vue +4 -10
- package/dist/src/components/Parallax/OrigamParallax.vue +32 -4
- package/dist/src/components/PasswordField/OrigamPasswordField.vue +6 -6
- package/dist/src/components/Picker/OrigamPicker.vue +5 -5
- package/dist/src/components/Picker/OrigamPickerTitle.vue +2 -2
- package/dist/src/components/Progress/OrigamProgress.vue +3 -1
- package/dist/src/components/Progress/OrigamProgressCircular.vue +8 -1
- package/dist/src/components/Progress/OrigamProgressLinear.vue +13 -1
- package/dist/src/components/QRCode/OrigamQrCode.vue +246 -0
- package/dist/src/components/QRCode/index.cjs +13 -0
- package/dist/src/components/QRCode/index.js +1 -0
- package/dist/src/components/Radio/OrigamRadio.vue +2 -2
- package/dist/src/components/Radio/OrigamRadioBtn.vue +2 -2
- package/dist/src/components/Radio/OrigamRadioGroup.vue +2 -2
- package/dist/src/components/RatingField/OrigamRatingField.vue +20 -20
- package/dist/src/components/RatingField/OrigamRatingFieldItem.vue +1 -1
- package/dist/src/components/Select/OrigamSelect.vue +46 -12
- package/dist/src/components/SelectionControl/OrigamSelectionControl.vue +6 -2
- package/dist/src/components/SelectionControl/OrigamSelectionControlGroup.vue +2 -1
- package/dist/src/components/Sheet/OrigamSheet.vue +3 -3
- package/dist/src/components/Skeleton/OrigamSkeleton.vue +9 -2
- package/dist/src/components/SliderField/OrigamSliderField.vue +1065 -330
- package/dist/src/components/SliderField/OrigamSliderFieldTrack.vue +33 -45
- 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 +255 -265
- package/dist/src/components/Snackbar/OrigamSnackbarGroup.vue +238 -0
- package/dist/src/components/Snackbar/OrigamSnackbarItem.vue +270 -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 +66 -7
- package/dist/src/components/Switch/OrigamSwitch.vue +128 -11
- package/dist/src/components/Switch/OrigamSwitchTrack.vue +13 -2
- package/dist/src/components/SystemBar/OrigamSystemBar.vue +2 -2
- package/dist/src/components/Table/OrigamTable.vue +34 -1
- package/dist/src/components/Tabs/OrigamTabs.vue +2 -2
- package/dist/src/components/TextField/OrigamTextField.vue +4 -2
- package/dist/src/components/TextMask/OrigamTextMask.vue +157 -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/OrigamTextareaField.vue +4 -2
- package/dist/src/components/Timeline/OrigamTimeline.vue +1 -1
- package/dist/src/components/Timeline/OrigamTimelineItem.vue +1 -1
- package/dist/src/components/Title/OrigamTitle.vue +2 -2
- package/dist/src/components/Toolbar/OrigamToolbar.vue +2 -2
- package/dist/src/components/Tooltip/OrigamTooltip.vue +2 -2
- package/dist/src/components/Treeview/OrigamTreeview.vue +2 -4
- package/dist/src/components/Video/OrigamVideo.vue +1087 -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/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/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-zoom.composable.cjs +93 -0
- package/dist/src/composables/Chart/chart-zoom.composable.d.ts +34 -0
- package/dist/src/composables/Chart/chart-zoom.composable.js +87 -0
- package/dist/src/composables/Chart/chart.composable.cjs +893 -0
- package/dist/src/composables/Chart/chart.composable.d.ts +97 -0
- package/dist/src/composables/Chart/chart.composable.js +829 -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 +13 -9
- package/dist/src/composables/Commons/audio.composable.d.ts +2 -2
- package/dist/src/composables/Commons/color.composable.cjs +47 -12
- package/dist/src/composables/Commons/color.composable.js +47 -12
- package/dist/src/composables/Commons/{calendar.composable.cjs → date-picker-calendar.composable.cjs} +2 -2
- package/dist/src/composables/Commons/{calendar.composable.d.ts → date-picker-calendar.composable.d.ts} +2 -2
- package/dist/src/composables/Commons/{calendar.composable.js → date-picker-calendar.composable.js} +1 -1
- package/dist/src/composables/Commons/elevation.composable.cjs +4 -5
- package/dist/src/composables/Commons/elevation.composable.js +1 -18
- 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 +28 -28
- package/dist/src/composables/InlineEdit/inline-edit.composable.cjs +87 -0
- package/dist/src/composables/InlineEdit/inline-edit.composable.d.ts +36 -0
- package/dist/src/composables/InlineEdit/inline-edit.composable.js +86 -0
- package/dist/src/composables/Masonry/masonry.composable.cjs +160 -0
- package/dist/src/composables/Masonry/masonry.composable.d.ts +132 -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/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/theme.composable.cjs +5 -6
- package/dist/src/composables/Theme/theme.composable.js +1 -2
- 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 +237 -8
- package/dist/src/composables/index.d.ts +14 -2
- package/dist/src/composables/index.js +14 -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/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/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/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 +2 -1
- package/dist/src/consts/DataTable/select.const.d.ts +2 -1
- package/dist/src/consts/DataTable/select.const.js +1 -0
- 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/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/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/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/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/index.cjs +240 -9
- package/dist/src/enums/index.d.ts +23 -2
- package/dist/src/enums/index.js +23 -2
- package/dist/src/interfaces/Alert/alert.interface.d.ts +5 -1
- package/dist/src/interfaces/App/app-bar.interface.d.ts +4 -1
- package/dist/src/interfaces/Audio/audio-player.interface.d.ts +406 -0
- package/dist/src/interfaces/Avatar/avatar-group.interface.d.ts +5 -1
- package/dist/src/interfaces/Avatar/avatar.interface.d.ts +4 -1
- package/dist/src/interfaces/Blockquote/blockquote.interface.d.ts +84 -0
- package/dist/src/interfaces/BottomNav/bottom-nav.interface.d.ts +5 -1
- package/dist/src/interfaces/Bracket/bracket.interface.d.ts +3 -10
- package/dist/src/interfaces/Breadcrumb/breadcrumb-item.interface.d.ts +4 -1
- package/dist/src/interfaces/Btn/btn-toggle.interface.d.ts +4 -1
- package/dist/src/interfaces/Btn/btn.interface.d.ts +5 -1
- package/dist/src/interfaces/Calendar/calendar.interface.d.ts +159 -0
- package/dist/src/interfaces/Calendar/event.interface.d.ts +54 -0
- package/dist/src/interfaces/Card/card-header.interface.d.ts +4 -1
- package/dist/src/interfaces/Card/card.interface.d.ts +5 -1
- package/dist/src/interfaces/Carousel/carousel.interface.d.ts +4 -1
- 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 +87 -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.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 +276 -0
- package/dist/src/interfaces/Chart/chart.interface.js +0 -0
- package/dist/src/interfaces/Chip/chip-group.interface.d.ts +4 -1
- package/dist/src/interfaces/Chip/chip.interface.d.ts +5 -1
- 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 +4 -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/Commons/audio.interface.d.ts +7 -1
- package/dist/src/interfaces/Commons/clickOutside.interface.d.ts +5 -0
- package/dist/src/interfaces/Commons/commons.interface.d.ts +18 -0
- 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 +4 -0
- 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/DataTable/data-table.interface.d.ts +12 -1
- package/dist/src/interfaces/DataTable/headers.interface.d.ts +6 -1
- package/dist/src/interfaces/DataTable/row.interface.d.ts +11 -0
- package/dist/src/interfaces/DatePicker/date-picker-controls.interface.d.ts +9 -0
- package/dist/src/interfaces/DatePicker/date-picker-header.interface.d.ts +4 -1
- package/dist/src/interfaces/DatePicker/date-picker-months.interface.d.ts +4 -0
- package/dist/src/interfaces/DatePicker/date-picker-years.interface.d.ts +4 -0
- package/dist/src/interfaces/DatePicker/date-picker.interface.d.ts +9 -1
- 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 +100 -0
- package/dist/src/interfaces/EmptyState/empty-state.interface.js +0 -0
- package/dist/src/interfaces/ExpensionPanel/expansion-panel-header.interface.d.ts +4 -1
- 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/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/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/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 +16 -0
- package/dist/src/interfaces/InlineEdit/inline-edit.interface.cjs +1 -0
- package/dist/src/interfaces/InlineEdit/inline-edit.interface.d.ts +241 -0
- package/dist/src/interfaces/InlineEdit/inline-edit.interface.js +0 -0
- package/dist/src/interfaces/ItemGroup/item-group.interface.d.ts +4 -1
- package/dist/src/interfaces/List/list-group.interface.d.ts +5 -0
- package/dist/src/interfaces/List/list-item.interface.d.ts +4 -1
- 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 +129 -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/NumberField/number-field.interface.d.ts +2 -2
- 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/OtpInputField/otp-input-field.interface.d.ts +2 -2
- 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 +9 -1
- package/dist/src/interfaces/PasswordField/password-field.interface.d.ts +2 -2
- package/dist/src/interfaces/Picker/picker.interface.d.ts +2 -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 +7 -1
- 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/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/Table/table.interface.d.ts +3 -0
- package/dist/src/interfaces/Tabs/tab-panels.interface.d.ts +4 -1
- package/dist/src/interfaces/Tabs/tabs.interface.d.ts +4 -1
- package/dist/src/interfaces/TextMask/text-mask.interface.cjs +1 -0
- package/dist/src/interfaces/TextMask/text-mask.interface.d.ts +112 -0
- package/dist/src/interfaces/TextMask/text-mask.interface.js +0 -0
- package/dist/src/interfaces/Tooltip/tooltip.interface.d.ts +4 -1
- 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 +4 -1
- package/dist/src/interfaces/index.cjs +588 -49
- package/dist/src/interfaces/index.d.ts +55 -6
- package/dist/src/interfaces/index.js +55 -6
- 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/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/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/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 +467 -38
- package/dist/src/types/index.d.ts +45 -6
- package/dist/src/types/index.js +45 -6
- package/dist/src/types/tokens.type.d.ts +1 -1
- 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/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/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/index.cjs +55 -22
- package/dist/src/utils/index.d.ts +5 -2
- package/dist/src/utils/index.js +5 -2
- package/package.json +10 -3
- 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/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.js → components/QRCode/index.d.ts} +0 -0
- /package/dist/src/interfaces/{Charts/chart-bar.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-line.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/{Charts/chart.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/{SliderField/slider-field-thumb.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-item.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/interfaces/{SnackbarStack/snackbar-stack.interface.cjs → 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/Charts/chart.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/SliderField/slider-field-thumb.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-direction.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-location.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/SnackbarStack/snackbar-stack.type.cjs → interfaces/Chart/chart-cartesian.interface.cjs} +0 -0
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import type { TGridGapSize, TMasonryAlign } from '../../types';
|
|
2
|
+
/**
|
|
3
|
+
* Closed list of valid `align` values for `<OrigamMasonry>`. Exposed so
|
|
4
|
+
* stories / consumers can iterate the matrix without re-typing the
|
|
5
|
+
* literals.
|
|
6
|
+
*/
|
|
7
|
+
export declare const MASONRY_ALIGNS: ReadonlyArray<TMasonryAlign>;
|
|
8
|
+
/**
|
|
9
|
+
* Defaults for `<OrigamMasonry>`. Duplicated here so consumers can
|
|
10
|
+
* reference them when authoring their own wrappers without re-importing
|
|
11
|
+
* the component.
|
|
12
|
+
*
|
|
13
|
+
* - `columns: 3` — typical Pinterest-ish layout.
|
|
14
|
+
* - `gap: 'md'` — reuses the same token matrix as `<OrigamGrid>`.
|
|
15
|
+
* - `animated: true` — visually nicer transitions on resize / column
|
|
16
|
+
* count flip; disable for performance-sensitive
|
|
17
|
+
* screens or when consumers prefer no motion.
|
|
18
|
+
* - `align: 'top'` — Pinterest semantics.
|
|
19
|
+
* - `tag: 'div'` — neutral generic wrapper.
|
|
20
|
+
*/
|
|
21
|
+
export declare const MASONRY_DEFAULTS: {
|
|
22
|
+
readonly columns: 3;
|
|
23
|
+
readonly gap: TGridGapSize;
|
|
24
|
+
readonly animated: true;
|
|
25
|
+
readonly align: TMasonryAlign;
|
|
26
|
+
readonly tag: "div";
|
|
27
|
+
};
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.MEDIA_DEFAULT_VOLUME = exports.MEDIA_DEFAULT_PRELOAD = void 0;
|
|
7
|
+
const MEDIA_DEFAULT_PRELOAD = exports.MEDIA_DEFAULT_PRELOAD = "metadata";
|
|
8
|
+
const MEDIA_DEFAULT_VOLUME = exports.MEDIA_DEFAULT_VOLUME = 1;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Default `<audio>`/`<video preload>` hint forwarded to the native
|
|
3
|
+
* element when no consumer override is provided. `'metadata'` loads
|
|
4
|
+
* just enough to compute the duration without auto-buffering, which
|
|
5
|
+
* is the lightest sane default for the Media composables.
|
|
6
|
+
*/
|
|
7
|
+
export declare const MEDIA_DEFAULT_PRELOAD: 'none' | 'metadata' | 'auto';
|
|
8
|
+
/**
|
|
9
|
+
* Default `<audio>`/`<video volume>` (0..1). Full volume — matches the
|
|
10
|
+
* native default but materialised here so `useMediaPlayer`,
|
|
11
|
+
* `<OrigamAudio>` and `<OrigamVideo>` can agree on a single source of
|
|
12
|
+
* truth instead of re-typing the literal.
|
|
13
|
+
*/
|
|
14
|
+
export declare const MEDIA_DEFAULT_VOLUME = 1;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.NUMBER_FORMAT_LRU_CAPACITY = exports.NUMBER_FORMAT_FALLBACK_LOCALE = exports.NUMBER_FORMAT_DEFAULT_CURRENCY = void 0;
|
|
7
|
+
const NUMBER_FORMAT_LRU_CAPACITY = exports.NUMBER_FORMAT_LRU_CAPACITY = 16;
|
|
8
|
+
const NUMBER_FORMAT_FALLBACK_LOCALE = exports.NUMBER_FORMAT_FALLBACK_LOCALE = "en-US";
|
|
9
|
+
const NUMBER_FORMAT_DEFAULT_CURRENCY = exports.NUMBER_FORMAT_DEFAULT_CURRENCY = "USD";
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Maximum number of cached `Intl.NumberFormat` instances kept in the
|
|
3
|
+
* module-level LRU. Sixteen covers most realistic UIs (a handful of
|
|
4
|
+
* locales × a handful of format variations) without leaking memory on
|
|
5
|
+
* long-lived storybook-style apps where every prop tweak would otherwise
|
|
6
|
+
* spawn a fresh resolver.
|
|
7
|
+
*/
|
|
8
|
+
export declare const NUMBER_FORMAT_LRU_CAPACITY = 16;
|
|
9
|
+
/**
|
|
10
|
+
* SSR-safe fallback locale used when no `<html lang>` attribute, no
|
|
11
|
+
* `navigator.language`, and no explicit prop are available.
|
|
12
|
+
*/
|
|
13
|
+
export declare const NUMBER_FORMAT_FALLBACK_LOCALE = "en-US";
|
|
14
|
+
/**
|
|
15
|
+
* Default currency used when `format === 'currency'` and the consumer
|
|
16
|
+
* omits the `currency` prop. ISO 4217 mandates a code — we pick USD
|
|
17
|
+
* rather than throwing so storybook controls stay forgiving.
|
|
18
|
+
*/
|
|
19
|
+
export declare const NUMBER_FORMAT_DEFAULT_CURRENCY = "USD";
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.QR_CODE_OVERLAY_MAX_RATIO = exports.QR_CODE_LRU_CAPACITY = exports.QR_CODE_DEFAULT_MARGIN = exports.QR_CODE_DEFAULT_LOGO_SIZE = exports.QR_CODE_DEFAULT_LOGO_PADDING = exports.QR_CODE_DEFAULT_ECC = void 0;
|
|
7
|
+
const QR_CODE_DEFAULT_ECC = exports.QR_CODE_DEFAULT_ECC = "M";
|
|
8
|
+
const QR_CODE_DEFAULT_MARGIN = exports.QR_CODE_DEFAULT_MARGIN = 4;
|
|
9
|
+
const QR_CODE_OVERLAY_MAX_RATIO = exports.QR_CODE_OVERLAY_MAX_RATIO = 0.3;
|
|
10
|
+
const QR_CODE_DEFAULT_LOGO_SIZE = exports.QR_CODE_DEFAULT_LOGO_SIZE = 0.2;
|
|
11
|
+
const QR_CODE_DEFAULT_LOGO_PADDING = exports.QR_CODE_DEFAULT_LOGO_PADDING = 6;
|
|
12
|
+
const QR_CODE_LRU_CAPACITY = exports.QR_CODE_LRU_CAPACITY = 16;
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { TQrCodeErrorCorrectionLevel } from '../../types';
|
|
2
|
+
/**
|
|
3
|
+
* Default error-correction redundancy budget (~15%). Good balance
|
|
4
|
+
* between matrix density and damage tolerance for clean digital /
|
|
5
|
+
* print mediums without a logo overlay.
|
|
6
|
+
*/
|
|
7
|
+
export declare const QR_CODE_DEFAULT_ECC: TQrCodeErrorCorrectionLevel;
|
|
8
|
+
/**
|
|
9
|
+
* ISO/IEC 18004-recommended quiet zone (in modules) surrounding the
|
|
10
|
+
* QR matrix. Smaller values significantly hurt scanner reliability.
|
|
11
|
+
*/
|
|
12
|
+
export declare const QR_CODE_DEFAULT_MARGIN = 4;
|
|
13
|
+
/**
|
|
14
|
+
* Maximum sensible overlay size. Above ~30% even `errorCorrectionLevel
|
|
15
|
+
* 'H'` cannot reconstruct the obscured codewords — the scan starts to
|
|
16
|
+
* fail. The composable warns (instead of clamping) so the consumer
|
|
17
|
+
* keeps control over the artistic decision.
|
|
18
|
+
*/
|
|
19
|
+
export declare const QR_CODE_OVERLAY_MAX_RATIO = 0.3;
|
|
20
|
+
/**
|
|
21
|
+
* Default logo overlay sizing — 20% of the QR width, 6 px of padding.
|
|
22
|
+
*/
|
|
23
|
+
export declare const QR_CODE_DEFAULT_LOGO_SIZE = 0.2;
|
|
24
|
+
export declare const QR_CODE_DEFAULT_LOGO_PADDING = 6;
|
|
25
|
+
/**
|
|
26
|
+
* Module-level LRU keyed on the serialised payload + options.
|
|
27
|
+
*
|
|
28
|
+
* Reusing the matrix across renders is the cheap path — encoding cost
|
|
29
|
+
* dominates the SVG-string build. Sixteen entries is enough for a
|
|
30
|
+
* realistic storybook (one or two values × four ECC levels × small
|
|
31
|
+
* tweaks).
|
|
32
|
+
*/
|
|
33
|
+
export declare const QR_CODE_LRU_CAPACITY = 16;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Velocity threshold (in **pixels per millisecond**) above which the
|
|
3
|
+
* release is treated as a "fast flick" — `useSheetSwipe` then snaps
|
|
4
|
+
* one step in the direction of motion regardless of how close the
|
|
5
|
+
* current offset is to any specific snap point. Anything slower
|
|
6
|
+
* falls back to nearest-by-distance snapping.
|
|
7
|
+
*
|
|
8
|
+
* 0.5 px/ms ≈ a 200 px swipe in 400 ms, which feels right for a
|
|
9
|
+
* deliberate up/down flick on a phone.
|
|
10
|
+
*/
|
|
11
|
+
export declare const SHEET_FAST_FLICK_THRESHOLD = 0.5;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const SHEET_FAST_FLICK_THRESHOLD = 0.5;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.SNACKBAR_GROUP_LOCATIONS = exports.SNACKBAR_GROUP_DIRECTIONS = exports.SNACKBAR_GROUP_DEFAULT_SPACING = exports.SNACKBAR_GROUP_DEFAULT_MAX = exports.SNACKBAR_GROUP_DEFAULT_ID = exports.SNACKBAR_GROUP_DEFAULT_DURATION = void 0;
|
|
7
|
+
const SNACKBAR_GROUP_LOCATIONS = exports.SNACKBAR_GROUP_LOCATIONS = ["top-left", "top-right", "top-center", "bottom-left", "bottom-right", "bottom-center", "top", "bottom"];
|
|
8
|
+
const SNACKBAR_GROUP_DIRECTIONS = exports.SNACKBAR_GROUP_DIRECTIONS = ["top-down", "bottom-up"];
|
|
9
|
+
const SNACKBAR_GROUP_DEFAULT_ID = exports.SNACKBAR_GROUP_DEFAULT_ID = "default";
|
|
10
|
+
const SNACKBAR_GROUP_DEFAULT_DURATION = exports.SNACKBAR_GROUP_DEFAULT_DURATION = 5e3;
|
|
11
|
+
const SNACKBAR_GROUP_DEFAULT_MAX = exports.SNACKBAR_GROUP_DEFAULT_MAX = 5;
|
|
12
|
+
const SNACKBAR_GROUP_DEFAULT_SPACING = exports.SNACKBAR_GROUP_DEFAULT_SPACING = "12px";
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import type { TSnackbarGroupDirection, TSnackbarGroupLocation } from '../../types';
|
|
2
|
+
/**
|
|
3
|
+
* Closed list of valid `location` values for `OrigamSnackbarGroup`.
|
|
4
|
+
* Exposed so stories / consumers can iterate the matrix (e.g. for a
|
|
5
|
+
* `HstSelect`) without duplicating string literals.
|
|
6
|
+
*/
|
|
7
|
+
export declare const SNACKBAR_GROUP_LOCATIONS: ReadonlyArray<TSnackbarGroupLocation>;
|
|
8
|
+
/**
|
|
9
|
+
* Closed list of valid `direction` values for `OrigamSnackbarGroup`.
|
|
10
|
+
*/
|
|
11
|
+
export declare const SNACKBAR_GROUP_DIRECTIONS: ReadonlyArray<TSnackbarGroupDirection>;
|
|
12
|
+
/**
|
|
13
|
+
* Default stack `id` used by `useSnackbarGroup` when the consumer
|
|
14
|
+
* does not pass an explicit identifier. Multiple stacks can coexist
|
|
15
|
+
* on the same page — each one is keyed by its own `id` in the
|
|
16
|
+
* composable's internal `Map`.
|
|
17
|
+
*/
|
|
18
|
+
export declare const SNACKBAR_GROUP_DEFAULT_ID = "default";
|
|
19
|
+
/**
|
|
20
|
+
* Default auto-dismiss timeout (ms) applied when neither the stack
|
|
21
|
+
* nor the per-item options specify one. `0` (sticky) is allowed at
|
|
22
|
+
* the item level.
|
|
23
|
+
*/
|
|
24
|
+
export declare const SNACKBAR_GROUP_DEFAULT_DURATION = 5000;
|
|
25
|
+
/**
|
|
26
|
+
* Default maximum number of items rendered concurrently. Excess
|
|
27
|
+
* items are evicted FIFO (oldest first).
|
|
28
|
+
*/
|
|
29
|
+
export declare const SNACKBAR_GROUP_DEFAULT_MAX = 5;
|
|
30
|
+
/**
|
|
31
|
+
* Default gap between stacked items (CSS dimension).
|
|
32
|
+
*/
|
|
33
|
+
export declare const SNACKBAR_GROUP_DEFAULT_SPACING = "12px";
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
export const SNACKBAR_GROUP_LOCATIONS = [
|
|
2
|
+
"top-left",
|
|
3
|
+
"top-right",
|
|
4
|
+
"top-center",
|
|
5
|
+
"bottom-left",
|
|
6
|
+
"bottom-right",
|
|
7
|
+
"bottom-center",
|
|
8
|
+
"top",
|
|
9
|
+
"bottom"
|
|
10
|
+
];
|
|
11
|
+
export const SNACKBAR_GROUP_DIRECTIONS = [
|
|
12
|
+
"top-down",
|
|
13
|
+
"bottom-up"
|
|
14
|
+
];
|
|
15
|
+
export const SNACKBAR_GROUP_DEFAULT_ID = "default";
|
|
16
|
+
export const SNACKBAR_GROUP_DEFAULT_DURATION = 5e3;
|
|
17
|
+
export const SNACKBAR_GROUP_DEFAULT_MAX = 5;
|
|
18
|
+
export const SNACKBAR_GROUP_DEFAULT_SPACING = "12px";
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Default `<video preload>` hint — `'metadata'` (loads only what is
|
|
3
|
+
* needed to compute duration) — kept as a Video-specific alias of
|
|
4
|
+
* `MEDIA_DEFAULT_PRELOAD` so consumers that target only the video
|
|
5
|
+
* surface can import without pulling the broader media barrel.
|
|
6
|
+
*/
|
|
7
|
+
export declare const VIDEO_DEFAULT_PRELOAD: 'none' | 'metadata' | 'auto';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export const VIDEO_DEFAULT_PRELOAD = "metadata";
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.WATERMARK_DEFAULT_Z_INDEX = exports.WATERMARK_DEFAULT_POINTER_EVENTS = exports.WATERMARK_DEFAULT_OPACITY = exports.WATERMARK_DEFAULT_GAP_PX = exports.WATERMARK_DEFAULT_FONT_WEIGHT = exports.WATERMARK_DEFAULT_FONT_SIZE_PX = exports.WATERMARK_DEFAULT_FONT_FAMILY = exports.WATERMARK_DEFAULT_COLOR = exports.WATERMARK_DEFAULT_ANGLE_DEG = exports.WATERMARK_DATA_ATTR = void 0;
|
|
7
|
+
const WATERMARK_DEFAULT_GAP_PX = exports.WATERMARK_DEFAULT_GAP_PX = 120;
|
|
8
|
+
const WATERMARK_DEFAULT_FONT_SIZE_PX = exports.WATERMARK_DEFAULT_FONT_SIZE_PX = 16;
|
|
9
|
+
const WATERMARK_DEFAULT_OPACITY = exports.WATERMARK_DEFAULT_OPACITY = 0.1;
|
|
10
|
+
const WATERMARK_DEFAULT_ANGLE_DEG = exports.WATERMARK_DEFAULT_ANGLE_DEG = -30;
|
|
11
|
+
const WATERMARK_DEFAULT_COLOR = exports.WATERMARK_DEFAULT_COLOR = "currentColor";
|
|
12
|
+
const WATERMARK_DEFAULT_FONT_FAMILY = exports.WATERMARK_DEFAULT_FONT_FAMILY = "inherit";
|
|
13
|
+
const WATERMARK_DEFAULT_FONT_WEIGHT = exports.WATERMARK_DEFAULT_FONT_WEIGHT = 400;
|
|
14
|
+
const WATERMARK_DEFAULT_Z_INDEX = exports.WATERMARK_DEFAULT_Z_INDEX = 1;
|
|
15
|
+
const WATERMARK_DEFAULT_POINTER_EVENTS = exports.WATERMARK_DEFAULT_POINTER_EVENTS = "none";
|
|
16
|
+
const WATERMARK_DATA_ATTR = exports.WATERMARK_DATA_ATTR = "data-origam-watermark";
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Default tile geometry — chosen to roughly match the spacing of
|
|
3
|
+
* confidential-document watermarks in print previews (one glyph every
|
|
4
|
+
* ~12 cm at standard zoom).
|
|
5
|
+
*
|
|
6
|
+
* Mirrored verbatim inside the SFC `withDefaults(defineProps<…>())`
|
|
7
|
+
* blocks of `<OrigamWatermark>` per the CLAUDE.md "inline literals
|
|
8
|
+
* only" rule — these constants exist for downstream consumers
|
|
9
|
+
* (composable users, docs, tests) so they can reference the canonical
|
|
10
|
+
* default value instead of magic-stringing it.
|
|
11
|
+
*/
|
|
12
|
+
export declare const WATERMARK_DEFAULT_GAP_PX = 120;
|
|
13
|
+
export declare const WATERMARK_DEFAULT_FONT_SIZE_PX = 16;
|
|
14
|
+
export declare const WATERMARK_DEFAULT_OPACITY = 0.1;
|
|
15
|
+
export declare const WATERMARK_DEFAULT_ANGLE_DEG = -30;
|
|
16
|
+
export declare const WATERMARK_DEFAULT_COLOR = "currentColor";
|
|
17
|
+
export declare const WATERMARK_DEFAULT_FONT_FAMILY = "inherit";
|
|
18
|
+
export declare const WATERMARK_DEFAULT_FONT_WEIGHT: number | string;
|
|
19
|
+
export declare const WATERMARK_DEFAULT_Z_INDEX = 1;
|
|
20
|
+
export declare const WATERMARK_DEFAULT_POINTER_EVENTS: 'none' | 'auto';
|
|
21
|
+
/**
|
|
22
|
+
* Marker attribute applied to every layer created via
|
|
23
|
+
* `install()` / `<OrigamWatermark>`. Used by the anti-tamper
|
|
24
|
+
* MutationObserver to detect "is this MY layer that just got removed?"
|
|
25
|
+
* and re-inject it.
|
|
26
|
+
*/
|
|
27
|
+
export declare const WATERMARK_DATA_ATTR = "data-origam-watermark";
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export const WATERMARK_DEFAULT_GAP_PX = 120;
|
|
2
|
+
export const WATERMARK_DEFAULT_FONT_SIZE_PX = 16;
|
|
3
|
+
export const WATERMARK_DEFAULT_OPACITY = 0.1;
|
|
4
|
+
export const WATERMARK_DEFAULT_ANGLE_DEG = -30;
|
|
5
|
+
export const WATERMARK_DEFAULT_COLOR = "currentColor";
|
|
6
|
+
export const WATERMARK_DEFAULT_FONT_FAMILY = "inherit";
|
|
7
|
+
export const WATERMARK_DEFAULT_FONT_WEIGHT = 400;
|
|
8
|
+
export const WATERMARK_DEFAULT_Z_INDEX = 1;
|
|
9
|
+
export const WATERMARK_DEFAULT_POINTER_EVENTS = "none";
|
|
10
|
+
export const WATERMARK_DATA_ATTR = "data-origam-watermark";
|
|
@@ -322,14 +322,14 @@ Object.keys(_selectionControl).forEach(function (key) {
|
|
|
322
322
|
}
|
|
323
323
|
});
|
|
324
324
|
});
|
|
325
|
-
var
|
|
326
|
-
Object.keys(
|
|
325
|
+
var _snackbarGroup = require("./Snackbar/snackbar-group.const.cjs");
|
|
326
|
+
Object.keys(_snackbarGroup).forEach(function (key) {
|
|
327
327
|
if (key === "default" || key === "__esModule") return;
|
|
328
|
-
if (key in exports && exports[key] ===
|
|
328
|
+
if (key in exports && exports[key] === _snackbarGroup[key]) return;
|
|
329
329
|
Object.defineProperty(exports, key, {
|
|
330
330
|
enumerable: true,
|
|
331
331
|
get: function () {
|
|
332
|
-
return
|
|
332
|
+
return _snackbarGroup[key];
|
|
333
333
|
}
|
|
334
334
|
});
|
|
335
335
|
});
|
|
@@ -344,6 +344,17 @@ Object.keys(_commandPalette).forEach(function (key) {
|
|
|
344
344
|
}
|
|
345
345
|
});
|
|
346
346
|
});
|
|
347
|
+
var _blockquote = require("./Blockquote/blockquote.const.cjs");
|
|
348
|
+
Object.keys(_blockquote).forEach(function (key) {
|
|
349
|
+
if (key === "default" || key === "__esModule") return;
|
|
350
|
+
if (key in exports && exports[key] === _blockquote[key]) return;
|
|
351
|
+
Object.defineProperty(exports, key, {
|
|
352
|
+
enumerable: true,
|
|
353
|
+
get: function () {
|
|
354
|
+
return _blockquote[key];
|
|
355
|
+
}
|
|
356
|
+
});
|
|
357
|
+
});
|
|
347
358
|
var _bracket = require("./Bracket/bracket.const.cjs");
|
|
348
359
|
Object.keys(_bracket).forEach(function (key) {
|
|
349
360
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -355,6 +366,28 @@ Object.keys(_bracket).forEach(function (key) {
|
|
|
355
366
|
}
|
|
356
367
|
});
|
|
357
368
|
});
|
|
369
|
+
var _grid = require("./Grid/grid.const.cjs");
|
|
370
|
+
Object.keys(_grid).forEach(function (key) {
|
|
371
|
+
if (key === "default" || key === "__esModule") return;
|
|
372
|
+
if (key in exports && exports[key] === _grid[key]) return;
|
|
373
|
+
Object.defineProperty(exports, key, {
|
|
374
|
+
enumerable: true,
|
|
375
|
+
get: function () {
|
|
376
|
+
return _grid[key];
|
|
377
|
+
}
|
|
378
|
+
});
|
|
379
|
+
});
|
|
380
|
+
var _masonry = require("./Masonry/masonry.const.cjs");
|
|
381
|
+
Object.keys(_masonry).forEach(function (key) {
|
|
382
|
+
if (key === "default" || key === "__esModule") return;
|
|
383
|
+
if (key in exports && exports[key] === _masonry[key]) return;
|
|
384
|
+
Object.defineProperty(exports, key, {
|
|
385
|
+
enumerable: true,
|
|
386
|
+
get: function () {
|
|
387
|
+
return _masonry[key];
|
|
388
|
+
}
|
|
389
|
+
});
|
|
390
|
+
});
|
|
358
391
|
var _autocomplete = require("./Commons/autocomplete.const.cjs");
|
|
359
392
|
Object.keys(_autocomplete).forEach(function (key) {
|
|
360
393
|
if (key === "default" || key === "__esModule") return;
|
|
@@ -542,25 +575,25 @@ Object.keys(_textarea).forEach(function (key) {
|
|
|
542
575
|
}
|
|
543
576
|
});
|
|
544
577
|
});
|
|
545
|
-
var
|
|
546
|
-
Object.keys(
|
|
578
|
+
var _emptyState = require("./EmptyState/empty-state.const.cjs");
|
|
579
|
+
Object.keys(_emptyState).forEach(function (key) {
|
|
547
580
|
if (key === "default" || key === "__esModule") return;
|
|
548
|
-
if (key in exports && exports[key] ===
|
|
581
|
+
if (key in exports && exports[key] === _emptyState[key]) return;
|
|
549
582
|
Object.defineProperty(exports, key, {
|
|
550
583
|
enumerable: true,
|
|
551
584
|
get: function () {
|
|
552
|
-
return
|
|
585
|
+
return _emptyState[key];
|
|
553
586
|
}
|
|
554
587
|
});
|
|
555
588
|
});
|
|
556
|
-
var
|
|
557
|
-
Object.keys(
|
|
589
|
+
var _expansionPanel = require("./ExpansionPanel/expansion-panel.const.cjs");
|
|
590
|
+
Object.keys(_expansionPanel).forEach(function (key) {
|
|
558
591
|
if (key === "default" || key === "__esModule") return;
|
|
559
|
-
if (key in exports && exports[key] ===
|
|
592
|
+
if (key in exports && exports[key] === _expansionPanel[key]) return;
|
|
560
593
|
Object.defineProperty(exports, key, {
|
|
561
594
|
enumerable: true,
|
|
562
595
|
get: function () {
|
|
563
|
-
return
|
|
596
|
+
return _expansionPanel[key];
|
|
564
597
|
}
|
|
565
598
|
});
|
|
566
599
|
});
|
|
@@ -728,4 +761,147 @@ Object.keys(_theme).forEach(function (key) {
|
|
|
728
761
|
return _theme[key];
|
|
729
762
|
}
|
|
730
763
|
});
|
|
764
|
+
});
|
|
765
|
+
var _media = require("./Media/media.const.cjs");
|
|
766
|
+
Object.keys(_media).forEach(function (key) {
|
|
767
|
+
if (key === "default" || key === "__esModule") return;
|
|
768
|
+
if (key in exports && exports[key] === _media[key]) return;
|
|
769
|
+
Object.defineProperty(exports, key, {
|
|
770
|
+
enumerable: true,
|
|
771
|
+
get: function () {
|
|
772
|
+
return _media[key];
|
|
773
|
+
}
|
|
774
|
+
});
|
|
775
|
+
});
|
|
776
|
+
var _video = require("./Video/video.const.cjs");
|
|
777
|
+
Object.keys(_video).forEach(function (key) {
|
|
778
|
+
if (key === "default" || key === "__esModule") return;
|
|
779
|
+
if (key in exports && exports[key] === _video[key]) return;
|
|
780
|
+
Object.defineProperty(exports, key, {
|
|
781
|
+
enumerable: true,
|
|
782
|
+
get: function () {
|
|
783
|
+
return _video[key];
|
|
784
|
+
}
|
|
785
|
+
});
|
|
786
|
+
});
|
|
787
|
+
var _watermark = require("./Watermark/watermark.const.cjs");
|
|
788
|
+
Object.keys(_watermark).forEach(function (key) {
|
|
789
|
+
if (key === "default" || key === "__esModule") return;
|
|
790
|
+
if (key in exports && exports[key] === _watermark[key]) return;
|
|
791
|
+
Object.defineProperty(exports, key, {
|
|
792
|
+
enumerable: true,
|
|
793
|
+
get: function () {
|
|
794
|
+
return _watermark[key];
|
|
795
|
+
}
|
|
796
|
+
});
|
|
797
|
+
});
|
|
798
|
+
var _qrCode = require("./QrCode/qr-code.const.cjs");
|
|
799
|
+
Object.keys(_qrCode).forEach(function (key) {
|
|
800
|
+
if (key === "default" || key === "__esModule") return;
|
|
801
|
+
if (key in exports && exports[key] === _qrCode[key]) return;
|
|
802
|
+
Object.defineProperty(exports, key, {
|
|
803
|
+
enumerable: true,
|
|
804
|
+
get: function () {
|
|
805
|
+
return _qrCode[key];
|
|
806
|
+
}
|
|
807
|
+
});
|
|
808
|
+
});
|
|
809
|
+
var _numberFormat = require("./NumberFormat/number-format.const.cjs");
|
|
810
|
+
Object.keys(_numberFormat).forEach(function (key) {
|
|
811
|
+
if (key === "default" || key === "__esModule") return;
|
|
812
|
+
if (key in exports && exports[key] === _numberFormat[key]) return;
|
|
813
|
+
Object.defineProperty(exports, key, {
|
|
814
|
+
enumerable: true,
|
|
815
|
+
get: function () {
|
|
816
|
+
return _numberFormat[key];
|
|
817
|
+
}
|
|
818
|
+
});
|
|
819
|
+
});
|
|
820
|
+
var _chart = require("./Chart/chart.const.cjs");
|
|
821
|
+
Object.keys(_chart).forEach(function (key) {
|
|
822
|
+
if (key === "default" || key === "__esModule") return;
|
|
823
|
+
if (key in exports && exports[key] === _chart[key]) return;
|
|
824
|
+
Object.defineProperty(exports, key, {
|
|
825
|
+
enumerable: true,
|
|
826
|
+
get: function () {
|
|
827
|
+
return _chart[key];
|
|
828
|
+
}
|
|
829
|
+
});
|
|
830
|
+
});
|
|
831
|
+
var _pictorialIcons = require("./Chart/pictorial-icons.const.cjs");
|
|
832
|
+
Object.keys(_pictorialIcons).forEach(function (key) {
|
|
833
|
+
if (key === "default" || key === "__esModule") return;
|
|
834
|
+
if (key in exports && exports[key] === _pictorialIcons[key]) return;
|
|
835
|
+
Object.defineProperty(exports, key, {
|
|
836
|
+
enumerable: true,
|
|
837
|
+
get: function () {
|
|
838
|
+
return _pictorialIcons[key];
|
|
839
|
+
}
|
|
840
|
+
});
|
|
841
|
+
});
|
|
842
|
+
var _worldGeographic = require("./Chart/world-geographic.const.cjs");
|
|
843
|
+
Object.keys(_worldGeographic).forEach(function (key) {
|
|
844
|
+
if (key === "default" || key === "__esModule") return;
|
|
845
|
+
if (key in exports && exports[key] === _worldGeographic[key]) return;
|
|
846
|
+
Object.defineProperty(exports, key, {
|
|
847
|
+
enumerable: true,
|
|
848
|
+
get: function () {
|
|
849
|
+
return _worldGeographic[key];
|
|
850
|
+
}
|
|
851
|
+
});
|
|
852
|
+
});
|
|
853
|
+
var _audio = require("./Audio/audio.const.cjs");
|
|
854
|
+
Object.keys(_audio).forEach(function (key) {
|
|
855
|
+
if (key === "default" || key === "__esModule") return;
|
|
856
|
+
if (key in exports && exports[key] === _audio[key]) return;
|
|
857
|
+
Object.defineProperty(exports, key, {
|
|
858
|
+
enumerable: true,
|
|
859
|
+
get: function () {
|
|
860
|
+
return _audio[key];
|
|
861
|
+
}
|
|
862
|
+
});
|
|
863
|
+
});
|
|
864
|
+
var _sheetSwipe = require("./Sheet/sheet-swipe.const.cjs");
|
|
865
|
+
Object.keys(_sheetSwipe).forEach(function (key) {
|
|
866
|
+
if (key === "default" || key === "__esModule") return;
|
|
867
|
+
if (key in exports && exports[key] === _sheetSwipe[key]) return;
|
|
868
|
+
Object.defineProperty(exports, key, {
|
|
869
|
+
enumerable: true,
|
|
870
|
+
get: function () {
|
|
871
|
+
return _sheetSwipe[key];
|
|
872
|
+
}
|
|
873
|
+
});
|
|
874
|
+
});
|
|
875
|
+
var _clipboard = require("./Clipboard/clipboard.const.cjs");
|
|
876
|
+
Object.keys(_clipboard).forEach(function (key) {
|
|
877
|
+
if (key === "default" || key === "__esModule") return;
|
|
878
|
+
if (key in exports && exports[key] === _clipboard[key]) return;
|
|
879
|
+
Object.defineProperty(exports, key, {
|
|
880
|
+
enumerable: true,
|
|
881
|
+
get: function () {
|
|
882
|
+
return _clipboard[key];
|
|
883
|
+
}
|
|
884
|
+
});
|
|
885
|
+
});
|
|
886
|
+
var _cssSupport = require("./CssSupport/css-support.const.cjs");
|
|
887
|
+
Object.keys(_cssSupport).forEach(function (key) {
|
|
888
|
+
if (key === "default" || key === "__esModule") return;
|
|
889
|
+
if (key in exports && exports[key] === _cssSupport[key]) return;
|
|
890
|
+
Object.defineProperty(exports, key, {
|
|
891
|
+
enumerable: true,
|
|
892
|
+
get: function () {
|
|
893
|
+
return _cssSupport[key];
|
|
894
|
+
}
|
|
895
|
+
});
|
|
896
|
+
});
|
|
897
|
+
var _elevation = require("./Commons/elevation.const.cjs");
|
|
898
|
+
Object.keys(_elevation).forEach(function (key) {
|
|
899
|
+
if (key === "default" || key === "__esModule") return;
|
|
900
|
+
if (key in exports && exports[key] === _elevation[key]) return;
|
|
901
|
+
Object.defineProperty(exports, key, {
|
|
902
|
+
enumerable: true,
|
|
903
|
+
get: function () {
|
|
904
|
+
return _elevation[key];
|
|
905
|
+
}
|
|
906
|
+
});
|
|
731
907
|
});
|
|
@@ -27,9 +27,12 @@ export * from './Commons/forwardRefs.const';
|
|
|
27
27
|
export * from './ColorPicker/color-picker.const';
|
|
28
28
|
export * from './Code/code.const';
|
|
29
29
|
export * from './SelectionControl/selection-control.const';
|
|
30
|
-
export * from './
|
|
30
|
+
export * from './Snackbar/snackbar-group.const';
|
|
31
31
|
export * from './CommandPalette/command-palette.const';
|
|
32
|
+
export * from './Blockquote/blockquote.const';
|
|
32
33
|
export * from './Bracket/bracket.const';
|
|
34
|
+
export * from './Grid/grid.const';
|
|
35
|
+
export * from './Masonry/masonry.const';
|
|
33
36
|
export * from './Commons/autocomplete.const';
|
|
34
37
|
export * from './Icon/icon.const';
|
|
35
38
|
export * from './Menu/menu.const';
|
|
@@ -47,8 +50,8 @@ export * from './Chip/chip-group.const';
|
|
|
47
50
|
export * from './Slide/slide-group.const';
|
|
48
51
|
export * from './TextField/text-field.const';
|
|
49
52
|
export * from './Textarea/textarea.const';
|
|
53
|
+
export * from './EmptyState/empty-state.const';
|
|
50
54
|
export * from './ExpansionPanel/expansion-panel.const';
|
|
51
|
-
export * from './SliderField/slider-field.const';
|
|
52
55
|
export * from './DataTable/headers.const';
|
|
53
56
|
export * from './DataTable/sort.const';
|
|
54
57
|
export * from './DataTable/group.const';
|
|
@@ -64,3 +67,16 @@ export * from './Treeview/treeview.const';
|
|
|
64
67
|
export * from './Tabs/tabs.const';
|
|
65
68
|
export * from './Mask/built-in-patterns.const';
|
|
66
69
|
export * from './Theme/theme.const';
|
|
70
|
+
export * from './Media/media.const';
|
|
71
|
+
export * from './Video/video.const';
|
|
72
|
+
export * from './Watermark/watermark.const';
|
|
73
|
+
export * from './QrCode/qr-code.const';
|
|
74
|
+
export * from './NumberFormat/number-format.const';
|
|
75
|
+
export * from './Chart/chart.const';
|
|
76
|
+
export * from './Chart/pictorial-icons.const';
|
|
77
|
+
export * from './Chart/world-geographic.const';
|
|
78
|
+
export * from './Audio/audio.const';
|
|
79
|
+
export * from './Sheet/sheet-swipe.const';
|
|
80
|
+
export * from './Clipboard/clipboard.const';
|
|
81
|
+
export * from './CssSupport/css-support.const';
|
|
82
|
+
export * from './Commons/elevation.const';
|