origam 2.3.0 → 2.6.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1155) hide show
  1. package/dist/src/assets/css/tokens/dark.css +3878 -3492
  2. package/dist/src/assets/css/tokens/light.css +1939 -1746
  3. package/dist/src/assets/css/tokens/primitive.css +2 -0
  4. package/dist/src/assets/css/tokens/themes-all.css +44226 -0
  5. package/dist/src/assets/locales/en.json +70 -2
  6. package/dist/src/assets/locales/fr.json +67 -2
  7. package/dist/src/assets/locales/index.js +2 -2
  8. package/dist/src/assets/scss/tokens/_dark.scss +1939 -1746
  9. package/dist/src/assets/scss/tokens/_light.scss +1939 -1746
  10. package/dist/src/assets/scss/tokens/_primitive.scss +2 -0
  11. package/dist/src/assets/scss/tokens/_themes-all.scss +44241 -0
  12. package/dist/src/components/Alert/OrigamAlert.vue +19 -23
  13. package/dist/src/components/App/OrigamApp.vue +9 -3
  14. package/dist/src/components/App/OrigamAppBar.vue +37 -19
  15. package/dist/src/components/Audio/OrigamAudio.vue +1536 -0
  16. package/dist/src/components/Audio/index.cjs +13 -0
  17. package/dist/src/components/Audio/index.d.ts +1 -0
  18. package/dist/src/components/Audio/index.js +1 -0
  19. package/dist/src/components/Avatar/OrigamAvatar.vue +14 -12
  20. package/dist/src/components/Avatar/OrigamAvatarGroup.vue +28 -10
  21. package/dist/src/components/Badge/OrigamBadge.vue +15 -5
  22. package/dist/src/components/Blockquote/OrigamBlockquote.vue +415 -0
  23. package/dist/src/components/Blockquote/index.cjs +13 -0
  24. package/dist/src/components/Blockquote/index.d.ts +1 -0
  25. package/dist/src/components/Blockquote/index.js +1 -0
  26. package/dist/src/components/BottomNav/OrigamBottomNav.vue +37 -6
  27. package/dist/src/components/Bracket/OrigamBracket.vue +430 -53
  28. package/dist/src/components/Bracket/OrigamBracketCompetitor.vue +190 -13
  29. package/dist/src/components/Bracket/OrigamBracketMatch.vue +197 -42
  30. package/dist/src/components/Bracket/OrigamBracketRound.vue +13 -3
  31. package/dist/src/components/Breadcrumb/OrigamBreadcrumb.vue +19 -15
  32. package/dist/src/components/Breadcrumb/OrigamBreadcrumbDivider.vue +5 -2
  33. package/dist/src/components/Breadcrumb/OrigamBreadcrumbItem.vue +6 -8
  34. package/dist/src/components/Btn/OrigamBtn.vue +75 -26
  35. package/dist/src/components/Btn/OrigamBtnGroup.vue +36 -9
  36. package/dist/src/components/Btn/OrigamBtnToggle.vue +6 -9
  37. package/dist/src/components/Calendar/OrigamCalendar.vue +1302 -0
  38. package/dist/src/components/Calendar/index.cjs +13 -0
  39. package/dist/src/components/Calendar/index.d.ts +1 -0
  40. package/dist/src/components/Calendar/index.js +1 -0
  41. package/dist/src/components/Card/OrigamCard.vue +26 -5
  42. package/dist/src/components/Card/OrigamCardHeader.vue +18 -4
  43. package/dist/src/components/Card/OrigamCardText.vue +29 -7
  44. package/dist/src/components/Carousel/OrigamCarousel.vue +35 -10
  45. package/dist/src/components/Carousel/OrigamCarouselItem.vue +4 -4
  46. package/dist/src/components/Chart/OrigamChart.vue +884 -0
  47. package/dist/src/components/Chart/OrigamChartAxis.vue +141 -0
  48. package/dist/src/components/Chart/OrigamChartBoxPlot.vue +898 -0
  49. package/dist/src/components/Chart/OrigamChartBullet.vue +840 -0
  50. package/dist/src/components/Chart/OrigamChartCandlestick.vue +749 -0
  51. package/dist/src/components/Chart/OrigamChartCartesian.vue +1454 -0
  52. package/dist/src/components/Chart/OrigamChartGauge.vue +406 -0
  53. package/dist/src/components/Chart/OrigamChartHeatmap.vue +701 -0
  54. package/dist/src/components/Chart/OrigamChartHoneycomb.vue +727 -0
  55. package/dist/src/components/Chart/OrigamChartLegend.vue +58 -0
  56. package/dist/src/components/Chart/OrigamChartMap.vue +742 -0
  57. package/dist/src/components/Chart/OrigamChartPareto.vue +953 -0
  58. package/dist/src/components/Chart/OrigamChartPictorial.vue +1027 -0
  59. package/dist/src/components/Chart/OrigamChartPolar.vue +742 -0
  60. package/dist/src/components/Chart/OrigamChartPolarBar.vue +723 -0
  61. package/dist/src/components/Chart/OrigamChartPyramid.vue +710 -0
  62. package/dist/src/components/Chart/OrigamChartRadar.vue +506 -0
  63. package/dist/src/components/Chart/OrigamChartRangeSelector.vue +121 -0
  64. package/dist/src/components/Chart/OrigamChartSankey.vue +947 -0
  65. package/dist/src/components/Chart/OrigamChartSparkline.vue +476 -0
  66. package/dist/src/components/Chart/OrigamChartStreamgraph.vue +876 -0
  67. package/dist/src/components/Chart/OrigamChartSunburst.vue +869 -0
  68. package/dist/src/components/Chart/OrigamChartTooltip.vue +55 -0
  69. package/dist/src/components/Chart/OrigamChartTreemap.vue +748 -0
  70. package/dist/src/components/Chart/OrigamChartVariwide.vue +819 -0
  71. package/dist/src/components/Chart/OrigamChartWordCloud.vue +672 -0
  72. package/dist/src/components/Chart/index.cjs +188 -0
  73. package/dist/src/components/Chart/index.d.ts +26 -0
  74. package/dist/src/components/Chart/index.js +26 -0
  75. package/dist/src/components/Checkbox/OrigamCheckbox.vue +20 -5
  76. package/dist/src/components/Checkbox/OrigamCheckboxBtn.vue +6 -4
  77. package/dist/src/components/Chip/OrigamChip.vue +31 -16
  78. package/dist/src/components/Chip/OrigamChipGroup.vue +20 -8
  79. package/dist/src/components/ClientOnly/OrigamClientOnly.vue +1 -1
  80. package/dist/src/components/Clipboard/OrigamClipboard.vue +203 -0
  81. package/dist/src/components/Clipboard/index.cjs +13 -0
  82. package/dist/src/components/Clipboard/index.d.ts +1 -0
  83. package/dist/src/components/Clipboard/index.js +1 -0
  84. package/dist/src/components/Code/OrigamCode.vue +212 -97
  85. package/dist/src/components/ColorPicker/OrigamColorPicker.vue +9 -3
  86. package/dist/src/components/ColorPicker/OrigamColorPickerCanvas.vue +77 -2
  87. package/dist/src/components/ColorPicker/OrigamColorPickerEdit.vue +2 -2
  88. package/dist/src/components/ColorPicker/OrigamColorPickerPreview.vue +1 -1
  89. package/dist/src/components/ColorPicker/OrigamColorPickerSwatches.vue +1 -1
  90. package/dist/src/components/ColorPickerField/OrigamColorPickerField.vue +16 -6
  91. package/dist/src/components/CommandPalette/OrigamCommandPalette.vue +35 -19
  92. package/dist/src/components/ConfirmWrapper/OrigamConfirmWrapper.vue +2 -2
  93. package/dist/src/components/ContextualMenu/OrigamContextualMenu.vue +9 -4
  94. package/dist/src/components/Counter/OrigamCounter.vue +3 -2
  95. package/dist/src/components/DataList/OrigamDataList.vue +23 -7
  96. package/dist/src/components/DataList/OrigamDataText.vue +7 -3
  97. package/dist/src/components/DataList/OrigamDataTitle.vue +7 -3
  98. package/dist/src/components/DataTable/OrigamDataTable.vue +23 -9
  99. package/dist/src/components/DataTable/OrigamDataTableColumnCell.vue +2 -1
  100. package/dist/src/components/DataTable/OrigamDataTableFooter.vue +2 -2
  101. package/dist/src/components/DataTable/OrigamDataTableGroupHeaderRow.vue +2 -2
  102. package/dist/src/components/DataTable/OrigamDataTableHeaderCell.vue +4 -2
  103. package/dist/src/components/DataTable/OrigamDataTableHeaders.vue +3 -2
  104. package/dist/src/components/DataTable/OrigamDataTableHeadersCell.vue +2 -2
  105. package/dist/src/components/DataTable/OrigamDataTableHeadersCellMobile.vue +3 -3
  106. package/dist/src/components/DataTable/OrigamDataTableRow.vue +10 -3
  107. package/dist/src/components/DataTable/OrigamDataTableRows.vue +8 -6
  108. package/dist/src/components/DatePicker/OrigamDatePicker.vue +15 -14
  109. package/dist/src/components/DatePicker/OrigamDatePickerControls.vue +2 -2
  110. package/dist/src/components/DatePicker/OrigamDatePickerHeader.vue +2 -2
  111. package/dist/src/components/DatePicker/OrigamDatePickerMonth.vue +9 -16
  112. package/dist/src/components/DatePicker/OrigamDatePickerMonths.vue +4 -4
  113. package/dist/src/components/DatePicker/OrigamDatePickerYears.vue +4 -4
  114. package/dist/src/components/DatePickerField/OrigamDatePickerField.vue +32 -21
  115. package/dist/src/components/DefaultsProvider/OrigamDefaultsProvider.vue +1 -1
  116. package/dist/src/components/Dialog/OrigamDialog.vue +13 -5
  117. package/dist/src/components/Dialog/OrigamDialogConfirmation.vue +3 -3
  118. package/dist/src/components/Divider/OrigamDivider.vue +4 -4
  119. package/dist/src/components/Drawer/OrigamDrawer.vue +15 -13
  120. package/dist/src/components/EmptyState/OrigamEmptyState.vue +241 -0
  121. package/dist/src/components/EmptyState/index.cjs +13 -0
  122. package/dist/src/components/EmptyState/index.d.ts +1 -0
  123. package/dist/src/components/EmptyState/index.js +1 -0
  124. package/dist/src/components/ExpansionPanel/OrigamExpansionPanel.vue +14 -4
  125. package/dist/src/components/ExpansionPanel/OrigamExpansionPanelContent.vue +8 -3
  126. package/dist/src/components/ExpansionPanel/OrigamExpansionPanelHeader.vue +17 -6
  127. package/dist/src/components/ExpansionPanel/OrigamExpansionPanels.vue +4 -3
  128. package/dist/src/components/Field/OrigamField.vue +28 -11
  129. package/dist/src/components/FileField/OrigamFileField.vue +10 -5
  130. package/dist/src/components/FileField/OrigamFileFieldDragNDropItem.vue +15 -5
  131. package/dist/src/components/FileField/OrigamFileFieldListItem.vue +15 -5
  132. package/dist/src/components/Form/OrigamForm.vue +10 -2
  133. package/dist/src/components/Grid/OrigamGrid.vue +197 -0
  134. package/dist/src/components/Grid/OrigamGridItem.vue +69 -0
  135. package/dist/src/components/Grid/index.cjs +20 -0
  136. package/dist/src/components/Grid/index.d.ts +2 -0
  137. package/dist/src/components/Grid/index.js +2 -0
  138. package/dist/src/components/Grids/OrigamCol.vue +3 -3
  139. package/dist/src/components/Grids/OrigamContainer.vue +1 -1
  140. package/dist/src/components/Grids/OrigamRow.vue +7 -3
  141. package/dist/src/components/Grids/OrigamSpacer.vue +1 -1
  142. package/dist/src/components/Icon/OrigamClassIcon.vue +15 -3
  143. package/dist/src/components/Icon/OrigamComponentIcon.vue +15 -3
  144. package/dist/src/components/Icon/OrigamIcon.vue +22 -3
  145. package/dist/src/components/Icon/OrigamLigatureIcon.vue +15 -3
  146. package/dist/src/components/Icon/OrigamSvgIcon.vue +17 -5
  147. package/dist/src/components/Img/OrigamImg.vue +12 -11
  148. package/dist/src/components/InfiniteScroll/OrigamInfiniteScroll.vue +16 -9
  149. package/dist/src/components/InfiniteScroll/OrigamInfiniteScrollIntersect.vue +3 -2
  150. package/dist/src/components/InlineEdit/OrigamInlineEdit.vue +486 -0
  151. package/dist/src/components/InlineEdit/index.cjs +13 -0
  152. package/dist/src/components/InlineEdit/index.d.ts +1 -0
  153. package/dist/src/components/InlineEdit/index.js +1 -0
  154. package/dist/src/components/Input/OrigamInput.vue +19 -5
  155. package/dist/src/components/ItemGroup/OrigamItem.vue +1 -1
  156. package/dist/src/components/ItemGroup/OrigamItemGroup.vue +1 -1
  157. package/dist/src/components/Kbd/OrigamKbd.vue +20 -10
  158. package/dist/src/components/Label/OrigamLabel.vue +16 -5
  159. package/dist/src/components/Layout/OrigamLayout.vue +74 -5
  160. package/dist/src/components/Lazy/OrigamLazy.vue +2 -1
  161. package/dist/src/components/List/OrigamList.vue +4 -3
  162. package/dist/src/components/List/OrigamListChildren.vue +1 -1
  163. package/dist/src/components/List/OrigamListGroup.vue +6 -3
  164. package/dist/src/components/List/OrigamListGroupActivator.vue +1 -1
  165. package/dist/src/components/List/OrigamListItem.vue +16 -5
  166. package/dist/src/components/List/OrigamListSubheader.vue +15 -5
  167. package/dist/src/components/Loader/OrigamLoader.vue +4 -2
  168. package/dist/src/components/Main/OrigamMain.vue +13 -3
  169. package/dist/src/components/Masonry/OrigamMasonry.vue +277 -0
  170. package/dist/src/components/Masonry/index.cjs +13 -0
  171. package/dist/src/components/Masonry/index.d.ts +1 -0
  172. package/dist/src/components/Masonry/index.js +1 -0
  173. package/dist/src/components/Media/OrigamMediaController.vue +529 -0
  174. package/dist/src/components/Media/OrigamMediaScrubber.vue +442 -0
  175. package/dist/src/components/Media/OrigamMediaVolumeControl.vue +152 -0
  176. package/dist/src/components/Media/index.cjs +27 -0
  177. package/dist/src/components/Media/index.d.ts +3 -0
  178. package/dist/src/components/Media/index.js +3 -0
  179. package/dist/src/components/Menu/OrigamMenu.vue +32 -7
  180. package/dist/src/components/Messages/OrigamMessages.vue +15 -6
  181. package/dist/src/components/NumberField/OrigamNumberField.vue +86 -46
  182. package/dist/src/components/NumberFormat/OrigamNumberFormat.vue +97 -0
  183. package/dist/src/components/NumberFormat/index.cjs +13 -0
  184. package/dist/src/components/NumberFormat/index.d.ts +1 -0
  185. package/dist/src/components/NumberFormat/index.js +1 -0
  186. package/dist/src/components/OtpInputField/OrigamOtpInputField.vue +119 -23
  187. package/dist/src/components/Overlay/OrigamOverlay.vue +2 -2
  188. package/dist/src/components/Overlay/OrigamOverlayScrim.vue +3 -2
  189. package/dist/src/components/Pagination/OrigamPagination.vue +20 -14
  190. package/dist/src/components/Parallax/OrigamParallax.vue +38 -3
  191. package/dist/src/components/Parallax/OrigamParallaxElement.vue +1 -1
  192. package/dist/src/components/Parallax/OrigamParallaxLayer.vue +2 -2
  193. package/dist/src/components/PasswordField/OrigamPasswordField.vue +15 -8
  194. package/dist/src/components/Picker/OrigamPicker.vue +12 -7
  195. package/dist/src/components/Picker/OrigamPickerTitle.vue +11 -4
  196. package/dist/src/components/Progress/OrigamProgress.vue +7 -2
  197. package/dist/src/components/Progress/OrigamProgressCircular.vue +11 -2
  198. package/dist/src/components/Progress/OrigamProgressLinear.vue +18 -7
  199. package/dist/src/components/QrCode/OrigamQrCode.vue +246 -0
  200. package/dist/src/components/QrCode/index.cjs +13 -0
  201. package/dist/src/components/QrCode/index.d.ts +1 -0
  202. package/dist/src/components/QrCode/index.js +1 -0
  203. package/dist/src/components/Radio/OrigamRadio.vue +22 -13
  204. package/dist/src/components/Radio/OrigamRadioBtn.vue +6 -4
  205. package/dist/src/components/Radio/OrigamRadioGroup.vue +50 -43
  206. package/dist/src/components/RatingField/OrigamRatingField.vue +29 -33
  207. package/dist/src/components/RatingField/OrigamRatingFieldItem.vue +4 -7
  208. package/dist/src/components/Responsive/OrigamResponsive.vue +1 -1
  209. package/dist/src/components/Section/OrigamSection.vue +1 -1
  210. package/dist/src/components/Select/OrigamSelect.vue +64 -21
  211. package/dist/src/components/SelectionControl/OrigamSelectionControl.vue +18 -8
  212. package/dist/src/components/SelectionControl/OrigamSelectionControlGroup.vue +4 -3
  213. package/dist/src/components/Sheet/OrigamSheet.vue +14 -6
  214. package/dist/src/components/Skeleton/OrigamSkeleton.vue +11 -6
  215. package/dist/src/components/Slide/OrigamSlideGroup.vue +1 -1
  216. package/dist/src/components/SliderField/OrigamSliderField.vue +1067 -331
  217. package/dist/src/components/SliderField/OrigamSliderFieldTrack.vue +34 -46
  218. package/dist/src/components/SliderField/index.cjs +0 -7
  219. package/dist/src/components/SliderField/index.d.ts +0 -1
  220. package/dist/src/components/SliderField/index.js +0 -1
  221. package/dist/src/components/Snackbar/OrigamSnackbar.vue +260 -269
  222. package/dist/src/components/Snackbar/OrigamSnackbarGroup.vue +238 -0
  223. package/dist/src/components/Snackbar/OrigamSnackbarItem.vue +271 -0
  224. package/dist/src/components/Snackbar/index.cjs +14 -0
  225. package/dist/src/components/Snackbar/index.d.ts +2 -0
  226. package/dist/src/components/Snackbar/index.js +2 -0
  227. package/dist/src/components/Stepper/OrigamStepper.vue +72 -9
  228. package/dist/src/components/Stepper/OrigamStepperItem.vue +10 -3
  229. package/dist/src/components/Switch/OrigamSwitch.vue +162 -47
  230. package/dist/src/components/Switch/OrigamSwitchTrack.vue +21 -16
  231. package/dist/src/components/SystemBar/OrigamSystemBar.vue +16 -6
  232. package/dist/src/components/Table/OrigamTable.vue +49 -4
  233. package/dist/src/components/Tabs/OrigamTab.vue +13 -3
  234. package/dist/src/components/Tabs/OrigamTabPanel.vue +1 -1
  235. package/dist/src/components/Tabs/OrigamTabPanels.vue +1 -1
  236. package/dist/src/components/Tabs/OrigamTabs.vue +3 -3
  237. package/dist/src/components/TextField/OrigamTextField.vue +12 -3
  238. package/dist/src/components/TextMask/OrigamTextMask.vue +147 -0
  239. package/dist/src/components/TextMask/index.cjs +13 -0
  240. package/dist/src/components/TextMask/index.d.ts +1 -0
  241. package/dist/src/components/TextMask/index.js +1 -0
  242. package/dist/src/components/TextareaField/OrigamRichToolbar.vue +15 -11
  243. package/dist/src/components/TextareaField/OrigamTextareaField.vue +15 -3
  244. package/dist/src/components/ThemeProvider/OrigamThemeProvider.vue +4 -1
  245. package/dist/src/components/Timeline/OrigamTimeline.vue +4 -4
  246. package/dist/src/components/Timeline/OrigamTimelineItem.vue +4 -2
  247. package/dist/src/components/Title/OrigamTitle.vue +22 -10
  248. package/dist/src/components/Toolbar/OrigamToolbar.vue +19 -7
  249. package/dist/src/components/Tooltip/OrigamTooltip.vue +13 -4
  250. package/dist/src/components/Transition/OrigamExpandX.vue +1 -1
  251. package/dist/src/components/Transition/OrigamExpandY.vue +1 -1
  252. package/dist/src/components/Transition/OrigamFade.vue +1 -1
  253. package/dist/src/components/Transition/OrigamReverseTranslatePicker.vue +1 -1
  254. package/dist/src/components/Transition/OrigamScaleRotate.vue +1 -1
  255. package/dist/src/components/Transition/OrigamSlideX.vue +1 -1
  256. package/dist/src/components/Transition/OrigamSlideY.vue +1 -1
  257. package/dist/src/components/Transition/OrigamSnack.vue +1 -1
  258. package/dist/src/components/Transition/OrigamTransition.vue +1 -1
  259. package/dist/src/components/Transition/OrigamTranslateBottom.vue +1 -1
  260. package/dist/src/components/Transition/OrigamTranslatePicker.vue +1 -1
  261. package/dist/src/components/Transition/OrigamTranslateScale.vue +1 -1
  262. package/dist/src/components/Transition/OrigamWindowXReverseTranslate.vue +1 -1
  263. package/dist/src/components/Transition/OrigamWindowXTranslate.vue +1 -1
  264. package/dist/src/components/Transition/OrigamWindowYReverseTranslate.vue +1 -1
  265. package/dist/src/components/Transition/OrigamWindowYTranslate.vue +1 -1
  266. package/dist/src/components/Treeview/OrigamTreeview.vue +3 -5
  267. package/dist/src/components/Treeview/OrigamTreeviewNode.vue +7 -5
  268. package/dist/src/components/Video/OrigamVideo.vue +1080 -0
  269. package/dist/src/components/Video/index.cjs +13 -0
  270. package/dist/src/components/Video/index.d.ts +1 -0
  271. package/dist/src/components/Video/index.js +1 -0
  272. package/dist/src/components/VirtualScroll/OrigamVirtualScroll.vue +1 -1
  273. package/dist/src/components/VirtualScroll/OrigamVirtualScrollItem.vue +1 -6
  274. package/dist/src/components/Watermark/OrigamWatermark.vue +187 -0
  275. package/dist/src/components/Watermark/index.cjs +13 -0
  276. package/dist/src/components/Watermark/index.d.ts +1 -0
  277. package/dist/src/components/Watermark/index.js +1 -0
  278. package/dist/src/components/Window/OrigamWindow.vue +32 -2
  279. package/dist/src/components/Window/OrigamWindowItem.vue +1 -1
  280. package/dist/src/components/index.cjs +165 -11
  281. package/dist/src/components/index.d.ts +15 -1
  282. package/dist/src/components/index.js +15 -1
  283. package/dist/src/composables/Audio/use-audio-player.composable.cjs +26 -0
  284. package/dist/src/composables/Audio/use-audio-player.composable.d.ts +29 -0
  285. package/dist/src/composables/Audio/use-audio-player.composable.js +17 -0
  286. package/dist/src/composables/Audio/use-waveform.composable.cjs +91 -0
  287. package/dist/src/composables/Audio/use-waveform.composable.d.ts +32 -0
  288. package/dist/src/composables/Audio/use-waveform.composable.js +81 -0
  289. package/dist/src/composables/Calendar/calendar.composable.cjs +184 -0
  290. package/dist/src/composables/Calendar/calendar.composable.d.ts +72 -0
  291. package/dist/src/composables/Calendar/calendar.composable.js +182 -0
  292. package/dist/src/composables/Chart/chart-gauge.composable.cjs +54 -0
  293. package/dist/src/composables/Chart/chart-gauge.composable.d.ts +21 -0
  294. package/dist/src/composables/Chart/chart-gauge.composable.js +47 -0
  295. package/dist/src/composables/Chart/chart-header-typography.composable.cjs +20 -0
  296. package/dist/src/composables/Chart/chart-header-typography.composable.d.ts +27 -0
  297. package/dist/src/composables/Chart/chart-header-typography.composable.js +11 -0
  298. package/dist/src/composables/Chart/chart-zoom.composable.cjs +92 -0
  299. package/dist/src/composables/Chart/chart-zoom.composable.d.ts +34 -0
  300. package/dist/src/composables/Chart/chart-zoom.composable.js +86 -0
  301. package/dist/src/composables/Chart/chart.composable.cjs +882 -0
  302. package/dist/src/composables/Chart/chart.composable.d.ts +97 -0
  303. package/dist/src/composables/Chart/chart.composable.js +818 -0
  304. package/dist/src/composables/Clipboard/clipboard.composable.cjs +78 -0
  305. package/dist/src/composables/Clipboard/clipboard.composable.d.ts +21 -0
  306. package/dist/src/composables/Clipboard/clipboard.composable.js +79 -0
  307. package/dist/src/composables/Code/code.composable.cjs +21 -17
  308. package/dist/src/composables/Code/code.composable.js +17 -10
  309. package/dist/src/composables/Commons/audio.composable.d.ts +11 -11
  310. package/dist/src/composables/Commons/border.composable.cjs +10 -0
  311. package/dist/src/composables/Commons/border.composable.js +7 -0
  312. package/dist/src/composables/Commons/color.composable.cjs +70 -35
  313. package/dist/src/composables/Commons/color.composable.d.ts +8 -3
  314. package/dist/src/composables/Commons/color.composable.js +48 -13
  315. package/dist/src/composables/Commons/{calendar.composable.cjs → date-picker-calendar.composable.cjs} +3 -3
  316. package/dist/src/composables/Commons/{calendar.composable.d.ts → date-picker-calendar.composable.d.ts} +3 -3
  317. package/dist/src/composables/Commons/{calendar.composable.js → date-picker-calendar.composable.js} +2 -2
  318. package/dist/src/composables/Commons/defaults.composable.cjs +10 -9
  319. package/dist/src/composables/Commons/defaults.composable.js +10 -9
  320. package/dist/src/composables/Commons/delay.composable.cjs +8 -3
  321. package/dist/src/composables/Commons/delay.composable.js +7 -4
  322. package/dist/src/composables/Commons/density.composable.cjs +1 -1
  323. package/dist/src/composables/Commons/density.composable.js +2 -2
  324. package/dist/src/composables/Commons/dragResizer.composable.cjs +7 -9
  325. package/dist/src/composables/Commons/dragResizer.composable.js +8 -9
  326. package/dist/src/composables/Commons/elevation.composable.cjs +4 -5
  327. package/dist/src/composables/Commons/elevation.composable.js +1 -18
  328. package/dist/src/composables/Commons/focus.composable.cjs +1 -1
  329. package/dist/src/composables/Commons/focus.composable.js +1 -1
  330. package/dist/src/composables/Commons/layout.composable.cjs +12 -0
  331. package/dist/src/composables/Commons/layout.composable.js +14 -0
  332. package/dist/src/composables/Commons/message.composable.cjs +1 -1
  333. package/dist/src/composables/Commons/message.composable.d.ts +1 -1
  334. package/dist/src/composables/Commons/message.composable.js +1 -1
  335. package/dist/src/composables/Commons/rounded.composable.cjs +15 -4
  336. package/dist/src/composables/Commons/rounded.composable.d.ts +1 -1
  337. package/dist/src/composables/Commons/rounded.composable.js +17 -6
  338. package/dist/src/composables/Commons/scroll.composable.cjs +2 -2
  339. package/dist/src/composables/Commons/scroll.composable.js +2 -2
  340. package/dist/src/composables/Commons/stateEffect.composable.cjs +36 -14
  341. package/dist/src/composables/Commons/stateEffect.composable.js +38 -14
  342. package/dist/src/composables/Commons/status.composable.cjs +11 -1
  343. package/dist/src/composables/Commons/status.composable.d.ts +2 -0
  344. package/dist/src/composables/Commons/status.composable.js +10 -1
  345. package/dist/src/composables/Commons/sticky.composable.d.ts +2 -14
  346. package/dist/src/composables/Commons/style.composable.cjs +5 -3
  347. package/dist/src/composables/Commons/style.composable.js +5 -3
  348. package/dist/src/composables/Commons/typography.composable.cjs +23 -0
  349. package/dist/src/composables/Commons/typography.composable.d.ts +7 -0
  350. package/dist/src/composables/Commons/typography.composable.js +21 -0
  351. package/dist/src/composables/CssSupport/cssSupport.composable.cjs +5 -26
  352. package/dist/src/composables/CssSupport/cssSupport.composable.d.ts +1 -23
  353. package/dist/src/composables/CssSupport/cssSupport.composable.js +1 -22
  354. package/dist/src/composables/DataTable/headers.composable.d.ts +4 -364
  355. package/dist/src/composables/Icon/icon.composable.cjs +6 -1
  356. package/dist/src/composables/Icon/icon.composable.js +4 -1
  357. package/dist/src/composables/InlineEdit/inline-edit.composable.cjs +101 -0
  358. package/dist/src/composables/InlineEdit/inline-edit.composable.d.ts +36 -0
  359. package/dist/src/composables/InlineEdit/inline-edit.composable.js +100 -0
  360. package/dist/src/composables/Masonry/masonry.composable.cjs +160 -0
  361. package/dist/src/composables/Masonry/masonry.composable.d.ts +133 -0
  362. package/dist/src/composables/Masonry/masonry.composable.js +160 -0
  363. package/dist/src/composables/Media/use-media-player.composable.cjs +286 -0
  364. package/dist/src/composables/Media/use-media-player.composable.d.ts +43 -0
  365. package/dist/src/composables/Media/use-media-player.composable.js +289 -0
  366. package/dist/src/composables/NumberFormat/number-format.composable.cjs +165 -0
  367. package/dist/src/composables/NumberFormat/number-format.composable.d.ts +33 -0
  368. package/dist/src/composables/NumberFormat/number-format.composable.js +146 -0
  369. package/dist/src/composables/QrCode/qr-code.composable.cjs +111 -0
  370. package/dist/src/composables/QrCode/qr-code.composable.d.ts +31 -0
  371. package/dist/src/composables/QrCode/qr-code.composable.js +120 -0
  372. package/dist/src/composables/Responsive/aspect.composable.cjs +9 -1
  373. package/dist/src/composables/Responsive/aspect.composable.d.ts +1 -1
  374. package/dist/src/composables/Responsive/aspect.composable.js +9 -1
  375. package/dist/src/composables/Sheet/sheetSwipe.composable.cjs +5 -5
  376. package/dist/src/composables/Sheet/sheetSwipe.composable.d.ts +1 -1
  377. package/dist/src/composables/Sheet/sheetSwipe.composable.js +3 -3
  378. package/dist/src/composables/SliderField/slider-field.composable.cjs +0 -213
  379. package/dist/src/composables/SliderField/slider-field.composable.d.ts +11 -5
  380. package/dist/src/composables/SliderField/slider-field.composable.js +2 -191
  381. package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.cjs → Snackbar/snackbar-group.composable.cjs} +10 -10
  382. package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.d.ts → Snackbar/snackbar-group.composable.d.ts} +14 -14
  383. package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.js → Snackbar/snackbar-group.composable.js} +9 -9
  384. package/dist/src/composables/Theme/installed-themes.composable.cjs +11 -0
  385. package/dist/src/composables/Theme/installed-themes.composable.d.ts +19 -0
  386. package/dist/src/composables/Theme/installed-themes.composable.js +5 -0
  387. package/dist/src/composables/Theme/theme.composable.cjs +91 -21
  388. package/dist/src/composables/Theme/theme.composable.d.ts +55 -10
  389. package/dist/src/composables/Theme/theme.composable.js +88 -18
  390. package/dist/src/composables/Video/video-player.composable.cjs +129 -0
  391. package/dist/src/composables/Video/video-player.composable.d.ts +44 -0
  392. package/dist/src/composables/Video/video-player.composable.js +128 -0
  393. package/dist/src/composables/Watermark/watermark.composable.cjs +147 -0
  394. package/dist/src/composables/Watermark/watermark.composable.d.ts +28 -0
  395. package/dist/src/composables/Watermark/watermark.composable.js +158 -0
  396. package/dist/src/composables/index.cjs +273 -8
  397. package/dist/src/composables/index.d.ts +17 -2
  398. package/dist/src/composables/index.js +17 -2
  399. package/dist/src/consts/Audio/audio.const.cjs +25 -0
  400. package/dist/src/consts/Audio/audio.const.d.ts +30 -0
  401. package/dist/src/consts/Audio/audio.const.js +19 -0
  402. package/dist/src/consts/Blockquote/blockquote.const.cjs +32 -0
  403. package/dist/src/consts/Blockquote/blockquote.const.d.ts +37 -0
  404. package/dist/src/consts/Blockquote/blockquote.const.js +30 -0
  405. package/dist/src/consts/Bracket/bracket.const.cjs +4 -2
  406. package/dist/src/consts/Bracket/bracket.const.d.ts +12 -0
  407. package/dist/src/consts/Bracket/bracket.const.js +2 -0
  408. package/dist/src/consts/Chart/chart.const.cjs +26 -0
  409. package/dist/src/consts/Chart/chart.const.d.ts +32 -0
  410. package/dist/src/consts/Chart/chart.const.js +9 -0
  411. package/dist/src/consts/Chart/country-centroids.const.cjs +43 -0
  412. package/dist/src/consts/Chart/country-centroids.const.d.ts +10 -0
  413. package/dist/src/consts/Chart/country-centroids.const.js +37 -0
  414. package/dist/src/consts/Chart/pictorial-icons.const.cjs +12 -0
  415. package/dist/src/consts/Chart/pictorial-icons.const.d.ts +18 -0
  416. package/dist/src/consts/Chart/pictorial-icons.const.js +6 -0
  417. package/dist/src/consts/Chart/world-geographic.const.cjs +152 -0
  418. package/dist/src/consts/Chart/world-geographic.const.d.ts +22 -0
  419. package/dist/src/consts/Chart/world-geographic.const.js +1722 -0
  420. package/dist/src/consts/Chart/world-map.const.cjs +43 -0
  421. package/dist/src/consts/Chart/world-map.const.d.ts +14 -0
  422. package/dist/src/consts/Chart/world-map.const.js +37 -0
  423. package/dist/src/consts/Clipboard/clipboard.const.cjs +7 -0
  424. package/dist/src/consts/Clipboard/clipboard.const.d.ts +6 -0
  425. package/dist/src/consts/Clipboard/clipboard.const.js +1 -0
  426. package/dist/src/consts/Code/code.const.cjs +3 -6
  427. package/dist/src/consts/Code/code.const.d.ts +8 -12
  428. package/dist/src/consts/Code/code.const.js +3 -6
  429. package/dist/src/consts/Commons/density.const.cjs +2 -2
  430. package/dist/src/consts/Commons/density.const.d.ts +1 -1
  431. package/dist/src/consts/Commons/density.const.js +1 -1
  432. package/dist/src/consts/Commons/elevation.const.cjs +8 -0
  433. package/dist/src/consts/Commons/elevation.const.d.ts +17 -0
  434. package/dist/src/consts/Commons/elevation.const.js +18 -0
  435. package/dist/src/consts/Commons/rounded.const.cjs +4 -2
  436. package/dist/src/consts/Commons/rounded.const.d.ts +22 -2
  437. package/dist/src/consts/Commons/rounded.const.js +3 -1
  438. package/dist/src/consts/CssSupport/css-support.const.cjs +29 -0
  439. package/dist/src/consts/CssSupport/css-support.const.d.ts +40 -0
  440. package/dist/src/consts/CssSupport/css-support.const.js +23 -0
  441. package/dist/src/consts/DataTable/select.const.cjs +3 -2
  442. package/dist/src/consts/DataTable/select.const.d.ts +2 -1
  443. package/dist/src/consts/DataTable/select.const.js +2 -1
  444. package/dist/src/consts/EmptyState/empty-state.const.cjs +32 -0
  445. package/dist/src/consts/EmptyState/empty-state.const.d.ts +29 -0
  446. package/dist/src/consts/EmptyState/empty-state.const.js +39 -0
  447. package/dist/src/consts/Grid/grid.const.cjs +28 -0
  448. package/dist/src/consts/Grid/grid.const.d.ts +49 -0
  449. package/dist/src/consts/Grid/grid.const.js +46 -0
  450. package/dist/src/consts/Icon/mdi.const.cjs +6 -1
  451. package/dist/src/consts/Icon/mdi.const.js +10 -2
  452. package/dist/src/consts/Masonry/masonry.const.cjs +14 -0
  453. package/dist/src/consts/Masonry/masonry.const.d.ts +27 -0
  454. package/dist/src/consts/Masonry/masonry.const.js +11 -0
  455. package/dist/src/consts/Media/media.const.cjs +8 -0
  456. package/dist/src/consts/Media/media.const.d.ts +14 -0
  457. package/dist/src/consts/Media/media.const.js +2 -0
  458. package/dist/src/consts/NumberFormat/number-format.const.cjs +9 -0
  459. package/dist/src/consts/NumberFormat/number-format.const.d.ts +19 -0
  460. package/dist/src/consts/NumberFormat/number-format.const.js +3 -0
  461. package/dist/src/consts/QrCode/qr-code.const.cjs +12 -0
  462. package/dist/src/consts/QrCode/qr-code.const.d.ts +33 -0
  463. package/dist/src/consts/QrCode/qr-code.const.js +6 -0
  464. package/dist/src/consts/Sheet/sheet-swipe.const.cjs +7 -0
  465. package/dist/src/consts/Sheet/sheet-swipe.const.d.ts +11 -0
  466. package/dist/src/consts/Sheet/sheet-swipe.const.js +1 -0
  467. package/dist/src/consts/Snackbar/snackbar-group.const.cjs +12 -0
  468. package/dist/src/consts/Snackbar/snackbar-group.const.d.ts +33 -0
  469. package/dist/src/consts/Snackbar/snackbar-group.const.js +18 -0
  470. package/dist/src/consts/Theme/theme.const.cjs +11 -1
  471. package/dist/src/consts/Theme/theme.const.d.ts +16 -0
  472. package/dist/src/consts/Theme/theme.const.js +10 -0
  473. package/dist/src/consts/Video/video.const.cjs +7 -0
  474. package/dist/src/consts/Video/video.const.d.ts +7 -0
  475. package/dist/src/consts/Video/video.const.js +1 -0
  476. package/dist/src/consts/Watermark/watermark.const.cjs +16 -0
  477. package/dist/src/consts/Watermark/watermark.const.d.ts +27 -0
  478. package/dist/src/consts/Watermark/watermark.const.js +10 -0
  479. package/dist/src/consts/index.cjs +188 -12
  480. package/dist/src/consts/index.d.ts +18 -2
  481. package/dist/src/consts/index.js +18 -2
  482. package/dist/src/directives/Contrast/contrast.directive.cjs +150 -0
  483. package/dist/src/directives/Contrast/contrast.directive.d.ts +5 -0
  484. package/dist/src/directives/Contrast/contrast.directive.js +131 -0
  485. package/dist/src/directives/index.cjs +7 -0
  486. package/dist/src/directives/index.d.ts +1 -0
  487. package/dist/src/directives/index.js +1 -0
  488. package/dist/src/enums/Audio/audio-loop-mode.enum.cjs +12 -0
  489. package/dist/src/enums/Audio/audio-loop-mode.enum.d.ts +17 -0
  490. package/dist/src/enums/Audio/audio-loop-mode.enum.js +6 -0
  491. package/dist/src/enums/Audio/audio-variant.enum.cjs +13 -0
  492. package/dist/src/enums/Audio/audio-variant.enum.d.ts +26 -0
  493. package/dist/src/enums/Audio/audio-variant.enum.js +7 -0
  494. package/dist/src/enums/Audio/cover-position.enum.cjs +11 -0
  495. package/dist/src/enums/Audio/cover-position.enum.d.ts +9 -0
  496. package/dist/src/enums/Audio/cover-position.enum.js +5 -0
  497. package/dist/src/enums/Blockquote/blockquote-lang.enum.cjs +14 -0
  498. package/dist/src/enums/Blockquote/blockquote-lang.enum.d.ts +7 -0
  499. package/dist/src/enums/Blockquote/blockquote-lang.enum.js +8 -0
  500. package/dist/src/enums/Blockquote/blockquote-variant.enum.cjs +14 -0
  501. package/dist/src/enums/Blockquote/blockquote-variant.enum.d.ts +7 -0
  502. package/dist/src/enums/Blockquote/blockquote-variant.enum.js +8 -0
  503. package/dist/src/enums/BottomNav/bottom-nav-position.enum.cjs +12 -0
  504. package/dist/src/enums/BottomNav/bottom-nav-position.enum.d.ts +10 -0
  505. package/dist/src/enums/BottomNav/bottom-nav-position.enum.js +6 -0
  506. package/dist/src/enums/Chart/chart-bullet-orientation.enum.cjs +11 -0
  507. package/dist/src/enums/Chart/chart-bullet-orientation.enum.d.ts +4 -0
  508. package/dist/src/enums/Chart/chart-bullet-orientation.enum.js +5 -0
  509. package/dist/src/enums/Chart/chart-cartesian-kind.enum.cjs +16 -0
  510. package/dist/src/enums/Chart/chart-cartesian-kind.enum.d.ts +14 -0
  511. package/dist/src/enums/Chart/chart-cartesian-kind.enum.js +10 -0
  512. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.cjs +11 -0
  513. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.d.ts +4 -0
  514. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.js +5 -0
  515. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.cjs +11 -0
  516. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.d.ts +4 -0
  517. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.js +5 -0
  518. package/dist/src/enums/Chart/chart-map-mode.enum.cjs +11 -0
  519. package/dist/src/enums/Chart/chart-map-mode.enum.d.ts +4 -0
  520. package/dist/src/enums/Chart/chart-map-mode.enum.js +5 -0
  521. package/dist/src/enums/Chart/chart-pictorial-direction.enum.cjs +11 -0
  522. package/dist/src/enums/Chart/chart-pictorial-direction.enum.d.ts +4 -0
  523. package/dist/src/enums/Chart/chart-pictorial-direction.enum.js +5 -0
  524. package/dist/src/enums/Chart/chart-pictorial-mode.enum.cjs +11 -0
  525. package/dist/src/enums/Chart/chart-pictorial-mode.enum.d.ts +4 -0
  526. package/dist/src/enums/Chart/chart-pictorial-mode.enum.js +5 -0
  527. package/dist/src/enums/Chart/chart-polar-kind.enum.cjs +11 -0
  528. package/dist/src/enums/Chart/chart-polar-kind.enum.d.ts +8 -0
  529. package/dist/src/enums/Chart/chart-polar-kind.enum.js +5 -0
  530. package/dist/src/enums/Chart/chart-pyramid-kind.enum.cjs +11 -0
  531. package/dist/src/enums/Chart/chart-pyramid-kind.enum.d.ts +4 -0
  532. package/dist/src/enums/Chart/chart-pyramid-kind.enum.js +5 -0
  533. package/dist/src/enums/Chart/chart-sparkline-kind.enum.cjs +13 -0
  534. package/dist/src/enums/Chart/chart-sparkline-kind.enum.d.ts +6 -0
  535. package/dist/src/enums/Chart/chart-sparkline-kind.enum.js +7 -0
  536. package/dist/src/enums/Chart/chart-stacking.enum.cjs +11 -0
  537. package/dist/src/enums/Chart/chart-stacking.enum.d.ts +14 -0
  538. package/dist/src/enums/Chart/chart-stacking.enum.js +5 -0
  539. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.cjs +13 -0
  540. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.d.ts +6 -0
  541. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.js +7 -0
  542. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.cjs +11 -0
  543. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.d.ts +9 -0
  544. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.js +5 -0
  545. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.cjs +12 -0
  546. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.d.ts +5 -0
  547. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.js +6 -0
  548. package/dist/src/enums/Chart/chart.enum.cjs +38 -0
  549. package/dist/src/enums/Chart/chart.enum.d.ts +31 -0
  550. package/dist/src/enums/Chart/chart.enum.js +32 -0
  551. package/dist/src/enums/EmptyState/empty-state-preset.enum.cjs +14 -0
  552. package/dist/src/enums/EmptyState/empty-state-preset.enum.d.ts +16 -0
  553. package/dist/src/enums/EmptyState/empty-state-preset.enum.js +8 -0
  554. package/dist/src/enums/InlineEdit/inline-edit-action.enum.cjs +12 -0
  555. package/dist/src/enums/InlineEdit/inline-edit-action.enum.d.ts +10 -0
  556. package/dist/src/enums/InlineEdit/inline-edit-action.enum.js +6 -0
  557. package/dist/src/enums/SliderField/slider-field-variant.enum.cjs +12 -0
  558. package/dist/src/enums/SliderField/slider-field-variant.enum.d.ts +21 -0
  559. package/dist/src/enums/SliderField/slider-field-variant.enum.js +6 -0
  560. package/dist/src/enums/Toolbar/toolbar.enum.cjs +1 -0
  561. package/dist/src/enums/Toolbar/toolbar.enum.d.ts +2 -1
  562. package/dist/src/enums/Toolbar/toolbar.enum.js +1 -0
  563. package/dist/src/enums/index.cjs +254 -1
  564. package/dist/src/enums/index.d.ts +24 -1
  565. package/dist/src/enums/index.js +24 -1
  566. package/dist/src/interfaces/Alert/alert.interface.d.ts +6 -3
  567. package/dist/src/interfaces/App/app-bar.interface.d.ts +23 -2
  568. package/dist/src/interfaces/App/app.interface.d.ts +24 -0
  569. package/dist/src/interfaces/Audio/audio-player.interface.d.ts +427 -0
  570. package/dist/src/interfaces/Avatar/avatar-group.interface.d.ts +5 -1
  571. package/dist/src/interfaces/Avatar/avatar.interface.d.ts +5 -4
  572. package/dist/src/interfaces/Badge/badge.interface.d.ts +2 -2
  573. package/dist/src/interfaces/Blockquote/blockquote.interface.d.ts +86 -0
  574. package/dist/src/interfaces/BottomNav/bottom-nav.interface.d.ts +16 -4
  575. package/dist/src/interfaces/Bracket/bracket-competitor-component.interface.d.ts +17 -6
  576. package/dist/src/interfaces/Bracket/bracket-match-component.interface.d.ts +13 -6
  577. package/dist/src/interfaces/Bracket/bracket-match.interface.d.ts +22 -0
  578. package/dist/src/interfaces/Bracket/bracket-round-component.interface.d.ts +2 -2
  579. package/dist/src/interfaces/Bracket/bracket.interface.d.ts +18 -10
  580. package/dist/src/interfaces/Breadcrumb/breadcrumb-divider.interface.d.ts +2 -2
  581. package/dist/src/interfaces/Breadcrumb/breadcrumb-item.interface.d.ts +4 -1
  582. package/dist/src/interfaces/Breadcrumb/breadcrumb.interface.d.ts +2 -3
  583. package/dist/src/interfaces/Btn/btn-group.interface.d.ts +2 -2
  584. package/dist/src/interfaces/Btn/btn-toggle.interface.d.ts +4 -1
  585. package/dist/src/interfaces/Btn/btn.interface.d.ts +15 -3
  586. package/dist/src/interfaces/Calendar/calendar.interface.d.ts +164 -0
  587. package/dist/src/interfaces/Calendar/event.interface.d.ts +54 -0
  588. package/dist/src/interfaces/Card/card-header.interface.d.ts +5 -2
  589. package/dist/src/interfaces/Card/card-text.interface.d.ts +2 -2
  590. package/dist/src/interfaces/Card/card.interface.d.ts +5 -1
  591. package/dist/src/interfaces/Carousel/carousel.interface.d.ts +5 -2
  592. package/dist/src/interfaces/Chart/chart-annotation.interface.d.ts +99 -0
  593. package/dist/src/interfaces/Chart/chart-axis.interface.d.ts +78 -0
  594. package/dist/src/interfaces/Chart/chart-base.interface.d.ts +88 -0
  595. package/dist/src/interfaces/Chart/chart-box-plot.interface.d.ts +203 -0
  596. package/dist/src/interfaces/Chart/chart-bullet.interface.d.ts +140 -0
  597. package/dist/src/interfaces/Chart/chart-candlestick.interface.d.ts +131 -0
  598. package/dist/src/interfaces/Chart/chart-cartesian.interface.cjs +1 -0
  599. package/dist/src/interfaces/Chart/chart-cartesian.interface.d.ts +124 -0
  600. package/dist/src/interfaces/Chart/chart-cartesian.interface.js +0 -0
  601. package/dist/src/interfaces/Chart/chart-drilldown.interface.cjs +1 -0
  602. package/dist/src/interfaces/Chart/chart-drilldown.interface.d.ts +60 -0
  603. package/dist/src/interfaces/Chart/chart-drilldown.interface.js +0 -0
  604. package/dist/src/interfaces/Chart/chart-gauge.interface.cjs +1 -0
  605. package/dist/src/interfaces/Chart/chart-gauge.interface.d.ts +130 -0
  606. package/dist/src/interfaces/Chart/chart-gauge.interface.js +0 -0
  607. package/dist/src/interfaces/Chart/chart-heatmap.interface.cjs +1 -0
  608. package/dist/src/interfaces/Chart/chart-heatmap.interface.d.ts +128 -0
  609. package/dist/src/interfaces/Chart/chart-heatmap.interface.js +0 -0
  610. package/dist/src/interfaces/Chart/chart-honeycomb.interface.cjs +1 -0
  611. package/dist/src/interfaces/Chart/chart-honeycomb.interface.d.ts +109 -0
  612. package/dist/src/interfaces/Chart/chart-honeycomb.interface.js +0 -0
  613. package/dist/src/interfaces/Chart/chart-legend.interface.cjs +1 -0
  614. package/dist/src/interfaces/Chart/chart-legend.interface.d.ts +48 -0
  615. package/dist/src/interfaces/Chart/chart-legend.interface.js +0 -0
  616. package/dist/src/interfaces/Chart/chart-map.interface.cjs +1 -0
  617. package/dist/src/interfaces/Chart/chart-map.interface.d.ts +137 -0
  618. package/dist/src/interfaces/Chart/chart-map.interface.js +0 -0
  619. package/dist/src/interfaces/Chart/chart-pareto.interface.cjs +1 -0
  620. package/dist/src/interfaces/Chart/chart-pareto.interface.d.ts +124 -0
  621. package/dist/src/interfaces/Chart/chart-pareto.interface.js +0 -0
  622. package/dist/src/interfaces/Chart/chart-pictorial.interface.cjs +1 -0
  623. package/dist/src/interfaces/Chart/chart-pictorial.interface.d.ts +114 -0
  624. package/dist/src/interfaces/Chart/chart-pictorial.interface.js +0 -0
  625. package/dist/src/interfaces/Chart/chart-plot-band.interface.cjs +1 -0
  626. package/dist/src/interfaces/Chart/chart-plot-band.interface.d.ts +34 -0
  627. package/dist/src/interfaces/Chart/chart-plot-band.interface.js +0 -0
  628. package/dist/src/interfaces/Chart/chart-plot-line.interface.cjs +1 -0
  629. package/dist/src/interfaces/Chart/chart-plot-line.interface.d.ts +39 -0
  630. package/dist/src/interfaces/Chart/chart-plot-line.interface.js +0 -0
  631. package/dist/src/interfaces/Chart/chart-point.interface.cjs +1 -0
  632. package/dist/src/interfaces/Chart/chart-point.interface.d.ts +20 -0
  633. package/dist/src/interfaces/Chart/chart-point.interface.js +0 -0
  634. package/dist/src/interfaces/Chart/chart-polar-bar.interface.cjs +1 -0
  635. package/dist/src/interfaces/Chart/chart-polar-bar.interface.d.ts +118 -0
  636. package/dist/src/interfaces/Chart/chart-polar-bar.interface.js +0 -0
  637. package/dist/src/interfaces/Chart/chart-polar.interface.cjs +1 -0
  638. package/dist/src/interfaces/Chart/chart-polar.interface.d.ts +43 -0
  639. package/dist/src/interfaces/Chart/chart-polar.interface.js +0 -0
  640. package/dist/src/interfaces/Chart/chart-pyramid.interface.cjs +1 -0
  641. package/dist/src/interfaces/Chart/chart-pyramid.interface.d.ts +96 -0
  642. package/dist/src/interfaces/Chart/chart-pyramid.interface.js +0 -0
  643. package/dist/src/interfaces/Chart/chart-radar.interface.cjs +1 -0
  644. package/dist/src/interfaces/Chart/chart-radar.interface.d.ts +10 -0
  645. package/dist/src/interfaces/Chart/chart-radar.interface.js +0 -0
  646. package/dist/src/interfaces/Chart/chart-range-selector.interface.cjs +1 -0
  647. package/dist/src/interfaces/Chart/chart-range-selector.interface.d.ts +38 -0
  648. package/dist/src/interfaces/Chart/chart-range-selector.interface.js +0 -0
  649. package/dist/src/interfaces/Chart/chart-sankey.interface.cjs +1 -0
  650. package/dist/src/interfaces/Chart/chart-sankey.interface.d.ts +124 -0
  651. package/dist/src/interfaces/Chart/chart-sankey.interface.js +0 -0
  652. package/dist/src/interfaces/Chart/chart-series.interface.cjs +1 -0
  653. package/dist/src/interfaces/Chart/chart-series.interface.d.ts +80 -0
  654. package/dist/src/interfaces/Chart/chart-series.interface.js +0 -0
  655. package/dist/src/interfaces/Chart/chart-sparkline.interface.cjs +1 -0
  656. package/dist/src/interfaces/Chart/chart-sparkline.interface.d.ts +108 -0
  657. package/dist/src/interfaces/Chart/chart-sparkline.interface.js +0 -0
  658. package/dist/src/interfaces/Chart/chart-streamgraph.interface.cjs +1 -0
  659. package/dist/src/interfaces/Chart/chart-streamgraph.interface.d.ts +82 -0
  660. package/dist/src/interfaces/Chart/chart-streamgraph.interface.js +0 -0
  661. package/dist/src/interfaces/Chart/chart-sunburst.interface.cjs +1 -0
  662. package/dist/src/interfaces/Chart/chart-sunburst.interface.d.ts +100 -0
  663. package/dist/src/interfaces/Chart/chart-sunburst.interface.js +0 -0
  664. package/dist/src/interfaces/Chart/chart-tooltip.interface.cjs +1 -0
  665. package/dist/src/interfaces/Chart/chart-tooltip.interface.d.ts +55 -0
  666. package/dist/src/interfaces/Chart/chart-tooltip.interface.js +0 -0
  667. package/dist/src/interfaces/Chart/chart-treemap.interface.cjs +1 -0
  668. package/dist/src/interfaces/Chart/chart-treemap.interface.d.ts +106 -0
  669. package/dist/src/interfaces/Chart/chart-treemap.interface.js +0 -0
  670. package/dist/src/interfaces/Chart/chart-variwide.interface.cjs +1 -0
  671. package/dist/src/interfaces/Chart/chart-variwide.interface.d.ts +132 -0
  672. package/dist/src/interfaces/Chart/chart-variwide.interface.js +0 -0
  673. package/dist/src/interfaces/Chart/chart-word-cloud.interface.cjs +1 -0
  674. package/dist/src/interfaces/Chart/chart-word-cloud.interface.d.ts +83 -0
  675. package/dist/src/interfaces/Chart/chart-word-cloud.interface.js +0 -0
  676. package/dist/src/interfaces/Chart/chart.interface.cjs +1 -0
  677. package/dist/src/interfaces/Chart/chart.interface.d.ts +287 -0
  678. package/dist/src/interfaces/Chart/chart.interface.js +0 -0
  679. package/dist/src/interfaces/Checkbox/checkbox-btn.interface.d.ts +3 -3
  680. package/dist/src/interfaces/Checkbox/checkbox.interface.d.ts +10 -9
  681. package/dist/src/interfaces/Chip/chip-group.interface.d.ts +6 -1
  682. package/dist/src/interfaces/Chip/chip.interface.d.ts +6 -2
  683. package/dist/src/interfaces/Clipboard/clipboard.interface.cjs +1 -0
  684. package/dist/src/interfaces/Clipboard/clipboard.interface.d.ts +106 -0
  685. package/dist/src/interfaces/Clipboard/clipboard.interface.js +0 -0
  686. package/dist/src/interfaces/Code/code.interface.d.ts +21 -14
  687. package/dist/src/interfaces/ColorPicker/color-picker-canvas.interface.d.ts +5 -1
  688. package/dist/src/interfaces/ColorPicker/color-picker-edit.interface.d.ts +5 -1
  689. package/dist/src/interfaces/ColorPicker/color-picker-preview.interface.d.ts +4 -1
  690. package/dist/src/interfaces/ColorPicker/color-picker-swatches.interface.d.ts +5 -1
  691. package/dist/src/interfaces/ColorPicker/color-picker.interface.d.ts +18 -2
  692. package/dist/src/interfaces/ColorPickerField/color-picker-field.interface.d.ts +2 -2
  693. package/dist/src/interfaces/CommandPalette/command-palette.interface.d.ts +2 -1
  694. package/dist/src/interfaces/Commons/audio.interface.d.ts +7 -1
  695. package/dist/src/interfaces/Commons/calendar.interface.d.ts +3 -3
  696. package/dist/src/interfaces/Commons/clickOutside.interface.d.ts +5 -0
  697. package/dist/src/interfaces/Commons/commons.interface.d.ts +52 -1
  698. package/dist/src/interfaces/Commons/filters.interface.d.ts +2 -2
  699. package/dist/src/interfaces/Commons/gradient.interface.cjs +1 -0
  700. package/dist/src/interfaces/Commons/gradient.interface.d.ts +39 -0
  701. package/dist/src/interfaces/Commons/gradient.interface.js +0 -0
  702. package/dist/src/interfaces/Commons/group.interface.d.ts +6 -0
  703. package/dist/src/interfaces/Commons/hover.interface.d.ts +22 -3
  704. package/dist/src/interfaces/Commons/layout.interface.d.ts +2 -2
  705. package/dist/src/interfaces/Commons/lazy.interface.d.ts +5 -1
  706. package/dist/src/interfaces/Commons/scroll.interface.d.ts +8 -1
  707. package/dist/src/interfaces/Commons/typography.interface.cjs +1 -0
  708. package/dist/src/interfaces/Commons/typography.interface.d.ts +52 -0
  709. package/dist/src/interfaces/Commons/typography.interface.js +0 -0
  710. package/dist/src/interfaces/Commons/validation.interface.d.ts +3 -1
  711. package/dist/src/interfaces/Counter/counter.interface.d.ts +2 -2
  712. package/dist/src/interfaces/DataList/data-list.interface.d.ts +2 -2
  713. package/dist/src/interfaces/DataList/data-text.interface.d.ts +5 -0
  714. package/dist/src/interfaces/DataList/data-title.interface.d.ts +5 -0
  715. package/dist/src/interfaces/DataTable/data-table.interface.d.ts +12 -1
  716. package/dist/src/interfaces/DataTable/headers.interface.d.ts +10 -5
  717. package/dist/src/interfaces/DataTable/row.interface.d.ts +11 -0
  718. package/dist/src/interfaces/DatePicker/date-picker-controls.interface.d.ts +19 -2
  719. package/dist/src/interfaces/DatePicker/date-picker-header.interface.d.ts +6 -0
  720. package/dist/src/interfaces/DatePicker/date-picker-months.interface.d.ts +6 -2
  721. package/dist/src/interfaces/DatePicker/date-picker-years.interface.d.ts +5 -1
  722. package/dist/src/interfaces/DatePicker/date-picker.interface.d.ts +10 -2
  723. package/dist/src/interfaces/DatePickerField/date-picker-field.interface.d.ts +2 -2
  724. package/dist/src/interfaces/Dialog/dialog-confirmation.interface.d.ts +5 -0
  725. package/dist/src/interfaces/Dialog/dialog.interface.d.ts +8 -1
  726. package/dist/src/interfaces/Drawer/drawer.interface.d.ts +4 -0
  727. package/dist/src/interfaces/EmptyState/empty-state.interface.cjs +1 -0
  728. package/dist/src/interfaces/EmptyState/empty-state.interface.d.ts +107 -0
  729. package/dist/src/interfaces/EmptyState/empty-state.interface.js +0 -0
  730. package/dist/src/interfaces/ExpensionPanel/expansion-panel-header.interface.d.ts +5 -2
  731. package/dist/src/interfaces/ExpensionPanel/expansion-panel.interface.d.ts +4 -1
  732. package/dist/src/interfaces/ExpensionPanel/expansion-panels.interface.d.ts +4 -1
  733. package/dist/src/interfaces/Field/field.interface.d.ts +7 -2
  734. package/dist/src/interfaces/FileField/file-field-dragndrop-item.interface.d.ts +2 -3
  735. package/dist/src/interfaces/FileField/file-field-list-item.interface.d.ts +2 -3
  736. package/dist/src/interfaces/FileField/file-field.interface.d.ts +1 -1
  737. package/dist/src/interfaces/Form/form.interface.d.ts +2 -2
  738. package/dist/src/interfaces/Grid/grid-item.interface.cjs +1 -0
  739. package/dist/src/interfaces/Grid/grid-item.interface.d.ts +55 -0
  740. package/dist/src/interfaces/Grid/grid-item.interface.js +0 -0
  741. package/dist/src/interfaces/Grid/grid.interface.cjs +1 -0
  742. package/dist/src/interfaces/Grid/grid.interface.d.ts +121 -0
  743. package/dist/src/interfaces/Grid/grid.interface.js +0 -0
  744. package/dist/src/interfaces/Grids/row.interface.d.ts +2 -2
  745. package/dist/src/interfaces/Icon/icon.interface.d.ts +2 -2
  746. package/dist/src/interfaces/Img/img.interface.d.ts +14 -0
  747. package/dist/src/interfaces/InfiniteScroll/infinite-scroll.interface.d.ts +18 -2
  748. package/dist/src/interfaces/InlineEdit/inline-edit.interface.cjs +1 -0
  749. package/dist/src/interfaces/InlineEdit/inline-edit.interface.d.ts +270 -0
  750. package/dist/src/interfaces/InlineEdit/inline-edit.interface.js +0 -0
  751. package/dist/src/interfaces/Input/input.interface.d.ts +4 -3
  752. package/dist/src/interfaces/ItemGroup/item-group.interface.d.ts +4 -1
  753. package/dist/src/interfaces/Kbd/kbd.interface.d.ts +2 -2
  754. package/dist/src/interfaces/Label/label.interface.d.ts +2 -2
  755. package/dist/src/interfaces/List/list-group.interface.d.ts +8 -0
  756. package/dist/src/interfaces/List/list-item.interface.d.ts +5 -2
  757. package/dist/src/interfaces/List/list-subheader.interface.d.ts +2 -2
  758. package/dist/src/interfaces/List/list.interface.d.ts +16 -0
  759. package/dist/src/interfaces/Main/main.interface.d.ts +2 -2
  760. package/dist/src/interfaces/Masonry/masonry.interface.cjs +1 -0
  761. package/dist/src/interfaces/Masonry/masonry.interface.d.ts +80 -0
  762. package/dist/src/interfaces/Masonry/masonry.interface.js +0 -0
  763. package/dist/src/interfaces/Media/index.cjs +49 -0
  764. package/dist/src/interfaces/Media/index.d.ts +4 -0
  765. package/dist/src/interfaces/Media/index.js +4 -0
  766. package/dist/src/interfaces/Media/media-controller.interface.cjs +1 -0
  767. package/dist/src/interfaces/Media/media-controller.interface.d.ts +159 -0
  768. package/dist/src/interfaces/Media/media-controller.interface.js +0 -0
  769. package/dist/src/interfaces/Media/media-player.interface.cjs +1 -0
  770. package/dist/src/interfaces/Media/media-player.interface.d.ts +121 -0
  771. package/dist/src/interfaces/Media/media-player.interface.js +0 -0
  772. package/dist/src/interfaces/Media/media-scrubber.interface.cjs +1 -0
  773. package/dist/src/interfaces/Media/media-scrubber.interface.d.ts +137 -0
  774. package/dist/src/interfaces/Media/media-scrubber.interface.js +0 -0
  775. package/dist/src/interfaces/Media/media-volume-control.interface.cjs +1 -0
  776. package/dist/src/interfaces/Media/media-volume-control.interface.d.ts +68 -0
  777. package/dist/src/interfaces/Media/media-volume-control.interface.js +0 -0
  778. package/dist/src/interfaces/Menu/menu.interface.d.ts +7 -1
  779. package/dist/src/interfaces/Messages/messages.interface.d.ts +2 -2
  780. package/dist/src/interfaces/NumberField/number-field.interface.d.ts +3 -3
  781. package/dist/src/interfaces/NumberFormat/number-format.interface.cjs +1 -0
  782. package/dist/src/interfaces/NumberFormat/number-format.interface.d.ts +161 -0
  783. package/dist/src/interfaces/NumberFormat/number-format.interface.js +0 -0
  784. package/dist/src/interfaces/Nuxt/nuxt-module.interface.d.ts +55 -15
  785. package/dist/src/interfaces/OtpInputField/otp-input-field.interface.d.ts +6 -4
  786. package/dist/src/interfaces/Overlay/overlay-scrim.interface.d.ts +8 -1
  787. package/dist/src/interfaces/Overlay/overlay.interface.d.ts +8 -1
  788. package/dist/src/interfaces/Pagination/pagination.interface.d.ts +26 -3
  789. package/dist/src/interfaces/Parallax/parallax.interface.d.ts +2 -2
  790. package/dist/src/interfaces/PasswordField/password-field.interface.d.ts +3 -3
  791. package/dist/src/interfaces/Picker/picker-title.interface.d.ts +2 -2
  792. package/dist/src/interfaces/Picker/picker.interface.d.ts +2 -2
  793. package/dist/src/interfaces/Progress/progress.interface.d.ts +8 -2
  794. package/dist/src/interfaces/QrCode/qr-code-logo.interface.cjs +1 -0
  795. package/dist/src/interfaces/QrCode/qr-code-logo.interface.d.ts +47 -0
  796. package/dist/src/interfaces/QrCode/qr-code-logo.interface.js +0 -0
  797. package/dist/src/interfaces/QrCode/qr-code.interface.cjs +1 -0
  798. package/dist/src/interfaces/QrCode/qr-code.interface.d.ts +152 -0
  799. package/dist/src/interfaces/QrCode/qr-code.interface.js +0 -0
  800. package/dist/src/interfaces/Radio/radio-btn.interface.d.ts +4 -1
  801. package/dist/src/interfaces/Radio/radio.interface.d.ts +4 -1
  802. package/dist/src/interfaces/RatingField/rating-field-item.interface.d.ts +9 -2
  803. package/dist/src/interfaces/RatingField/rating-field.interface.d.ts +5 -2
  804. package/dist/src/interfaces/Select/select.interface.d.ts +9 -1
  805. package/dist/src/interfaces/SelectionControl/selection-control-group.interface.d.ts +2 -1
  806. package/dist/src/interfaces/SelectionControl/selection-control.interface.d.ts +23 -5
  807. package/dist/src/interfaces/Sheet/sheet.interface.d.ts +2 -2
  808. package/dist/src/interfaces/Slide/slide-group.interface.d.ts +4 -1
  809. package/dist/src/interfaces/SliderField/slider-field-track.interface.d.ts +17 -0
  810. package/dist/src/interfaces/SliderField/slider-field.interface.d.ts +77 -59
  811. package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.cjs +1 -0
  812. package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.d.ts → Snackbar/snackbar-group-item.interface.d.ts} +5 -5
  813. package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.js +0 -0
  814. package/dist/src/interfaces/Snackbar/snackbar-group.interface.cjs +1 -0
  815. package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.d.ts → Snackbar/snackbar-group.interface.d.ts} +7 -7
  816. package/dist/src/interfaces/Snackbar/snackbar-group.interface.js +0 -0
  817. package/dist/src/interfaces/Snackbar/snackbar-item.interface.cjs +1 -0
  818. package/dist/src/interfaces/Snackbar/snackbar-item.interface.d.ts +79 -0
  819. package/dist/src/interfaces/Snackbar/snackbar-item.interface.js +0 -0
  820. package/dist/src/interfaces/Stepper/stepper.interface.d.ts +2 -2
  821. package/dist/src/interfaces/Switch/switch-track.interface.d.ts +8 -0
  822. package/dist/src/interfaces/Switch/switch.interface.d.ts +5 -1
  823. package/dist/src/interfaces/SystemBar/system-bar.interface.d.ts +2 -2
  824. package/dist/src/interfaces/Table/table.interface.d.ts +5 -2
  825. package/dist/src/interfaces/Tabs/tab-panels.interface.d.ts +4 -1
  826. package/dist/src/interfaces/Tabs/tab.interface.d.ts +7 -2
  827. package/dist/src/interfaces/Tabs/tabs.interface.d.ts +4 -1
  828. package/dist/src/interfaces/TextField/text-field.interface.d.ts +1 -1
  829. package/dist/src/interfaces/TextMask/text-mask.interface.cjs +1 -0
  830. package/dist/src/interfaces/TextMask/text-mask.interface.d.ts +86 -0
  831. package/dist/src/interfaces/TextMask/text-mask.interface.js +0 -0
  832. package/dist/src/interfaces/TextareaField/textarea-field.interface.d.ts +3 -3
  833. package/dist/src/interfaces/Theme/origam-theme.interface.cjs +1 -0
  834. package/dist/src/interfaces/Theme/origam-theme.interface.d.ts +114 -0
  835. package/dist/src/interfaces/Theme/origam-theme.interface.js +0 -0
  836. package/dist/src/interfaces/Timeline/timeline.interface.d.ts +1 -1
  837. package/dist/src/interfaces/Title/title.interface.d.ts +2 -2
  838. package/dist/src/interfaces/Toolbar/toolbar.interface.d.ts +2 -2
  839. package/dist/src/interfaces/Tooltip/tooltip.interface.d.ts +5 -2
  840. package/dist/src/interfaces/Video/video-track.interface.cjs +1 -0
  841. package/dist/src/interfaces/Video/video-track.interface.d.ts +76 -0
  842. package/dist/src/interfaces/Video/video-track.interface.js +0 -0
  843. package/dist/src/interfaces/Video/video.interface.cjs +1 -0
  844. package/dist/src/interfaces/Video/video.interface.d.ts +317 -0
  845. package/dist/src/interfaces/Video/video.interface.js +0 -0
  846. package/dist/src/interfaces/VirtualScroll/virtual-scroll-item.interface.d.ts +6 -0
  847. package/dist/src/interfaces/Watermark/watermark.interface.cjs +1 -0
  848. package/dist/src/interfaces/Watermark/watermark.interface.d.ts +163 -0
  849. package/dist/src/interfaces/Watermark/watermark.interface.js +0 -0
  850. package/dist/src/interfaces/Window/window-item.interface.d.ts +4 -1
  851. package/dist/src/interfaces/Window/window.interface.d.ts +5 -2
  852. package/dist/src/interfaces/index.cjs +621 -49
  853. package/dist/src/interfaces/index.d.ts +58 -6
  854. package/dist/src/interfaces/index.js +58 -6
  855. package/dist/src/nuxt/module.cjs +78 -8
  856. package/dist/src/nuxt/module.js +81 -9
  857. package/dist/src/nuxt/plugin.client.cjs +28 -10
  858. package/dist/src/nuxt/plugin.client.js +28 -10
  859. package/dist/src/nuxt/plugin.server.cjs +52 -12
  860. package/dist/src/nuxt/plugin.server.js +55 -13
  861. package/dist/src/origam.cjs +39 -2
  862. package/dist/src/origam.d.ts +19 -1
  863. package/dist/src/origam.js +46 -5
  864. package/dist/src/themes/index.cjs +24 -0
  865. package/dist/src/themes/index.d.ts +1 -0
  866. package/dist/src/themes/index.js +1 -0
  867. package/dist/src/themes/origam.theme.cjs +906 -0
  868. package/dist/src/themes/origam.theme.d.ts +4 -0
  869. package/dist/src/themes/origam.theme.js +379 -0
  870. package/dist/src/types/Audio/audio-controls.type.cjs +1 -0
  871. package/dist/src/types/Audio/audio-controls.type.d.ts +12 -0
  872. package/dist/src/types/Audio/audio-controls.type.js +0 -0
  873. package/dist/src/types/Audio/audio-loop-mode.type.cjs +1 -0
  874. package/dist/src/types/Audio/audio-loop-mode.type.d.ts +5 -0
  875. package/dist/src/types/Audio/audio-loop-mode.type.js +0 -0
  876. package/dist/src/types/Audio/audio-variant.type.cjs +1 -0
  877. package/dist/src/types/Audio/audio-variant.type.d.ts +7 -0
  878. package/dist/src/types/Audio/audio-variant.type.js +0 -0
  879. package/dist/src/types/Audio/cover-position.type.cjs +1 -0
  880. package/dist/src/types/Audio/cover-position.type.d.ts +6 -0
  881. package/dist/src/types/Audio/cover-position.type.js +0 -0
  882. package/dist/src/types/Blockquote/blockquote-align.type.cjs +1 -0
  883. package/dist/src/types/Blockquote/blockquote-align.type.d.ts +5 -0
  884. package/dist/src/types/Blockquote/blockquote-align.type.js +0 -0
  885. package/dist/src/types/Blockquote/blockquote-lang.type.cjs +1 -0
  886. package/dist/src/types/Blockquote/blockquote-lang.type.d.ts +18 -0
  887. package/dist/src/types/Blockquote/blockquote-lang.type.js +0 -0
  888. package/dist/src/types/Blockquote/blockquote-variant.type.cjs +1 -0
  889. package/dist/src/types/Blockquote/blockquote-variant.type.d.ts +17 -0
  890. package/dist/src/types/Blockquote/blockquote-variant.type.js +0 -0
  891. package/dist/src/types/BottomNav/bottom-nav.type.d.ts +2 -0
  892. package/dist/src/types/Calendar/calendar-time-format.type.cjs +1 -0
  893. package/dist/src/types/Calendar/calendar-time-format.type.d.ts +13 -0
  894. package/dist/src/types/Calendar/calendar-time-format.type.js +0 -0
  895. package/dist/src/types/Calendar/calendar-view.type.cjs +1 -0
  896. package/dist/src/types/Calendar/calendar-view.type.d.ts +10 -0
  897. package/dist/src/types/Calendar/calendar-view.type.js +0 -0
  898. package/dist/src/types/Chart/chart-bullet-orientation.type.cjs +1 -0
  899. package/dist/src/types/Chart/chart-bullet-orientation.type.d.ts +1 -0
  900. package/dist/src/types/Chart/chart-bullet-orientation.type.js +0 -0
  901. package/dist/src/types/Chart/chart-cartesian-kind.type.cjs +1 -0
  902. package/dist/src/types/Chart/chart-cartesian-kind.type.d.ts +18 -0
  903. package/dist/src/types/Chart/chart-cartesian-kind.type.js +0 -0
  904. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.cjs +1 -0
  905. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.d.ts +2 -0
  906. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.js +0 -0
  907. package/dist/src/types/Chart/chart-honeycomb-orientation.type.cjs +1 -0
  908. package/dist/src/types/Chart/chart-honeycomb-orientation.type.d.ts +2 -0
  909. package/dist/src/types/Chart/chart-honeycomb-orientation.type.js +0 -0
  910. package/dist/src/types/Chart/chart-item.type.cjs +1 -0
  911. package/dist/src/types/Chart/chart-item.type.d.ts +9 -0
  912. package/dist/src/types/Chart/chart-item.type.js +0 -0
  913. package/dist/src/types/Chart/chart-legend-position.type.cjs +1 -0
  914. package/dist/src/types/Chart/chart-legend-position.type.d.ts +6 -0
  915. package/dist/src/types/Chart/chart-legend-position.type.js +0 -0
  916. package/dist/src/types/Chart/chart-map-mode.type.cjs +1 -0
  917. package/dist/src/types/Chart/chart-map-mode.type.d.ts +8 -0
  918. package/dist/src/types/Chart/chart-map-mode.type.js +0 -0
  919. package/dist/src/types/Chart/chart-pictorial-direction.type.cjs +1 -0
  920. package/dist/src/types/Chart/chart-pictorial-direction.type.d.ts +1 -0
  921. package/dist/src/types/Chart/chart-pictorial-direction.type.js +0 -0
  922. package/dist/src/types/Chart/chart-pictorial-mode.type.cjs +1 -0
  923. package/dist/src/types/Chart/chart-pictorial-mode.type.d.ts +1 -0
  924. package/dist/src/types/Chart/chart-pictorial-mode.type.js +0 -0
  925. package/dist/src/types/Chart/chart-polar-kind.type.cjs +1 -0
  926. package/dist/src/types/Chart/chart-polar-kind.type.d.ts +14 -0
  927. package/dist/src/types/Chart/chart-polar-kind.type.js +0 -0
  928. package/dist/src/types/Chart/chart-pyramid-kind.type.cjs +1 -0
  929. package/dist/src/types/Chart/chart-pyramid-kind.type.d.ts +9 -0
  930. package/dist/src/types/Chart/chart-pyramid-kind.type.js +0 -0
  931. package/dist/src/types/Chart/chart-smoothing.type.cjs +1 -0
  932. package/dist/src/types/Chart/chart-smoothing.type.d.ts +17 -0
  933. package/dist/src/types/Chart/chart-smoothing.type.js +0 -0
  934. package/dist/src/types/Chart/chart-sparkline-kind.type.cjs +1 -0
  935. package/dist/src/types/Chart/chart-sparkline-kind.type.d.ts +10 -0
  936. package/dist/src/types/Chart/chart-sparkline-kind.type.js +0 -0
  937. package/dist/src/types/Chart/chart-stacking.type.cjs +1 -0
  938. package/dist/src/types/Chart/chart-stacking.type.d.ts +9 -0
  939. package/dist/src/types/Chart/chart-stacking.type.js +0 -0
  940. package/dist/src/types/Chart/chart-streamgraph-offset.type.cjs +1 -0
  941. package/dist/src/types/Chart/chart-streamgraph-offset.type.d.ts +1 -0
  942. package/dist/src/types/Chart/chart-streamgraph-offset.type.js +0 -0
  943. package/dist/src/types/Chart/chart-treemap-algorithm.type.cjs +1 -0
  944. package/dist/src/types/Chart/chart-treemap-algorithm.type.d.ts +12 -0
  945. package/dist/src/types/Chart/chart-treemap-algorithm.type.js +0 -0
  946. package/dist/src/types/Chart/chart-type.type.cjs +1 -0
  947. package/dist/src/types/Chart/chart-type.type.d.ts +7 -0
  948. package/dist/src/types/Chart/chart-type.type.js +0 -0
  949. package/dist/src/types/Chart/chart-word-cloud-rotation.type.cjs +1 -0
  950. package/dist/src/types/Chart/chart-word-cloud-rotation.type.d.ts +8 -0
  951. package/dist/src/types/Chart/chart-word-cloud-rotation.type.js +0 -0
  952. package/dist/src/types/Commons/color.type.d.ts +18 -1
  953. package/dist/src/types/Commons/font-family.type.cjs +1 -0
  954. package/dist/src/types/Commons/font-family.type.d.ts +5 -0
  955. package/dist/src/types/Commons/font-family.type.js +0 -0
  956. package/dist/src/types/Commons/font-size.type.cjs +1 -0
  957. package/dist/src/types/Commons/font-size.type.d.ts +6 -0
  958. package/dist/src/types/Commons/font-size.type.js +0 -0
  959. package/dist/src/types/Commons/font-weight.type.cjs +1 -0
  960. package/dist/src/types/Commons/font-weight.type.d.ts +5 -0
  961. package/dist/src/types/Commons/font-weight.type.js +0 -0
  962. package/dist/src/types/Commons/letter-spacing.type.cjs +1 -0
  963. package/dist/src/types/Commons/letter-spacing.type.d.ts +5 -0
  964. package/dist/src/types/Commons/letter-spacing.type.js +0 -0
  965. package/dist/src/types/Commons/line-height.type.cjs +1 -0
  966. package/dist/src/types/Commons/line-height.type.d.ts +5 -0
  967. package/dist/src/types/Commons/line-height.type.js +0 -0
  968. package/dist/src/types/Commons/mode.type.d.ts +1 -1
  969. package/dist/src/types/EmptyState/empty-state-align.type.cjs +1 -0
  970. package/dist/src/types/EmptyState/empty-state-align.type.d.ts +10 -0
  971. package/dist/src/types/EmptyState/empty-state-align.type.js +0 -0
  972. package/dist/src/types/EmptyState/empty-state-preset.type.cjs +1 -0
  973. package/dist/src/types/EmptyState/empty-state-preset.type.d.ts +14 -0
  974. package/dist/src/types/EmptyState/empty-state-preset.type.js +0 -0
  975. package/dist/src/types/EmptyState/empty-state-size.type.cjs +1 -0
  976. package/dist/src/types/EmptyState/empty-state-size.type.d.ts +9 -0
  977. package/dist/src/types/EmptyState/empty-state-size.type.js +0 -0
  978. package/dist/src/types/Grid/grid-align.type.cjs +1 -0
  979. package/dist/src/types/Grid/grid-align.type.d.ts +28 -0
  980. package/dist/src/types/Grid/grid-align.type.js +0 -0
  981. package/dist/src/types/Grid/grid-flow.type.cjs +1 -0
  982. package/dist/src/types/Grid/grid-flow.type.d.ts +10 -0
  983. package/dist/src/types/Grid/grid-flow.type.js +0 -0
  984. package/dist/src/types/InlineEdit/inline-edit-input-type.type.cjs +1 -0
  985. package/dist/src/types/InlineEdit/inline-edit-input-type.type.d.ts +7 -0
  986. package/dist/src/types/InlineEdit/inline-edit-input-type.type.js +0 -0
  987. package/dist/src/types/Masonry/masonry-align.type.cjs +1 -0
  988. package/dist/src/types/Masonry/masonry-align.type.d.ts +16 -0
  989. package/dist/src/types/Masonry/masonry-align.type.js +0 -0
  990. package/dist/src/types/Media/index.cjs +27 -0
  991. package/dist/src/types/Media/index.d.ts +2 -0
  992. package/dist/src/types/Media/index.js +2 -0
  993. package/dist/src/types/Media/media-scrubber-orientation.type.cjs +1 -0
  994. package/dist/src/types/Media/media-scrubber-orientation.type.d.ts +6 -0
  995. package/dist/src/types/Media/media-scrubber-orientation.type.js +0 -0
  996. package/dist/src/types/Media/quality-option.type.cjs +1 -0
  997. package/dist/src/types/Media/quality-option.type.d.ts +25 -0
  998. package/dist/src/types/Media/quality-option.type.js +0 -0
  999. package/dist/src/types/NumberFormat/number-format-format.type.cjs +1 -0
  1000. package/dist/src/types/NumberFormat/number-format-format.type.d.ts +56 -0
  1001. package/dist/src/types/NumberFormat/number-format-format.type.js +0 -0
  1002. package/dist/src/types/QrCode/qr-code-error-correction.type.cjs +1 -0
  1003. package/dist/src/types/QrCode/qr-code-error-correction.type.d.ts +22 -0
  1004. package/dist/src/types/QrCode/qr-code-error-correction.type.js +0 -0
  1005. package/dist/src/types/SliderField/slider-field-variant.type.cjs +1 -0
  1006. package/dist/src/types/SliderField/slider-field-variant.type.d.ts +10 -0
  1007. package/dist/src/types/SliderField/slider-field-variant.type.js +0 -0
  1008. package/dist/src/types/Snackbar/snackbar-group-direction.type.cjs +1 -0
  1009. package/dist/src/types/{SnackbarStack/snackbar-stack-direction.type.d.ts → Snackbar/snackbar-group-direction.type.d.ts} +2 -2
  1010. package/dist/src/types/Snackbar/snackbar-group-direction.type.js +0 -0
  1011. package/dist/src/types/Snackbar/snackbar-group-location.type.cjs +1 -0
  1012. package/dist/src/types/{SnackbarStack/snackbar-stack-location.type.d.ts → Snackbar/snackbar-group-location.type.d.ts} +2 -2
  1013. package/dist/src/types/Snackbar/snackbar-group-location.type.js +0 -0
  1014. package/dist/src/types/Snackbar/snackbar-group.type.cjs +1 -0
  1015. package/dist/src/types/Snackbar/snackbar-group.type.d.ts +2 -0
  1016. package/dist/src/types/Snackbar/snackbar-group.type.js +0 -0
  1017. package/dist/src/types/TextMask/text-mask-animation.type.cjs +1 -0
  1018. package/dist/src/types/TextMask/text-mask-animation.type.d.ts +16 -0
  1019. package/dist/src/types/TextMask/text-mask-animation.type.js +0 -0
  1020. package/dist/src/types/TextMask/text-mask.type.cjs +1 -0
  1021. package/dist/src/types/TextMask/text-mask.type.d.ts +2 -0
  1022. package/dist/src/types/TextMask/text-mask.type.js +0 -0
  1023. package/dist/src/types/Theme/installed-theme.type.cjs +1 -0
  1024. package/dist/src/types/Theme/installed-theme.type.d.ts +31 -0
  1025. package/dist/src/types/Theme/installed-theme.type.js +0 -0
  1026. package/dist/src/types/Theme/semantic-tree.type.cjs +1 -0
  1027. package/dist/src/types/Theme/semantic-tree.type.d.ts +48 -0
  1028. package/dist/src/types/Theme/semantic-tree.type.js +0 -0
  1029. package/dist/src/types/Theme/theme.type.d.ts +27 -6
  1030. package/dist/src/types/Theme/token-tree.type.cjs +1 -0
  1031. package/dist/src/types/Theme/token-tree.type.d.ts +10 -0
  1032. package/dist/src/types/Theme/token-tree.type.js +0 -0
  1033. package/dist/src/types/Video/video-controls.type.cjs +1 -0
  1034. package/dist/src/types/Video/video-controls.type.d.ts +17 -0
  1035. package/dist/src/types/Video/video-controls.type.js +0 -0
  1036. package/dist/src/types/Video/video-track-kind.type.cjs +1 -0
  1037. package/dist/src/types/Video/video-track-kind.type.d.ts +11 -0
  1038. package/dist/src/types/Video/video-track-kind.type.js +0 -0
  1039. package/dist/src/types/index.cjs +555 -38
  1040. package/dist/src/types/index.d.ts +53 -6
  1041. package/dist/src/types/index.js +53 -6
  1042. package/dist/src/types/tokens.type.d.ts +1 -1
  1043. package/dist/src/utils/Bracket/bracket-surface.util.cjs +106 -0
  1044. package/dist/src/utils/Bracket/bracket-surface.util.d.ts +47 -0
  1045. package/dist/src/utils/Bracket/bracket-surface.util.js +88 -0
  1046. package/dist/src/utils/Calendar/date.util.cjs +181 -0
  1047. package/dist/src/utils/Calendar/date.util.d.ts +96 -0
  1048. package/dist/src/utils/Calendar/date.util.js +114 -0
  1049. package/dist/src/utils/Calendar/rrule.util.cjs +105 -0
  1050. package/dist/src/utils/Calendar/rrule.util.d.ts +49 -0
  1051. package/dist/src/utils/Calendar/rrule.util.js +92 -0
  1052. package/dist/src/utils/Chart/box-plot.util.cjs +62 -0
  1053. package/dist/src/utils/Chart/box-plot.util.d.ts +32 -0
  1054. package/dist/src/utils/Chart/box-plot.util.js +47 -0
  1055. package/dist/src/utils/Chart/mercator.util.cjs +53 -0
  1056. package/dist/src/utils/Chart/mercator.util.d.ts +51 -0
  1057. package/dist/src/utils/Chart/mercator.util.js +44 -0
  1058. package/dist/src/utils/Chart/path.util.cjs +150 -0
  1059. package/dist/src/utils/Chart/path.util.d.ts +116 -0
  1060. package/dist/src/utils/Chart/path.util.js +143 -0
  1061. package/dist/src/utils/Commons/color.util.cjs +4 -2
  1062. package/dist/src/utils/Commons/color.util.js +4 -2
  1063. package/dist/src/utils/Commons/commons.util.cjs +3 -2
  1064. package/dist/src/utils/Commons/commons.util.js +3 -2
  1065. package/dist/src/utils/Commons/dom.util.d.ts +1 -1
  1066. package/dist/src/utils/Commons/elevation.util.cjs +1 -1
  1067. package/dist/src/utils/Commons/elevation.util.js +1 -1
  1068. package/dist/src/utils/Commons/forwardRefs.util.cjs +1 -1
  1069. package/dist/src/utils/Commons/forwardRefs.util.js +1 -1
  1070. package/dist/src/utils/Commons/gradient.util.cjs +74 -0
  1071. package/dist/src/utils/Commons/gradient.util.d.ts +36 -0
  1072. package/dist/src/utils/Commons/gradient.util.js +66 -0
  1073. package/dist/src/utils/Commons/hover.util.cjs +5 -1
  1074. package/dist/src/utils/Commons/hover.util.js +5 -1
  1075. package/dist/src/utils/Commons/ripple.util.cjs +1 -2
  1076. package/dist/src/utils/Commons/ripple.util.js +2 -3
  1077. package/dist/src/utils/Commons/rounded.util.cjs +5 -0
  1078. package/dist/src/utils/Commons/rounded.util.d.ts +9 -0
  1079. package/dist/src/utils/Commons/rounded.util.js +4 -0
  1080. package/dist/src/utils/DataTable/headers.util.cjs +1 -1
  1081. package/dist/src/utils/DataTable/headers.util.js +1 -1
  1082. package/dist/src/utils/DataTable/sort.util.cjs +2 -2
  1083. package/dist/src/utils/DataTable/sort.util.js +2 -2
  1084. package/dist/src/utils/List/list-item.util.d.ts +7 -0
  1085. package/dist/src/utils/Media/format-time.util.cjs +16 -0
  1086. package/dist/src/utils/Media/format-time.util.d.ts +16 -0
  1087. package/dist/src/utils/Media/format-time.util.js +10 -0
  1088. package/dist/src/utils/QrCode/qr-code-adapters.util.cjs +34 -0
  1089. package/dist/src/utils/QrCode/qr-code-adapters.util.d.ts +49 -0
  1090. package/dist/src/utils/QrCode/qr-code-adapters.util.js +27 -0
  1091. package/dist/src/utils/Theme/apply-theme.util.cjs +148 -0
  1092. package/dist/src/utils/Theme/apply-theme.util.d.ts +65 -0
  1093. package/dist/src/utils/Theme/apply-theme.util.js +125 -0
  1094. package/dist/src/utils/Theme/token-name.util.cjs +47 -0
  1095. package/dist/src/utils/Theme/token-name.util.d.ts +54 -0
  1096. package/dist/src/utils/Theme/token-name.util.js +55 -0
  1097. package/dist/src/utils/index.cjs +77 -22
  1098. package/dist/src/utils/index.d.ts +7 -2
  1099. package/dist/src/utils/index.js +7 -2
  1100. package/package.json +18 -52
  1101. package/CHANGELOG.md +0 -650
  1102. package/README.md +0 -275
  1103. package/dist/src/App.vue +0 -25
  1104. package/dist/src/components/SliderField/OrigamSliderFieldThumb.vue +0 -384
  1105. package/dist/src/components/SnackbarStack/OrigamSnackbarStack.vue +0 -457
  1106. package/dist/src/components/SnackbarStack/index.cjs +0 -13
  1107. package/dist/src/components/SnackbarStack/index.d.ts +0 -1
  1108. package/dist/src/components/SnackbarStack/index.js +0 -1
  1109. package/dist/src/consts/SliderField/slider-field.const.cjs +0 -7
  1110. package/dist/src/consts/SliderField/slider-field.const.d.ts +0 -3
  1111. package/dist/src/consts/SliderField/slider-field.const.js +0 -1
  1112. package/dist/src/consts/SnackbarStack/snackbar-stack.const.cjs +0 -12
  1113. package/dist/src/consts/SnackbarStack/snackbar-stack.const.d.ts +0 -33
  1114. package/dist/src/consts/SnackbarStack/snackbar-stack.const.js +0 -18
  1115. package/dist/src/enums/Charts/chart.enum.cjs +0 -12
  1116. package/dist/src/enums/Charts/chart.enum.d.ts +0 -5
  1117. package/dist/src/enums/Charts/chart.enum.js +0 -6
  1118. package/dist/src/interfaces/Charts/chart-bar.interface.d.ts +0 -4
  1119. package/dist/src/interfaces/Charts/chart-line.interface.d.ts +0 -15
  1120. package/dist/src/interfaces/Charts/chart.interface.d.ts +0 -21
  1121. package/dist/src/interfaces/SliderField/slider-field-thumb.interface.d.ts +0 -12
  1122. package/dist/src/main.cjs +0 -7
  1123. package/dist/src/main.d.ts +0 -1
  1124. package/dist/src/main.js +0 -4
  1125. package/dist/src/types/Charts/chart.type.d.ts +0 -5
  1126. package/dist/src/types/SliderField/slider-field-thumb.type.d.ts +0 -2
  1127. package/dist/src/types/SnackbarStack/snackbar-stack.type.d.ts +0 -2
  1128. package/dist/src/utils/Charts/chart.util.cjs +0 -50
  1129. package/dist/src/utils/Charts/chart.util.d.ts +0 -30
  1130. package/dist/src/utils/Charts/chart.util.js +0 -40
  1131. package/dist/src/utils/SliderField/slider-field.util.cjs +0 -12
  1132. package/dist/src/utils/SliderField/slider-field.util.d.ts +0 -8
  1133. package/dist/src/utils/SliderField/slider-field.util.js +0 -6
  1134. /package/dist/src/interfaces/{Charts/chart-bar.interface.cjs → App/app.interface.cjs} +0 -0
  1135. /package/dist/src/interfaces/{Charts/chart-bar.interface.js → App/app.interface.js} +0 -0
  1136. /package/dist/src/interfaces/{Charts/chart-line.interface.cjs → Audio/audio-player.interface.cjs} +0 -0
  1137. /package/dist/src/interfaces/{Charts/chart-line.interface.js → Audio/audio-player.interface.js} +0 -0
  1138. /package/dist/src/interfaces/{Charts/chart.interface.cjs → Blockquote/blockquote.interface.cjs} +0 -0
  1139. /package/dist/src/interfaces/{Charts/chart.interface.js → Blockquote/blockquote.interface.js} +0 -0
  1140. /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.cjs → Calendar/calendar.interface.cjs} +0 -0
  1141. /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.js → Calendar/calendar.interface.js} +0 -0
  1142. /package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.cjs → Calendar/event.interface.cjs} +0 -0
  1143. /package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.js → Calendar/event.interface.js} +0 -0
  1144. /package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.cjs → Chart/chart-annotation.interface.cjs} +0 -0
  1145. /package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.js → Chart/chart-annotation.interface.js} +0 -0
  1146. /package/dist/src/{types/Charts/chart.type.cjs → interfaces/Chart/chart-axis.interface.cjs} +0 -0
  1147. /package/dist/src/{types/Charts/chart.type.js → interfaces/Chart/chart-axis.interface.js} +0 -0
  1148. /package/dist/src/{types/SliderField/slider-field-thumb.type.cjs → interfaces/Chart/chart-base.interface.cjs} +0 -0
  1149. /package/dist/src/{types/SliderField/slider-field-thumb.type.js → interfaces/Chart/chart-base.interface.js} +0 -0
  1150. /package/dist/src/{types/SnackbarStack/snackbar-stack-direction.type.cjs → interfaces/Chart/chart-box-plot.interface.cjs} +0 -0
  1151. /package/dist/src/{types/SnackbarStack/snackbar-stack-direction.type.js → interfaces/Chart/chart-box-plot.interface.js} +0 -0
  1152. /package/dist/src/{types/SnackbarStack/snackbar-stack-location.type.cjs → interfaces/Chart/chart-bullet.interface.cjs} +0 -0
  1153. /package/dist/src/{types/SnackbarStack/snackbar-stack-location.type.js → interfaces/Chart/chart-bullet.interface.js} +0 -0
  1154. /package/dist/src/{types/SnackbarStack/snackbar-stack.type.cjs → interfaces/Chart/chart-candlestick.interface.cjs} +0 -0
  1155. /package/dist/src/{types/SnackbarStack/snackbar-stack.type.js → interfaces/Chart/chart-candlestick.interface.js} +0 -0
