origam 2.2.1 → 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 +381 -0
- package/README.md +22 -0
- package/dist/src/assets/css/tokens/dark.css +684 -0
- package/dist/src/assets/css/tokens/light.css +342 -0
- package/dist/src/assets/locales/en.json +36 -0
- package/dist/src/assets/locales/fr.json +33 -0
- package/dist/src/assets/scss/tokens/_dark.scss +342 -0
- package/dist/src/assets/scss/tokens/_light.scss +342 -0
- 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 +585 -0
- package/dist/src/components/Bracket/OrigamBracketCompetitor.vue +210 -0
- package/dist/src/components/Bracket/OrigamBracketMatch.vue +288 -0
- package/dist/src/components/Bracket/OrigamBracketRound.vue +152 -0
- package/dist/src/components/Bracket/index.cjs +34 -0
- package/dist/src/components/Bracket/index.d.ts +4 -0
- package/dist/src/components/Bracket/index.js +4 -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/ClientOnly/OrigamClientOnly.vue +28 -0
- package/dist/src/components/ClientOnly/index.cjs +13 -0
- package/dist/src/components/ClientOnly/index.d.ts +1 -0
- package/dist/src/components/ClientOnly/index.js +1 -0
- 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 +459 -0
- package/dist/src/components/Code/index.cjs +13 -0
- package/dist/src/components/Code/index.d.ts +1 -0
- package/dist/src/components/Code/index.js +1 -0
- 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 +3 -2
- package/dist/src/components/CommandPalette/OrigamCommandPalette.vue +620 -0
- package/dist/src/components/CommandPalette/index.cjs +13 -0
- package/dist/src/components/CommandPalette/index.d.ts +1 -0
- package/dist/src/components/CommandPalette/index.js +1 -0
- 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 +6 -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 +97 -38
- package/dist/src/components/Parallax/OrigamParallaxLayer.vue +119 -0
- package/dist/src/components/Parallax/index.cjs +7 -0
- package/dist/src/components/Parallax/index.d.ts +1 -0
- package/dist/src/components/Parallax/index.js +1 -0
- package/dist/src/components/PasswordField/OrigamPasswordField.vue +7 -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 +47 -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/OrigamTab.vue +263 -0
- package/dist/src/components/Tabs/OrigamTabPanel.vue +112 -0
- package/dist/src/components/Tabs/OrigamTabPanels.vue +139 -0
- package/dist/src/components/Tabs/OrigamTabs.vue +242 -0
- package/dist/src/components/Tabs/index.cjs +34 -0
- package/dist/src/components/Tabs/index.d.ts +4 -0
- package/dist/src/components/Tabs/index.js +4 -0
- package/dist/src/components/TextField/OrigamTextField.vue +79 -7
- 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/OrigamRichToolbar.vue +284 -0
- package/dist/src/components/TextareaField/OrigamTextareaField.vue +196 -7
- package/dist/src/components/TextareaField/index.cjs +7 -0
- package/dist/src/components/TextareaField/index.d.ts +1 -0
- package/dist/src/components/TextareaField/index.js +1 -0
- 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 +220 -0
- package/dist/src/components/index.d.ts +20 -0
- package/dist/src/components/index.js +20 -0
- 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 +102 -0
- package/dist/src/composables/Code/code.composable.d.ts +10 -0
- package/dist/src/composables/Code/code.composable.js +86 -0
- package/dist/src/composables/CommandPalette/command.composable.cjs +53 -0
- package/dist/src/composables/CommandPalette/command.composable.d.ts +37 -0
- package/dist/src/composables/CommandPalette/command.composable.js +46 -0
- 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/Commons/virtual.composable.cjs +1 -0
- package/dist/src/composables/Commons/virtual.composable.js +1 -0
- package/dist/src/composables/CssSupport/cssSupport.composable.cjs +16 -25
- package/dist/src/composables/CssSupport/cssSupport.composable.d.ts +26 -23
- package/dist/src/composables/CssSupport/cssSupport.composable.js +11 -23
- package/dist/src/composables/DataTable/headers.composable.d.ts +8 -8
- 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/Mask/index.cjs +16 -0
- package/dist/src/composables/Mask/index.d.ts +1 -0
- package/dist/src/composables/Mask/index.js +1 -0
- package/dist/src/composables/Mask/mask.composable.cjs +57 -0
- package/dist/src/composables/Mask/mask.composable.d.ts +39 -0
- package/dist/src/composables/Mask/mask.composable.js +51 -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/Parallax/parallax.composable.cjs +232 -0
- package/dist/src/composables/Parallax/parallax.composable.d.ts +60 -0
- package/dist/src/composables/Parallax/parallax.composable.js +219 -0
- package/dist/src/composables/QrCode/qr-code.composable.cjs +111 -0
- package/dist/src/composables/QrCode/qr-code.composable.d.ts +31 -0
- package/dist/src/composables/QrCode/qr-code.composable.js +120 -0
- package/dist/src/composables/Responsive/aspect.composable.cjs +6 -1
- package/dist/src/composables/Responsive/aspect.composable.d.ts +10 -0
- package/dist/src/composables/Responsive/aspect.composable.js +6 -1
- package/dist/src/composables/Sheet/sheetSwipe.composable.cjs +5 -5
- package/dist/src/composables/Sheet/sheetSwipe.composable.d.ts +1 -1
- package/dist/src/composables/Sheet/sheetSwipe.composable.js +3 -3
- package/dist/src/composables/SliderField/slider-field.composable.cjs +0 -213
- package/dist/src/composables/SliderField/slider-field.composable.d.ts +11 -5
- package/dist/src/composables/SliderField/slider-field.composable.js +2 -191
- package/dist/src/composables/Snackbar/snackbar-group.composable.cjs +102 -0
- package/dist/src/composables/Snackbar/snackbar-group.composable.d.ts +58 -0
- package/dist/src/composables/Snackbar/snackbar-group.composable.js +92 -0
- package/dist/src/composables/Textarea/textarea-rich.composable.cjs +263 -0
- package/dist/src/composables/Textarea/textarea-rich.composable.d.ts +41 -0
- package/dist/src/composables/Textarea/textarea-rich.composable.js +257 -0
- 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 +299 -4
- package/dist/src/composables/index.d.ts +19 -1
- package/dist/src/composables/index.js +19 -1
- package/dist/src/consts/Audio/audio.const.cjs +25 -0
- package/dist/src/consts/Audio/audio.const.d.ts +30 -0
- package/dist/src/consts/Audio/audio.const.js +19 -0
- package/dist/src/consts/Blockquote/blockquote.const.cjs +32 -0
- package/dist/src/consts/Blockquote/blockquote.const.d.ts +37 -0
- package/dist/src/consts/Blockquote/blockquote.const.js +30 -0
- package/dist/src/consts/Bracket/bracket.const.cjs +12 -0
- package/dist/src/consts/Bracket/bracket.const.d.ts +34 -0
- package/dist/src/consts/Bracket/bracket.const.js +15 -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 +23 -0
- package/dist/src/consts/Code/code.const.d.ts +36 -0
- package/dist/src/consts/Code/code.const.js +32 -0
- package/dist/src/consts/CommandPalette/command-palette.const.cjs +10 -0
- package/dist/src/consts/CommandPalette/command-palette.const.d.ts +16 -0
- package/dist/src/consts/CommandPalette/command-palette.const.js +7 -0
- 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/Mask/built-in-patterns.const.cjs +66 -0
- package/dist/src/consts/Mask/built-in-patterns.const.d.ts +20 -0
- package/dist/src/consts/Mask/built-in-patterns.const.js +60 -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/Parallax/parallax-layer.const.cjs +7 -0
- package/dist/src/consts/Parallax/parallax-layer.const.d.ts +3 -0
- package/dist/src/consts/Parallax/parallax-layer.const.js +1 -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/Tabs/tabs.const.cjs +9 -0
- package/dist/src/consts/Tabs/tabs.const.d.ts +23 -0
- package/dist/src/consts/Tabs/tabs.const.js +3 -0
- package/dist/src/consts/Textarea/textarea.const.cjs +28 -0
- package/dist/src/consts/Textarea/textarea.const.d.ts +38 -0
- package/dist/src/consts/Textarea/textarea.const.js +65 -0
- package/dist/src/consts/Theme/theme.const.cjs +15 -0
- package/dist/src/consts/Theme/theme.const.d.ts +9 -0
- package/dist/src/consts/Theme/theme.const.js +9 -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 +283 -8
- package/dist/src/consts/index.d.ts +26 -1
- package/dist/src/consts/index.js +26 -1
- 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/Bracket/bracket-match-status.enum.cjs +13 -0
- package/dist/src/enums/Bracket/bracket-match-status.enum.d.ts +6 -0
- package/dist/src/enums/Bracket/bracket-match-status.enum.js +7 -0
- package/dist/src/enums/Bracket/bracket-variant.enum.cjs +12 -0
- package/dist/src/enums/Bracket/bracket-variant.enum.d.ts +5 -0
- package/dist/src/enums/Bracket/bracket-variant.enum.js +6 -0
- package/dist/src/enums/Chart/chart-bullet-orientation.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-bullet-orientation.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-bullet-orientation.enum.js +5 -0
- package/dist/src/enums/Chart/chart-cartesian-kind.enum.cjs +16 -0
- package/dist/src/enums/Chart/chart-cartesian-kind.enum.d.ts +14 -0
- package/dist/src/enums/Chart/chart-cartesian-kind.enum.js +10 -0
- package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.js +5 -0
- package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.js +5 -0
- package/dist/src/enums/Chart/chart-map-mode.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-map-mode.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-map-mode.enum.js +5 -0
- package/dist/src/enums/Chart/chart-pictorial-direction.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-pictorial-direction.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-pictorial-direction.enum.js +5 -0
- package/dist/src/enums/Chart/chart-pictorial-mode.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-pictorial-mode.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-pictorial-mode.enum.js +5 -0
- package/dist/src/enums/Chart/chart-polar-kind.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-polar-kind.enum.d.ts +8 -0
- package/dist/src/enums/Chart/chart-polar-kind.enum.js +5 -0
- package/dist/src/enums/Chart/chart-pyramid-kind.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-pyramid-kind.enum.d.ts +4 -0
- package/dist/src/enums/Chart/chart-pyramid-kind.enum.js +5 -0
- package/dist/src/enums/Chart/chart-sparkline-kind.enum.cjs +13 -0
- package/dist/src/enums/Chart/chart-sparkline-kind.enum.d.ts +6 -0
- package/dist/src/enums/Chart/chart-sparkline-kind.enum.js +7 -0
- package/dist/src/enums/Chart/chart-stacking.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-stacking.enum.d.ts +14 -0
- package/dist/src/enums/Chart/chart-stacking.enum.js +5 -0
- package/dist/src/enums/Chart/chart-streamgraph-offset.enum.cjs +13 -0
- package/dist/src/enums/Chart/chart-streamgraph-offset.enum.d.ts +6 -0
- package/dist/src/enums/Chart/chart-streamgraph-offset.enum.js +7 -0
- package/dist/src/enums/Chart/chart-treemap-algorithm.enum.cjs +11 -0
- package/dist/src/enums/Chart/chart-treemap-algorithm.enum.d.ts +9 -0
- package/dist/src/enums/Chart/chart-treemap-algorithm.enum.js +5 -0
- package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.cjs +12 -0
- package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.d.ts +5 -0
- package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.js +6 -0
- package/dist/src/enums/Chart/chart.enum.cjs +38 -0
- package/dist/src/enums/Chart/chart.enum.d.ts +31 -0
- package/dist/src/enums/Chart/chart.enum.js +32 -0
- package/dist/src/enums/Code/code-lang.enum.cjs +23 -0
- package/dist/src/enums/Code/code-lang.enum.d.ts +25 -0
- package/dist/src/enums/Code/code-lang.enum.js +17 -0
- package/dist/src/enums/Code/code-theme.enum.cjs +12 -0
- package/dist/src/enums/Code/code-theme.enum.d.ts +12 -0
- package/dist/src/enums/Code/code-theme.enum.js +6 -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/Mask/mask.enum.cjs +28 -0
- package/dist/src/enums/Mask/mask.enum.d.ts +36 -0
- package/dist/src/enums/Mask/mask.enum.js +22 -0
- package/dist/src/enums/Parallax/parallax-direction.enum.cjs +12 -0
- package/dist/src/enums/Parallax/parallax-direction.enum.d.ts +5 -0
- package/dist/src/enums/Parallax/parallax-direction.enum.js +6 -0
- package/dist/src/enums/Parallax/parallax-easing.enum.cjs +12 -0
- package/dist/src/enums/Parallax/parallax-easing.enum.d.ts +5 -0
- package/dist/src/enums/Parallax/parallax-easing.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/Tabs/tab-variant.enum.cjs +12 -0
- package/dist/src/enums/Tabs/tab-variant.enum.d.ts +5 -0
- package/dist/src/enums/Tabs/tab-variant.enum.js +6 -0
- package/dist/src/enums/Textarea/textarea-mode.enum.cjs +11 -0
- package/dist/src/enums/Textarea/textarea-mode.enum.d.ts +13 -0
- package/dist/src/enums/Textarea/textarea-mode.enum.js +5 -0
- package/dist/src/enums/Textarea/textarea-output.enum.cjs +11 -0
- package/dist/src/enums/Textarea/textarea-output.enum.d.ts +14 -0
- package/dist/src/enums/Textarea/textarea-output.enum.js +5 -0
- package/dist/src/enums/Textarea/textarea-toolbar-command.enum.cjs +21 -0
- package/dist/src/enums/Textarea/textarea-toolbar-command.enum.d.ts +20 -0
- package/dist/src/enums/Textarea/textarea-toolbar-command.enum.js +15 -0
- package/dist/src/enums/Textarea/textarea-toolbar-position.enum.cjs +12 -0
- package/dist/src/enums/Textarea/textarea-toolbar-position.enum.d.ts +10 -0
- package/dist/src/enums/Textarea/textarea-toolbar-position.enum.js +6 -0
- package/dist/src/enums/index.cjs +364 -1
- package/dist/src/enums/index.d.ts +34 -1
- package/dist/src/enums/index.js +34 -1
- 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-competitor-component.interface.d.ts +53 -0
- package/dist/src/interfaces/Bracket/bracket-competitor.interface.d.ts +25 -0
- package/dist/src/interfaces/Bracket/bracket-match-component.interface.d.ts +45 -0
- package/dist/src/interfaces/Bracket/bracket-match.interface.d.ts +51 -0
- package/dist/src/interfaces/Bracket/bracket-match.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket-round-component.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket-round-component.interface.d.ts +26 -0
- package/dist/src/interfaces/Bracket/bracket-round-component.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket-round.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket-round.interface.d.ts +27 -0
- package/dist/src/interfaces/Bracket/bracket-round.interface.js +0 -0
- package/dist/src/interfaces/Bracket/bracket.interface.cjs +1 -0
- package/dist/src/interfaces/Bracket/bracket.interface.d.ts +64 -0
- package/dist/src/interfaces/Bracket/bracket.interface.js +0 -0
- 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.cjs +1 -0
- package/dist/src/interfaces/Calendar/calendar.interface.d.ts +159 -0
- package/dist/src/interfaces/Calendar/calendar.interface.js +0 -0
- package/dist/src/interfaces/Calendar/event.interface.cjs +1 -0
- package/dist/src/interfaces/Calendar/event.interface.d.ts +54 -0
- package/dist/src/interfaces/Calendar/event.interface.js +0 -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.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-annotation.interface.d.ts +99 -0
- package/dist/src/interfaces/Chart/chart-annotation.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-axis.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-axis.interface.d.ts +78 -0
- package/dist/src/interfaces/Chart/chart-axis.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-base.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-base.interface.d.ts +87 -0
- package/dist/src/interfaces/Chart/chart-base.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-box-plot.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-box-plot.interface.d.ts +203 -0
- package/dist/src/interfaces/Chart/chart-box-plot.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-bullet.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-bullet.interface.d.ts +140 -0
- package/dist/src/interfaces/Chart/chart-bullet.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-candlestick.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-candlestick.interface.d.ts +131 -0
- package/dist/src/interfaces/Chart/chart-candlestick.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-cartesian.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-cartesian.interface.d.ts +124 -0
- package/dist/src/interfaces/Chart/chart-cartesian.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-drilldown.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-drilldown.interface.d.ts +60 -0
- package/dist/src/interfaces/Chart/chart-drilldown.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-gauge.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-gauge.interface.d.ts +130 -0
- package/dist/src/interfaces/Chart/chart-gauge.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-heatmap.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-heatmap.interface.d.ts +128 -0
- package/dist/src/interfaces/Chart/chart-heatmap.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-honeycomb.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-honeycomb.interface.d.ts +109 -0
- package/dist/src/interfaces/Chart/chart-honeycomb.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-legend.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-legend.interface.d.ts +48 -0
- package/dist/src/interfaces/Chart/chart-legend.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-map.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-map.interface.d.ts +137 -0
- package/dist/src/interfaces/Chart/chart-map.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-pareto.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-pareto.interface.d.ts +124 -0
- package/dist/src/interfaces/Chart/chart-pareto.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-pictorial.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-pictorial.interface.d.ts +114 -0
- package/dist/src/interfaces/Chart/chart-pictorial.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-plot-band.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-plot-band.interface.d.ts +34 -0
- package/dist/src/interfaces/Chart/chart-plot-band.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-plot-line.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-plot-line.interface.d.ts +39 -0
- package/dist/src/interfaces/Chart/chart-plot-line.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-point.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-point.interface.d.ts +20 -0
- package/dist/src/interfaces/Chart/chart-point.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-polar-bar.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-polar-bar.interface.d.ts +118 -0
- package/dist/src/interfaces/Chart/chart-polar-bar.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-polar.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-polar.interface.d.ts +43 -0
- package/dist/src/interfaces/Chart/chart-polar.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-pyramid.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-pyramid.interface.d.ts +96 -0
- package/dist/src/interfaces/Chart/chart-pyramid.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-radar.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-radar.interface.d.ts +10 -0
- package/dist/src/interfaces/Chart/chart-radar.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-range-selector.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-range-selector.interface.d.ts +38 -0
- package/dist/src/interfaces/Chart/chart-range-selector.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-sankey.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-sankey.interface.d.ts +124 -0
- package/dist/src/interfaces/Chart/chart-sankey.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-series.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-series.interface.d.ts +80 -0
- package/dist/src/interfaces/Chart/chart-series.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-sparkline.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-sparkline.interface.d.ts +108 -0
- package/dist/src/interfaces/Chart/chart-sparkline.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-streamgraph.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-streamgraph.interface.d.ts +82 -0
- package/dist/src/interfaces/Chart/chart-streamgraph.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-sunburst.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-sunburst.interface.d.ts +100 -0
- package/dist/src/interfaces/Chart/chart-sunburst.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-tooltip.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-tooltip.interface.d.ts +55 -0
- package/dist/src/interfaces/Chart/chart-tooltip.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-treemap.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-treemap.interface.d.ts +106 -0
- package/dist/src/interfaces/Chart/chart-treemap.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-variwide.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-variwide.interface.d.ts +132 -0
- package/dist/src/interfaces/Chart/chart-variwide.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart-word-cloud.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart-word-cloud.interface.d.ts +83 -0
- package/dist/src/interfaces/Chart/chart-word-cloud.interface.js +0 -0
- package/dist/src/interfaces/Chart/chart.interface.cjs +1 -0
- package/dist/src/interfaces/Chart/chart.interface.d.ts +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.cjs +1 -0
- package/dist/src/interfaces/Code/code.interface.d.ts +89 -0
- package/dist/src/interfaces/Code/code.interface.js +0 -0
- 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/CommandPalette/command-palette.interface.cjs +1 -0
- package/dist/src/interfaces/CommandPalette/command-palette.interface.d.ts +57 -0
- package/dist/src/interfaces/CommandPalette/command-palette.interface.js +0 -0
- package/dist/src/interfaces/CommandPalette/command.interface.cjs +1 -0
- package/dist/src/interfaces/CommandPalette/command.interface.d.ts +51 -0
- package/dist/src/interfaces/CommandPalette/command.interface.js +0 -0
- 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/Mask/mask-options.interface.cjs +1 -0
- package/dist/src/interfaces/Mask/mask-options.interface.d.ts +48 -0
- package/dist/src/interfaces/Mask/mask-options.interface.js +0 -0
- 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/Nuxt/nuxt-module.interface.cjs +1 -0
- package/dist/src/interfaces/Nuxt/nuxt-module.interface.d.ts +73 -0
- package/dist/src/interfaces/Nuxt/nuxt-module.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/Parallax/parallax-layer.interface.cjs +1 -0
- package/dist/src/interfaces/Parallax/parallax-layer.interface.d.ts +39 -0
- package/dist/src/interfaces/Parallax/parallax-layer.interface.js +0 -0
- package/dist/src/interfaces/Parallax/parallax.interface.d.ts +83 -3
- 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/Snackbar/snackbar-group-item.interface.d.ts +60 -0
- 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/Snackbar/snackbar-group.interface.d.ts +60 -0
- 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-panel.interface.cjs +1 -0
- package/dist/src/interfaces/Tabs/tab-panel.interface.d.ts +12 -0
- package/dist/src/interfaces/Tabs/tab-panel.interface.js +0 -0
- package/dist/src/interfaces/Tabs/tab-panels.interface.cjs +1 -0
- package/dist/src/interfaces/Tabs/tab-panels.interface.d.ts +31 -0
- package/dist/src/interfaces/Tabs/tab-panels.interface.js +0 -0
- package/dist/src/interfaces/Tabs/tab.interface.cjs +1 -0
- package/dist/src/interfaces/Tabs/tab.interface.d.ts +18 -0
- package/dist/src/interfaces/Tabs/tab.interface.js +0 -0
- package/dist/src/interfaces/Tabs/tabs.interface.cjs +1 -0
- package/dist/src/interfaces/Tabs/tabs.interface.d.ts +29 -0
- package/dist/src/interfaces/Tabs/tabs.interface.js +0 -0
- package/dist/src/interfaces/TextField/text-field.interface.d.ts +21 -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/Textarea/textarea-rich.interface.cjs +1 -0
- package/dist/src/interfaces/Textarea/textarea-rich.interface.d.ts +41 -0
- package/dist/src/interfaces/Textarea/textarea-rich.interface.js +0 -0
- package/dist/src/interfaces/Textarea/textarea-toolbar.interface.cjs +1 -0
- package/dist/src/interfaces/Textarea/textarea-toolbar.interface.d.ts +31 -0
- package/dist/src/interfaces/Textarea/textarea-toolbar.interface.js +0 -0
- package/dist/src/interfaces/TextareaField/textarea-field.interface.d.ts +38 -1
- 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 +811 -41
- package/dist/src/interfaces/index.d.ts +74 -4
- package/dist/src/interfaces/index.js +74 -4
- package/dist/src/nuxt/index.cjs +13 -0
- package/dist/src/nuxt/index.d.ts +2 -0
- package/dist/src/nuxt/index.js +1 -0
- package/dist/src/nuxt/module.cjs +74 -0
- package/dist/src/nuxt/module.d.ts +31 -0
- package/dist/src/nuxt/module.js +68 -0
- package/dist/src/nuxt/plugin.client.cjs +44 -0
- package/dist/src/nuxt/plugin.client.d.ts +2 -0
- package/dist/src/nuxt/plugin.client.js +36 -0
- package/dist/src/nuxt/plugin.server.cjs +51 -0
- package/dist/src/nuxt/plugin.server.d.ts +2 -0
- package/dist/src/nuxt/plugin.server.js +45 -0
- package/dist/src/types/Audio/audio-controls.type.cjs +1 -0
- package/dist/src/types/Audio/audio-controls.type.d.ts +12 -0
- package/dist/src/types/Audio/audio-controls.type.js +0 -0
- package/dist/src/types/Audio/audio-loop-mode.type.cjs +1 -0
- package/dist/src/types/Audio/audio-loop-mode.type.d.ts +5 -0
- package/dist/src/types/Audio/audio-loop-mode.type.js +0 -0
- package/dist/src/types/Audio/audio-variant.type.cjs +1 -0
- package/dist/src/types/Audio/audio-variant.type.d.ts +7 -0
- package/dist/src/types/Audio/audio-variant.type.js +0 -0
- package/dist/src/types/Audio/cover-position.type.cjs +1 -0
- package/dist/src/types/Audio/cover-position.type.d.ts +6 -0
- package/dist/src/types/Audio/cover-position.type.js +0 -0
- package/dist/src/types/Blockquote/blockquote-align.type.cjs +1 -0
- package/dist/src/types/Blockquote/blockquote-align.type.d.ts +5 -0
- package/dist/src/types/Blockquote/blockquote-align.type.js +0 -0
- package/dist/src/types/Blockquote/blockquote-lang.type.cjs +1 -0
- package/dist/src/types/Blockquote/blockquote-lang.type.d.ts +18 -0
- package/dist/src/types/Blockquote/blockquote-lang.type.js +0 -0
- package/dist/src/types/Blockquote/blockquote-variant.type.cjs +1 -0
- package/dist/src/types/Blockquote/blockquote-variant.type.d.ts +17 -0
- package/dist/src/types/Blockquote/blockquote-variant.type.js +0 -0
- package/dist/src/types/Bracket/bracket-direction.type.cjs +1 -0
- package/dist/src/types/Bracket/bracket-direction.type.d.ts +13 -0
- package/dist/src/types/Bracket/bracket-direction.type.js +0 -0
- package/dist/src/types/Bracket/bracket-match-status.type.cjs +1 -0
- package/dist/src/types/Bracket/bracket-match-status.type.d.ts +2 -0
- package/dist/src/types/Bracket/bracket-match-status.type.js +0 -0
- package/dist/src/types/Bracket/bracket-round-side.type.cjs +1 -0
- package/dist/src/types/Bracket/bracket-round-side.type.d.ts +12 -0
- package/dist/src/types/Bracket/bracket-round-side.type.js +0 -0
- package/dist/src/types/Bracket/bracket-variant.type.cjs +1 -0
- package/dist/src/types/Bracket/bracket-variant.type.d.ts +2 -0
- package/dist/src/types/Bracket/bracket-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/Code/code-lang.type.cjs +1 -0
- package/dist/src/types/Code/code-lang.type.d.ts +2 -0
- package/dist/src/types/Code/code-lang.type.js +0 -0
- package/dist/src/types/Code/code-theme.type.cjs +1 -0
- package/dist/src/types/Code/code-theme.type.d.ts +2 -0
- package/dist/src/types/Code/code-theme.type.js +0 -0
- package/dist/src/types/CommandPalette/command-palette-hotkey.type.cjs +1 -0
- package/dist/src/types/CommandPalette/command-palette-hotkey.type.d.ts +5 -0
- package/dist/src/types/CommandPalette/command-palette-hotkey.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/Mask/built-in-pattern.type.cjs +1 -0
- package/dist/src/types/Mask/built-in-pattern.type.d.ts +7 -0
- package/dist/src/types/Mask/built-in-pattern.type.js +0 -0
- package/dist/src/types/Mask/mask.type.cjs +1 -0
- package/dist/src/types/Mask/mask.type.d.ts +19 -0
- package/dist/src/types/Mask/mask.type.js +0 -0
- package/dist/src/types/Mask/pattern-validator.type.cjs +1 -0
- package/dist/src/types/Mask/pattern-validator.type.d.ts +16 -0
- package/dist/src/types/Mask/pattern-validator.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/Parallax/parallax-direction.type.cjs +1 -0
- package/dist/src/types/Parallax/parallax-direction.type.d.ts +2 -0
- package/dist/src/types/Parallax/parallax-direction.type.js +0 -0
- package/dist/src/types/Parallax/parallax-easing.type.cjs +1 -0
- package/dist/src/types/Parallax/parallax-easing.type.d.ts +2 -0
- package/dist/src/types/Parallax/parallax-easing.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/Snackbar/snackbar-group-direction.type.d.ts +11 -0
- 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/Snackbar/snackbar-group-location.type.d.ts +9 -0
- 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/Tabs/tab-panel.type.cjs +1 -0
- package/dist/src/types/Tabs/tab-panel.type.d.ts +2 -0
- package/dist/src/types/Tabs/tab-panel.type.js +0 -0
- package/dist/src/types/Tabs/tab-panels.type.cjs +1 -0
- package/dist/src/types/Tabs/tab-panels.type.d.ts +2 -0
- package/dist/src/types/Tabs/tab-panels.type.js +0 -0
- package/dist/src/types/Tabs/tab-variant.type.cjs +1 -0
- package/dist/src/types/Tabs/tab-variant.type.d.ts +2 -0
- package/dist/src/types/Tabs/tab-variant.type.js +0 -0
- package/dist/src/types/Tabs/tab.type.cjs +1 -0
- package/dist/src/types/Tabs/tab.type.d.ts +2 -0
- package/dist/src/types/Tabs/tab.type.js +0 -0
- package/dist/src/types/Tabs/tabs.type.cjs +1 -0
- package/dist/src/types/Tabs/tabs.type.d.ts +2 -0
- package/dist/src/types/Tabs/tabs.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/Textarea/textarea-mode.type.cjs +1 -0
- package/dist/src/types/Textarea/textarea-mode.type.d.ts +2 -0
- package/dist/src/types/Textarea/textarea-mode.type.js +0 -0
- package/dist/src/types/Textarea/textarea-output.type.cjs +1 -0
- package/dist/src/types/Textarea/textarea-output.type.d.ts +2 -0
- package/dist/src/types/Textarea/textarea-output.type.js +0 -0
- package/dist/src/types/Textarea/textarea-toolbar-command.type.cjs +1 -0
- package/dist/src/types/Textarea/textarea-toolbar-command.type.d.ts +2 -0
- package/dist/src/types/Textarea/textarea-toolbar-command.type.js +0 -0
- package/dist/src/types/Textarea/textarea-toolbar-position.type.cjs +1 -0
- package/dist/src/types/Textarea/textarea-toolbar-position.type.d.ts +2 -0
- package/dist/src/types/Textarea/textarea-toolbar-position.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 +708 -15
- package/dist/src/types/index.d.ts +65 -2
- package/dist/src/types/index.js +65 -2
- 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/Code/parse-highlight-lines.util.cjs +34 -0
- package/dist/src/utils/Code/parse-highlight-lines.util.d.ts +24 -0
- package/dist/src/utils/Code/parse-highlight-lines.util.js +28 -0
- package/dist/src/utils/CommandPalette/fuzzy-match.util.cjs +84 -0
- package/dist/src/utils/CommandPalette/fuzzy-match.util.d.ts +51 -0
- package/dist/src/utils/CommandPalette/fuzzy-match.util.js +62 -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/Mask/apply-mask.util.cjs +120 -0
- package/dist/src/utils/Mask/apply-mask.util.d.ts +13 -0
- package/dist/src/utils/Mask/apply-mask.util.js +91 -0
- package/dist/src/utils/Mask/index.cjs +38 -0
- package/dist/src/utils/Mask/index.d.ts +3 -0
- package/dist/src/utils/Mask/index.js +3 -0
- package/dist/src/utils/Mask/resolve-mask-config.util.cjs +31 -0
- package/dist/src/utils/Mask/resolve-mask-config.util.d.ts +15 -0
- package/dist/src/utils/Mask/resolve-mask-config.util.js +21 -0
- package/dist/src/utils/Mask/validate-pattern.util.cjs +92 -0
- package/dist/src/utils/Mask/validate-pattern.util.d.ts +41 -0
- package/dist/src/utils/Mask/validate-pattern.util.js +81 -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/Textarea/html-to-markdown.util.cjs +85 -0
- package/dist/src/utils/Textarea/html-to-markdown.util.d.ts +21 -0
- package/dist/src/utils/Textarea/html-to-markdown.util.js +78 -0
- package/dist/src/utils/Textarea/sanitize-html.util.cjs +82 -0
- package/dist/src/utils/Textarea/sanitize-html.util.d.ts +17 -0
- package/dist/src/utils/Textarea/sanitize-html.util.js +83 -0
- package/dist/src/utils/index.cjs +125 -15
- package/dist/src/utils/index.d.ts +12 -2
- package/dist/src/utils/index.js +12 -2
- package/package.json +22 -5
- package/dist/src/components/SliderField/OrigamSliderFieldThumb.vue +0 -384
- 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/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/globals.d.ts +0 -172
- 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/shims.d.ts +0 -36
- 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/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/vite-env.d.ts +0 -1
- /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 → Bracket/bracket-competitor-component.interface.cjs} +0 -0
- /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.js → Bracket/bracket-competitor-component.interface.js} +0 -0
- /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.cjs → Bracket/bracket-competitor.interface.cjs} +0 -0
- /package/dist/src/{types/Charts/chart.type.js → interfaces/Bracket/bracket-competitor.interface.js} +0 -0
- /package/dist/src/{types/Charts/chart.type.cjs → interfaces/Bracket/bracket-match-component.interface.cjs} +0 -0
- /package/dist/src/{types/SliderField/slider-field-thumb.type.js → interfaces/Bracket/bracket-match-component.interface.js} +0 -0
- /package/dist/src/{types/SliderField/slider-field-thumb.type.cjs → interfaces/Bracket/bracket-match.interface.cjs} +0 -0
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import type { IChartTick } from '../../interfaces';
|
|
2
|
+
/**
|
|
3
|
+
* Props for `<OrigamChartAxis>` — the cartesian-only axes + grid +
|
|
4
|
+
* tick labels block. Extracted from the legacy `<OrigamChart>`
|
|
5
|
+
* monolith so polar / radar / gauge families don't accidentally
|
|
6
|
+
* inherit cartesian chrome (the historical "pie has axis lines"
|
|
7
|
+
* bug).
|
|
8
|
+
*
|
|
9
|
+
* The component is a pure renderer: it expects pre-computed tick
|
|
10
|
+
* arrays + plot corners from `useChart` and paints them. No data
|
|
11
|
+
* coupling, no reactivity beyond its props.
|
|
12
|
+
*/
|
|
13
|
+
export interface IChartAxisProps {
|
|
14
|
+
/**
|
|
15
|
+
* Pixel coordinates of the plotting area's four corners.
|
|
16
|
+
* Comes verbatim from `useChart().plot.value`.
|
|
17
|
+
*/
|
|
18
|
+
plot: {
|
|
19
|
+
x0: number;
|
|
20
|
+
y0: number;
|
|
21
|
+
x1: number;
|
|
22
|
+
y1: number;
|
|
23
|
+
cx: number;
|
|
24
|
+
cy: number;
|
|
25
|
+
};
|
|
26
|
+
/** Tick descriptors for X + Y (primary left axis). Comes from `useChart().ticks.value`. */
|
|
27
|
+
ticks: {
|
|
28
|
+
x: Array<IChartTick>;
|
|
29
|
+
y: Array<IChartTick>;
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* Tick descriptors for the secondary right Y axis.
|
|
33
|
+
* When provided, a second vertical axis is rendered on the
|
|
34
|
+
* right edge of the plot area. Comes from
|
|
35
|
+
* `useChart().secondaryTicks.value`.
|
|
36
|
+
*/
|
|
37
|
+
secondaryYTicks?: Array<IChartTick>;
|
|
38
|
+
/**
|
|
39
|
+
* Render the four-corner axis frame + tick labels. When `false`,
|
|
40
|
+
* the component renders nothing (mirrors the legacy `showAxis`
|
|
41
|
+
* prop on `<OrigamChart>`).
|
|
42
|
+
*/
|
|
43
|
+
showAxis?: boolean;
|
|
44
|
+
/**
|
|
45
|
+
* Render horizontal grid lines under the plot. When `false`,
|
|
46
|
+
* no grid is drawn (mirrors the legacy `showGrid` prop).
|
|
47
|
+
*/
|
|
48
|
+
showGrid?: boolean;
|
|
49
|
+
/**
|
|
50
|
+
* Formatter applied to X-axis tick labels. Defaults to
|
|
51
|
+
* `String(value)`.
|
|
52
|
+
*/
|
|
53
|
+
xAxisFormat?: (value: string | number) => string;
|
|
54
|
+
/**
|
|
55
|
+
* Formatter applied to Y-axis tick labels. Defaults to
|
|
56
|
+
* `String(value)`.
|
|
57
|
+
*/
|
|
58
|
+
yAxisFormat?: (value: number) => string;
|
|
59
|
+
/**
|
|
60
|
+
* Formatter applied to the secondary (right) Y-axis tick labels.
|
|
61
|
+
* Falls back to `yAxisFormat`, then `String(value)`.
|
|
62
|
+
*/
|
|
63
|
+
secondaryYAxisFormat?: (value: number) => string;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Configuration object for the secondary (right-hand) Y axis.
|
|
67
|
+
* Passed as the `secondaryYAxis` prop on `<OrigamChartCartesian>`.
|
|
68
|
+
*/
|
|
69
|
+
export interface IChartSecondaryYAxis {
|
|
70
|
+
/** Force the minimum value of the secondary Y scale. Auto-computed when absent. */
|
|
71
|
+
min?: number;
|
|
72
|
+
/** Force the maximum value of the secondary Y scale. Auto-computed when absent. */
|
|
73
|
+
max?: number;
|
|
74
|
+
/** Formatter applied to the right-axis tick labels. */
|
|
75
|
+
format?: (value: number) => string;
|
|
76
|
+
/** Optional axis title rendered alongside the right axis. */
|
|
77
|
+
title?: string;
|
|
78
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
import type { IBgColorProps, IChartPoint, IChartSeries, ICommonsComponentProps, IDimensionProps, IElevationProps, IMarginProps, IPaddingProps, IRoundedProps } from '../../interfaces';
|
|
2
|
+
import type { TChartLegendPosition, TIntent } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* Props shared across every chart type. Per-type components
|
|
5
|
+
* (`OrigamChartBar`, `OrigamChartLine`, `OrigamChartPie`, …) extend
|
|
6
|
+
* this surface and layer their type-specific options on top
|
|
7
|
+
* (`stacked` for bar/column, `smoothing` for line/area,
|
|
8
|
+
* `donutHoleSize` for donut, etc.).
|
|
9
|
+
*
|
|
10
|
+
* The legacy `<OrigamChart>` (the universal variant-based component)
|
|
11
|
+
* stays available for advanced consumers — it uses `IChartProps`
|
|
12
|
+
* which is `IChartBaseProps + type + all type-specific options`.
|
|
13
|
+
*/
|
|
14
|
+
export interface IChartBaseProps extends ICommonsComponentProps, IDimensionProps, IMarginProps, IPaddingProps, IRoundedProps, IElevationProps, IBgColorProps {
|
|
15
|
+
/** Data series — one or more. Empty array renders the `#empty` slot. */
|
|
16
|
+
series: Array<IChartSeries>;
|
|
17
|
+
/**
|
|
18
|
+
* X axis labels (for line/area/bar/column/radar). Length should
|
|
19
|
+
* match the longest series; missing entries fall back to the
|
|
20
|
+
* numeric index. Ignored for pie / donut / scatter.
|
|
21
|
+
*/
|
|
22
|
+
categories?: Array<string>;
|
|
23
|
+
/** Optional title rendered above the plotting area. */
|
|
24
|
+
title?: string;
|
|
25
|
+
/** Optional subtitle rendered below the title. */
|
|
26
|
+
subtitle?: string;
|
|
27
|
+
/** Toggle the legend block. Default `true`. */
|
|
28
|
+
showLegend?: boolean;
|
|
29
|
+
/** Anchor of the legend block. Default `'bottom'`. */
|
|
30
|
+
legendPosition?: TChartLegendPosition;
|
|
31
|
+
/** Toggle the hover tooltip. Default `true`. */
|
|
32
|
+
showTooltip?: boolean;
|
|
33
|
+
/**
|
|
34
|
+
* Animate paths / bars / slices on first paint and on data
|
|
35
|
+
* changes. Respects `prefers-reduced-motion`. Default `true`.
|
|
36
|
+
*/
|
|
37
|
+
animated?: boolean;
|
|
38
|
+
/** Animation duration in ms. Default `600`. */
|
|
39
|
+
animationDuration?: number;
|
|
40
|
+
/**
|
|
41
|
+
* Palette used when a series does not pin its own `color`.
|
|
42
|
+
* Pass intent strings (cycled in order) or raw CSS colours.
|
|
43
|
+
* Default cycles through the 8 origam intents.
|
|
44
|
+
*/
|
|
45
|
+
colorScheme?: Array<TIntent | string>;
|
|
46
|
+
/**
|
|
47
|
+
* CSS `aspect-ratio` shortcut (`'16/9'`, `'4/3'`, `'1/1'`…). When
|
|
48
|
+
* set, overrides `height` and lets the chart breathe with the
|
|
49
|
+
* container width.
|
|
50
|
+
*/
|
|
51
|
+
aspectRatio?: string;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* Emits surfaced by every per-type chart component. Identical to
|
|
55
|
+
* `IChartEmits` from the universal `<OrigamChart>` — the wrapper
|
|
56
|
+
* components forward verbatim.
|
|
57
|
+
*/
|
|
58
|
+
export interface IChartBaseEmits {
|
|
59
|
+
/** Mouse / keyboard activation on a data point. */
|
|
60
|
+
(e: 'point-click', point: IChartPoint, originalEvent: MouseEvent | KeyboardEvent): void;
|
|
61
|
+
/** Click on a legend entry — pair with `series-toggle` for state. */
|
|
62
|
+
(e: 'legend-click', series: IChartSeries, index: number): void;
|
|
63
|
+
/** Resulting visibility flip after a legend click. */
|
|
64
|
+
(e: 'series-toggle', series: IChartSeries, visible: boolean): void;
|
|
65
|
+
}
|
|
66
|
+
/**
|
|
67
|
+
* Slot signatures shared across every per-type chart component.
|
|
68
|
+
* Identical to `IChartSlots` from the universal `<OrigamChart>`.
|
|
69
|
+
*/
|
|
70
|
+
export interface IChartBaseSlots {
|
|
71
|
+
/** Replace the default tooltip body. */
|
|
72
|
+
tooltip?: (bindings: {
|
|
73
|
+
point: IChartPoint;
|
|
74
|
+
series: IChartSeries;
|
|
75
|
+
category: string | number;
|
|
76
|
+
}) => any;
|
|
77
|
+
/** Replace one legend entry. */
|
|
78
|
+
'legend-item'?: (bindings: {
|
|
79
|
+
series: IChartSeries;
|
|
80
|
+
index: number;
|
|
81
|
+
visible: boolean;
|
|
82
|
+
}) => any;
|
|
83
|
+
/** Replace the title block (title + subtitle). */
|
|
84
|
+
title?: () => any;
|
|
85
|
+
/** Render when `series` is empty / every series is hidden. */
|
|
86
|
+
empty?: () => any;
|
|
87
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
import type { IChartBaseEmits, IChartBaseProps, IChartBaseSlots, IChartPoint, IChartSeries } from '../../interfaces';
|
|
2
|
+
import type { TIntent } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* Five-number summary + outlier list produced by `computeQuartiles`.
|
|
5
|
+
* Exported so consumers can type the return value without importing
|
|
6
|
+
* the util directly.
|
|
7
|
+
*/
|
|
8
|
+
export interface IBoxPlotStats {
|
|
9
|
+
/** Minimum non-outlier value (lower whisker tip). */
|
|
10
|
+
min: number;
|
|
11
|
+
/** First quartile (25th percentile). */
|
|
12
|
+
q1: number;
|
|
13
|
+
/** Median (50th percentile). */
|
|
14
|
+
median: number;
|
|
15
|
+
/** Third quartile (75th percentile). */
|
|
16
|
+
q3: number;
|
|
17
|
+
/** Maximum non-outlier value (upper whisker tip). */
|
|
18
|
+
max: number;
|
|
19
|
+
/** IQR = Q3 − Q1. */
|
|
20
|
+
iqr: number;
|
|
21
|
+
/** Values outside the 1.5·IQR fences. */
|
|
22
|
+
outliers: Array<number>;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Pre-aggregated datum — all five-number-summary values are provided
|
|
26
|
+
* directly by the consumer. Outliers (values outside 1.5·IQR fences)
|
|
27
|
+
* are supplied as an explicit array.
|
|
28
|
+
*/
|
|
29
|
+
export interface IChartBoxPlotDatum {
|
|
30
|
+
/** Category label shown on the X axis. */
|
|
31
|
+
category: string;
|
|
32
|
+
/** Minimum (lower fence or true min when no outliers). */
|
|
33
|
+
min: number;
|
|
34
|
+
/** First quartile — Q1 (25th percentile). */
|
|
35
|
+
q1: number;
|
|
36
|
+
/** Median — Q2 (50th percentile). */
|
|
37
|
+
median: number;
|
|
38
|
+
/** Third quartile — Q3 (75th percentile). */
|
|
39
|
+
q3: number;
|
|
40
|
+
/** Maximum (upper fence or true max when no outliers). */
|
|
41
|
+
max: number;
|
|
42
|
+
/** Values lying outside the 1.5·IQR whisker fences. */
|
|
43
|
+
outliers?: Array<number>;
|
|
44
|
+
/**
|
|
45
|
+
* Override colour for this datum. Intent token or raw CSS colour.
|
|
46
|
+
* When absent the category index cycles through `colorScheme`.
|
|
47
|
+
*/
|
|
48
|
+
color?: TIntent | string;
|
|
49
|
+
}
|
|
50
|
+
/**
|
|
51
|
+
* Raw-samples datum — the component derives the five-number summary
|
|
52
|
+
* via Tukey's method (linear interpolation) and detects outliers
|
|
53
|
+
* at the 1.5·IQR fence.
|
|
54
|
+
*/
|
|
55
|
+
export interface IChartBoxPlotRawDatum {
|
|
56
|
+
/** Category label shown on the X axis. */
|
|
57
|
+
category: string;
|
|
58
|
+
/**
|
|
59
|
+
* Array of individual observations. Must contain at least 4 values
|
|
60
|
+
* for meaningful quartile computation. Fewer values are handled
|
|
61
|
+
* gracefully: all map to the same min/q1/median/q3/max.
|
|
62
|
+
*/
|
|
63
|
+
samples: Array<number>;
|
|
64
|
+
/**
|
|
65
|
+
* Override colour for this datum. Intent token or raw CSS colour.
|
|
66
|
+
* When absent the category index cycles through `colorScheme`.
|
|
67
|
+
*/
|
|
68
|
+
color?: TIntent | string;
|
|
69
|
+
}
|
|
70
|
+
/**
|
|
71
|
+
* Internal box descriptor produced by the geometry engine for each
|
|
72
|
+
* category slot. All coordinates are in SVG-space pixels.
|
|
73
|
+
*/
|
|
74
|
+
export interface IChartBoxPlotBox {
|
|
75
|
+
/** Category index (position in the data array). */
|
|
76
|
+
index: number;
|
|
77
|
+
/** Category label. */
|
|
78
|
+
category: string;
|
|
79
|
+
/** Resolved five-number summary (already coerced to SVG Y coords). */
|
|
80
|
+
stats: {
|
|
81
|
+
min: number;
|
|
82
|
+
q1: number;
|
|
83
|
+
median: number;
|
|
84
|
+
q3: number;
|
|
85
|
+
max: number;
|
|
86
|
+
};
|
|
87
|
+
/** Raw numeric five-number summary (data-space values). */
|
|
88
|
+
rawStats: {
|
|
89
|
+
min: number;
|
|
90
|
+
q1: number;
|
|
91
|
+
median: number;
|
|
92
|
+
q3: number;
|
|
93
|
+
max: number;
|
|
94
|
+
};
|
|
95
|
+
/** IQR in data space. */
|
|
96
|
+
iqr: number;
|
|
97
|
+
/** SVG Y coordinate for Q3 (top of box rect). */
|
|
98
|
+
svgQ3: number;
|
|
99
|
+
/** SVG Y coordinate for Q1 (bottom of box rect). */
|
|
100
|
+
svgQ1: number;
|
|
101
|
+
/** SVG Y coordinate for the median line. */
|
|
102
|
+
svgMedian: number;
|
|
103
|
+
/** SVG Y coordinate for the upper whisker tip. */
|
|
104
|
+
svgMax: number;
|
|
105
|
+
/** SVG Y coordinate for the lower whisker tip. */
|
|
106
|
+
svgMin: number;
|
|
107
|
+
/** Pre-computed box rectangle height (|svgQ1 − svgQ3|) — avoids template-level Math.abs(). */
|
|
108
|
+
boxHeight: number;
|
|
109
|
+
/** SVG X centre of the slot. */
|
|
110
|
+
cx: number;
|
|
111
|
+
/** Half-width of the box rectangle. */
|
|
112
|
+
halfBoxW: number;
|
|
113
|
+
/** Half-width of the whisker cap segment. */
|
|
114
|
+
halfCapW: number;
|
|
115
|
+
/** Resolved CSS colour string. */
|
|
116
|
+
color: string;
|
|
117
|
+
/** SVG Y coordinates + raw values of each outlier. */
|
|
118
|
+
outliers: Array<{
|
|
119
|
+
svgY: number;
|
|
120
|
+
value: number;
|
|
121
|
+
}>;
|
|
122
|
+
/** Whether this box is currently visible (legend toggle). */
|
|
123
|
+
visible: boolean;
|
|
124
|
+
}
|
|
125
|
+
/**
|
|
126
|
+
* Props for `<OrigamChartBoxPlot>`.
|
|
127
|
+
*
|
|
128
|
+
* Box-and-whisker plot: renders one box per category showing the
|
|
129
|
+
* five-number statistical summary (min / Q1 / median / Q3 / max)
|
|
130
|
+
* plus optional outlier dots.
|
|
131
|
+
*
|
|
132
|
+
* Accepts two data shapes:
|
|
133
|
+
* - **Pre-aggregated** (`IChartBoxPlotDatum`) — consumer supplies all
|
|
134
|
+
* five values and the outlier array.
|
|
135
|
+
* - **Raw samples** (`IChartBoxPlotRawDatum`) — the component computes
|
|
136
|
+
* quartiles via Tukey's linear-interpolation method and derives the
|
|
137
|
+
* 1.5·IQR whisker fences automatically.
|
|
138
|
+
*/
|
|
139
|
+
export interface IChartBoxPlotProps extends IChartBaseProps {
|
|
140
|
+
/**
|
|
141
|
+
* Explicit category order. When absent the order is inferred from
|
|
142
|
+
* the first occurrence of each category in `series[0].data`.
|
|
143
|
+
*/
|
|
144
|
+
categories?: Array<string>;
|
|
145
|
+
/**
|
|
146
|
+
* Box width as a fraction of the per-category slot width.
|
|
147
|
+
* Range [0, 1]. Default `0.6`.
|
|
148
|
+
*/
|
|
149
|
+
boxWidth?: number;
|
|
150
|
+
/**
|
|
151
|
+
* Whisker cap width as a fraction of the per-category slot width.
|
|
152
|
+
* Range [0, 1]. Default `0.4`.
|
|
153
|
+
*/
|
|
154
|
+
whiskerCapWidth?: number;
|
|
155
|
+
/** Render outlier dots beyond the whisker fences. Default `true`. */
|
|
156
|
+
showOutliers?: boolean;
|
|
157
|
+
/** Render X and Y axes. Default `true`. */
|
|
158
|
+
showAxis?: boolean;
|
|
159
|
+
/** Render horizontal grid lines. Default `true`. */
|
|
160
|
+
showGrid?: boolean;
|
|
161
|
+
/**
|
|
162
|
+
* Override the auto-computed Y-axis minimum.
|
|
163
|
+
* When absent the component uses `min(data) − 10 %` padding.
|
|
164
|
+
*/
|
|
165
|
+
yMin?: number;
|
|
166
|
+
/**
|
|
167
|
+
* Override the auto-computed Y-axis maximum.
|
|
168
|
+
* When absent the component uses `max(data) + 10 %` padding.
|
|
169
|
+
*/
|
|
170
|
+
yMax?: number;
|
|
171
|
+
/**
|
|
172
|
+
* Formatter applied to X-axis category labels.
|
|
173
|
+
* Default: identity (category string returned as-is).
|
|
174
|
+
*/
|
|
175
|
+
xAxisFormat?: (value: string | number) => string;
|
|
176
|
+
/**
|
|
177
|
+
* Formatter applied to Y-axis tick values.
|
|
178
|
+
* Default: `String(value)`.
|
|
179
|
+
*/
|
|
180
|
+
yAxisFormat?: (value: number) => string;
|
|
181
|
+
}
|
|
182
|
+
/** Emits surfaced by `<OrigamChartBoxPlot>`. Mirrors the base chart emit family. */
|
|
183
|
+
export type IChartBoxPlotEmits = IChartBaseEmits;
|
|
184
|
+
/**
|
|
185
|
+
* Slot signatures exposed by `<OrigamChartBoxPlot>`.
|
|
186
|
+
*
|
|
187
|
+
* The `tooltip` slot receives the full five-number summary plus
|
|
188
|
+
* IQR and outlier count so custom tooltip cards can surface all
|
|
189
|
+
* statistical context.
|
|
190
|
+
*/
|
|
191
|
+
export interface IChartBoxPlotSlots extends IChartBaseSlots {
|
|
192
|
+
/**
|
|
193
|
+
* Override the default tooltip card.
|
|
194
|
+
* Receives `point` (carries `x` = category, `y` = median),
|
|
195
|
+
* `series`, `category`, and the extended `box` descriptor.
|
|
196
|
+
*/
|
|
197
|
+
tooltip?: (bindings: {
|
|
198
|
+
point: IChartPoint;
|
|
199
|
+
series: IChartSeries;
|
|
200
|
+
category: string | number;
|
|
201
|
+
box: IChartBoxPlotBox;
|
|
202
|
+
}) => any;
|
|
203
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,140 @@
|
|
|
1
|
+
import type { IChartBaseEmits, IChartBaseProps, IChartBaseSlots, IChartPoint, IChartSeries } from '../../interfaces';
|
|
2
|
+
import type { TChartBulletOrientation, TIntent } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* One qualitative range band in a bullet chart.
|
|
5
|
+
* Bands are rendered left-to-right (horizontal) or bottom-to-top
|
|
6
|
+
* (vertical) and stack to cover the domain [0, maxRange].
|
|
7
|
+
*/
|
|
8
|
+
export interface IChartBulletRange {
|
|
9
|
+
/**
|
|
10
|
+
* Upper bound of this band (absolute value on the axis, not a
|
|
11
|
+
* width / height fraction). Bands are rendered in array order —
|
|
12
|
+
* each band covers [previous.to, this.to].
|
|
13
|
+
*/
|
|
14
|
+
to: number;
|
|
15
|
+
/**
|
|
16
|
+
* Fill colour for this band. Accepts a TIntent token or a raw CSS
|
|
17
|
+
* colour string. When absent the component cycles through
|
|
18
|
+
* `rangeColors`.
|
|
19
|
+
*/
|
|
20
|
+
color?: TIntent | string;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Bullet data payload for a single series entry.
|
|
24
|
+
*
|
|
25
|
+
* A single datum drives one bullet row (horizontal) or column
|
|
26
|
+
* (vertical). `ranges` define the qualitative background; `value` is
|
|
27
|
+
* the actual-value bar; `target` is the comparative marker tick.
|
|
28
|
+
*/
|
|
29
|
+
export interface IChartBulletDatum {
|
|
30
|
+
/** Actual (measured) value. Drives the solid foreground bar. */
|
|
31
|
+
value: number;
|
|
32
|
+
/** Target / goal value. Rendered as a thin cross-tick. */
|
|
33
|
+
target: number;
|
|
34
|
+
/**
|
|
35
|
+
* Qualitative range bands rendered behind the bars.
|
|
36
|
+
* At least one band is required; three is the Stephen Few
|
|
37
|
+
* recommendation (poor / acceptable / good).
|
|
38
|
+
*/
|
|
39
|
+
ranges: Array<IChartBulletRange>;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* Pre-computed geometry descriptor for a single bullet.
|
|
43
|
+
* Produced by the bullet layout engine inside `OrigamChartBullet`.
|
|
44
|
+
*/
|
|
45
|
+
export interface IChartBulletBullet {
|
|
46
|
+
/** Position of this bullet in the original series array. */
|
|
47
|
+
index: number;
|
|
48
|
+
/** Category label (from `categories[index]` or `series[index].name`). */
|
|
49
|
+
category: string;
|
|
50
|
+
/** Raw datum ({value, target, ranges}). */
|
|
51
|
+
datum: IChartBulletDatum;
|
|
52
|
+
/** Whether this bullet is currently visible (legend toggle). */
|
|
53
|
+
visible: boolean;
|
|
54
|
+
/** Resolved fill colour for the actual-value bar. */
|
|
55
|
+
barFill: string;
|
|
56
|
+
/** Resolved stroke colour for the target tick. */
|
|
57
|
+
targetStroke: string;
|
|
58
|
+
/** Resolved fills for each range band, parallel to datum.ranges. */
|
|
59
|
+
rangeFills: Array<string>;
|
|
60
|
+
/** SVG x of the bullet slot origin (horizontal: left edge; vertical: top edge). */
|
|
61
|
+
slotX: number;
|
|
62
|
+
/** SVG y of the bullet slot origin. */
|
|
63
|
+
slotY: number;
|
|
64
|
+
/** Total slot width (horizontal: plot width; vertical: slot column width). */
|
|
65
|
+
slotW: number;
|
|
66
|
+
/** Total slot height (horizontal: slot row height; vertical: plot height). */
|
|
67
|
+
slotH: number;
|
|
68
|
+
/** Maximum axis value = max(ranges[-1].to, target, value). */
|
|
69
|
+
maxRange: number;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Props for `<OrigamChartBullet>` — the bullet / KPI chart family.
|
|
73
|
+
*
|
|
74
|
+
* Each series entry renders one bullet — a compact combination of
|
|
75
|
+
* range bands (poor / acceptable / good), an actual-value bar, and a
|
|
76
|
+
* target marker tick. Design by Stephen Few.
|
|
77
|
+
*/
|
|
78
|
+
export interface IChartBulletProps extends IChartBaseProps {
|
|
79
|
+
/**
|
|
80
|
+
* Category labels — one per series entry. Rendered beside each
|
|
81
|
+
* bullet. Falls back to `series[i].name` when omitted.
|
|
82
|
+
*/
|
|
83
|
+
categories?: Array<string>;
|
|
84
|
+
/**
|
|
85
|
+
* Fill colour for the actual-value bar. Accepts a TIntent token or
|
|
86
|
+
* a raw CSS colour. Default `'primary'`.
|
|
87
|
+
*/
|
|
88
|
+
barColor?: TIntent | string;
|
|
89
|
+
/**
|
|
90
|
+
* Stroke colour for the target marker tick. Default `'danger'`.
|
|
91
|
+
*/
|
|
92
|
+
targetColor?: TIntent | string;
|
|
93
|
+
/**
|
|
94
|
+
* Fallback palette used when `range.color` is omitted. Cycled in
|
|
95
|
+
* array order across bands. Default `['danger', 'warning', 'success']`.
|
|
96
|
+
*/
|
|
97
|
+
rangeColors?: Array<TIntent | string>;
|
|
98
|
+
/**
|
|
99
|
+
* Layout direction. `'horizontal'` renders bullets as rows (label
|
|
100
|
+
* left, bar extending right). `'vertical'` renders bullets as
|
|
101
|
+
* columns (label below, bar extending upward). Default
|
|
102
|
+
* `'horizontal'`.
|
|
103
|
+
*/
|
|
104
|
+
orientation?: TChartBulletOrientation;
|
|
105
|
+
/**
|
|
106
|
+
* Thickness of the actual-value bar as a fraction of the slot
|
|
107
|
+
* height (horizontal) or slot width (vertical). Range [0, 1].
|
|
108
|
+
* Default `0.45`.
|
|
109
|
+
*/
|
|
110
|
+
barThickness?: number;
|
|
111
|
+
/**
|
|
112
|
+
* Show the quantitative axis. Default `true`.
|
|
113
|
+
*/
|
|
114
|
+
showAxis?: boolean;
|
|
115
|
+
/**
|
|
116
|
+
* X-axis tick formatter — applied to axis tick labels.
|
|
117
|
+
*/
|
|
118
|
+
xAxisFormat?: (value: string | number) => string;
|
|
119
|
+
/**
|
|
120
|
+
* Y-axis tick formatter — applied to axis tick labels (vertical
|
|
121
|
+
* orientation).
|
|
122
|
+
*/
|
|
123
|
+
yAxisFormat?: (value: number) => string;
|
|
124
|
+
}
|
|
125
|
+
/** Emits surfaced by `<OrigamChartBullet>`. Mirrors the base family. */
|
|
126
|
+
export type IChartBulletEmits = IChartBaseEmits;
|
|
127
|
+
/** Slot signatures exposed by `<OrigamChartBullet>`. */
|
|
128
|
+
export interface IChartBulletSlots extends IChartBaseSlots {
|
|
129
|
+
/**
|
|
130
|
+
* Override the default tooltip body. Receives the hovered bullet
|
|
131
|
+
* descriptor plus a pre-computed delta % (value / target * 100).
|
|
132
|
+
*/
|
|
133
|
+
tooltip?: (bindings: {
|
|
134
|
+
point: IChartPoint;
|
|
135
|
+
series: IChartSeries;
|
|
136
|
+
category: string | number;
|
|
137
|
+
bullet: IChartBulletBullet;
|
|
138
|
+
delta: number;
|
|
139
|
+
}) => any;
|
|
140
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
import type { IChartBaseEmits, IChartBaseProps, IChartBaseSlots, IChartPoint } from '../../interfaces';
|
|
2
|
+
import type { TIntent } from '../../types';
|
|
3
|
+
/**
|
|
4
|
+
* One OHLC data point in a candlestick series.
|
|
5
|
+
*
|
|
6
|
+
* `date` is used as the X-axis label. `open`, `high`, `low`, `close`
|
|
7
|
+
* are the four price levels for the period. All four are required — a
|
|
8
|
+
* datum missing any of them is silently skipped.
|
|
9
|
+
*/
|
|
10
|
+
export interface IChartCandlestickDatum {
|
|
11
|
+
/** ISO date string or any human-readable label rendered on the X axis. */
|
|
12
|
+
date: string;
|
|
13
|
+
/** Opening price of the period. */
|
|
14
|
+
open: number;
|
|
15
|
+
/** Highest price of the period. */
|
|
16
|
+
high: number;
|
|
17
|
+
/** Lowest price of the period. */
|
|
18
|
+
low: number;
|
|
19
|
+
/** Closing price of the period. */
|
|
20
|
+
close: number;
|
|
21
|
+
}
|
|
22
|
+
/**
|
|
23
|
+
* Props for `<OrigamChartCandlestick>` — the financial OHLC chart family.
|
|
24
|
+
*
|
|
25
|
+
* Renders one candlestick per datum: a rectangular body between `open`
|
|
26
|
+
* and `close`, and a thin wick from `low` to `high`. Body fill follows
|
|
27
|
+
* intent or raw CSS colour; bullish (close ≥ open) and bearish
|
|
28
|
+
* (close < open) bodies use distinct colours.
|
|
29
|
+
*/
|
|
30
|
+
export interface IChartCandlestickProps extends Omit<IChartBaseProps, 'categories'> {
|
|
31
|
+
/**
|
|
32
|
+
* Chart height. Accepts a number (interpreted as `px`) or any valid
|
|
33
|
+
* CSS length. Ignored when `aspectRatio` is set. Default `400`.
|
|
34
|
+
*/
|
|
35
|
+
height?: number | string;
|
|
36
|
+
/**
|
|
37
|
+
* Fill colour for bullish candles (close ≥ open). Accepts a `TIntent`
|
|
38
|
+
* or any CSS colour string. Default `'success'`.
|
|
39
|
+
*/
|
|
40
|
+
bullishColor?: TIntent | string;
|
|
41
|
+
/**
|
|
42
|
+
* Fill colour for bearish candles (close < open). Accepts a `TIntent`
|
|
43
|
+
* or any CSS colour string. Default `'danger'`.
|
|
44
|
+
*/
|
|
45
|
+
bearishColor?: TIntent | string;
|
|
46
|
+
/**
|
|
47
|
+
* Fraction of the per-slot width occupied by the candle body [0..1].
|
|
48
|
+
* Default `0.6`.
|
|
49
|
+
*/
|
|
50
|
+
candleWidth?: number;
|
|
51
|
+
/**
|
|
52
|
+
* Wick stroke width in SVG user-units. Default `1`.
|
|
53
|
+
*/
|
|
54
|
+
wickWidth?: number;
|
|
55
|
+
/**
|
|
56
|
+
* Toggle the legend. Candlestick charts rarely need a legend — the
|
|
57
|
+
* default is therefore `false`.
|
|
58
|
+
*/
|
|
59
|
+
showLegend?: boolean;
|
|
60
|
+
/** Toggle the hover tooltip. Default `true`. */
|
|
61
|
+
showTooltip?: boolean;
|
|
62
|
+
/** Render background grid lines. Default `true`. */
|
|
63
|
+
showGrid?: boolean;
|
|
64
|
+
/** Render X / Y axes + tick labels. Default `true`. */
|
|
65
|
+
showAxis?: boolean;
|
|
66
|
+
/**
|
|
67
|
+
* Override the auto-computed Y axis minimum. When omitted the minimum
|
|
68
|
+
* is derived from `min(low)` over all data with 5 % padding.
|
|
69
|
+
*/
|
|
70
|
+
yMin?: number;
|
|
71
|
+
/**
|
|
72
|
+
* Override the auto-computed Y axis maximum. When omitted the maximum
|
|
73
|
+
* is derived from `max(high)` over all data with 5 % padding.
|
|
74
|
+
*/
|
|
75
|
+
yMax?: number;
|
|
76
|
+
/** Formatter applied to X-axis (date) tick labels. */
|
|
77
|
+
xAxisFormat?: (value: string | number) => string;
|
|
78
|
+
/** Formatter applied to Y-axis (price) tick labels. */
|
|
79
|
+
yAxisFormat?: (value: number) => string;
|
|
80
|
+
}
|
|
81
|
+
/** Emits surfaced by `<OrigamChartCandlestick>`. Mirrors the base family. */
|
|
82
|
+
export type IChartCandlestickEmits = IChartBaseEmits;
|
|
83
|
+
/** Slot signatures exposed by `<OrigamChartCandlestick>`. */
|
|
84
|
+
export interface IChartCandlestickSlots extends IChartBaseSlots {
|
|
85
|
+
/**
|
|
86
|
+
* Replace the default tooltip card. Receives the usual `point` /
|
|
87
|
+
* `series` / `category` bindings plus the full OHLC datum so the
|
|
88
|
+
* custom slot can render change % and direction.
|
|
89
|
+
*/
|
|
90
|
+
tooltip?: (bindings: {
|
|
91
|
+
point: IChartPoint;
|
|
92
|
+
series: IChartBaseProps['series'][0];
|
|
93
|
+
category: string | number;
|
|
94
|
+
datum: IChartCandlestickDatum;
|
|
95
|
+
change: number;
|
|
96
|
+
changePct: number;
|
|
97
|
+
isBullish: boolean;
|
|
98
|
+
}) => any;
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Resolved per-candle descriptor produced by the geometry engine.
|
|
102
|
+
* Every numeric field is expressed in SVG user-units.
|
|
103
|
+
*/
|
|
104
|
+
export interface IChartCandlestickCandle {
|
|
105
|
+
/** Index in the data array. */
|
|
106
|
+
index: number;
|
|
107
|
+
/** The raw OHLC datum. */
|
|
108
|
+
datum: IChartCandlestickDatum;
|
|
109
|
+
/** Center X of the slot. */
|
|
110
|
+
cx: number;
|
|
111
|
+
/** Body left X. */
|
|
112
|
+
bodyX: number;
|
|
113
|
+
/** Body top Y (min of yOpen, yClose). */
|
|
114
|
+
bodyY: number;
|
|
115
|
+
/** Body width in SVG-px. */
|
|
116
|
+
bodyWidth: number;
|
|
117
|
+
/** Body height in SVG-px. */
|
|
118
|
+
bodyHeight: number;
|
|
119
|
+
/** Wick top Y (yHigh). */
|
|
120
|
+
wickTop: number;
|
|
121
|
+
/** Wick bottom Y (yLow). */
|
|
122
|
+
wickBottom: number;
|
|
123
|
+
/** Resolved CSS colour string for the candle. */
|
|
124
|
+
color: string;
|
|
125
|
+
/** `true` when close ≥ open. */
|
|
126
|
+
isBullish: boolean;
|
|
127
|
+
/** Pre-computed change (close - open). */
|
|
128
|
+
change: number;
|
|
129
|
+
/** Pre-computed percentage change. */
|
|
130
|
+
changePct: number;
|
|
131
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";
|