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,882 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<origam-chart-cartesian
|
|
3
|
+
v-if="isCartesianType"
|
|
4
|
+
v-bind="cartesianProps"
|
|
5
|
+
:data-cy="dataCyAttr"
|
|
6
|
+
@point-click="onPointClick"
|
|
7
|
+
@legend-click="onLegendClick"
|
|
8
|
+
@series-toggle="onSeriesToggle"
|
|
9
|
+
>
|
|
10
|
+
<template
|
|
11
|
+
v-for="(_, name) in $slots"
|
|
12
|
+
#[name]="slotBindings"
|
|
13
|
+
>
|
|
14
|
+
<slot
|
|
15
|
+
:name="name"
|
|
16
|
+
v-bind="slotBindings ?? {}"
|
|
17
|
+
/>
|
|
18
|
+
</template>
|
|
19
|
+
</origam-chart-cartesian>
|
|
20
|
+
|
|
21
|
+
<origam-chart-polar
|
|
22
|
+
v-else-if="isPolarType"
|
|
23
|
+
v-bind="polarProps"
|
|
24
|
+
:data-cy="dataCyAttr"
|
|
25
|
+
@point-click="onPointClick"
|
|
26
|
+
@legend-click="onLegendClick"
|
|
27
|
+
@series-toggle="onSeriesToggle"
|
|
28
|
+
>
|
|
29
|
+
<template
|
|
30
|
+
v-for="(_, name) in $slots"
|
|
31
|
+
#[name]="slotBindings"
|
|
32
|
+
>
|
|
33
|
+
<slot
|
|
34
|
+
:name="name"
|
|
35
|
+
v-bind="slotBindings ?? {}"
|
|
36
|
+
/>
|
|
37
|
+
</template>
|
|
38
|
+
</origam-chart-polar>
|
|
39
|
+
|
|
40
|
+
<origam-chart-radar
|
|
41
|
+
v-else-if="isRadarType"
|
|
42
|
+
v-bind="radarProps"
|
|
43
|
+
:data-cy="dataCyAttr"
|
|
44
|
+
@point-click="onPointClick"
|
|
45
|
+
@legend-click="onLegendClick"
|
|
46
|
+
@series-toggle="onSeriesToggle"
|
|
47
|
+
>
|
|
48
|
+
<template
|
|
49
|
+
v-for="(_, name) in $slots"
|
|
50
|
+
#[name]="slotBindings"
|
|
51
|
+
>
|
|
52
|
+
<slot
|
|
53
|
+
:name="name"
|
|
54
|
+
v-bind="slotBindings ?? {}"
|
|
55
|
+
/>
|
|
56
|
+
</template>
|
|
57
|
+
</origam-chart-radar>
|
|
58
|
+
|
|
59
|
+
<origam-chart-gauge
|
|
60
|
+
v-else-if="isGaugeType"
|
|
61
|
+
v-bind="gaugeProps"
|
|
62
|
+
:data-cy="dataCyAttr"
|
|
63
|
+
@point-click="onPointClick"
|
|
64
|
+
@legend-click="onLegendClick"
|
|
65
|
+
@series-toggle="onSeriesToggle"
|
|
66
|
+
>
|
|
67
|
+
<template
|
|
68
|
+
v-for="(_, name) in $slots"
|
|
69
|
+
#[name]="slotBindings"
|
|
70
|
+
>
|
|
71
|
+
<slot
|
|
72
|
+
:name="name"
|
|
73
|
+
v-bind="slotBindings ?? {}"
|
|
74
|
+
/>
|
|
75
|
+
</template>
|
|
76
|
+
</origam-chart-gauge>
|
|
77
|
+
|
|
78
|
+
<origam-chart-pyramid
|
|
79
|
+
v-else-if="isPyramidType"
|
|
80
|
+
v-bind="pyramidProps"
|
|
81
|
+
:data-cy="dataCyAttr"
|
|
82
|
+
@point-click="onPointClick"
|
|
83
|
+
@legend-click="onLegendClick"
|
|
84
|
+
@series-toggle="onSeriesToggle"
|
|
85
|
+
>
|
|
86
|
+
<template
|
|
87
|
+
v-for="(_, name) in $slots"
|
|
88
|
+
#[name]="slotBindings"
|
|
89
|
+
>
|
|
90
|
+
<slot
|
|
91
|
+
:name="name"
|
|
92
|
+
v-bind="slotBindings ?? {}"
|
|
93
|
+
/>
|
|
94
|
+
</template>
|
|
95
|
+
</origam-chart-pyramid>
|
|
96
|
+
|
|
97
|
+
<origam-chart-honeycomb
|
|
98
|
+
v-else-if="isHoneycombType"
|
|
99
|
+
v-bind="honeycombProps"
|
|
100
|
+
:data-cy="dataCyAttr"
|
|
101
|
+
@point-click="onPointClick"
|
|
102
|
+
@legend-click="onLegendClick"
|
|
103
|
+
@series-toggle="onSeriesToggle"
|
|
104
|
+
>
|
|
105
|
+
<template
|
|
106
|
+
v-for="(_, name) in $slots"
|
|
107
|
+
#[name]="slotBindings"
|
|
108
|
+
>
|
|
109
|
+
<slot
|
|
110
|
+
:name="name"
|
|
111
|
+
v-bind="slotBindings ?? {}"
|
|
112
|
+
/>
|
|
113
|
+
</template>
|
|
114
|
+
</origam-chart-honeycomb>
|
|
115
|
+
|
|
116
|
+
<origam-chart-treemap
|
|
117
|
+
v-else-if="isTreemapType"
|
|
118
|
+
v-bind="treemapProps"
|
|
119
|
+
:data-cy="dataCyAttr"
|
|
120
|
+
@point-click="onPointClick"
|
|
121
|
+
@legend-click="onLegendClick"
|
|
122
|
+
@series-toggle="onSeriesToggle"
|
|
123
|
+
>
|
|
124
|
+
<template
|
|
125
|
+
v-for="(_, name) in $slots"
|
|
126
|
+
#[name]="slotBindings"
|
|
127
|
+
>
|
|
128
|
+
<slot
|
|
129
|
+
:name="name"
|
|
130
|
+
v-bind="slotBindings ?? {}"
|
|
131
|
+
/>
|
|
132
|
+
</template>
|
|
133
|
+
</origam-chart-treemap>
|
|
134
|
+
|
|
135
|
+
<origam-chart-sankey
|
|
136
|
+
v-else-if="isSankeyType"
|
|
137
|
+
v-bind="sankeyProps"
|
|
138
|
+
:data-cy="dataCyAttr"
|
|
139
|
+
@point-click="onPointClick"
|
|
140
|
+
@legend-click="onLegendClick"
|
|
141
|
+
@series-toggle="onSeriesToggle"
|
|
142
|
+
>
|
|
143
|
+
<template
|
|
144
|
+
v-for="(_, name) in $slots"
|
|
145
|
+
#[name]="slotBindings"
|
|
146
|
+
>
|
|
147
|
+
<slot
|
|
148
|
+
:name="name"
|
|
149
|
+
v-bind="slotBindings ?? {}"
|
|
150
|
+
/>
|
|
151
|
+
</template>
|
|
152
|
+
</origam-chart-sankey>
|
|
153
|
+
|
|
154
|
+
<origam-chart-word-cloud
|
|
155
|
+
v-else-if="isWordCloudType"
|
|
156
|
+
v-bind="wordCloudProps"
|
|
157
|
+
:data-cy="dataCyAttr"
|
|
158
|
+
@point-click="onPointClick"
|
|
159
|
+
@legend-click="onLegendClick"
|
|
160
|
+
@series-toggle="onSeriesToggle"
|
|
161
|
+
>
|
|
162
|
+
<template
|
|
163
|
+
v-for="(_, name) in $slots"
|
|
164
|
+
#[name]="slotBindings"
|
|
165
|
+
>
|
|
166
|
+
<slot
|
|
167
|
+
:name="name"
|
|
168
|
+
v-bind="slotBindings ?? {}"
|
|
169
|
+
/>
|
|
170
|
+
</template>
|
|
171
|
+
</origam-chart-word-cloud>
|
|
172
|
+
|
|
173
|
+
<origam-chart-heatmap
|
|
174
|
+
v-else-if="isHeatmapType"
|
|
175
|
+
v-bind="heatmapProps"
|
|
176
|
+
:data-cy="dataCyAttr"
|
|
177
|
+
@point-click="onPointClick"
|
|
178
|
+
@legend-click="onLegendClick"
|
|
179
|
+
@series-toggle="onSeriesToggle"
|
|
180
|
+
>
|
|
181
|
+
<template
|
|
182
|
+
v-for="(_, name) in $slots"
|
|
183
|
+
#[name]="slotBindings"
|
|
184
|
+
>
|
|
185
|
+
<slot
|
|
186
|
+
:name="name"
|
|
187
|
+
v-bind="slotBindings ?? {}"
|
|
188
|
+
/>
|
|
189
|
+
</template>
|
|
190
|
+
</origam-chart-heatmap>
|
|
191
|
+
|
|
192
|
+
<origam-chart-sunburst
|
|
193
|
+
v-else-if="isSunburstType"
|
|
194
|
+
v-bind="sunburstProps"
|
|
195
|
+
:data-cy="dataCyAttr"
|
|
196
|
+
@point-click="onPointClick"
|
|
197
|
+
@legend-click="onLegendClick"
|
|
198
|
+
@series-toggle="onSeriesToggle"
|
|
199
|
+
>
|
|
200
|
+
<template
|
|
201
|
+
v-for="(_, name) in $slots"
|
|
202
|
+
#[name]="slotBindings"
|
|
203
|
+
>
|
|
204
|
+
<slot
|
|
205
|
+
:name="name"
|
|
206
|
+
v-bind="slotBindings ?? {}"
|
|
207
|
+
/>
|
|
208
|
+
</template>
|
|
209
|
+
</origam-chart-sunburst>
|
|
210
|
+
|
|
211
|
+
<origam-chart-box-plot
|
|
212
|
+
v-else-if="isBoxPlotType"
|
|
213
|
+
v-bind="boxPlotProps"
|
|
214
|
+
:data-cy="dataCyAttr"
|
|
215
|
+
@point-click="onPointClick"
|
|
216
|
+
@legend-click="onLegendClick"
|
|
217
|
+
@series-toggle="onSeriesToggle"
|
|
218
|
+
>
|
|
219
|
+
<template
|
|
220
|
+
v-for="(_, name) in $slots"
|
|
221
|
+
#[name]="slotBindings"
|
|
222
|
+
>
|
|
223
|
+
<slot
|
|
224
|
+
:name="name"
|
|
225
|
+
v-bind="slotBindings ?? {}"
|
|
226
|
+
/>
|
|
227
|
+
</template>
|
|
228
|
+
</origam-chart-box-plot>
|
|
229
|
+
|
|
230
|
+
<origam-chart-pictorial
|
|
231
|
+
v-else-if="isPictorialType"
|
|
232
|
+
v-bind="pictorialProps"
|
|
233
|
+
:data-cy="dataCyAttr"
|
|
234
|
+
@point-click="onPointClick"
|
|
235
|
+
@legend-click="onLegendClick"
|
|
236
|
+
@series-toggle="onSeriesToggle"
|
|
237
|
+
>
|
|
238
|
+
<template
|
|
239
|
+
v-for="(_, name) in $slots"
|
|
240
|
+
#[name]="slotBindings"
|
|
241
|
+
>
|
|
242
|
+
<slot
|
|
243
|
+
:name="name"
|
|
244
|
+
v-bind="slotBindings ?? {}"
|
|
245
|
+
/>
|
|
246
|
+
</template>
|
|
247
|
+
</origam-chart-pictorial>
|
|
248
|
+
|
|
249
|
+
<origam-chart-candlestick
|
|
250
|
+
v-else-if="isCandlestickType"
|
|
251
|
+
v-bind="candlestickProps"
|
|
252
|
+
:data-cy="dataCyAttr"
|
|
253
|
+
@point-click="onPointClick"
|
|
254
|
+
@legend-click="onLegendClick"
|
|
255
|
+
@series-toggle="onSeriesToggle"
|
|
256
|
+
>
|
|
257
|
+
<template
|
|
258
|
+
v-for="(_, name) in $slots"
|
|
259
|
+
#[name]="slotBindings"
|
|
260
|
+
>
|
|
261
|
+
<slot
|
|
262
|
+
:name="name"
|
|
263
|
+
v-bind="slotBindings ?? {}"
|
|
264
|
+
/>
|
|
265
|
+
</template>
|
|
266
|
+
</origam-chart-candlestick>
|
|
267
|
+
|
|
268
|
+
<origam-chart-streamgraph
|
|
269
|
+
v-else-if="isStreamgraphType"
|
|
270
|
+
v-bind="streamgraphProps"
|
|
271
|
+
:data-cy="dataCyAttr"
|
|
272
|
+
@point-click="onPointClick"
|
|
273
|
+
@legend-click="onLegendClick"
|
|
274
|
+
@series-toggle="onSeriesToggle"
|
|
275
|
+
>
|
|
276
|
+
<template
|
|
277
|
+
v-for="(_, name) in $slots"
|
|
278
|
+
#[name]="slotBindings"
|
|
279
|
+
>
|
|
280
|
+
<slot
|
|
281
|
+
:name="name"
|
|
282
|
+
v-bind="slotBindings ?? {}"
|
|
283
|
+
/>
|
|
284
|
+
</template>
|
|
285
|
+
</origam-chart-streamgraph>
|
|
286
|
+
|
|
287
|
+
<origam-chart-variwide
|
|
288
|
+
v-else-if="isVariwideType"
|
|
289
|
+
v-bind="variwideProps"
|
|
290
|
+
:data-cy="dataCyAttr"
|
|
291
|
+
@point-click="onPointClick"
|
|
292
|
+
@legend-click="onLegendClick"
|
|
293
|
+
@series-toggle="onSeriesToggle"
|
|
294
|
+
>
|
|
295
|
+
<template
|
|
296
|
+
v-for="(_, name) in $slots"
|
|
297
|
+
#[name]="slotBindings"
|
|
298
|
+
>
|
|
299
|
+
<slot
|
|
300
|
+
:name="name"
|
|
301
|
+
v-bind="slotBindings ?? {}"
|
|
302
|
+
/>
|
|
303
|
+
</template>
|
|
304
|
+
</origam-chart-variwide>
|
|
305
|
+
|
|
306
|
+
<origam-chart-polar-bar
|
|
307
|
+
v-else-if="isPolarBarType"
|
|
308
|
+
v-bind="polarBarProps"
|
|
309
|
+
:data-cy="dataCyAttr"
|
|
310
|
+
@point-click="onPointClick"
|
|
311
|
+
@legend-click="onLegendClick"
|
|
312
|
+
@series-toggle="onSeriesToggle"
|
|
313
|
+
>
|
|
314
|
+
<template
|
|
315
|
+
v-for="(_, name) in $slots"
|
|
316
|
+
#[name]="slotBindings"
|
|
317
|
+
>
|
|
318
|
+
<slot
|
|
319
|
+
:name="name"
|
|
320
|
+
v-bind="slotBindings ?? {}"
|
|
321
|
+
/>
|
|
322
|
+
</template>
|
|
323
|
+
</origam-chart-polar-bar>
|
|
324
|
+
|
|
325
|
+
<origam-chart-bullet
|
|
326
|
+
v-else-if="isBulletType"
|
|
327
|
+
v-bind="bulletProps"
|
|
328
|
+
:data-cy="dataCyAttr"
|
|
329
|
+
@point-click="onPointClick"
|
|
330
|
+
@legend-click="onLegendClick"
|
|
331
|
+
@series-toggle="onSeriesToggle"
|
|
332
|
+
>
|
|
333
|
+
<template
|
|
334
|
+
v-for="(_, name) in $slots"
|
|
335
|
+
#[name]="slotBindings"
|
|
336
|
+
>
|
|
337
|
+
<slot
|
|
338
|
+
:name="name"
|
|
339
|
+
v-bind="slotBindings ?? {}"
|
|
340
|
+
/>
|
|
341
|
+
</template>
|
|
342
|
+
</origam-chart-bullet>
|
|
343
|
+
|
|
344
|
+
<origam-chart-pareto
|
|
345
|
+
v-else-if="isParetoType"
|
|
346
|
+
v-bind="paretoProps"
|
|
347
|
+
:data-cy="dataCyAttr"
|
|
348
|
+
@point-click="onPointClick"
|
|
349
|
+
@legend-click="onLegendClick"
|
|
350
|
+
@series-toggle="onSeriesToggle"
|
|
351
|
+
>
|
|
352
|
+
<template
|
|
353
|
+
v-for="(_, name) in $slots"
|
|
354
|
+
#[name]="slotBindings"
|
|
355
|
+
>
|
|
356
|
+
<slot
|
|
357
|
+
:name="name"
|
|
358
|
+
v-bind="slotBindings ?? {}"
|
|
359
|
+
/>
|
|
360
|
+
</template>
|
|
361
|
+
</origam-chart-pareto>
|
|
362
|
+
|
|
363
|
+
<origam-chart-map
|
|
364
|
+
v-else-if="isMapType"
|
|
365
|
+
v-bind="mapProps"
|
|
366
|
+
:data-cy="dataCyAttr"
|
|
367
|
+
@point-click="onPointClick"
|
|
368
|
+
@legend-click="onLegendClick"
|
|
369
|
+
@series-toggle="onSeriesToggle"
|
|
370
|
+
>
|
|
371
|
+
<template
|
|
372
|
+
v-for="(_, name) in $slots"
|
|
373
|
+
#[name]="slotBindings"
|
|
374
|
+
>
|
|
375
|
+
<slot
|
|
376
|
+
:name="name"
|
|
377
|
+
v-bind="slotBindings ?? {}"
|
|
378
|
+
/>
|
|
379
|
+
</template>
|
|
380
|
+
</origam-chart-map>
|
|
381
|
+
|
|
382
|
+
<origam-chart-sparkline
|
|
383
|
+
v-else-if="isSparklineType"
|
|
384
|
+
v-bind="sparklineProps"
|
|
385
|
+
:data-cy="dataCyAttr"
|
|
386
|
+
@point-click="onPointClick"
|
|
387
|
+
@legend-click="onLegendClick"
|
|
388
|
+
@series-toggle="onSeriesToggle"
|
|
389
|
+
>
|
|
390
|
+
<template
|
|
391
|
+
v-for="(_, name) in $slots"
|
|
392
|
+
#[name]="slotBindings"
|
|
393
|
+
>
|
|
394
|
+
<slot
|
|
395
|
+
:name="name"
|
|
396
|
+
v-bind="slotBindings ?? {}"
|
|
397
|
+
/>
|
|
398
|
+
</template>
|
|
399
|
+
</origam-chart-sparkline>
|
|
400
|
+
</template>
|
|
401
|
+
|
|
402
|
+
<script setup>
|
|
403
|
+
import { computed, ref } from "vue";
|
|
404
|
+
import OrigamChartCartesian from "./OrigamChartCartesian.vue";
|
|
405
|
+
import OrigamChartGauge from "./OrigamChartGauge.vue";
|
|
406
|
+
import OrigamChartHoneycomb from "./OrigamChartHoneycomb.vue";
|
|
407
|
+
import OrigamChartPolar from "./OrigamChartPolar.vue";
|
|
408
|
+
import OrigamChartPyramid from "./OrigamChartPyramid.vue";
|
|
409
|
+
import OrigamChartRadar from "./OrigamChartRadar.vue";
|
|
410
|
+
import OrigamChartBoxPlot from "./OrigamChartBoxPlot.vue";
|
|
411
|
+
import OrigamChartCandlestick from "./OrigamChartCandlestick.vue";
|
|
412
|
+
import OrigamChartHeatmap from "./OrigamChartHeatmap.vue";
|
|
413
|
+
import OrigamChartPictorial from "./OrigamChartPictorial.vue";
|
|
414
|
+
import OrigamChartSankey from "./OrigamChartSankey.vue";
|
|
415
|
+
import OrigamChartStreamgraph from "./OrigamChartStreamgraph.vue";
|
|
416
|
+
import OrigamChartBullet from "./OrigamChartBullet.vue";
|
|
417
|
+
import OrigamChartMap from "./OrigamChartMap.vue";
|
|
418
|
+
import OrigamChartPareto from "./OrigamChartPareto.vue";
|
|
419
|
+
import OrigamChartSparkline from "./OrigamChartSparkline.vue";
|
|
420
|
+
import OrigamChartPolarBar from "./OrigamChartPolarBar.vue";
|
|
421
|
+
import OrigamChartVariwide from "./OrigamChartVariwide.vue";
|
|
422
|
+
import OrigamChartSunburst from "./OrigamChartSunburst.vue";
|
|
423
|
+
import OrigamChartTreemap from "./OrigamChartTreemap.vue";
|
|
424
|
+
import OrigamChartWordCloud from "./OrigamChartWordCloud.vue";
|
|
425
|
+
import {
|
|
426
|
+
CHART_CARTESIAN_KIND,
|
|
427
|
+
CHART_POLAR_KIND,
|
|
428
|
+
CHART_PYRAMID_KIND,
|
|
429
|
+
CHART_TYPE
|
|
430
|
+
} from "../../enums";
|
|
431
|
+
defineOptions({
|
|
432
|
+
name: "OrigamChart"
|
|
433
|
+
});
|
|
434
|
+
const props = defineProps({
|
|
435
|
+
type: { type: null, required: false, default: "line" },
|
|
436
|
+
series: { type: Array, required: true },
|
|
437
|
+
categories: { type: Array, required: false, default: () => [] },
|
|
438
|
+
title: { type: String, required: false, default: void 0 },
|
|
439
|
+
subtitle: { type: String, required: false, default: void 0 },
|
|
440
|
+
showLegend: { type: Boolean, required: false, default: true },
|
|
441
|
+
legendPosition: { type: String, required: false, default: "bottom" },
|
|
442
|
+
showTooltip: { type: Boolean, required: false, default: true },
|
|
443
|
+
showGrid: { type: Boolean, required: false, default: true },
|
|
444
|
+
showAxis: { type: Boolean, required: false, default: true },
|
|
445
|
+
animated: { type: Boolean, required: false, default: true },
|
|
446
|
+
animationDuration: { type: Number, required: false, default: 600 },
|
|
447
|
+
stacked: { type: Boolean, required: false, default: false },
|
|
448
|
+
stacking: { type: null, required: false },
|
|
449
|
+
donutHoleSize: { type: Number, required: false, default: 0.6 },
|
|
450
|
+
colorScheme: { type: Array, required: false, default: () => [] },
|
|
451
|
+
xAxisFormat: { type: Function, required: false, default: void 0 },
|
|
452
|
+
yAxisFormat: { type: Function, required: false, default: void 0 },
|
|
453
|
+
aspectRatio: { type: String, required: false, default: void 0 },
|
|
454
|
+
smoothing: { type: String, required: false, default: "none" },
|
|
455
|
+
yMin: { type: Number, required: false, default: void 0 },
|
|
456
|
+
yMax: { type: Number, required: false, default: void 0 },
|
|
457
|
+
gaugeMin: { type: Number, required: false, default: 0 },
|
|
458
|
+
gaugeMax: { type: Number, required: false, default: 100 },
|
|
459
|
+
gaugeUnit: { type: String, required: false, default: "" },
|
|
460
|
+
plotBands: { type: Array, required: false },
|
|
461
|
+
plotLines: { type: Array, required: false },
|
|
462
|
+
annotations: { type: Array, required: false },
|
|
463
|
+
id: { type: String, required: false },
|
|
464
|
+
class: { type: [String, Array, Object], required: false },
|
|
465
|
+
style: { type: [String, Array, Object, Boolean, null], required: false, skipCheck: true },
|
|
466
|
+
height: { type: [Number, String], required: false, default: 300 },
|
|
467
|
+
maxHeight: { type: [Number, String], required: false },
|
|
468
|
+
maxWidth: { type: [Number, String], required: false },
|
|
469
|
+
minHeight: { type: [Number, String], required: false },
|
|
470
|
+
minWidth: { type: [Number, String], required: false },
|
|
471
|
+
width: { type: [Number, String], required: false },
|
|
472
|
+
margin: { type: [Boolean, Number, String], required: false },
|
|
473
|
+
marginTop: { type: [Boolean, Number, String], required: false },
|
|
474
|
+
marginLeft: { type: [Boolean, Number, String], required: false },
|
|
475
|
+
marginBottom: { type: [Boolean, Number, String], required: false },
|
|
476
|
+
marginRight: { type: [Boolean, Number, String], required: false },
|
|
477
|
+
marginBlock: { type: [Boolean, Number, String], required: false },
|
|
478
|
+
marginInline: { type: [Boolean, Number, String], required: false },
|
|
479
|
+
padding: { type: [Boolean, Number, String], required: false },
|
|
480
|
+
paddingTop: { type: [Boolean, Number, String], required: false },
|
|
481
|
+
paddingLeft: { type: [Boolean, Number, String], required: false },
|
|
482
|
+
paddingBottom: { type: [Boolean, Number, String], required: false },
|
|
483
|
+
paddingRight: { type: [Boolean, Number, String], required: false },
|
|
484
|
+
paddingBlock: { type: [Boolean, Number, String], required: false },
|
|
485
|
+
paddingInline: { type: [Boolean, Number, String], required: false },
|
|
486
|
+
rounded: { type: [Boolean, Number, String, null], required: false, skipCheck: true },
|
|
487
|
+
roundedTopRight: { type: [Boolean, Number, String], required: false },
|
|
488
|
+
roundedTopLeft: { type: [Boolean, Number, String], required: false },
|
|
489
|
+
roundedBottomLeft: { type: [Boolean, Number, String], required: false },
|
|
490
|
+
roundedBottomRight: { type: [Boolean, Number, String], required: false },
|
|
491
|
+
elevation: { type: [Number, String], required: false },
|
|
492
|
+
bgColor: { type: [String, Object, Boolean, null], required: false, skipCheck: true }
|
|
493
|
+
});
|
|
494
|
+
const emit = defineEmits(["point-click", "legend-click", "series-toggle"]);
|
|
495
|
+
const CARTESIAN_TYPES = Object.values(CHART_CARTESIAN_KIND);
|
|
496
|
+
const POLAR_TYPES = Object.values(CHART_POLAR_KIND);
|
|
497
|
+
const PYRAMID_TYPES = Object.values(CHART_PYRAMID_KIND);
|
|
498
|
+
const isCartesianType = computed(() => CARTESIAN_TYPES.includes(props.type));
|
|
499
|
+
const isPolarType = computed(() => POLAR_TYPES.includes(props.type));
|
|
500
|
+
const isRadarType = computed(() => props.type === CHART_TYPE.RADAR);
|
|
501
|
+
const isGaugeType = computed(() => props.type === CHART_TYPE.GAUGE);
|
|
502
|
+
const isPyramidType = computed(() => PYRAMID_TYPES.includes(props.type));
|
|
503
|
+
const isHoneycombType = computed(() => props.type === CHART_TYPE.HONEYCOMB);
|
|
504
|
+
const isTreemapType = computed(() => props.type === CHART_TYPE.TREEMAP);
|
|
505
|
+
const isSankeyType = computed(() => props.type === CHART_TYPE.SANKEY);
|
|
506
|
+
const isWordCloudType = computed(() => props.type === CHART_TYPE.WORD_CLOUD);
|
|
507
|
+
const isHeatmapType = computed(() => props.type === CHART_TYPE.HEATMAP);
|
|
508
|
+
const isSunburstType = computed(() => props.type === CHART_TYPE.SUNBURST);
|
|
509
|
+
const isBoxPlotType = computed(() => props.type === CHART_TYPE.BOX_PLOT);
|
|
510
|
+
const isPictorialType = computed(() => props.type === CHART_TYPE.PICTORIAL);
|
|
511
|
+
const isCandlestickType = computed(() => props.type === CHART_TYPE.CANDLESTICK);
|
|
512
|
+
const isStreamgraphType = computed(() => props.type === CHART_TYPE.STREAMGRAPH);
|
|
513
|
+
const isVariwideType = computed(() => props.type === CHART_TYPE.VARIWIDE);
|
|
514
|
+
const isPolarBarType = computed(() => props.type === CHART_TYPE.POLAR_BAR);
|
|
515
|
+
const isBulletType = computed(() => props.type === CHART_TYPE.BULLET);
|
|
516
|
+
const isParetoType = computed(() => props.type === CHART_TYPE.PARETO);
|
|
517
|
+
const isMapType = computed(() => props.type === CHART_TYPE.MAP);
|
|
518
|
+
const isSparklineType = computed(() => props.type === CHART_TYPE.SPARKLINE);
|
|
519
|
+
const dataCyAttr = computed(() => `origam-chart origam-chart--${props.type}`);
|
|
520
|
+
const cartesianProps = computed(() => ({
|
|
521
|
+
type: props.type,
|
|
522
|
+
series: seriesWithVisibility.value,
|
|
523
|
+
categories: props.categories,
|
|
524
|
+
height: props.height,
|
|
525
|
+
title: props.title,
|
|
526
|
+
subtitle: props.subtitle,
|
|
527
|
+
showLegend: props.showLegend,
|
|
528
|
+
legendPosition: props.legendPosition,
|
|
529
|
+
showTooltip: props.showTooltip,
|
|
530
|
+
showGrid: props.showGrid,
|
|
531
|
+
showAxis: props.showAxis,
|
|
532
|
+
animated: props.animated,
|
|
533
|
+
animationDuration: props.animationDuration,
|
|
534
|
+
stacked: props.stacked,
|
|
535
|
+
stacking: props.stacking,
|
|
536
|
+
colorScheme: props.colorScheme,
|
|
537
|
+
xAxisFormat: props.xAxisFormat,
|
|
538
|
+
yAxisFormat: props.yAxisFormat,
|
|
539
|
+
aspectRatio: props.aspectRatio,
|
|
540
|
+
smoothing: props.smoothing,
|
|
541
|
+
yMin: props.yMin,
|
|
542
|
+
yMax: props.yMax,
|
|
543
|
+
plotBands: props.plotBands,
|
|
544
|
+
plotLines: props.plotLines,
|
|
545
|
+
annotations: props.annotations,
|
|
546
|
+
secondaryYAxis: props.secondaryYAxis,
|
|
547
|
+
drilldown: props.drilldown
|
|
548
|
+
}));
|
|
549
|
+
const polarProps = computed(() => ({
|
|
550
|
+
type: props.type,
|
|
551
|
+
series: seriesWithVisibility.value,
|
|
552
|
+
categories: props.categories,
|
|
553
|
+
height: props.height,
|
|
554
|
+
title: props.title,
|
|
555
|
+
subtitle: props.subtitle,
|
|
556
|
+
showLegend: props.showLegend,
|
|
557
|
+
legendPosition: props.legendPosition,
|
|
558
|
+
showTooltip: props.showTooltip,
|
|
559
|
+
animated: props.animated,
|
|
560
|
+
animationDuration: props.animationDuration,
|
|
561
|
+
donutHoleSize: props.donutHoleSize,
|
|
562
|
+
colorScheme: props.colorScheme,
|
|
563
|
+
xAxisFormat: props.xAxisFormat,
|
|
564
|
+
yAxisFormat: props.yAxisFormat,
|
|
565
|
+
aspectRatio: props.aspectRatio,
|
|
566
|
+
drilldown: props.drilldown
|
|
567
|
+
}));
|
|
568
|
+
const radarProps = computed(() => ({
|
|
569
|
+
series: seriesWithVisibility.value,
|
|
570
|
+
categories: props.categories,
|
|
571
|
+
height: props.height,
|
|
572
|
+
title: props.title,
|
|
573
|
+
subtitle: props.subtitle,
|
|
574
|
+
showLegend: props.showLegend,
|
|
575
|
+
legendPosition: props.legendPosition,
|
|
576
|
+
animated: props.animated,
|
|
577
|
+
animationDuration: props.animationDuration,
|
|
578
|
+
colorScheme: props.colorScheme,
|
|
579
|
+
aspectRatio: props.aspectRatio
|
|
580
|
+
}));
|
|
581
|
+
const gaugeProps = computed(() => ({
|
|
582
|
+
series: seriesWithVisibility.value,
|
|
583
|
+
categories: props.categories,
|
|
584
|
+
height: props.height,
|
|
585
|
+
title: props.title,
|
|
586
|
+
subtitle: props.subtitle,
|
|
587
|
+
showLegend: false,
|
|
588
|
+
legendPosition: props.legendPosition,
|
|
589
|
+
showTooltip: false,
|
|
590
|
+
animated: props.animated,
|
|
591
|
+
animationDuration: props.animationDuration,
|
|
592
|
+
colorScheme: props.colorScheme,
|
|
593
|
+
aspectRatio: props.aspectRatio,
|
|
594
|
+
gaugeMin: props.gaugeMin,
|
|
595
|
+
gaugeMax: props.gaugeMax,
|
|
596
|
+
gaugeUnit: props.gaugeUnit
|
|
597
|
+
}));
|
|
598
|
+
const pyramidProps = computed(() => ({
|
|
599
|
+
type: props.type,
|
|
600
|
+
series: seriesWithVisibility.value,
|
|
601
|
+
categories: props.categories,
|
|
602
|
+
height: props.height,
|
|
603
|
+
title: props.title,
|
|
604
|
+
subtitle: props.subtitle,
|
|
605
|
+
showLegend: props.showLegend,
|
|
606
|
+
legendPosition: props.legendPosition,
|
|
607
|
+
showTooltip: props.showTooltip,
|
|
608
|
+
animated: props.animated,
|
|
609
|
+
animationDuration: props.animationDuration,
|
|
610
|
+
colorScheme: props.colorScheme,
|
|
611
|
+
aspectRatio: props.aspectRatio,
|
|
612
|
+
xAxisFormat: props.xAxisFormat,
|
|
613
|
+
yAxisFormat: props.yAxisFormat
|
|
614
|
+
}));
|
|
615
|
+
const honeycombProps = computed(() => ({
|
|
616
|
+
series: seriesWithVisibility.value,
|
|
617
|
+
height: props.height,
|
|
618
|
+
title: props.title,
|
|
619
|
+
subtitle: props.subtitle,
|
|
620
|
+
showLegend: props.showLegend,
|
|
621
|
+
legendPosition: props.legendPosition,
|
|
622
|
+
showTooltip: props.showTooltip,
|
|
623
|
+
animated: props.animated,
|
|
624
|
+
animationDuration: props.animationDuration,
|
|
625
|
+
colorScheme: props.colorScheme,
|
|
626
|
+
aspectRatio: props.aspectRatio,
|
|
627
|
+
xAxisFormat: props.xAxisFormat,
|
|
628
|
+
yAxisFormat: props.yAxisFormat
|
|
629
|
+
}));
|
|
630
|
+
const treemapProps = computed(() => ({
|
|
631
|
+
series: seriesWithVisibility.value,
|
|
632
|
+
height: props.height,
|
|
633
|
+
title: props.title,
|
|
634
|
+
subtitle: props.subtitle,
|
|
635
|
+
showLegend: props.showLegend,
|
|
636
|
+
legendPosition: props.legendPosition,
|
|
637
|
+
showTooltip: props.showTooltip,
|
|
638
|
+
animated: props.animated,
|
|
639
|
+
animationDuration: props.animationDuration,
|
|
640
|
+
colorScheme: props.colorScheme,
|
|
641
|
+
aspectRatio: props.aspectRatio,
|
|
642
|
+
yAxisFormat: props.yAxisFormat
|
|
643
|
+
}));
|
|
644
|
+
const sankeyProps = computed(() => ({
|
|
645
|
+
series: seriesWithVisibility.value,
|
|
646
|
+
height: props.height,
|
|
647
|
+
title: props.title,
|
|
648
|
+
subtitle: props.subtitle,
|
|
649
|
+
showLegend: props.showLegend,
|
|
650
|
+
legendPosition: props.legendPosition,
|
|
651
|
+
showTooltip: props.showTooltip,
|
|
652
|
+
animated: props.animated,
|
|
653
|
+
animationDuration: props.animationDuration,
|
|
654
|
+
colorScheme: props.colorScheme,
|
|
655
|
+
aspectRatio: props.aspectRatio,
|
|
656
|
+
xAxisFormat: props.xAxisFormat,
|
|
657
|
+
yAxisFormat: props.yAxisFormat
|
|
658
|
+
}));
|
|
659
|
+
const wordCloudProps = computed(() => ({
|
|
660
|
+
series: seriesWithVisibility.value,
|
|
661
|
+
height: props.height,
|
|
662
|
+
title: props.title,
|
|
663
|
+
subtitle: props.subtitle,
|
|
664
|
+
showLegend: props.showLegend,
|
|
665
|
+
legendPosition: props.legendPosition,
|
|
666
|
+
showTooltip: props.showTooltip,
|
|
667
|
+
animated: props.animated,
|
|
668
|
+
animationDuration: props.animationDuration,
|
|
669
|
+
colorScheme: props.colorScheme,
|
|
670
|
+
aspectRatio: props.aspectRatio,
|
|
671
|
+
yAxisFormat: props.yAxisFormat
|
|
672
|
+
}));
|
|
673
|
+
const heatmapProps = computed(() => ({
|
|
674
|
+
series: seriesWithVisibility.value,
|
|
675
|
+
height: props.height,
|
|
676
|
+
title: props.title,
|
|
677
|
+
subtitle: props.subtitle,
|
|
678
|
+
showLegend: props.showLegend,
|
|
679
|
+
legendPosition: props.legendPosition,
|
|
680
|
+
showTooltip: props.showTooltip,
|
|
681
|
+
showAxis: props.showAxis,
|
|
682
|
+
animated: props.animated,
|
|
683
|
+
animationDuration: props.animationDuration,
|
|
684
|
+
colorScheme: props.colorScheme,
|
|
685
|
+
aspectRatio: props.aspectRatio,
|
|
686
|
+
xAxisFormat: props.xAxisFormat,
|
|
687
|
+
yAxisFormat: props.yAxisFormat
|
|
688
|
+
}));
|
|
689
|
+
const sunburstProps = computed(() => ({
|
|
690
|
+
series: seriesWithVisibility.value,
|
|
691
|
+
height: props.height,
|
|
692
|
+
title: props.title,
|
|
693
|
+
subtitle: props.subtitle,
|
|
694
|
+
showLegend: props.showLegend,
|
|
695
|
+
legendPosition: props.legendPosition,
|
|
696
|
+
showTooltip: props.showTooltip,
|
|
697
|
+
animated: props.animated,
|
|
698
|
+
animationDuration: props.animationDuration,
|
|
699
|
+
colorScheme: props.colorScheme,
|
|
700
|
+
aspectRatio: props.aspectRatio,
|
|
701
|
+
yAxisFormat: props.yAxisFormat
|
|
702
|
+
}));
|
|
703
|
+
const boxPlotProps = computed(() => ({
|
|
704
|
+
series: seriesWithVisibility.value,
|
|
705
|
+
categories: props.categories,
|
|
706
|
+
height: props.height,
|
|
707
|
+
title: props.title,
|
|
708
|
+
subtitle: props.subtitle,
|
|
709
|
+
showLegend: props.showLegend,
|
|
710
|
+
legendPosition: props.legendPosition,
|
|
711
|
+
showTooltip: props.showTooltip,
|
|
712
|
+
showAxis: props.showAxis,
|
|
713
|
+
showGrid: props.showGrid,
|
|
714
|
+
animated: props.animated,
|
|
715
|
+
animationDuration: props.animationDuration,
|
|
716
|
+
colorScheme: props.colorScheme,
|
|
717
|
+
aspectRatio: props.aspectRatio,
|
|
718
|
+
xAxisFormat: props.xAxisFormat,
|
|
719
|
+
yAxisFormat: props.yAxisFormat,
|
|
720
|
+
yMin: props.yMin,
|
|
721
|
+
yMax: props.yMax
|
|
722
|
+
}));
|
|
723
|
+
const pictorialProps = computed(() => ({
|
|
724
|
+
series: seriesWithVisibility.value,
|
|
725
|
+
categories: props.categories,
|
|
726
|
+
height: props.height,
|
|
727
|
+
title: props.title,
|
|
728
|
+
subtitle: props.subtitle,
|
|
729
|
+
showLegend: props.showLegend,
|
|
730
|
+
legendPosition: props.legendPosition,
|
|
731
|
+
showTooltip: props.showTooltip,
|
|
732
|
+
showAxis: props.showAxis,
|
|
733
|
+
animated: props.animated,
|
|
734
|
+
animationDuration: props.animationDuration,
|
|
735
|
+
colorScheme: props.colorScheme,
|
|
736
|
+
aspectRatio: props.aspectRatio,
|
|
737
|
+
xAxisFormat: props.xAxisFormat,
|
|
738
|
+
yAxisFormat: props.yAxisFormat
|
|
739
|
+
}));
|
|
740
|
+
const candlestickProps = computed(() => ({
|
|
741
|
+
series: seriesWithVisibility.value,
|
|
742
|
+
height: props.height,
|
|
743
|
+
title: props.title,
|
|
744
|
+
subtitle: props.subtitle,
|
|
745
|
+
showLegend: props.showLegend,
|
|
746
|
+
legendPosition: props.legendPosition,
|
|
747
|
+
showTooltip: props.showTooltip,
|
|
748
|
+
showAxis: props.showAxis,
|
|
749
|
+
showGrid: props.showGrid,
|
|
750
|
+
animated: props.animated,
|
|
751
|
+
animationDuration: props.animationDuration,
|
|
752
|
+
aspectRatio: props.aspectRatio,
|
|
753
|
+
xAxisFormat: props.xAxisFormat,
|
|
754
|
+
yAxisFormat: props.yAxisFormat,
|
|
755
|
+
yMin: props.yMin,
|
|
756
|
+
yMax: props.yMax
|
|
757
|
+
}));
|
|
758
|
+
const streamgraphProps = computed(() => ({
|
|
759
|
+
series: seriesWithVisibility.value,
|
|
760
|
+
categories: props.categories,
|
|
761
|
+
height: props.height,
|
|
762
|
+
title: props.title,
|
|
763
|
+
subtitle: props.subtitle,
|
|
764
|
+
showLegend: props.showLegend,
|
|
765
|
+
legendPosition: props.legendPosition,
|
|
766
|
+
showTooltip: props.showTooltip,
|
|
767
|
+
showAxis: props.showAxis,
|
|
768
|
+
showGrid: props.showGrid,
|
|
769
|
+
animated: props.animated,
|
|
770
|
+
animationDuration: props.animationDuration,
|
|
771
|
+
colorScheme: props.colorScheme,
|
|
772
|
+
aspectRatio: props.aspectRatio,
|
|
773
|
+
xAxisFormat: props.xAxisFormat,
|
|
774
|
+
yAxisFormat: props.yAxisFormat
|
|
775
|
+
}));
|
|
776
|
+
const variwideProps = computed(() => ({
|
|
777
|
+
series: seriesWithVisibility.value,
|
|
778
|
+
height: props.height,
|
|
779
|
+
title: props.title,
|
|
780
|
+
subtitle: props.subtitle,
|
|
781
|
+
showLegend: props.showLegend,
|
|
782
|
+
legendPosition: props.legendPosition,
|
|
783
|
+
showTooltip: props.showTooltip,
|
|
784
|
+
showAxis: props.showAxis,
|
|
785
|
+
showGrid: props.showGrid,
|
|
786
|
+
animated: props.animated,
|
|
787
|
+
animationDuration: props.animationDuration,
|
|
788
|
+
colorScheme: props.colorScheme,
|
|
789
|
+
aspectRatio: props.aspectRatio,
|
|
790
|
+
xAxisFormat: props.xAxisFormat,
|
|
791
|
+
yAxisFormat: props.yAxisFormat,
|
|
792
|
+
yMin: props.yMin,
|
|
793
|
+
yMax: props.yMax
|
|
794
|
+
}));
|
|
795
|
+
const polarBarProps = computed(() => ({
|
|
796
|
+
series: seriesWithVisibility.value,
|
|
797
|
+
categories: props.categories,
|
|
798
|
+
height: props.height,
|
|
799
|
+
title: props.title,
|
|
800
|
+
subtitle: props.subtitle,
|
|
801
|
+
showLegend: props.showLegend,
|
|
802
|
+
legendPosition: props.legendPosition,
|
|
803
|
+
showTooltip: props.showTooltip,
|
|
804
|
+
animated: props.animated,
|
|
805
|
+
animationDuration: props.animationDuration,
|
|
806
|
+
colorScheme: props.colorScheme,
|
|
807
|
+
aspectRatio: props.aspectRatio,
|
|
808
|
+
xAxisFormat: props.xAxisFormat,
|
|
809
|
+
yAxisFormat: props.yAxisFormat
|
|
810
|
+
}));
|
|
811
|
+
const bulletProps = computed(() => ({
|
|
812
|
+
series: seriesWithVisibility.value,
|
|
813
|
+
categories: props.categories,
|
|
814
|
+
height: props.height,
|
|
815
|
+
title: props.title,
|
|
816
|
+
subtitle: props.subtitle,
|
|
817
|
+
showLegend: props.showLegend,
|
|
818
|
+
legendPosition: props.legendPosition,
|
|
819
|
+
showTooltip: props.showTooltip,
|
|
820
|
+
showAxis: props.showAxis,
|
|
821
|
+
animated: props.animated,
|
|
822
|
+
animationDuration: props.animationDuration,
|
|
823
|
+
aspectRatio: props.aspectRatio,
|
|
824
|
+
xAxisFormat: props.xAxisFormat,
|
|
825
|
+
yAxisFormat: props.yAxisFormat
|
|
826
|
+
}));
|
|
827
|
+
const paretoProps = computed(() => ({
|
|
828
|
+
series: seriesWithVisibility.value,
|
|
829
|
+
height: props.height,
|
|
830
|
+
title: props.title,
|
|
831
|
+
subtitle: props.subtitle,
|
|
832
|
+
showLegend: props.showLegend,
|
|
833
|
+
legendPosition: props.legendPosition,
|
|
834
|
+
showTooltip: props.showTooltip,
|
|
835
|
+
showAxis: props.showAxis,
|
|
836
|
+
showGrid: props.showGrid,
|
|
837
|
+
animated: props.animated,
|
|
838
|
+
animationDuration: props.animationDuration,
|
|
839
|
+
aspectRatio: props.aspectRatio,
|
|
840
|
+
xAxisFormat: props.xAxisFormat,
|
|
841
|
+
yAxisFormat: props.yAxisFormat
|
|
842
|
+
}));
|
|
843
|
+
const mapProps = computed(() => ({
|
|
844
|
+
series: seriesWithVisibility.value,
|
|
845
|
+
height: props.height,
|
|
846
|
+
title: props.title,
|
|
847
|
+
subtitle: props.subtitle,
|
|
848
|
+
showLegend: props.showLegend,
|
|
849
|
+
legendPosition: props.legendPosition,
|
|
850
|
+
showTooltip: props.showTooltip,
|
|
851
|
+
animated: props.animated,
|
|
852
|
+
animationDuration: props.animationDuration,
|
|
853
|
+
aspectRatio: props.aspectRatio,
|
|
854
|
+
yAxisFormat: props.yAxisFormat
|
|
855
|
+
}));
|
|
856
|
+
const sparklineProps = computed(() => ({
|
|
857
|
+
series: seriesWithVisibility.value,
|
|
858
|
+
height: props.height,
|
|
859
|
+
width: props.width,
|
|
860
|
+
animated: props.animated,
|
|
861
|
+
animationDuration: props.animationDuration,
|
|
862
|
+
aspectRatio: props.aspectRatio
|
|
863
|
+
}));
|
|
864
|
+
const onPointClick = (point, originalEvent) => {
|
|
865
|
+
emit("point-click", point, originalEvent);
|
|
866
|
+
};
|
|
867
|
+
const onLegendClick = (series, index) => {
|
|
868
|
+
emit("legend-click", series, index);
|
|
869
|
+
};
|
|
870
|
+
const hiddenSeries = ref(/* @__PURE__ */ new Set());
|
|
871
|
+
const seriesWithVisibility = computed(
|
|
872
|
+
() => props.series.map((s) => ({
|
|
873
|
+
...s,
|
|
874
|
+
visible: !hiddenSeries.value.has(s.name)
|
|
875
|
+
}))
|
|
876
|
+
);
|
|
877
|
+
const onSeriesToggle = (series, visible) => {
|
|
878
|
+
if (visible) hiddenSeries.value.delete(series.name);
|
|
879
|
+
else hiddenSeries.value.add(series.name);
|
|
880
|
+
emit("series-toggle", series, visible);
|
|
881
|
+
};
|
|
882
|
+
</script>
|