@@ -0,0 +1,270 @@
1
+ import type { ICommonsComponentProps, ITagProps, ITypographyProps } from '../../interfaces';
2
+ import type { TInlineEditInputType } from '../../types';
3
+ /**
4
+ * Signature of a validator passed to `<OrigamInlineEdit>` (and to the
5
+ * `useInlineEdit` composable). Returns `true` when the draft value is
6
+ * acceptable, or an error message (`string`) that the component will
7
+ * surface via `role="alert"`.
8
+ *
9
+ * Async validators are supported — return a `Promise` and the component
10
+ * will keep the editor open (and expose `isPending = true`) until it
11
+ * resolves.
12
+ */
13
+ export type TInlineEditValidator = (value: string) => true | string | Promise<true | string>;
14
+ /**
15
+ * A single validation rule for `<OrigamInlineEdit>`. Matches the
16
+ * contract shared by all DS form fields (`IValidationProps.rules`):
17
+ * a function that receives the current string value and returns
18
+ * `true` when it passes, or an error message string when it fails.
19
+ * Async rules (returning a `Promise`) are supported.
20
+ */
21
+ export type TInlineEditRule = (value: string) => true | string | Promise<true | string>;
22
+ /**
23
+ * Props for `<OrigamInlineEdit>` — edit-in-place pattern.
24
+ *
25
+ * The component is intentionally headless on the display side: by
26
+ * default it renders a button-styled span with the current value (or
27
+ * the placeholder when the value is empty); consumers can fully
28
+ * override the affordance via the scoped `#display` slot. In edit
29
+ * mode it renders a native `<input>` (or `<textarea>` when `multiline`
30
+ * is true) — wrapping a heavier component (TextField, …) is not
31
+ * needed and would defeat the keyboard-driven UX.
32
+ */
33
+ export interface IInlineEditProps extends ICommonsComponentProps, ITagProps, ITypographyProps {
34
+ /**
35
+ * Current value (v-model target). Accepts both `string` and
36
+ * `number` for ergonomics — the internal draft is normalised to a
37
+ * string, then `update:modelValue` re-emits with the same shape as
38
+ * the original (number stays number, string stays string).
39
+ */
40
+ modelValue: string | number;
41
+ /**
42
+ * Placeholder shown on the input AND surfaced inside the default
43
+ * `#display` slot when `modelValue` is empty. Consumers wrap with
44
+ * `t()` if they need i18n.
45
+ */
46
+ placeholder?: string;
47
+ /**
48
+ * Array of validation rules using the standard DS contract
49
+ * (same as `OrigamTextField` / `OrigamInput` rules). Each rule
50
+ * is a function receiving the current string value and returning
51
+ * `true` (pass) or an error message string (fail). Rules are
52
+ * evaluated sequentially on confirm; the first failure surfaces
53
+ * as the inline error and blocks the commit.
54
+ *
55
+ * When both `rules` and `validate` are provided, `rules` are
56
+ * evaluated first. If any rule fails, `validate` is skipped.
57
+ * Only the first error message is displayed.
58
+ */
59
+ rules?: Array<TInlineEditRule>;
60
+ /**
61
+ * Validation callback. Returns `true` (or `Promise<true>`) when
62
+ * the draft is acceptable, or an error message string that will
63
+ * be surfaced in a `role="alert"` element near the input.
64
+ *
65
+ * Sync validators run on every Enter / blur. Async validators
66
+ * keep the editor open until the returned Promise settles.
67
+ *
68
+ * When both `rules` and `validate` are provided, `rules` are
69
+ * evaluated first. `validate` only runs if all rules pass.
70
+ */
71
+ validate?: TInlineEditValidator;
72
+ /**
73
+ * Auto-focus the input when entering edit mode. Setting this to
74
+ * false is useful for forms where keyboard focus is managed by a
75
+ * parent (e.g. a wizard that steps focus through siblings).
76
+ *
77
+ * @default true
78
+ */
79
+ autoFocus?: boolean;
80
+ /**
81
+ * Select all the input's text when it gains focus on edit entry.
82
+ * Common for "click title to rename" patterns — the user can
83
+ * immediately type a replacement without selecting first.
84
+ *
85
+ * @default true
86
+ */
87
+ selectOnFocus?: boolean;
88
+ /**
89
+ * Confirm the draft when the input loses focus. When false, the
90
+ * editor stays open on blur and the user must explicitly Enter
91
+ * to confirm or Escape to cancel.
92
+ *
93
+ * @default true
94
+ */
95
+ confirmOnBlur?: boolean;
96
+ /**
97
+ * Confirm on `Enter`. Disable when the edit zone is a multiline
98
+ * textarea and Enter should produce a newline (Cmd/Ctrl+Enter to
99
+ * confirm is the convention — apps wire this manually).
100
+ *
101
+ * @default true
102
+ */
103
+ confirmOnEnter?: boolean;
104
+ /**
105
+ * Cancel (revert the draft) on `Escape`.
106
+ *
107
+ * @default true
108
+ */
109
+ cancelOnEscape?: boolean;
110
+ /**
111
+ * Disables the component — the display affordance becomes
112
+ * non-interactive (button `disabled`, span `aria-disabled`), the
113
+ * `edit()` method short-circuits, and any in-flight edit is
114
+ * cancelled (draft discarded).
115
+ *
116
+ * @default false
117
+ */
118
+ disabled?: boolean;
119
+ /**
120
+ * Render a `<textarea>` instead of a `<input>` in edit mode.
121
+ * When true, `confirmOnEnter` should generally be disabled by the
122
+ * consumer so newlines are not swallowed.
123
+ *
124
+ * @default false
125
+ */
126
+ multiline?: boolean;
127
+ /**
128
+ * Strip surrounding whitespace before emitting `update:modelValue`
129
+ * AND before running the validator. Disable for fields where
130
+ * trailing spaces are significant (passwords, …).
131
+ *
132
+ * @default true
133
+ */
134
+ trim?: boolean;
135
+ /**
136
+ * Native HTML input type when not in multiline mode.
137
+ *
138
+ * @default 'text'
139
+ */
140
+ inputType?: TInlineEditInputType;
141
+ /**
142
+ * Surface a loading affordance (CSS class hook) on the root while
143
+ * an async `validate` Promise is in flight. The component sets
144
+ * `aria-busy="true"` regardless — this prop only controls the
145
+ * visual hook.
146
+ *
147
+ * @default false
148
+ */
149
+ loadingOnConfirm?: boolean;
150
+ /**
151
+ * Render built-in action buttons (Edit / Confirm / Cancel) next to
152
+ * the component.
153
+ *
154
+ * When `false` (default), only keyboard shortcuts are available:
155
+ * Enter to confirm, Escape to cancel, click on the display to edit.
156
+ *
157
+ * When `true`, three icon buttons are rendered:
158
+ * - **Edit** — visible in display mode, enters edit mode on click.
159
+ * - **Confirm** — visible in edit mode, commits the draft on click.
160
+ * - **Cancel** — visible in edit mode, discards the draft on click.
161
+ *
162
+ * The `disabled` prop also disables all three buttons.
163
+ *
164
+ * @default false
165
+ */
166
+ showActions?: boolean;
167
+ }
168
+ /**
169
+ * Emits for `<OrigamInlineEdit>`.
170
+ */
171
+ export interface IInlineEditEmits {
172
+ /** Final value after successful validation. Same shape as input. */
173
+ (e: 'update:modelValue', value: string | number): void;
174
+ /** Editor entered edit mode (display → input transition). */
175
+ (e: 'edit'): void;
176
+ /** Editor exited via cancel — the draft was discarded. */
177
+ (e: 'cancel'): void;
178
+ /**
179
+ * Confirmation attempt — fires AFTER validation passes, BEFORE
180
+ * `update:modelValue`. Consumers can intercept the value for
181
+ * server-side persistence; the v-model is updated regardless.
182
+ */
183
+ (e: 'confirm', value: string | number): void;
184
+ /** Validator returned an error message (sync or async). */
185
+ (e: 'validate-error', message: string): void;
186
+ }
187
+ /**
188
+ * Bindings exposed by the scoped `#display` slot. Consumers use these
189
+ * to drive any custom affordance (heading, badge, …) into edit mode.
190
+ */
191
+ export interface IInlineEditDisplaySlotBindings {
192
+ /** Current value (already coerced to string). */
193
+ value: string;
194
+ /** Switches the component into edit mode. */
195
+ edit: () => void;
196
+ /** True when the value is empty / nullish — drives placeholder styling. */
197
+ isEmpty: boolean;
198
+ /** Resolved placeholder string (with sane fallback). */
199
+ placeholder: string;
200
+ /** Mirrors the `disabled` prop, for visual handling. */
201
+ disabled: boolean;
202
+ }
203
+ /**
204
+ * Bindings exposed by the scoped `#edit` slot. Consumers use these to
205
+ * render a fully custom input layout while keeping the same state
206
+ * machine.
207
+ */
208
+ export interface IInlineEditEditSlotBindings {
209
+ /** Draft value (two-way; mutate to feed the validator). */
210
+ value: string;
211
+ /** Update the draft from the slot. */
212
+ setValue: (next: string) => void;
213
+ /** Run the validator and, if it passes, commit the draft. */
214
+ confirm: () => void;
215
+ /** Discard the draft and return to display mode. */
216
+ cancel: () => void;
217
+ /** Current validation error (null when no error). */
218
+ error: string | null;
219
+ /** True while an async validator is in flight. */
220
+ isPending: boolean;
221
+ }
222
+ /**
223
+ * Bindings exposed by the scoped `#actions` slot — typically used to
224
+ * render visible confirm / cancel buttons (X / ✓).
225
+ */
226
+ export interface IInlineEditActionsSlotBindings {
227
+ /** Run the validator and commit if it passes. */
228
+ confirm: () => void;
229
+ /** Discard the draft and return to display mode. */
230
+ cancel: () => void;
231
+ /** True while an async validator is in flight. */
232
+ isPending: boolean;
233
+ }
234
+ /**
235
+ * Slot signatures for `<OrigamInlineEdit>`.
236
+ */
237
+ export interface IInlineEditSlots {
238
+ display?: (bindings: IInlineEditDisplaySlotBindings) => any;
239
+ edit?: (bindings: IInlineEditEditSlotBindings) => any;
240
+ actions?: (bindings: IInlineEditActionsSlotBindings) => any;
241
+ }
242
+ /**
243
+ * Options for the `useInlineEdit` composable.
244
+ */
245
+ export interface IUseInlineEditOptions {
246
+ /**
247
+ * Array of validation rules — evaluated in order before `validate`.
248
+ * First failure blocks the commit and surfaces the error message.
249
+ */
250
+ rules?: Array<TInlineEditRule>;
251
+ /** Sync or async validator — see `TInlineEditValidator`. */
252
+ validate?: TInlineEditValidator;
253
+ /**
254
+ * Strip surrounding whitespace before running the validator and
255
+ * emitting the new value.
256
+ *
257
+ * @default true
258
+ */
259
+ trim?: boolean;
260
+ /**
261
+ * Called when the draft is committed. Use this when the composable
262
+ * is consumed outside the SFC's emit pipeline (e.g. inside a
263
+ * unit-test harness or a wrapper composable).
264
+ */
265
+ onConfirm?: (value: string) => void;
266
+ /** Called when the draft is discarded. */
267
+ onCancel?: () => void;
268
+ /** Called when a validator returns an error message. */
269
+ onError?: (message: string) => void;
270
+ }
@@ -1,5 +1,5 @@
1
- import type { IAdjacentEmits, IAdjacentProps, IAdjacentSlots, IBorderProps, IBgColorProps, IColorProps, ICommonsComponentEmits, ICommonsComponentProps, IDensityProps, IDimensionProps, IDirectionProps, IElevationProps, IFocusEmits, IMarginProps, IPaddingProps, IRoundedProps, ISizeProps, IValidationProps } from '../../interfaces';
2
- export interface IInputProps extends ICommonsComponentProps, IDensityProps, IPaddingProps, IMarginProps, IRoundedProps, IColorProps, IBgColorProps, IBorderProps, IElevationProps, IDimensionProps, IDirectionProps, IValidationProps, IAdjacentProps, ISizeProps {
1
+ import type { IAdjacentEmits, IAdjacentProps, IAdjacentSlots, IBorderProps, IBgColorProps, IColorProps, ICommonsComponentEmits, ICommonsComponentProps, IDensityProps, IDimensionProps, IDirectionProps, IElevationProps, IFocusEmits, IMarginProps, IPaddingProps, IRoundedProps, ISizeProps, ITypographyProps, IValidationProps } from '../../interfaces';
2
+ export interface IInputProps extends ICommonsComponentProps, IDensityProps, IPaddingProps, IMarginProps, IRoundedProps, IColorProps, IBgColorProps, IBorderProps, IElevationProps, IDimensionProps, IDirectionProps, IValidationProps, IAdjacentProps, ISizeProps, ITypographyProps {
3
3
  centerAffix?: boolean;
4
4
  hideDetails?: boolean | string;
5
5
  hideSpinButtons?: boolean;
@@ -23,9 +23,10 @@ export interface IInputEmits extends ICommonsComponentEmits, IAdjacentEmits, IFo
23
23
  export interface IInputSlots extends IAdjacentSlots {
24
24
  default?: (data: {
25
25
  id: string;
26
+ messagesId: string;
26
27
  isDisabled: boolean;
27
28
  isDirty: boolean;
28
- isValid: boolean;
29
+ isValid: boolean | undefined;
29
30
  isReadonly: boolean;
30
31
  }) => any;
31
32
  messages?: (data: {
@@ -1,4 +1,4 @@
1
- import type { ICommonsComponentProps, IGroupItemProps, IGroupProps, ITagProps } from '../../interfaces';
1
+ import type { ICommonsComponentEmits, ICommonsComponentProps, IGroupItemProps, IGroupProps, ITagProps } from '../../interfaces';
2
2
  /**
3
3
  * Props for `<OrigamItemGroup>` — the renderless selection container.
4
4
  * Mirrors `IBtnToggleProps` minus the visual mixins (this group has
@@ -24,3 +24,6 @@ export interface IItemGroupProps extends ICommonsComponentProps, ITagProps, IGro
24
24
  export interface IItemGroupItemProps extends ICommonsComponentProps, ITagProps, IGroupItemProps {
25
25
  tag?: string;
26
26
  }
27
+ /** Emits fired by `<OrigamItemGroup>` — v-model on the active item set. */
28
+ export interface IItemGroupEmits extends ICommonsComponentEmits {
29
+ }
@@ -1,6 +1,6 @@
1
- import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, IRoundedProps, ISizeProps } from '../../interfaces';
1
+ import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, IRoundedProps, ISizeProps, ITypographyProps } from '../../interfaces';
2
2
  import type { TKbdVariant } from '../../types';
3
- export interface IKbdProps extends ICommonsComponentProps, IColorProps, IBgColorProps, ISizeProps, IBorderProps, IRoundedProps {
3
+ export interface IKbdProps extends ICommonsComponentProps, IColorProps, IBgColorProps, ISizeProps, IBorderProps, IRoundedProps, ITypographyProps {
4
4
  /** Single key label (e.g. "⌘", "Ctrl", "A"). Overridden by the default slot. */
5
5
  text?: string;
6
6
  /** Composed shortcut rendered as individual nested `<kbd>` elements (e.g. ['Ctrl', 'Shift', 'Z']). */
@@ -1,5 +1,5 @@
1
- import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, ICommonsComponentSlots, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../../interfaces';
2
- export interface ILabelProps extends ICommonsComponentProps, IMarginProps, IPaddingProps, IBorderProps, IRoundedProps, IColorProps, IBgColorProps, ITagProps {
1
+ import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, ICommonsComponentSlots, IMarginProps, IPaddingProps, IRoundedProps, ITagProps, ITypographyProps } from '../../interfaces';
2
+ export interface ILabelProps extends ICommonsComponentProps, IMarginProps, IPaddingProps, IBorderProps, IRoundedProps, IColorProps, IBgColorProps, ITagProps, ITypographyProps {
3
3
  text?: string;
4
4
  floating?: boolean;
5
5
  required?: boolean;
@@ -9,3 +9,11 @@ export interface IListGroupProps extends ITagProps, ICommonsComponentProps, ICol
9
9
  }
10
10
  export interface IListActivatorProps extends ICommonsComponentProps, ITagProps {
11
11
  }
12
+ /** Emits fired by `<OrigamListGroup>` — click on the activator chrome
13
+ * (used by parents to toggle the open state). */
14
+ export interface IListGroupEmits {
15
+ (e: 'click:activator', payload: {
16
+ open: boolean;
17
+ event: Event;
18
+ }): void;
19
+ }
@@ -1,6 +1,6 @@
1
- import type { IActiveProps, IAdjacentProps, IBgColorProps, IBorderProps, IColorProps, ICommonsComponentProps, IDensityProps, IDimensionProps, IElevationProps, IHoverProps, ILinkProps, IMarginProps, IPaddingProps, IRippleProps, IRoundedProps, ITagProps } from '../../interfaces';
1
+ import type { IActiveProps, IAdjacentEmits, IAdjacentProps, IBgColorProps, IBorderProps, IClickEmits, IColorProps, ICommonsComponentProps, IDensityProps, IDimensionProps, IElevationProps, IHoverProps, ILinkProps, IMarginProps, IPaddingProps, IRippleProps, IRoundedProps, ITagProps, ITypographyProps } from '../../interfaces';
2
2
  import type { TLines } from '../../types';
3
- export interface IListItemProps extends IBorderProps, ICommonsComponentProps, IDensityProps, IDimensionProps, IElevationProps, IRoundedProps, ITagProps, ILinkProps, IColorProps, IBgColorProps, IRippleProps, IPaddingProps, IMarginProps, IAdjacentProps, IActiveProps, IHoverProps {
3
+ export interface IListItemProps extends IBorderProps, ICommonsComponentProps, IDensityProps, IDimensionProps, IElevationProps, IRoundedProps, ITagProps, ILinkProps, IColorProps, IBgColorProps, IRippleProps, IPaddingProps, IMarginProps, IAdjacentProps, IActiveProps, IHoverProps, ITypographyProps {
4
4
  active?: boolean;
5
5
  activeClass?: string;
6
6
  disabled?: boolean;
@@ -12,3 +12,6 @@ export interface IListItemProps extends IBorderProps, ICommonsComponentProps, ID
12
12
  title?: string | number;
13
13
  value?: any;
14
14
  }
15
+ /** Emits fired by `<OrigamListItem>` — generic click + prepend/append slot clicks. */
16
+ export interface IListItemEmits extends IClickEmits, IAdjacentEmits {
17
+ }
@@ -1,5 +1,5 @@
1
- import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../../interfaces';
2
- export interface IListSubheader extends ICommonsComponentProps, ITagProps, IColorProps, IBgColorProps, IPaddingProps, IMarginProps, IBorderProps, IRoundedProps {
1
+ import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps, ITypographyProps } from '../../interfaces';
2
+ export interface IListSubheader extends ICommonsComponentProps, ITagProps, IColorProps, IBgColorProps, IPaddingProps, IMarginProps, IBorderProps, IRoundedProps, ITypographyProps {
3
3
  inset?: boolean;
4
4
  sticky?: boolean;
5
5
  title?: string;
@@ -20,3 +20,19 @@ export interface IItemProps {
20
20
  returnObject?: boolean;
21
21
  valueComparator?: typeof deepEqual;
22
22
  }
23
+ /** Emits fired by `<OrigamList>` — selection / open state propagation and
24
+ * user-driven click events on items. */
25
+ export interface IListEmits {
26
+ (e: 'update:selected', value: Array<unknown>): void;
27
+ (e: 'update:opened', value: Array<unknown>): void;
28
+ (e: 'click:open', value: {
29
+ id: unknown;
30
+ value: boolean;
31
+ path: Array<unknown>;
32
+ }): void;
33
+ (e: 'click:select', value: {
34
+ id: unknown;
35
+ value: boolean;
36
+ path: Array<unknown>;
37
+ }): void;
38
+ }
@@ -1,4 +1,4 @@
1
- import type { IBorderProps, ICommonsComponentProps, IDimensionProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../../interfaces';
2
- export interface IMainProps extends ITagProps, ICommonsComponentProps, IPaddingProps, IMarginProps, IBorderProps, IRoundedProps, IDimensionProps {
1
+ import type { IBgColorProps, IBorderProps, IColorProps, ICommonsComponentProps, IDimensionProps, IElevationProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../../interfaces';
2
+ export interface IMainProps extends ITagProps, ICommonsComponentProps, IPaddingProps, IMarginProps, IBorderProps, IRoundedProps, IDimensionProps, IElevationProps, IBgColorProps, IColorProps {
3
3
  scrollable?: boolean;
4
4
  }
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,80 @@
1
+ import type { IBgColorProps, IBorderProps, IColorProps, ICommonsComponentProps, IDimensionProps, IElevationProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../../interfaces';
2
+ import type { TGridGapSize, TMasonryAlign } from '../../types';
3
+ /**
4
+ * Map of `min-width` (px) → number of columns to apply when the
5
+ * container is at least that wide. Container-query based (NOT viewport),
6
+ * so a masonry placed in a 600 px sidebar will pick the breakpoint that
7
+ * matches 600 px, regardless of viewport width.
8
+ *
9
+ * Example:
10
+ * { 600: 2, 900: 3, 1200: 4 }
11
+ *
12
+ * → < 600 px : `columns` prop value (default 3).
13
+ * → ≥ 600 px : 2.
14
+ * → ≥ 900 px : 3.
15
+ * → ≥ 1200 px: 4.
16
+ *
17
+ * Keys must be positive integers (pixel widths). Values must be positive
18
+ * integers (column counts). Order is irrelevant — the composable sorts
19
+ * the entries by key ascending and picks the largest key ≤ container
20
+ * width.
21
+ */
22
+ export type TMasonryColumnBreakpoints = Record<number, number>;
23
+ /**
24
+ * Props for `<OrigamMasonry>` — Pinterest-style masonry layout.
25
+ *
26
+ * `<OrigamMasonry>` ships a CSS-first implementation gated on
27
+ * `grid-template-rows: masonry` (detected via `useCssSupport`). When
28
+ * the browser supports it the layout is pure CSS; when it doesn't, a
29
+ * `useMasonry` JS fallback runs (`ResizeObserver` + bucket-fill
30
+ * algorithm). The runtime decision is transparent to the consumer.
31
+ */
32
+ export interface IMasonryProps extends ICommonsComponentProps, ITagProps, IDimensionProps, IMarginProps, IPaddingProps, IRoundedProps, IElevationProps, IBgColorProps, IColorProps, IBorderProps {
33
+ /**
34
+ * Number of columns to use when no breakpoint matches the container
35
+ * width. Must be a positive integer ≥ 1.
36
+ *
37
+ * @default 3
38
+ */
39
+ columns?: number;
40
+ /**
41
+ * Container-query column breakpoints. See `TMasonryColumnBreakpoints`.
42
+ * When provided, the masonry observes its own size via
43
+ * `ResizeObserver` and picks the matching column count automatically.
44
+ *
45
+ * Pass `undefined` (or an empty object) to disable container-query
46
+ * resolution and use the `columns` prop verbatim.
47
+ */
48
+ columnBreakpoints?: TMasonryColumnBreakpoints;
49
+ /**
50
+ * Gap between items, both vertically and horizontally. Accepts:
51
+ *
52
+ * - one of the grid size tokens `'xs' | 'sm' | 'md' | 'lg' | 'xl'`
53
+ * (resolved via `tokens/component/grid.json`, same matrix as
54
+ * `<OrigamGrid>` for visual consistency).
55
+ * - any CSS length string (`'24px'`, `'1rem'`).
56
+ * - a plain `number` interpreted as pixels.
57
+ *
58
+ * @default 'md'
59
+ */
60
+ gap?: TGridGapSize | string | number;
61
+ /**
62
+ * Animate `transform` when an item moves to a different position on
63
+ * column-count change. CSS-only — the transition is applied to the
64
+ * item children, so the consumer's content doesn't need to know.
65
+ *
66
+ * @default true
67
+ */
68
+ animated?: boolean;
69
+ /**
70
+ * Vertical alignment of items inside a column. `'top'` is the
71
+ * standard Pinterest layout; `'center'` centres each column's
72
+ * cumulative content inside the container height.
73
+ *
74
+ * Only the JS fallback honours `'center'` — the CSS-native path
75
+ * always packs to the top. See `TMasonryAlign`.
76
+ *
77
+ * @default 'top'
78
+ */
79
+ align?: TMasonryAlign;
80
+ }
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ var _mediaController = require("./media-controller.interface.cjs");
7
+ Object.keys(_mediaController).forEach(function (key) {
8
+ if (key === "default" || key === "__esModule") return;
9
+ if (key in exports && exports[key] === _mediaController[key]) return;
10
+ Object.defineProperty(exports, key, {
11
+ enumerable: true,
12
+ get: function () {
13
+ return _mediaController[key];
14
+ }
15
+ });
16
+ });
17
+ var _mediaPlayer = require("./media-player.interface.cjs");
18
+ Object.keys(_mediaPlayer).forEach(function (key) {
19
+ if (key === "default" || key === "__esModule") return;
20
+ if (key in exports && exports[key] === _mediaPlayer[key]) return;
21
+ Object.defineProperty(exports, key, {
22
+ enumerable: true,
23
+ get: function () {
24
+ return _mediaPlayer[key];
25
+ }
26
+ });
27
+ });
28
+ var _mediaScrubber = require("./media-scrubber.interface.cjs");
29
+ Object.keys(_mediaScrubber).forEach(function (key) {
30
+ if (key === "default" || key === "__esModule") return;
31
+ if (key in exports && exports[key] === _mediaScrubber[key]) return;
32
+ Object.defineProperty(exports, key, {
33
+ enumerable: true,
34
+ get: function () {
35
+ return _mediaScrubber[key];
36
+ }
37
+ });
38
+ });
39
+ var _mediaVolumeControl = require("./media-volume-control.interface.cjs");
40
+ Object.keys(_mediaVolumeControl).forEach(function (key) {
41
+ if (key === "default" || key === "__esModule") return;
42
+ if (key in exports && exports[key] === _mediaVolumeControl[key]) return;
43
+ Object.defineProperty(exports, key, {
44
+ enumerable: true,
45
+ get: function () {
46
+ return _mediaVolumeControl[key];
47
+ }
48
+ });
49
+ });
@@ -0,0 +1,4 @@
1
+ export * from './media-controller.interface';
2
+ export * from './media-player.interface';
3
+ export * from './media-scrubber.interface';
4
+ export * from './media-volume-control.interface';
@@ -0,0 +1,4 @@
1
+ export * from "./media-controller.interface.js";
2
+ export * from "./media-player.interface.js";
3
+ export * from "./media-scrubber.interface.js";
4
+ export * from "./media-volume-control.interface.js";