origam 2.2.1 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1157) hide show
  1. package/CHANGELOG.md +381 -0
  2. package/README.md +22 -0
  3. package/dist/src/assets/css/tokens/dark.css +684 -0
  4. package/dist/src/assets/css/tokens/light.css +342 -0
  5. package/dist/src/assets/locales/en.json +36 -0
  6. package/dist/src/assets/locales/fr.json +33 -0
  7. package/dist/src/assets/scss/tokens/_dark.scss +342 -0
  8. package/dist/src/assets/scss/tokens/_light.scss +342 -0
  9. package/dist/src/components/Alert/OrigamAlert.vue +5 -4
  10. package/dist/src/components/App/OrigamApp.vue +38 -1
  11. package/dist/src/components/App/OrigamAppBar.vue +2 -2
  12. package/dist/src/components/Audio/OrigamAudio.vue +1465 -0
  13. package/dist/src/components/Audio/index.cjs +13 -0
  14. package/dist/src/components/Audio/index.d.ts +1 -0
  15. package/dist/src/components/Audio/index.js +1 -0
  16. package/dist/src/components/Avatar/OrigamAvatar.vue +3 -3
  17. package/dist/src/components/Avatar/OrigamAvatarGroup.vue +2 -2
  18. package/dist/src/components/Badge/OrigamBadge.vue +2 -2
  19. package/dist/src/components/Blockquote/OrigamBlockquote.vue +291 -0
  20. package/dist/src/components/Blockquote/index.cjs +13 -0
  21. package/dist/src/components/Blockquote/index.d.ts +1 -0
  22. package/dist/src/components/Blockquote/index.js +1 -0
  23. package/dist/src/components/BottomNav/OrigamBottomNav.vue +3 -2
  24. package/dist/src/components/Bracket/OrigamBracket.vue +585 -0
  25. package/dist/src/components/Bracket/OrigamBracketCompetitor.vue +210 -0
  26. package/dist/src/components/Bracket/OrigamBracketMatch.vue +288 -0
  27. package/dist/src/components/Bracket/OrigamBracketRound.vue +152 -0
  28. package/dist/src/components/Bracket/index.cjs +34 -0
  29. package/dist/src/components/Bracket/index.d.ts +4 -0
  30. package/dist/src/components/Bracket/index.js +4 -0
  31. package/dist/src/components/Breadcrumb/OrigamBreadcrumb.vue +5 -3
  32. package/dist/src/components/Breadcrumb/OrigamBreadcrumbDivider.vue +1 -1
  33. package/dist/src/components/Breadcrumb/OrigamBreadcrumbItem.vue +3 -3
  34. package/dist/src/components/Btn/OrigamBtn.vue +14 -4
  35. package/dist/src/components/Btn/OrigamBtnGroup.vue +3 -2
  36. package/dist/src/components/Btn/OrigamBtnToggle.vue +2 -2
  37. package/dist/src/components/Calendar/OrigamCalendar.vue +1175 -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 +2 -2
  42. package/dist/src/components/Card/OrigamCardHeader.vue +1 -1
  43. package/dist/src/components/Carousel/OrigamCarousel.vue +6 -1
  44. package/dist/src/components/Carousel/OrigamCarouselItem.vue +2 -2
  45. package/dist/src/components/Chart/OrigamChart.vue +882 -0
  46. package/dist/src/components/Chart/OrigamChartAxis.vue +141 -0
  47. package/dist/src/components/Chart/OrigamChartBoxPlot.vue +894 -0
  48. package/dist/src/components/Chart/OrigamChartBullet.vue +836 -0
  49. package/dist/src/components/Chart/OrigamChartCandlestick.vue +745 -0
  50. package/dist/src/components/Chart/OrigamChartCartesian.vue +1450 -0
  51. package/dist/src/components/Chart/OrigamChartGauge.vue +402 -0
  52. package/dist/src/components/Chart/OrigamChartHeatmap.vue +697 -0
  53. package/dist/src/components/Chart/OrigamChartHoneycomb.vue +723 -0
  54. package/dist/src/components/Chart/OrigamChartLegend.vue +59 -0
  55. package/dist/src/components/Chart/OrigamChartMap.vue +738 -0
  56. package/dist/src/components/Chart/OrigamChartPareto.vue +949 -0
  57. package/dist/src/components/Chart/OrigamChartPictorial.vue +1024 -0
  58. package/dist/src/components/Chart/OrigamChartPolar.vue +735 -0
  59. package/dist/src/components/Chart/OrigamChartPolarBar.vue +719 -0
  60. package/dist/src/components/Chart/OrigamChartPyramid.vue +706 -0
  61. package/dist/src/components/Chart/OrigamChartRadar.vue +504 -0
  62. package/dist/src/components/Chart/OrigamChartRangeSelector.vue +122 -0
  63. package/dist/src/components/Chart/OrigamChartSankey.vue +943 -0
  64. package/dist/src/components/Chart/OrigamChartSparkline.vue +474 -0
  65. package/dist/src/components/Chart/OrigamChartStreamgraph.vue +872 -0
  66. package/dist/src/components/Chart/OrigamChartSunburst.vue +865 -0
  67. package/dist/src/components/Chart/OrigamChartTooltip.vue +55 -0
  68. package/dist/src/components/Chart/OrigamChartTreemap.vue +744 -0
  69. package/dist/src/components/Chart/OrigamChartVariwide.vue +815 -0
  70. package/dist/src/components/Chart/OrigamChartWordCloud.vue +671 -0
  71. package/dist/src/components/Chart/index.cjs +188 -0
  72. package/dist/src/components/Chart/index.d.ts +26 -0
  73. package/dist/src/components/Chart/index.js +26 -0
  74. package/dist/src/components/Checkbox/OrigamCheckbox.vue +2 -2
  75. package/dist/src/components/Checkbox/OrigamCheckboxBtn.vue +2 -2
  76. package/dist/src/components/Chip/OrigamChip.vue +9 -7
  77. package/dist/src/components/Chip/OrigamChipGroup.vue +15 -3
  78. package/dist/src/components/ClientOnly/OrigamClientOnly.vue +28 -0
  79. package/dist/src/components/ClientOnly/index.cjs +13 -0
  80. package/dist/src/components/ClientOnly/index.d.ts +1 -0
  81. package/dist/src/components/ClientOnly/index.js +1 -0
  82. package/dist/src/components/Clipboard/OrigamClipboard.vue +195 -0
  83. package/dist/src/components/Clipboard/index.cjs +13 -0
  84. package/dist/src/components/Clipboard/index.d.ts +1 -0
  85. package/dist/src/components/Clipboard/index.js +1 -0
  86. package/dist/src/components/Code/OrigamCode.vue +459 -0
  87. package/dist/src/components/Code/index.cjs +13 -0
  88. package/dist/src/components/Code/index.d.ts +1 -0
  89. package/dist/src/components/Code/index.js +1 -0
  90. package/dist/src/components/ColorPicker/OrigamColorPicker.vue +3 -2
  91. package/dist/src/components/ColorPicker/OrigamColorPickerCanvas.vue +75 -1
  92. package/dist/src/components/ColorPickerField/OrigamColorPickerField.vue +3 -2
  93. package/dist/src/components/CommandPalette/OrigamCommandPalette.vue +620 -0
  94. package/dist/src/components/CommandPalette/index.cjs +13 -0
  95. package/dist/src/components/CommandPalette/index.d.ts +1 -0
  96. package/dist/src/components/CommandPalette/index.js +1 -0
  97. package/dist/src/components/ConfirmWrapper/OrigamConfirmWrapper.vue +1 -1
  98. package/dist/src/components/ContextualMenu/OrigamContextualMenu.vue +2 -2
  99. package/dist/src/components/Counter/OrigamCounter.vue +1 -1
  100. package/dist/src/components/DataList/OrigamDataList.vue +2 -2
  101. package/dist/src/components/DataList/OrigamDataText.vue +2 -2
  102. package/dist/src/components/DataList/OrigamDataTitle.vue +2 -2
  103. package/dist/src/components/DataTable/OrigamDataTable.vue +9 -3
  104. package/dist/src/components/DataTable/OrigamDataTableColumnCell.vue +1 -0
  105. package/dist/src/components/DataTable/OrigamDataTableFooter.vue +1 -1
  106. package/dist/src/components/DataTable/OrigamDataTableGroupHeaderRow.vue +1 -1
  107. package/dist/src/components/DataTable/OrigamDataTableHeaderCell.vue +2 -1
  108. package/dist/src/components/DataTable/OrigamDataTableHeaders.vue +1 -1
  109. package/dist/src/components/DataTable/OrigamDataTableHeadersCell.vue +1 -1
  110. package/dist/src/components/DataTable/OrigamDataTableHeadersCellMobile.vue +2 -2
  111. package/dist/src/components/DataTable/OrigamDataTableRow.vue +6 -1
  112. package/dist/src/components/DataTable/OrigamDataTableRows.vue +5 -3
  113. package/dist/src/components/DatePicker/OrigamDatePicker.vue +22 -12
  114. package/dist/src/components/DatePicker/OrigamDatePickerHeader.vue +1 -1
  115. package/dist/src/components/DatePicker/OrigamDatePickerMonth.vue +20 -15
  116. package/dist/src/components/DatePicker/OrigamDatePickerMonths.vue +1 -1
  117. package/dist/src/components/DatePicker/OrigamDatePickerYears.vue +1 -1
  118. package/dist/src/components/DatePickerField/OrigamDatePickerField.vue +6 -5
  119. package/dist/src/components/Dialog/OrigamDialog.vue +12 -4
  120. package/dist/src/components/Dialog/OrigamDialogConfirmation.vue +2 -2
  121. package/dist/src/components/Divider/OrigamDivider.vue +2 -2
  122. package/dist/src/components/Drawer/OrigamDrawer.vue +10 -2
  123. package/dist/src/components/EmptyState/OrigamEmptyState.vue +231 -0
  124. package/dist/src/components/EmptyState/index.cjs +13 -0
  125. package/dist/src/components/EmptyState/index.d.ts +1 -0
  126. package/dist/src/components/EmptyState/index.js +1 -0
  127. package/dist/src/components/ExpansionPanel/OrigamExpansionPanel.vue +2 -2
  128. package/dist/src/components/ExpansionPanel/OrigamExpansionPanelContent.vue +5 -2
  129. package/dist/src/components/ExpansionPanel/OrigamExpansionPanelHeader.vue +4 -2
  130. package/dist/src/components/ExpansionPanel/OrigamExpansionPanels.vue +2 -2
  131. package/dist/src/components/Field/OrigamField.vue +2 -2
  132. package/dist/src/components/FileField/OrigamFileField.vue +2 -2
  133. package/dist/src/components/FileField/OrigamFileFieldDragNDropItem.vue +2 -2
  134. package/dist/src/components/FileField/OrigamFileFieldListItem.vue +2 -2
  135. package/dist/src/components/Grid/OrigamGrid.vue +197 -0
  136. package/dist/src/components/Grid/OrigamGridItem.vue +69 -0
  137. package/dist/src/components/Grid/index.cjs +20 -0
  138. package/dist/src/components/Grid/index.d.ts +2 -0
  139. package/dist/src/components/Grid/index.js +2 -0
  140. package/dist/src/components/Grids/OrigamCol.vue +2 -2
  141. package/dist/src/components/Grids/OrigamRow.vue +1 -1
  142. package/dist/src/components/Icon/OrigamClassIcon.vue +14 -2
  143. package/dist/src/components/Icon/OrigamComponentIcon.vue +14 -2
  144. package/dist/src/components/Icon/OrigamIcon.vue +21 -2
  145. package/dist/src/components/Icon/OrigamLigatureIcon.vue +14 -2
  146. package/dist/src/components/Icon/OrigamSvgIcon.vue +15 -3
  147. package/dist/src/components/Img/OrigamImg.vue +2 -2
  148. package/dist/src/components/InfiniteScroll/OrigamInfiniteScroll.vue +4 -4
  149. package/dist/src/components/InlineEdit/OrigamInlineEdit.vue +477 -0
  150. package/dist/src/components/InlineEdit/index.cjs +13 -0
  151. package/dist/src/components/InlineEdit/index.d.ts +1 -0
  152. package/dist/src/components/InlineEdit/index.js +1 -0
  153. package/dist/src/components/Input/OrigamInput.vue +2 -2
  154. package/dist/src/components/Kbd/OrigamKbd.vue +2 -2
  155. package/dist/src/components/Label/OrigamLabel.vue +2 -2
  156. package/dist/src/components/Layout/OrigamLayout.vue +73 -4
  157. package/dist/src/components/Lazy/OrigamLazy.vue +1 -0
  158. package/dist/src/components/List/OrigamList.vue +3 -2
  159. package/dist/src/components/List/OrigamListGroup.vue +2 -2
  160. package/dist/src/components/List/OrigamListItem.vue +3 -2
  161. package/dist/src/components/List/OrigamListSubheader.vue +2 -2
  162. package/dist/src/components/Loader/OrigamLoader.vue +3 -1
  163. package/dist/src/components/Main/OrigamMain.vue +12 -2
  164. package/dist/src/components/Masonry/OrigamMasonry.vue +277 -0
  165. package/dist/src/components/Masonry/index.cjs +13 -0
  166. package/dist/src/components/Masonry/index.d.ts +1 -0
  167. package/dist/src/components/Masonry/index.js +1 -0
  168. package/dist/src/components/Media/OrigamMediaController.vue +529 -0
  169. package/dist/src/components/Media/OrigamMediaScrubber.vue +441 -0
  170. package/dist/src/components/Media/OrigamMediaVolumeControl.vue +151 -0
  171. package/dist/src/components/Media/index.cjs +27 -0
  172. package/dist/src/components/Media/index.d.ts +3 -0
  173. package/dist/src/components/Media/index.js +3 -0
  174. package/dist/src/components/Menu/OrigamMenu.vue +23 -5
  175. package/dist/src/components/Messages/OrigamMessages.vue +2 -2
  176. package/dist/src/components/NumberField/OrigamNumberField.vue +6 -6
  177. package/dist/src/components/NumberFormat/OrigamNumberFormat.vue +97 -0
  178. package/dist/src/components/NumberFormat/index.cjs +13 -0
  179. package/dist/src/components/NumberFormat/index.d.ts +1 -0
  180. package/dist/src/components/NumberFormat/index.js +1 -0
  181. package/dist/src/components/OtpInputField/OrigamOtpInputField.vue +12 -12
  182. package/dist/src/components/Overlay/OrigamOverlay.vue +1 -1
  183. package/dist/src/components/Overlay/OrigamOverlayScrim.vue +2 -1
  184. package/dist/src/components/Pagination/OrigamPagination.vue +4 -10
  185. package/dist/src/components/Parallax/OrigamParallax.vue +97 -38
  186. package/dist/src/components/Parallax/OrigamParallaxLayer.vue +119 -0
  187. package/dist/src/components/Parallax/index.cjs +7 -0
  188. package/dist/src/components/Parallax/index.d.ts +1 -0
  189. package/dist/src/components/Parallax/index.js +1 -0
  190. package/dist/src/components/PasswordField/OrigamPasswordField.vue +7 -6
  191. package/dist/src/components/Picker/OrigamPicker.vue +5 -5
  192. package/dist/src/components/Picker/OrigamPickerTitle.vue +2 -2
  193. package/dist/src/components/Progress/OrigamProgress.vue +3 -1
  194. package/dist/src/components/Progress/OrigamProgressCircular.vue +8 -1
  195. package/dist/src/components/Progress/OrigamProgressLinear.vue +13 -1
  196. package/dist/src/components/QRCode/OrigamQrCode.vue +246 -0
  197. package/dist/src/components/QRCode/index.cjs +13 -0
  198. package/dist/src/components/QRCode/index.js +1 -0
  199. package/dist/src/components/Radio/OrigamRadio.vue +2 -2
  200. package/dist/src/components/Radio/OrigamRadioBtn.vue +2 -2
  201. package/dist/src/components/Radio/OrigamRadioGroup.vue +2 -2
  202. package/dist/src/components/RatingField/OrigamRatingField.vue +20 -20
  203. package/dist/src/components/RatingField/OrigamRatingFieldItem.vue +1 -1
  204. package/dist/src/components/Select/OrigamSelect.vue +47 -12
  205. package/dist/src/components/SelectionControl/OrigamSelectionControl.vue +6 -2
  206. package/dist/src/components/SelectionControl/OrigamSelectionControlGroup.vue +2 -1
  207. package/dist/src/components/Sheet/OrigamSheet.vue +3 -3
  208. package/dist/src/components/Skeleton/OrigamSkeleton.vue +9 -2
  209. package/dist/src/components/SliderField/OrigamSliderField.vue +1065 -330
  210. package/dist/src/components/SliderField/OrigamSliderFieldTrack.vue +33 -45
  211. package/dist/src/components/SliderField/index.cjs +0 -7
  212. package/dist/src/components/SliderField/index.d.ts +0 -1
  213. package/dist/src/components/SliderField/index.js +0 -1
  214. package/dist/src/components/Snackbar/OrigamSnackbar.vue +255 -265
  215. package/dist/src/components/Snackbar/OrigamSnackbarGroup.vue +238 -0
  216. package/dist/src/components/Snackbar/OrigamSnackbarItem.vue +270 -0
  217. package/dist/src/components/Snackbar/index.cjs +14 -0
  218. package/dist/src/components/Snackbar/index.d.ts +2 -0
  219. package/dist/src/components/Snackbar/index.js +2 -0
  220. package/dist/src/components/Stepper/OrigamStepper.vue +66 -7
  221. package/dist/src/components/Switch/OrigamSwitch.vue +128 -11
  222. package/dist/src/components/Switch/OrigamSwitchTrack.vue +13 -2
  223. package/dist/src/components/SystemBar/OrigamSystemBar.vue +2 -2
  224. package/dist/src/components/Table/OrigamTable.vue +34 -1
  225. package/dist/src/components/Tabs/OrigamTab.vue +263 -0
  226. package/dist/src/components/Tabs/OrigamTabPanel.vue +112 -0
  227. package/dist/src/components/Tabs/OrigamTabPanels.vue +139 -0
  228. package/dist/src/components/Tabs/OrigamTabs.vue +242 -0
  229. package/dist/src/components/Tabs/index.cjs +34 -0
  230. package/dist/src/components/Tabs/index.d.ts +4 -0
  231. package/dist/src/components/Tabs/index.js +4 -0
  232. package/dist/src/components/TextField/OrigamTextField.vue +79 -7
  233. package/dist/src/components/TextMask/OrigamTextMask.vue +157 -0
  234. package/dist/src/components/TextMask/index.cjs +13 -0
  235. package/dist/src/components/TextMask/index.d.ts +1 -0
  236. package/dist/src/components/TextMask/index.js +1 -0
  237. package/dist/src/components/TextareaField/OrigamRichToolbar.vue +284 -0
  238. package/dist/src/components/TextareaField/OrigamTextareaField.vue +196 -7
  239. package/dist/src/components/TextareaField/index.cjs +7 -0
  240. package/dist/src/components/TextareaField/index.d.ts +1 -0
  241. package/dist/src/components/TextareaField/index.js +1 -0
  242. package/dist/src/components/Timeline/OrigamTimeline.vue +1 -1
  243. package/dist/src/components/Timeline/OrigamTimelineItem.vue +1 -1
  244. package/dist/src/components/Title/OrigamTitle.vue +2 -2
  245. package/dist/src/components/Toolbar/OrigamToolbar.vue +2 -2
  246. package/dist/src/components/Tooltip/OrigamTooltip.vue +2 -2
  247. package/dist/src/components/Treeview/OrigamTreeview.vue +2 -4
  248. package/dist/src/components/Video/OrigamVideo.vue +1087 -0
  249. package/dist/src/components/Video/index.cjs +13 -0
  250. package/dist/src/components/Video/index.d.ts +1 -0
  251. package/dist/src/components/Video/index.js +1 -0
  252. package/dist/src/components/Watermark/OrigamWatermark.vue +187 -0
  253. package/dist/src/components/Watermark/index.cjs +13 -0
  254. package/dist/src/components/Watermark/index.d.ts +1 -0
  255. package/dist/src/components/Watermark/index.js +1 -0
  256. package/dist/src/components/index.cjs +220 -0
  257. package/dist/src/components/index.d.ts +20 -0
  258. package/dist/src/components/index.js +20 -0
  259. package/dist/src/composables/Audio/use-audio-player.composable.cjs +26 -0
  260. package/dist/src/composables/Audio/use-audio-player.composable.d.ts +29 -0
  261. package/dist/src/composables/Audio/use-audio-player.composable.js +17 -0
  262. package/dist/src/composables/Audio/use-waveform.composable.cjs +91 -0
  263. package/dist/src/composables/Audio/use-waveform.composable.d.ts +32 -0
  264. package/dist/src/composables/Audio/use-waveform.composable.js +81 -0
  265. package/dist/src/composables/Calendar/calendar.composable.cjs +184 -0
  266. package/dist/src/composables/Calendar/calendar.composable.d.ts +72 -0
  267. package/dist/src/composables/Calendar/calendar.composable.js +182 -0
  268. package/dist/src/composables/Chart/chart-gauge.composable.cjs +54 -0
  269. package/dist/src/composables/Chart/chart-gauge.composable.d.ts +21 -0
  270. package/dist/src/composables/Chart/chart-gauge.composable.js +47 -0
  271. package/dist/src/composables/Chart/chart-zoom.composable.cjs +93 -0
  272. package/dist/src/composables/Chart/chart-zoom.composable.d.ts +34 -0
  273. package/dist/src/composables/Chart/chart-zoom.composable.js +87 -0
  274. package/dist/src/composables/Chart/chart.composable.cjs +893 -0
  275. package/dist/src/composables/Chart/chart.composable.d.ts +97 -0
  276. package/dist/src/composables/Chart/chart.composable.js +829 -0
  277. package/dist/src/composables/Clipboard/clipboard.composable.cjs +78 -0
  278. package/dist/src/composables/Clipboard/clipboard.composable.d.ts +21 -0
  279. package/dist/src/composables/Clipboard/clipboard.composable.js +79 -0
  280. package/dist/src/composables/Code/code.composable.cjs +102 -0
  281. package/dist/src/composables/Code/code.composable.d.ts +10 -0
  282. package/dist/src/composables/Code/code.composable.js +86 -0
  283. package/dist/src/composables/CommandPalette/command.composable.cjs +53 -0
  284. package/dist/src/composables/CommandPalette/command.composable.d.ts +37 -0
  285. package/dist/src/composables/CommandPalette/command.composable.js +46 -0
  286. package/dist/src/composables/Commons/audio.composable.d.ts +2 -2
  287. package/dist/src/composables/Commons/color.composable.cjs +47 -12
  288. package/dist/src/composables/Commons/color.composable.js +47 -12
  289. package/dist/src/composables/Commons/{calendar.composable.cjs → date-picker-calendar.composable.cjs} +2 -2
  290. package/dist/src/composables/Commons/{calendar.composable.d.ts → date-picker-calendar.composable.d.ts} +2 -2
  291. package/dist/src/composables/Commons/{calendar.composable.js → date-picker-calendar.composable.js} +1 -1
  292. package/dist/src/composables/Commons/elevation.composable.cjs +4 -5
  293. package/dist/src/composables/Commons/elevation.composable.js +1 -18
  294. package/dist/src/composables/Commons/virtual.composable.cjs +1 -0
  295. package/dist/src/composables/Commons/virtual.composable.js +1 -0
  296. package/dist/src/composables/CssSupport/cssSupport.composable.cjs +16 -25
  297. package/dist/src/composables/CssSupport/cssSupport.composable.d.ts +26 -23
  298. package/dist/src/composables/CssSupport/cssSupport.composable.js +11 -23
  299. package/dist/src/composables/DataTable/headers.composable.d.ts +8 -8
  300. package/dist/src/composables/InlineEdit/inline-edit.composable.cjs +87 -0
  301. package/dist/src/composables/InlineEdit/inline-edit.composable.d.ts +36 -0
  302. package/dist/src/composables/InlineEdit/inline-edit.composable.js +86 -0
  303. package/dist/src/composables/Mask/index.cjs +16 -0
  304. package/dist/src/composables/Mask/index.d.ts +1 -0
  305. package/dist/src/composables/Mask/index.js +1 -0
  306. package/dist/src/composables/Mask/mask.composable.cjs +57 -0
  307. package/dist/src/composables/Mask/mask.composable.d.ts +39 -0
  308. package/dist/src/composables/Mask/mask.composable.js +51 -0
  309. package/dist/src/composables/Masonry/masonry.composable.cjs +160 -0
  310. package/dist/src/composables/Masonry/masonry.composable.d.ts +132 -0
  311. package/dist/src/composables/Masonry/masonry.composable.js +160 -0
  312. package/dist/src/composables/Media/use-media-player.composable.cjs +286 -0
  313. package/dist/src/composables/Media/use-media-player.composable.d.ts +43 -0
  314. package/dist/src/composables/Media/use-media-player.composable.js +289 -0
  315. package/dist/src/composables/NumberFormat/number-format.composable.cjs +165 -0
  316. package/dist/src/composables/NumberFormat/number-format.composable.d.ts +33 -0
  317. package/dist/src/composables/NumberFormat/number-format.composable.js +146 -0
  318. package/dist/src/composables/Parallax/parallax.composable.cjs +232 -0
  319. package/dist/src/composables/Parallax/parallax.composable.d.ts +60 -0
  320. package/dist/src/composables/Parallax/parallax.composable.js +219 -0
  321. package/dist/src/composables/QrCode/qr-code.composable.cjs +111 -0
  322. package/dist/src/composables/QrCode/qr-code.composable.d.ts +31 -0
  323. package/dist/src/composables/QrCode/qr-code.composable.js +120 -0
  324. package/dist/src/composables/Responsive/aspect.composable.cjs +6 -1
  325. package/dist/src/composables/Responsive/aspect.composable.d.ts +10 -0
  326. package/dist/src/composables/Responsive/aspect.composable.js +6 -1
  327. package/dist/src/composables/Sheet/sheetSwipe.composable.cjs +5 -5
  328. package/dist/src/composables/Sheet/sheetSwipe.composable.d.ts +1 -1
  329. package/dist/src/composables/Sheet/sheetSwipe.composable.js +3 -3
  330. package/dist/src/composables/SliderField/slider-field.composable.cjs +0 -213
  331. package/dist/src/composables/SliderField/slider-field.composable.d.ts +11 -5
  332. package/dist/src/composables/SliderField/slider-field.composable.js +2 -191
  333. package/dist/src/composables/Snackbar/snackbar-group.composable.cjs +102 -0
  334. package/dist/src/composables/Snackbar/snackbar-group.composable.d.ts +58 -0
  335. package/dist/src/composables/Snackbar/snackbar-group.composable.js +92 -0
  336. package/dist/src/composables/Textarea/textarea-rich.composable.cjs +263 -0
  337. package/dist/src/composables/Textarea/textarea-rich.composable.d.ts +41 -0
  338. package/dist/src/composables/Textarea/textarea-rich.composable.js +257 -0
  339. package/dist/src/composables/Theme/theme.composable.cjs +5 -6
  340. package/dist/src/composables/Theme/theme.composable.js +1 -2
  341. package/dist/src/composables/Video/video-player.composable.cjs +129 -0
  342. package/dist/src/composables/Video/video-player.composable.d.ts +44 -0
  343. package/dist/src/composables/Video/video-player.composable.js +128 -0
  344. package/dist/src/composables/Watermark/watermark.composable.cjs +147 -0
  345. package/dist/src/composables/Watermark/watermark.composable.d.ts +28 -0
  346. package/dist/src/composables/Watermark/watermark.composable.js +158 -0
  347. package/dist/src/composables/index.cjs +299 -4
  348. package/dist/src/composables/index.d.ts +19 -1
  349. package/dist/src/composables/index.js +19 -1
  350. package/dist/src/consts/Audio/audio.const.cjs +25 -0
  351. package/dist/src/consts/Audio/audio.const.d.ts +30 -0
  352. package/dist/src/consts/Audio/audio.const.js +19 -0
  353. package/dist/src/consts/Blockquote/blockquote.const.cjs +32 -0
  354. package/dist/src/consts/Blockquote/blockquote.const.d.ts +37 -0
  355. package/dist/src/consts/Blockquote/blockquote.const.js +30 -0
  356. package/dist/src/consts/Bracket/bracket.const.cjs +12 -0
  357. package/dist/src/consts/Bracket/bracket.const.d.ts +34 -0
  358. package/dist/src/consts/Bracket/bracket.const.js +15 -0
  359. package/dist/src/consts/Chart/chart.const.cjs +26 -0
  360. package/dist/src/consts/Chart/chart.const.d.ts +32 -0
  361. package/dist/src/consts/Chart/chart.const.js +9 -0
  362. package/dist/src/consts/Chart/country-centroids.const.cjs +43 -0
  363. package/dist/src/consts/Chart/country-centroids.const.d.ts +10 -0
  364. package/dist/src/consts/Chart/country-centroids.const.js +37 -0
  365. package/dist/src/consts/Chart/pictorial-icons.const.cjs +12 -0
  366. package/dist/src/consts/Chart/pictorial-icons.const.d.ts +18 -0
  367. package/dist/src/consts/Chart/pictorial-icons.const.js +6 -0
  368. package/dist/src/consts/Chart/world-geographic.const.cjs +152 -0
  369. package/dist/src/consts/Chart/world-geographic.const.d.ts +22 -0
  370. package/dist/src/consts/Chart/world-geographic.const.js +1722 -0
  371. package/dist/src/consts/Chart/world-map.const.cjs +43 -0
  372. package/dist/src/consts/Chart/world-map.const.d.ts +14 -0
  373. package/dist/src/consts/Chart/world-map.const.js +37 -0
  374. package/dist/src/consts/Clipboard/clipboard.const.cjs +7 -0
  375. package/dist/src/consts/Clipboard/clipboard.const.d.ts +6 -0
  376. package/dist/src/consts/Clipboard/clipboard.const.js +1 -0
  377. package/dist/src/consts/Code/code.const.cjs +23 -0
  378. package/dist/src/consts/Code/code.const.d.ts +36 -0
  379. package/dist/src/consts/Code/code.const.js +32 -0
  380. package/dist/src/consts/CommandPalette/command-palette.const.cjs +10 -0
  381. package/dist/src/consts/CommandPalette/command-palette.const.d.ts +16 -0
  382. package/dist/src/consts/CommandPalette/command-palette.const.js +7 -0
  383. package/dist/src/consts/Commons/elevation.const.cjs +8 -0
  384. package/dist/src/consts/Commons/elevation.const.d.ts +17 -0
  385. package/dist/src/consts/Commons/elevation.const.js +18 -0
  386. package/dist/src/consts/CssSupport/css-support.const.cjs +29 -0
  387. package/dist/src/consts/CssSupport/css-support.const.d.ts +40 -0
  388. package/dist/src/consts/CssSupport/css-support.const.js +23 -0
  389. package/dist/src/consts/DataTable/select.const.cjs +2 -1
  390. package/dist/src/consts/DataTable/select.const.d.ts +2 -1
  391. package/dist/src/consts/DataTable/select.const.js +1 -0
  392. package/dist/src/consts/EmptyState/empty-state.const.cjs +32 -0
  393. package/dist/src/consts/EmptyState/empty-state.const.d.ts +29 -0
  394. package/dist/src/consts/EmptyState/empty-state.const.js +39 -0
  395. package/dist/src/consts/Grid/grid.const.cjs +28 -0
  396. package/dist/src/consts/Grid/grid.const.d.ts +49 -0
  397. package/dist/src/consts/Grid/grid.const.js +46 -0
  398. package/dist/src/consts/Mask/built-in-patterns.const.cjs +66 -0
  399. package/dist/src/consts/Mask/built-in-patterns.const.d.ts +20 -0
  400. package/dist/src/consts/Mask/built-in-patterns.const.js +60 -0
  401. package/dist/src/consts/Masonry/masonry.const.cjs +14 -0
  402. package/dist/src/consts/Masonry/masonry.const.d.ts +27 -0
  403. package/dist/src/consts/Masonry/masonry.const.js +11 -0
  404. package/dist/src/consts/Media/media.const.cjs +8 -0
  405. package/dist/src/consts/Media/media.const.d.ts +14 -0
  406. package/dist/src/consts/Media/media.const.js +2 -0
  407. package/dist/src/consts/NumberFormat/number-format.const.cjs +9 -0
  408. package/dist/src/consts/NumberFormat/number-format.const.d.ts +19 -0
  409. package/dist/src/consts/NumberFormat/number-format.const.js +3 -0
  410. package/dist/src/consts/Parallax/parallax-layer.const.cjs +7 -0
  411. package/dist/src/consts/Parallax/parallax-layer.const.d.ts +3 -0
  412. package/dist/src/consts/Parallax/parallax-layer.const.js +1 -0
  413. package/dist/src/consts/QrCode/qr-code.const.cjs +12 -0
  414. package/dist/src/consts/QrCode/qr-code.const.d.ts +33 -0
  415. package/dist/src/consts/QrCode/qr-code.const.js +6 -0
  416. package/dist/src/consts/Sheet/sheet-swipe.const.cjs +7 -0
  417. package/dist/src/consts/Sheet/sheet-swipe.const.d.ts +11 -0
  418. package/dist/src/consts/Sheet/sheet-swipe.const.js +1 -0
  419. package/dist/src/consts/Snackbar/snackbar-group.const.cjs +12 -0
  420. package/dist/src/consts/Snackbar/snackbar-group.const.d.ts +33 -0
  421. package/dist/src/consts/Snackbar/snackbar-group.const.js +18 -0
  422. package/dist/src/consts/Tabs/tabs.const.cjs +9 -0
  423. package/dist/src/consts/Tabs/tabs.const.d.ts +23 -0
  424. package/dist/src/consts/Tabs/tabs.const.js +3 -0
  425. package/dist/src/consts/Textarea/textarea.const.cjs +28 -0
  426. package/dist/src/consts/Textarea/textarea.const.d.ts +38 -0
  427. package/dist/src/consts/Textarea/textarea.const.js +65 -0
  428. package/dist/src/consts/Theme/theme.const.cjs +15 -0
  429. package/dist/src/consts/Theme/theme.const.d.ts +9 -0
  430. package/dist/src/consts/Theme/theme.const.js +9 -0
  431. package/dist/src/consts/Video/video.const.cjs +7 -0
  432. package/dist/src/consts/Video/video.const.d.ts +7 -0
  433. package/dist/src/consts/Video/video.const.js +1 -0
  434. package/dist/src/consts/Watermark/watermark.const.cjs +16 -0
  435. package/dist/src/consts/Watermark/watermark.const.d.ts +27 -0
  436. package/dist/src/consts/Watermark/watermark.const.js +10 -0
  437. package/dist/src/consts/index.cjs +283 -8
  438. package/dist/src/consts/index.d.ts +26 -1
  439. package/dist/src/consts/index.js +26 -1
  440. package/dist/src/enums/Audio/audio-loop-mode.enum.cjs +12 -0
  441. package/dist/src/enums/Audio/audio-loop-mode.enum.d.ts +17 -0
  442. package/dist/src/enums/Audio/audio-loop-mode.enum.js +6 -0
  443. package/dist/src/enums/Audio/audio-variant.enum.cjs +13 -0
  444. package/dist/src/enums/Audio/audio-variant.enum.d.ts +26 -0
  445. package/dist/src/enums/Audio/audio-variant.enum.js +7 -0
  446. package/dist/src/enums/Audio/cover-position.enum.cjs +11 -0
  447. package/dist/src/enums/Audio/cover-position.enum.d.ts +9 -0
  448. package/dist/src/enums/Audio/cover-position.enum.js +5 -0
  449. package/dist/src/enums/Blockquote/blockquote-lang.enum.cjs +14 -0
  450. package/dist/src/enums/Blockquote/blockquote-lang.enum.d.ts +7 -0
  451. package/dist/src/enums/Blockquote/blockquote-lang.enum.js +8 -0
  452. package/dist/src/enums/Blockquote/blockquote-variant.enum.cjs +14 -0
  453. package/dist/src/enums/Blockquote/blockquote-variant.enum.d.ts +7 -0
  454. package/dist/src/enums/Blockquote/blockquote-variant.enum.js +8 -0
  455. package/dist/src/enums/Bracket/bracket-match-status.enum.cjs +13 -0
  456. package/dist/src/enums/Bracket/bracket-match-status.enum.d.ts +6 -0
  457. package/dist/src/enums/Bracket/bracket-match-status.enum.js +7 -0
  458. package/dist/src/enums/Bracket/bracket-variant.enum.cjs +12 -0
  459. package/dist/src/enums/Bracket/bracket-variant.enum.d.ts +5 -0
  460. package/dist/src/enums/Bracket/bracket-variant.enum.js +6 -0
  461. package/dist/src/enums/Chart/chart-bullet-orientation.enum.cjs +11 -0
  462. package/dist/src/enums/Chart/chart-bullet-orientation.enum.d.ts +4 -0
  463. package/dist/src/enums/Chart/chart-bullet-orientation.enum.js +5 -0
  464. package/dist/src/enums/Chart/chart-cartesian-kind.enum.cjs +16 -0
  465. package/dist/src/enums/Chart/chart-cartesian-kind.enum.d.ts +14 -0
  466. package/dist/src/enums/Chart/chart-cartesian-kind.enum.js +10 -0
  467. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.cjs +11 -0
  468. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.d.ts +4 -0
  469. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.js +5 -0
  470. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.cjs +11 -0
  471. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.d.ts +4 -0
  472. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.js +5 -0
  473. package/dist/src/enums/Chart/chart-map-mode.enum.cjs +11 -0
  474. package/dist/src/enums/Chart/chart-map-mode.enum.d.ts +4 -0
  475. package/dist/src/enums/Chart/chart-map-mode.enum.js +5 -0
  476. package/dist/src/enums/Chart/chart-pictorial-direction.enum.cjs +11 -0
  477. package/dist/src/enums/Chart/chart-pictorial-direction.enum.d.ts +4 -0
  478. package/dist/src/enums/Chart/chart-pictorial-direction.enum.js +5 -0
  479. package/dist/src/enums/Chart/chart-pictorial-mode.enum.cjs +11 -0
  480. package/dist/src/enums/Chart/chart-pictorial-mode.enum.d.ts +4 -0
  481. package/dist/src/enums/Chart/chart-pictorial-mode.enum.js +5 -0
  482. package/dist/src/enums/Chart/chart-polar-kind.enum.cjs +11 -0
  483. package/dist/src/enums/Chart/chart-polar-kind.enum.d.ts +8 -0
  484. package/dist/src/enums/Chart/chart-polar-kind.enum.js +5 -0
  485. package/dist/src/enums/Chart/chart-pyramid-kind.enum.cjs +11 -0
  486. package/dist/src/enums/Chart/chart-pyramid-kind.enum.d.ts +4 -0
  487. package/dist/src/enums/Chart/chart-pyramid-kind.enum.js +5 -0
  488. package/dist/src/enums/Chart/chart-sparkline-kind.enum.cjs +13 -0
  489. package/dist/src/enums/Chart/chart-sparkline-kind.enum.d.ts +6 -0
  490. package/dist/src/enums/Chart/chart-sparkline-kind.enum.js +7 -0
  491. package/dist/src/enums/Chart/chart-stacking.enum.cjs +11 -0
  492. package/dist/src/enums/Chart/chart-stacking.enum.d.ts +14 -0
  493. package/dist/src/enums/Chart/chart-stacking.enum.js +5 -0
  494. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.cjs +13 -0
  495. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.d.ts +6 -0
  496. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.js +7 -0
  497. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.cjs +11 -0
  498. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.d.ts +9 -0
  499. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.js +5 -0
  500. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.cjs +12 -0
  501. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.d.ts +5 -0
  502. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.js +6 -0
  503. package/dist/src/enums/Chart/chart.enum.cjs +38 -0
  504. package/dist/src/enums/Chart/chart.enum.d.ts +31 -0
  505. package/dist/src/enums/Chart/chart.enum.js +32 -0
  506. package/dist/src/enums/Code/code-lang.enum.cjs +23 -0
  507. package/dist/src/enums/Code/code-lang.enum.d.ts +25 -0
  508. package/dist/src/enums/Code/code-lang.enum.js +17 -0
  509. package/dist/src/enums/Code/code-theme.enum.cjs +12 -0
  510. package/dist/src/enums/Code/code-theme.enum.d.ts +12 -0
  511. package/dist/src/enums/Code/code-theme.enum.js +6 -0
  512. package/dist/src/enums/EmptyState/empty-state-preset.enum.cjs +14 -0
  513. package/dist/src/enums/EmptyState/empty-state-preset.enum.d.ts +16 -0
  514. package/dist/src/enums/EmptyState/empty-state-preset.enum.js +8 -0
  515. package/dist/src/enums/InlineEdit/inline-edit-action.enum.cjs +12 -0
  516. package/dist/src/enums/InlineEdit/inline-edit-action.enum.d.ts +10 -0
  517. package/dist/src/enums/InlineEdit/inline-edit-action.enum.js +6 -0
  518. package/dist/src/enums/Mask/mask.enum.cjs +28 -0
  519. package/dist/src/enums/Mask/mask.enum.d.ts +36 -0
  520. package/dist/src/enums/Mask/mask.enum.js +22 -0
  521. package/dist/src/enums/Parallax/parallax-direction.enum.cjs +12 -0
  522. package/dist/src/enums/Parallax/parallax-direction.enum.d.ts +5 -0
  523. package/dist/src/enums/Parallax/parallax-direction.enum.js +6 -0
  524. package/dist/src/enums/Parallax/parallax-easing.enum.cjs +12 -0
  525. package/dist/src/enums/Parallax/parallax-easing.enum.d.ts +5 -0
  526. package/dist/src/enums/Parallax/parallax-easing.enum.js +6 -0
  527. package/dist/src/enums/SliderField/slider-field-variant.enum.cjs +12 -0
  528. package/dist/src/enums/SliderField/slider-field-variant.enum.d.ts +21 -0
  529. package/dist/src/enums/SliderField/slider-field-variant.enum.js +6 -0
  530. package/dist/src/enums/Tabs/tab-variant.enum.cjs +12 -0
  531. package/dist/src/enums/Tabs/tab-variant.enum.d.ts +5 -0
  532. package/dist/src/enums/Tabs/tab-variant.enum.js +6 -0
  533. package/dist/src/enums/Textarea/textarea-mode.enum.cjs +11 -0
  534. package/dist/src/enums/Textarea/textarea-mode.enum.d.ts +13 -0
  535. package/dist/src/enums/Textarea/textarea-mode.enum.js +5 -0
  536. package/dist/src/enums/Textarea/textarea-output.enum.cjs +11 -0
  537. package/dist/src/enums/Textarea/textarea-output.enum.d.ts +14 -0
  538. package/dist/src/enums/Textarea/textarea-output.enum.js +5 -0
  539. package/dist/src/enums/Textarea/textarea-toolbar-command.enum.cjs +21 -0
  540. package/dist/src/enums/Textarea/textarea-toolbar-command.enum.d.ts +20 -0
  541. package/dist/src/enums/Textarea/textarea-toolbar-command.enum.js +15 -0
  542. package/dist/src/enums/Textarea/textarea-toolbar-position.enum.cjs +12 -0
  543. package/dist/src/enums/Textarea/textarea-toolbar-position.enum.d.ts +10 -0
  544. package/dist/src/enums/Textarea/textarea-toolbar-position.enum.js +6 -0
  545. package/dist/src/enums/index.cjs +364 -1
  546. package/dist/src/enums/index.d.ts +34 -1
  547. package/dist/src/enums/index.js +34 -1
  548. package/dist/src/interfaces/Alert/alert.interface.d.ts +5 -1
  549. package/dist/src/interfaces/App/app-bar.interface.d.ts +4 -1
  550. package/dist/src/interfaces/Audio/audio-player.interface.d.ts +406 -0
  551. package/dist/src/interfaces/Avatar/avatar-group.interface.d.ts +5 -1
  552. package/dist/src/interfaces/Avatar/avatar.interface.d.ts +4 -1
  553. package/dist/src/interfaces/Blockquote/blockquote.interface.d.ts +84 -0
  554. package/dist/src/interfaces/BottomNav/bottom-nav.interface.d.ts +5 -1
  555. package/dist/src/interfaces/Bracket/bracket-competitor-component.interface.d.ts +53 -0
  556. package/dist/src/interfaces/Bracket/bracket-competitor.interface.d.ts +25 -0
  557. package/dist/src/interfaces/Bracket/bracket-match-component.interface.d.ts +45 -0
  558. package/dist/src/interfaces/Bracket/bracket-match.interface.d.ts +51 -0
  559. package/dist/src/interfaces/Bracket/bracket-match.interface.js +0 -0
  560. package/dist/src/interfaces/Bracket/bracket-round-component.interface.cjs +1 -0
  561. package/dist/src/interfaces/Bracket/bracket-round-component.interface.d.ts +26 -0
  562. package/dist/src/interfaces/Bracket/bracket-round-component.interface.js +0 -0
  563. package/dist/src/interfaces/Bracket/bracket-round.interface.cjs +1 -0
  564. package/dist/src/interfaces/Bracket/bracket-round.interface.d.ts +27 -0
  565. package/dist/src/interfaces/Bracket/bracket-round.interface.js +0 -0
  566. package/dist/src/interfaces/Bracket/bracket.interface.cjs +1 -0
  567. package/dist/src/interfaces/Bracket/bracket.interface.d.ts +64 -0
  568. package/dist/src/interfaces/Bracket/bracket.interface.js +0 -0
  569. package/dist/src/interfaces/Breadcrumb/breadcrumb-item.interface.d.ts +4 -1
  570. package/dist/src/interfaces/Btn/btn-toggle.interface.d.ts +4 -1
  571. package/dist/src/interfaces/Btn/btn.interface.d.ts +5 -1
  572. package/dist/src/interfaces/Calendar/calendar.interface.cjs +1 -0
  573. package/dist/src/interfaces/Calendar/calendar.interface.d.ts +159 -0
  574. package/dist/src/interfaces/Calendar/calendar.interface.js +0 -0
  575. package/dist/src/interfaces/Calendar/event.interface.cjs +1 -0
  576. package/dist/src/interfaces/Calendar/event.interface.d.ts +54 -0
  577. package/dist/src/interfaces/Calendar/event.interface.js +0 -0
  578. package/dist/src/interfaces/Card/card-header.interface.d.ts +4 -1
  579. package/dist/src/interfaces/Card/card.interface.d.ts +5 -1
  580. package/dist/src/interfaces/Carousel/carousel.interface.d.ts +4 -1
  581. package/dist/src/interfaces/Chart/chart-annotation.interface.cjs +1 -0
  582. package/dist/src/interfaces/Chart/chart-annotation.interface.d.ts +99 -0
  583. package/dist/src/interfaces/Chart/chart-annotation.interface.js +0 -0
  584. package/dist/src/interfaces/Chart/chart-axis.interface.cjs +1 -0
  585. package/dist/src/interfaces/Chart/chart-axis.interface.d.ts +78 -0
  586. package/dist/src/interfaces/Chart/chart-axis.interface.js +0 -0
  587. package/dist/src/interfaces/Chart/chart-base.interface.cjs +1 -0
  588. package/dist/src/interfaces/Chart/chart-base.interface.d.ts +87 -0
  589. package/dist/src/interfaces/Chart/chart-base.interface.js +0 -0
  590. package/dist/src/interfaces/Chart/chart-box-plot.interface.cjs +1 -0
  591. package/dist/src/interfaces/Chart/chart-box-plot.interface.d.ts +203 -0
  592. package/dist/src/interfaces/Chart/chart-box-plot.interface.js +0 -0
  593. package/dist/src/interfaces/Chart/chart-bullet.interface.cjs +1 -0
  594. package/dist/src/interfaces/Chart/chart-bullet.interface.d.ts +140 -0
  595. package/dist/src/interfaces/Chart/chart-bullet.interface.js +0 -0
  596. package/dist/src/interfaces/Chart/chart-candlestick.interface.cjs +1 -0
  597. package/dist/src/interfaces/Chart/chart-candlestick.interface.d.ts +131 -0
  598. package/dist/src/interfaces/Chart/chart-candlestick.interface.js +0 -0
  599. package/dist/src/interfaces/Chart/chart-cartesian.interface.cjs +1 -0
  600. package/dist/src/interfaces/Chart/chart-cartesian.interface.d.ts +124 -0
  601. package/dist/src/interfaces/Chart/chart-cartesian.interface.js +0 -0
  602. package/dist/src/interfaces/Chart/chart-drilldown.interface.cjs +1 -0
  603. package/dist/src/interfaces/Chart/chart-drilldown.interface.d.ts +60 -0
  604. package/dist/src/interfaces/Chart/chart-drilldown.interface.js +0 -0
  605. package/dist/src/interfaces/Chart/chart-gauge.interface.cjs +1 -0
  606. package/dist/src/interfaces/Chart/chart-gauge.interface.d.ts +130 -0
  607. package/dist/src/interfaces/Chart/chart-gauge.interface.js +0 -0
  608. package/dist/src/interfaces/Chart/chart-heatmap.interface.cjs +1 -0
  609. package/dist/src/interfaces/Chart/chart-heatmap.interface.d.ts +128 -0
  610. package/dist/src/interfaces/Chart/chart-heatmap.interface.js +0 -0
  611. package/dist/src/interfaces/Chart/chart-honeycomb.interface.cjs +1 -0
  612. package/dist/src/interfaces/Chart/chart-honeycomb.interface.d.ts +109 -0
  613. package/dist/src/interfaces/Chart/chart-honeycomb.interface.js +0 -0
  614. package/dist/src/interfaces/Chart/chart-legend.interface.cjs +1 -0
  615. package/dist/src/interfaces/Chart/chart-legend.interface.d.ts +48 -0
  616. package/dist/src/interfaces/Chart/chart-legend.interface.js +0 -0
  617. package/dist/src/interfaces/Chart/chart-map.interface.cjs +1 -0
  618. package/dist/src/interfaces/Chart/chart-map.interface.d.ts +137 -0
  619. package/dist/src/interfaces/Chart/chart-map.interface.js +0 -0
  620. package/dist/src/interfaces/Chart/chart-pareto.interface.cjs +1 -0
  621. package/dist/src/interfaces/Chart/chart-pareto.interface.d.ts +124 -0
  622. package/dist/src/interfaces/Chart/chart-pareto.interface.js +0 -0
  623. package/dist/src/interfaces/Chart/chart-pictorial.interface.cjs +1 -0
  624. package/dist/src/interfaces/Chart/chart-pictorial.interface.d.ts +114 -0
  625. package/dist/src/interfaces/Chart/chart-pictorial.interface.js +0 -0
  626. package/dist/src/interfaces/Chart/chart-plot-band.interface.cjs +1 -0
  627. package/dist/src/interfaces/Chart/chart-plot-band.interface.d.ts +34 -0
  628. package/dist/src/interfaces/Chart/chart-plot-band.interface.js +0 -0
  629. package/dist/src/interfaces/Chart/chart-plot-line.interface.cjs +1 -0
  630. package/dist/src/interfaces/Chart/chart-plot-line.interface.d.ts +39 -0
  631. package/dist/src/interfaces/Chart/chart-plot-line.interface.js +0 -0
  632. package/dist/src/interfaces/Chart/chart-point.interface.cjs +1 -0
  633. package/dist/src/interfaces/Chart/chart-point.interface.d.ts +20 -0
  634. package/dist/src/interfaces/Chart/chart-point.interface.js +0 -0
  635. package/dist/src/interfaces/Chart/chart-polar-bar.interface.cjs +1 -0
  636. package/dist/src/interfaces/Chart/chart-polar-bar.interface.d.ts +118 -0
  637. package/dist/src/interfaces/Chart/chart-polar-bar.interface.js +0 -0
  638. package/dist/src/interfaces/Chart/chart-polar.interface.cjs +1 -0
  639. package/dist/src/interfaces/Chart/chart-polar.interface.d.ts +43 -0
  640. package/dist/src/interfaces/Chart/chart-polar.interface.js +0 -0
  641. package/dist/src/interfaces/Chart/chart-pyramid.interface.cjs +1 -0
  642. package/dist/src/interfaces/Chart/chart-pyramid.interface.d.ts +96 -0
  643. package/dist/src/interfaces/Chart/chart-pyramid.interface.js +0 -0
  644. package/dist/src/interfaces/Chart/chart-radar.interface.cjs +1 -0
  645. package/dist/src/interfaces/Chart/chart-radar.interface.d.ts +10 -0
  646. package/dist/src/interfaces/Chart/chart-radar.interface.js +0 -0
  647. package/dist/src/interfaces/Chart/chart-range-selector.interface.cjs +1 -0
  648. package/dist/src/interfaces/Chart/chart-range-selector.interface.d.ts +38 -0
  649. package/dist/src/interfaces/Chart/chart-range-selector.interface.js +0 -0
  650. package/dist/src/interfaces/Chart/chart-sankey.interface.cjs +1 -0
  651. package/dist/src/interfaces/Chart/chart-sankey.interface.d.ts +124 -0
  652. package/dist/src/interfaces/Chart/chart-sankey.interface.js +0 -0
  653. package/dist/src/interfaces/Chart/chart-series.interface.cjs +1 -0
  654. package/dist/src/interfaces/Chart/chart-series.interface.d.ts +80 -0
  655. package/dist/src/interfaces/Chart/chart-series.interface.js +0 -0
  656. package/dist/src/interfaces/Chart/chart-sparkline.interface.cjs +1 -0
  657. package/dist/src/interfaces/Chart/chart-sparkline.interface.d.ts +108 -0
  658. package/dist/src/interfaces/Chart/chart-sparkline.interface.js +0 -0
  659. package/dist/src/interfaces/Chart/chart-streamgraph.interface.cjs +1 -0
  660. package/dist/src/interfaces/Chart/chart-streamgraph.interface.d.ts +82 -0
  661. package/dist/src/interfaces/Chart/chart-streamgraph.interface.js +0 -0
  662. package/dist/src/interfaces/Chart/chart-sunburst.interface.cjs +1 -0
  663. package/dist/src/interfaces/Chart/chart-sunburst.interface.d.ts +100 -0
  664. package/dist/src/interfaces/Chart/chart-sunburst.interface.js +0 -0
  665. package/dist/src/interfaces/Chart/chart-tooltip.interface.cjs +1 -0
  666. package/dist/src/interfaces/Chart/chart-tooltip.interface.d.ts +55 -0
  667. package/dist/src/interfaces/Chart/chart-tooltip.interface.js +0 -0
  668. package/dist/src/interfaces/Chart/chart-treemap.interface.cjs +1 -0
  669. package/dist/src/interfaces/Chart/chart-treemap.interface.d.ts +106 -0
  670. package/dist/src/interfaces/Chart/chart-treemap.interface.js +0 -0
  671. package/dist/src/interfaces/Chart/chart-variwide.interface.cjs +1 -0
  672. package/dist/src/interfaces/Chart/chart-variwide.interface.d.ts +132 -0
  673. package/dist/src/interfaces/Chart/chart-variwide.interface.js +0 -0
  674. package/dist/src/interfaces/Chart/chart-word-cloud.interface.cjs +1 -0
  675. package/dist/src/interfaces/Chart/chart-word-cloud.interface.d.ts +83 -0
  676. package/dist/src/interfaces/Chart/chart-word-cloud.interface.js +0 -0
  677. package/dist/src/interfaces/Chart/chart.interface.cjs +1 -0
  678. package/dist/src/interfaces/Chart/chart.interface.d.ts +276 -0
  679. package/dist/src/interfaces/Chart/chart.interface.js +0 -0
  680. package/dist/src/interfaces/Chip/chip-group.interface.d.ts +4 -1
  681. package/dist/src/interfaces/Chip/chip.interface.d.ts +5 -1
  682. package/dist/src/interfaces/Clipboard/clipboard.interface.cjs +1 -0
  683. package/dist/src/interfaces/Clipboard/clipboard.interface.d.ts +106 -0
  684. package/dist/src/interfaces/Clipboard/clipboard.interface.js +0 -0
  685. package/dist/src/interfaces/Code/code.interface.cjs +1 -0
  686. package/dist/src/interfaces/Code/code.interface.d.ts +89 -0
  687. package/dist/src/interfaces/Code/code.interface.js +0 -0
  688. package/dist/src/interfaces/ColorPicker/color-picker-canvas.interface.d.ts +5 -1
  689. package/dist/src/interfaces/ColorPicker/color-picker-edit.interface.d.ts +5 -1
  690. package/dist/src/interfaces/ColorPicker/color-picker-preview.interface.d.ts +4 -1
  691. package/dist/src/interfaces/ColorPicker/color-picker-swatches.interface.d.ts +5 -1
  692. package/dist/src/interfaces/ColorPicker/color-picker.interface.d.ts +18 -2
  693. package/dist/src/interfaces/CommandPalette/command-palette.interface.cjs +1 -0
  694. package/dist/src/interfaces/CommandPalette/command-palette.interface.d.ts +57 -0
  695. package/dist/src/interfaces/CommandPalette/command-palette.interface.js +0 -0
  696. package/dist/src/interfaces/CommandPalette/command.interface.cjs +1 -0
  697. package/dist/src/interfaces/CommandPalette/command.interface.d.ts +51 -0
  698. package/dist/src/interfaces/CommandPalette/command.interface.js +0 -0
  699. package/dist/src/interfaces/Commons/audio.interface.d.ts +7 -1
  700. package/dist/src/interfaces/Commons/clickOutside.interface.d.ts +5 -0
  701. package/dist/src/interfaces/Commons/commons.interface.d.ts +18 -0
  702. package/dist/src/interfaces/Commons/gradient.interface.cjs +1 -0
  703. package/dist/src/interfaces/Commons/gradient.interface.d.ts +39 -0
  704. package/dist/src/interfaces/Commons/gradient.interface.js +0 -0
  705. package/dist/src/interfaces/Commons/group.interface.d.ts +6 -0
  706. package/dist/src/interfaces/Commons/hover.interface.d.ts +4 -0
  707. package/dist/src/interfaces/Commons/layout.interface.d.ts +2 -2
  708. package/dist/src/interfaces/Commons/lazy.interface.d.ts +5 -1
  709. package/dist/src/interfaces/DataTable/data-table.interface.d.ts +12 -1
  710. package/dist/src/interfaces/DataTable/headers.interface.d.ts +6 -1
  711. package/dist/src/interfaces/DataTable/row.interface.d.ts +11 -0
  712. package/dist/src/interfaces/DatePicker/date-picker-controls.interface.d.ts +9 -0
  713. package/dist/src/interfaces/DatePicker/date-picker-header.interface.d.ts +4 -1
  714. package/dist/src/interfaces/DatePicker/date-picker-months.interface.d.ts +4 -0
  715. package/dist/src/interfaces/DatePicker/date-picker-years.interface.d.ts +4 -0
  716. package/dist/src/interfaces/DatePicker/date-picker.interface.d.ts +9 -1
  717. package/dist/src/interfaces/DatePickerField/date-picker-field.interface.d.ts +2 -2
  718. package/dist/src/interfaces/Dialog/dialog-confirmation.interface.d.ts +5 -0
  719. package/dist/src/interfaces/Dialog/dialog.interface.d.ts +8 -1
  720. package/dist/src/interfaces/Drawer/drawer.interface.d.ts +4 -0
  721. package/dist/src/interfaces/EmptyState/empty-state.interface.cjs +1 -0
  722. package/dist/src/interfaces/EmptyState/empty-state.interface.d.ts +100 -0
  723. package/dist/src/interfaces/EmptyState/empty-state.interface.js +0 -0
  724. package/dist/src/interfaces/ExpensionPanel/expansion-panel-header.interface.d.ts +4 -1
  725. package/dist/src/interfaces/ExpensionPanel/expansion-panel.interface.d.ts +4 -1
  726. package/dist/src/interfaces/ExpensionPanel/expansion-panels.interface.d.ts +4 -1
  727. package/dist/src/interfaces/FileField/file-field-dragndrop-item.interface.d.ts +2 -3
  728. package/dist/src/interfaces/FileField/file-field-list-item.interface.d.ts +2 -3
  729. package/dist/src/interfaces/Grid/grid-item.interface.cjs +1 -0
  730. package/dist/src/interfaces/Grid/grid-item.interface.d.ts +55 -0
  731. package/dist/src/interfaces/Grid/grid-item.interface.js +0 -0
  732. package/dist/src/interfaces/Grid/grid.interface.cjs +1 -0
  733. package/dist/src/interfaces/Grid/grid.interface.d.ts +121 -0
  734. package/dist/src/interfaces/Grid/grid.interface.js +0 -0
  735. package/dist/src/interfaces/Icon/icon.interface.d.ts +2 -2
  736. package/dist/src/interfaces/Img/img.interface.d.ts +14 -0
  737. package/dist/src/interfaces/InfiniteScroll/infinite-scroll.interface.d.ts +16 -0
  738. package/dist/src/interfaces/InlineEdit/inline-edit.interface.cjs +1 -0
  739. package/dist/src/interfaces/InlineEdit/inline-edit.interface.d.ts +241 -0
  740. package/dist/src/interfaces/InlineEdit/inline-edit.interface.js +0 -0
  741. package/dist/src/interfaces/ItemGroup/item-group.interface.d.ts +4 -1
  742. package/dist/src/interfaces/List/list-group.interface.d.ts +5 -0
  743. package/dist/src/interfaces/List/list-item.interface.d.ts +4 -1
  744. package/dist/src/interfaces/List/list.interface.d.ts +16 -0
  745. package/dist/src/interfaces/Main/main.interface.d.ts +2 -2
  746. package/dist/src/interfaces/Mask/mask-options.interface.cjs +1 -0
  747. package/dist/src/interfaces/Mask/mask-options.interface.d.ts +48 -0
  748. package/dist/src/interfaces/Mask/mask-options.interface.js +0 -0
  749. package/dist/src/interfaces/Masonry/masonry.interface.cjs +1 -0
  750. package/dist/src/interfaces/Masonry/masonry.interface.d.ts +80 -0
  751. package/dist/src/interfaces/Masonry/masonry.interface.js +0 -0
  752. package/dist/src/interfaces/Media/index.cjs +49 -0
  753. package/dist/src/interfaces/Media/index.d.ts +4 -0
  754. package/dist/src/interfaces/Media/index.js +4 -0
  755. package/dist/src/interfaces/Media/media-controller.interface.cjs +1 -0
  756. package/dist/src/interfaces/Media/media-controller.interface.d.ts +159 -0
  757. package/dist/src/interfaces/Media/media-controller.interface.js +0 -0
  758. package/dist/src/interfaces/Media/media-player.interface.cjs +1 -0
  759. package/dist/src/interfaces/Media/media-player.interface.d.ts +121 -0
  760. package/dist/src/interfaces/Media/media-player.interface.js +0 -0
  761. package/dist/src/interfaces/Media/media-scrubber.interface.cjs +1 -0
  762. package/dist/src/interfaces/Media/media-scrubber.interface.d.ts +129 -0
  763. package/dist/src/interfaces/Media/media-scrubber.interface.js +0 -0
  764. package/dist/src/interfaces/Media/media-volume-control.interface.cjs +1 -0
  765. package/dist/src/interfaces/Media/media-volume-control.interface.d.ts +68 -0
  766. package/dist/src/interfaces/Media/media-volume-control.interface.js +0 -0
  767. package/dist/src/interfaces/Menu/menu.interface.d.ts +7 -1
  768. package/dist/src/interfaces/NumberField/number-field.interface.d.ts +2 -2
  769. package/dist/src/interfaces/NumberFormat/number-format.interface.cjs +1 -0
  770. package/dist/src/interfaces/NumberFormat/number-format.interface.d.ts +161 -0
  771. package/dist/src/interfaces/NumberFormat/number-format.interface.js +0 -0
  772. package/dist/src/interfaces/Nuxt/nuxt-module.interface.cjs +1 -0
  773. package/dist/src/interfaces/Nuxt/nuxt-module.interface.d.ts +73 -0
  774. package/dist/src/interfaces/Nuxt/nuxt-module.interface.js +0 -0
  775. package/dist/src/interfaces/OtpInputField/otp-input-field.interface.d.ts +2 -2
  776. package/dist/src/interfaces/Overlay/overlay-scrim.interface.d.ts +8 -1
  777. package/dist/src/interfaces/Overlay/overlay.interface.d.ts +8 -1
  778. package/dist/src/interfaces/Pagination/pagination.interface.d.ts +9 -1
  779. package/dist/src/interfaces/Parallax/parallax-layer.interface.cjs +1 -0
  780. package/dist/src/interfaces/Parallax/parallax-layer.interface.d.ts +39 -0
  781. package/dist/src/interfaces/Parallax/parallax-layer.interface.js +0 -0
  782. package/dist/src/interfaces/Parallax/parallax.interface.d.ts +83 -3
  783. package/dist/src/interfaces/PasswordField/password-field.interface.d.ts +2 -2
  784. package/dist/src/interfaces/Picker/picker.interface.d.ts +2 -2
  785. package/dist/src/interfaces/QrCode/qr-code-logo.interface.cjs +1 -0
  786. package/dist/src/interfaces/QrCode/qr-code-logo.interface.d.ts +47 -0
  787. package/dist/src/interfaces/QrCode/qr-code-logo.interface.js +0 -0
  788. package/dist/src/interfaces/QrCode/qr-code.interface.cjs +1 -0
  789. package/dist/src/interfaces/QrCode/qr-code.interface.d.ts +152 -0
  790. package/dist/src/interfaces/QrCode/qr-code.interface.js +0 -0
  791. package/dist/src/interfaces/Radio/radio-btn.interface.d.ts +4 -1
  792. package/dist/src/interfaces/Radio/radio.interface.d.ts +4 -1
  793. package/dist/src/interfaces/RatingField/rating-field-item.interface.d.ts +7 -1
  794. package/dist/src/interfaces/RatingField/rating-field.interface.d.ts +5 -2
  795. package/dist/src/interfaces/Select/select.interface.d.ts +9 -1
  796. package/dist/src/interfaces/Slide/slide-group.interface.d.ts +4 -1
  797. package/dist/src/interfaces/SliderField/slider-field-track.interface.d.ts +17 -0
  798. package/dist/src/interfaces/SliderField/slider-field.interface.d.ts +77 -59
  799. package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.cjs +1 -0
  800. package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.d.ts +60 -0
  801. package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.js +0 -0
  802. package/dist/src/interfaces/Snackbar/snackbar-group.interface.cjs +1 -0
  803. package/dist/src/interfaces/Snackbar/snackbar-group.interface.d.ts +60 -0
  804. package/dist/src/interfaces/Snackbar/snackbar-group.interface.js +0 -0
  805. package/dist/src/interfaces/Snackbar/snackbar-item.interface.cjs +1 -0
  806. package/dist/src/interfaces/Snackbar/snackbar-item.interface.d.ts +79 -0
  807. package/dist/src/interfaces/Snackbar/snackbar-item.interface.js +0 -0
  808. package/dist/src/interfaces/Stepper/stepper.interface.d.ts +2 -2
  809. package/dist/src/interfaces/Switch/switch-track.interface.d.ts +8 -0
  810. package/dist/src/interfaces/Switch/switch.interface.d.ts +5 -1
  811. package/dist/src/interfaces/Table/table.interface.d.ts +3 -0
  812. package/dist/src/interfaces/Tabs/tab-panel.interface.cjs +1 -0
  813. package/dist/src/interfaces/Tabs/tab-panel.interface.d.ts +12 -0
  814. package/dist/src/interfaces/Tabs/tab-panel.interface.js +0 -0
  815. package/dist/src/interfaces/Tabs/tab-panels.interface.cjs +1 -0
  816. package/dist/src/interfaces/Tabs/tab-panels.interface.d.ts +31 -0
  817. package/dist/src/interfaces/Tabs/tab-panels.interface.js +0 -0
  818. package/dist/src/interfaces/Tabs/tab.interface.cjs +1 -0
  819. package/dist/src/interfaces/Tabs/tab.interface.d.ts +18 -0
  820. package/dist/src/interfaces/Tabs/tab.interface.js +0 -0
  821. package/dist/src/interfaces/Tabs/tabs.interface.cjs +1 -0
  822. package/dist/src/interfaces/Tabs/tabs.interface.d.ts +29 -0
  823. package/dist/src/interfaces/Tabs/tabs.interface.js +0 -0
  824. package/dist/src/interfaces/TextField/text-field.interface.d.ts +21 -1
  825. package/dist/src/interfaces/TextMask/text-mask.interface.cjs +1 -0
  826. package/dist/src/interfaces/TextMask/text-mask.interface.d.ts +112 -0
  827. package/dist/src/interfaces/TextMask/text-mask.interface.js +0 -0
  828. package/dist/src/interfaces/Textarea/textarea-rich.interface.cjs +1 -0
  829. package/dist/src/interfaces/Textarea/textarea-rich.interface.d.ts +41 -0
  830. package/dist/src/interfaces/Textarea/textarea-rich.interface.js +0 -0
  831. package/dist/src/interfaces/Textarea/textarea-toolbar.interface.cjs +1 -0
  832. package/dist/src/interfaces/Textarea/textarea-toolbar.interface.d.ts +31 -0
  833. package/dist/src/interfaces/Textarea/textarea-toolbar.interface.js +0 -0
  834. package/dist/src/interfaces/TextareaField/textarea-field.interface.d.ts +38 -1
  835. package/dist/src/interfaces/Tooltip/tooltip.interface.d.ts +4 -1
  836. package/dist/src/interfaces/Video/video-track.interface.cjs +1 -0
  837. package/dist/src/interfaces/Video/video-track.interface.d.ts +76 -0
  838. package/dist/src/interfaces/Video/video-track.interface.js +0 -0
  839. package/dist/src/interfaces/Video/video.interface.cjs +1 -0
  840. package/dist/src/interfaces/Video/video.interface.d.ts +317 -0
  841. package/dist/src/interfaces/Video/video.interface.js +0 -0
  842. package/dist/src/interfaces/VirtualScroll/virtual-scroll-item.interface.d.ts +6 -0
  843. package/dist/src/interfaces/Watermark/watermark.interface.cjs +1 -0
  844. package/dist/src/interfaces/Watermark/watermark.interface.d.ts +163 -0
  845. package/dist/src/interfaces/Watermark/watermark.interface.js +0 -0
  846. package/dist/src/interfaces/Window/window-item.interface.d.ts +4 -1
  847. package/dist/src/interfaces/Window/window.interface.d.ts +4 -1
  848. package/dist/src/interfaces/index.cjs +811 -41
  849. package/dist/src/interfaces/index.d.ts +74 -4
  850. package/dist/src/interfaces/index.js +74 -4
  851. package/dist/src/nuxt/index.cjs +13 -0
  852. package/dist/src/nuxt/index.d.ts +2 -0
  853. package/dist/src/nuxt/index.js +1 -0
  854. package/dist/src/nuxt/module.cjs +74 -0
  855. package/dist/src/nuxt/module.d.ts +31 -0
  856. package/dist/src/nuxt/module.js +68 -0
  857. package/dist/src/nuxt/plugin.client.cjs +44 -0
  858. package/dist/src/nuxt/plugin.client.d.ts +2 -0
  859. package/dist/src/nuxt/plugin.client.js +36 -0
  860. package/dist/src/nuxt/plugin.server.cjs +51 -0
  861. package/dist/src/nuxt/plugin.server.d.ts +2 -0
  862. package/dist/src/nuxt/plugin.server.js +45 -0
  863. package/dist/src/types/Audio/audio-controls.type.cjs +1 -0
  864. package/dist/src/types/Audio/audio-controls.type.d.ts +12 -0
  865. package/dist/src/types/Audio/audio-controls.type.js +0 -0
  866. package/dist/src/types/Audio/audio-loop-mode.type.cjs +1 -0
  867. package/dist/src/types/Audio/audio-loop-mode.type.d.ts +5 -0
  868. package/dist/src/types/Audio/audio-loop-mode.type.js +0 -0
  869. package/dist/src/types/Audio/audio-variant.type.cjs +1 -0
  870. package/dist/src/types/Audio/audio-variant.type.d.ts +7 -0
  871. package/dist/src/types/Audio/audio-variant.type.js +0 -0
  872. package/dist/src/types/Audio/cover-position.type.cjs +1 -0
  873. package/dist/src/types/Audio/cover-position.type.d.ts +6 -0
  874. package/dist/src/types/Audio/cover-position.type.js +0 -0
  875. package/dist/src/types/Blockquote/blockquote-align.type.cjs +1 -0
  876. package/dist/src/types/Blockquote/blockquote-align.type.d.ts +5 -0
  877. package/dist/src/types/Blockquote/blockquote-align.type.js +0 -0
  878. package/dist/src/types/Blockquote/blockquote-lang.type.cjs +1 -0
  879. package/dist/src/types/Blockquote/blockquote-lang.type.d.ts +18 -0
  880. package/dist/src/types/Blockquote/blockquote-lang.type.js +0 -0
  881. package/dist/src/types/Blockquote/blockquote-variant.type.cjs +1 -0
  882. package/dist/src/types/Blockquote/blockquote-variant.type.d.ts +17 -0
  883. package/dist/src/types/Blockquote/blockquote-variant.type.js +0 -0
  884. package/dist/src/types/Bracket/bracket-direction.type.cjs +1 -0
  885. package/dist/src/types/Bracket/bracket-direction.type.d.ts +13 -0
  886. package/dist/src/types/Bracket/bracket-direction.type.js +0 -0
  887. package/dist/src/types/Bracket/bracket-match-status.type.cjs +1 -0
  888. package/dist/src/types/Bracket/bracket-match-status.type.d.ts +2 -0
  889. package/dist/src/types/Bracket/bracket-match-status.type.js +0 -0
  890. package/dist/src/types/Bracket/bracket-round-side.type.cjs +1 -0
  891. package/dist/src/types/Bracket/bracket-round-side.type.d.ts +12 -0
  892. package/dist/src/types/Bracket/bracket-round-side.type.js +0 -0
  893. package/dist/src/types/Bracket/bracket-variant.type.cjs +1 -0
  894. package/dist/src/types/Bracket/bracket-variant.type.d.ts +2 -0
  895. package/dist/src/types/Bracket/bracket-variant.type.js +0 -0
  896. package/dist/src/types/Calendar/calendar-time-format.type.cjs +1 -0
  897. package/dist/src/types/Calendar/calendar-time-format.type.d.ts +13 -0
  898. package/dist/src/types/Calendar/calendar-time-format.type.js +0 -0
  899. package/dist/src/types/Calendar/calendar-view.type.cjs +1 -0
  900. package/dist/src/types/Calendar/calendar-view.type.d.ts +10 -0
  901. package/dist/src/types/Calendar/calendar-view.type.js +0 -0
  902. package/dist/src/types/Chart/chart-bullet-orientation.type.cjs +1 -0
  903. package/dist/src/types/Chart/chart-bullet-orientation.type.d.ts +1 -0
  904. package/dist/src/types/Chart/chart-bullet-orientation.type.js +0 -0
  905. package/dist/src/types/Chart/chart-cartesian-kind.type.cjs +1 -0
  906. package/dist/src/types/Chart/chart-cartesian-kind.type.d.ts +18 -0
  907. package/dist/src/types/Chart/chart-cartesian-kind.type.js +0 -0
  908. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.cjs +1 -0
  909. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.d.ts +2 -0
  910. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.js +0 -0
  911. package/dist/src/types/Chart/chart-honeycomb-orientation.type.cjs +1 -0
  912. package/dist/src/types/Chart/chart-honeycomb-orientation.type.d.ts +2 -0
  913. package/dist/src/types/Chart/chart-honeycomb-orientation.type.js +0 -0
  914. package/dist/src/types/Chart/chart-item.type.cjs +1 -0
  915. package/dist/src/types/Chart/chart-item.type.d.ts +9 -0
  916. package/dist/src/types/Chart/chart-item.type.js +0 -0
  917. package/dist/src/types/Chart/chart-legend-position.type.cjs +1 -0
  918. package/dist/src/types/Chart/chart-legend-position.type.d.ts +6 -0
  919. package/dist/src/types/Chart/chart-legend-position.type.js +0 -0
  920. package/dist/src/types/Chart/chart-map-mode.type.cjs +1 -0
  921. package/dist/src/types/Chart/chart-map-mode.type.d.ts +8 -0
  922. package/dist/src/types/Chart/chart-map-mode.type.js +0 -0
  923. package/dist/src/types/Chart/chart-pictorial-direction.type.cjs +1 -0
  924. package/dist/src/types/Chart/chart-pictorial-direction.type.d.ts +1 -0
  925. package/dist/src/types/Chart/chart-pictorial-direction.type.js +0 -0
  926. package/dist/src/types/Chart/chart-pictorial-mode.type.cjs +1 -0
  927. package/dist/src/types/Chart/chart-pictorial-mode.type.d.ts +1 -0
  928. package/dist/src/types/Chart/chart-pictorial-mode.type.js +0 -0
  929. package/dist/src/types/Chart/chart-polar-kind.type.cjs +1 -0
  930. package/dist/src/types/Chart/chart-polar-kind.type.d.ts +14 -0
  931. package/dist/src/types/Chart/chart-polar-kind.type.js +0 -0
  932. package/dist/src/types/Chart/chart-pyramid-kind.type.cjs +1 -0
  933. package/dist/src/types/Chart/chart-pyramid-kind.type.d.ts +9 -0
  934. package/dist/src/types/Chart/chart-pyramid-kind.type.js +0 -0
  935. package/dist/src/types/Chart/chart-smoothing.type.cjs +1 -0
  936. package/dist/src/types/Chart/chart-smoothing.type.d.ts +17 -0
  937. package/dist/src/types/Chart/chart-smoothing.type.js +0 -0
  938. package/dist/src/types/Chart/chart-sparkline-kind.type.cjs +1 -0
  939. package/dist/src/types/Chart/chart-sparkline-kind.type.d.ts +10 -0
  940. package/dist/src/types/Chart/chart-sparkline-kind.type.js +0 -0
  941. package/dist/src/types/Chart/chart-stacking.type.cjs +1 -0
  942. package/dist/src/types/Chart/chart-stacking.type.d.ts +9 -0
  943. package/dist/src/types/Chart/chart-stacking.type.js +0 -0
  944. package/dist/src/types/Chart/chart-streamgraph-offset.type.cjs +1 -0
  945. package/dist/src/types/Chart/chart-streamgraph-offset.type.d.ts +1 -0
  946. package/dist/src/types/Chart/chart-streamgraph-offset.type.js +0 -0
  947. package/dist/src/types/Chart/chart-treemap-algorithm.type.cjs +1 -0
  948. package/dist/src/types/Chart/chart-treemap-algorithm.type.d.ts +12 -0
  949. package/dist/src/types/Chart/chart-treemap-algorithm.type.js +0 -0
  950. package/dist/src/types/Chart/chart-type.type.cjs +1 -0
  951. package/dist/src/types/Chart/chart-type.type.d.ts +7 -0
  952. package/dist/src/types/Chart/chart-type.type.js +0 -0
  953. package/dist/src/types/Chart/chart-word-cloud-rotation.type.cjs +1 -0
  954. package/dist/src/types/Chart/chart-word-cloud-rotation.type.d.ts +8 -0
  955. package/dist/src/types/Chart/chart-word-cloud-rotation.type.js +0 -0
  956. package/dist/src/types/Code/code-lang.type.cjs +1 -0
  957. package/dist/src/types/Code/code-lang.type.d.ts +2 -0
  958. package/dist/src/types/Code/code-lang.type.js +0 -0
  959. package/dist/src/types/Code/code-theme.type.cjs +1 -0
  960. package/dist/src/types/Code/code-theme.type.d.ts +2 -0
  961. package/dist/src/types/Code/code-theme.type.js +0 -0
  962. package/dist/src/types/CommandPalette/command-palette-hotkey.type.cjs +1 -0
  963. package/dist/src/types/CommandPalette/command-palette-hotkey.type.d.ts +5 -0
  964. package/dist/src/types/CommandPalette/command-palette-hotkey.type.js +0 -0
  965. package/dist/src/types/Commons/color.type.d.ts +18 -1
  966. package/dist/src/types/EmptyState/empty-state-align.type.cjs +1 -0
  967. package/dist/src/types/EmptyState/empty-state-align.type.d.ts +10 -0
  968. package/dist/src/types/EmptyState/empty-state-align.type.js +0 -0
  969. package/dist/src/types/EmptyState/empty-state-preset.type.cjs +1 -0
  970. package/dist/src/types/EmptyState/empty-state-preset.type.d.ts +14 -0
  971. package/dist/src/types/EmptyState/empty-state-preset.type.js +0 -0
  972. package/dist/src/types/EmptyState/empty-state-size.type.cjs +1 -0
  973. package/dist/src/types/EmptyState/empty-state-size.type.d.ts +9 -0
  974. package/dist/src/types/EmptyState/empty-state-size.type.js +0 -0
  975. package/dist/src/types/Grid/grid-align.type.cjs +1 -0
  976. package/dist/src/types/Grid/grid-align.type.d.ts +28 -0
  977. package/dist/src/types/Grid/grid-align.type.js +0 -0
  978. package/dist/src/types/Grid/grid-flow.type.cjs +1 -0
  979. package/dist/src/types/Grid/grid-flow.type.d.ts +10 -0
  980. package/dist/src/types/Grid/grid-flow.type.js +0 -0
  981. package/dist/src/types/InlineEdit/inline-edit-input-type.type.cjs +1 -0
  982. package/dist/src/types/InlineEdit/inline-edit-input-type.type.d.ts +7 -0
  983. package/dist/src/types/InlineEdit/inline-edit-input-type.type.js +0 -0
  984. package/dist/src/types/Mask/built-in-pattern.type.cjs +1 -0
  985. package/dist/src/types/Mask/built-in-pattern.type.d.ts +7 -0
  986. package/dist/src/types/Mask/built-in-pattern.type.js +0 -0
  987. package/dist/src/types/Mask/mask.type.cjs +1 -0
  988. package/dist/src/types/Mask/mask.type.d.ts +19 -0
  989. package/dist/src/types/Mask/mask.type.js +0 -0
  990. package/dist/src/types/Mask/pattern-validator.type.cjs +1 -0
  991. package/dist/src/types/Mask/pattern-validator.type.d.ts +16 -0
  992. package/dist/src/types/Mask/pattern-validator.type.js +0 -0
  993. package/dist/src/types/Masonry/masonry-align.type.cjs +1 -0
  994. package/dist/src/types/Masonry/masonry-align.type.d.ts +16 -0
  995. package/dist/src/types/Masonry/masonry-align.type.js +0 -0
  996. package/dist/src/types/Media/index.cjs +27 -0
  997. package/dist/src/types/Media/index.d.ts +2 -0
  998. package/dist/src/types/Media/index.js +2 -0
  999. package/dist/src/types/Media/media-scrubber-orientation.type.cjs +1 -0
  1000. package/dist/src/types/Media/media-scrubber-orientation.type.d.ts +6 -0
  1001. package/dist/src/types/Media/media-scrubber-orientation.type.js +0 -0
  1002. package/dist/src/types/Media/quality-option.type.cjs +1 -0
  1003. package/dist/src/types/Media/quality-option.type.d.ts +25 -0
  1004. package/dist/src/types/Media/quality-option.type.js +0 -0
  1005. package/dist/src/types/NumberFormat/number-format-format.type.cjs +1 -0
  1006. package/dist/src/types/NumberFormat/number-format-format.type.d.ts +56 -0
  1007. package/dist/src/types/NumberFormat/number-format-format.type.js +0 -0
  1008. package/dist/src/types/Parallax/parallax-direction.type.cjs +1 -0
  1009. package/dist/src/types/Parallax/parallax-direction.type.d.ts +2 -0
  1010. package/dist/src/types/Parallax/parallax-direction.type.js +0 -0
  1011. package/dist/src/types/Parallax/parallax-easing.type.cjs +1 -0
  1012. package/dist/src/types/Parallax/parallax-easing.type.d.ts +2 -0
  1013. package/dist/src/types/Parallax/parallax-easing.type.js +0 -0
  1014. package/dist/src/types/QrCode/qr-code-error-correction.type.cjs +1 -0
  1015. package/dist/src/types/QrCode/qr-code-error-correction.type.d.ts +22 -0
  1016. package/dist/src/types/QrCode/qr-code-error-correction.type.js +0 -0
  1017. package/dist/src/types/SliderField/slider-field-variant.type.cjs +1 -0
  1018. package/dist/src/types/SliderField/slider-field-variant.type.d.ts +10 -0
  1019. package/dist/src/types/SliderField/slider-field-variant.type.js +0 -0
  1020. package/dist/src/types/Snackbar/snackbar-group-direction.type.cjs +1 -0
  1021. package/dist/src/types/Snackbar/snackbar-group-direction.type.d.ts +11 -0
  1022. package/dist/src/types/Snackbar/snackbar-group-direction.type.js +0 -0
  1023. package/dist/src/types/Snackbar/snackbar-group-location.type.cjs +1 -0
  1024. package/dist/src/types/Snackbar/snackbar-group-location.type.d.ts +9 -0
  1025. package/dist/src/types/Snackbar/snackbar-group-location.type.js +0 -0
  1026. package/dist/src/types/Snackbar/snackbar-group.type.cjs +1 -0
  1027. package/dist/src/types/Snackbar/snackbar-group.type.d.ts +2 -0
  1028. package/dist/src/types/Snackbar/snackbar-group.type.js +0 -0
  1029. package/dist/src/types/Tabs/tab-panel.type.cjs +1 -0
  1030. package/dist/src/types/Tabs/tab-panel.type.d.ts +2 -0
  1031. package/dist/src/types/Tabs/tab-panel.type.js +0 -0
  1032. package/dist/src/types/Tabs/tab-panels.type.cjs +1 -0
  1033. package/dist/src/types/Tabs/tab-panels.type.d.ts +2 -0
  1034. package/dist/src/types/Tabs/tab-panels.type.js +0 -0
  1035. package/dist/src/types/Tabs/tab-variant.type.cjs +1 -0
  1036. package/dist/src/types/Tabs/tab-variant.type.d.ts +2 -0
  1037. package/dist/src/types/Tabs/tab-variant.type.js +0 -0
  1038. package/dist/src/types/Tabs/tab.type.cjs +1 -0
  1039. package/dist/src/types/Tabs/tab.type.d.ts +2 -0
  1040. package/dist/src/types/Tabs/tab.type.js +0 -0
  1041. package/dist/src/types/Tabs/tabs.type.cjs +1 -0
  1042. package/dist/src/types/Tabs/tabs.type.d.ts +2 -0
  1043. package/dist/src/types/Tabs/tabs.type.js +0 -0
  1044. package/dist/src/types/TextMask/text-mask-animation.type.cjs +1 -0
  1045. package/dist/src/types/TextMask/text-mask-animation.type.d.ts +16 -0
  1046. package/dist/src/types/TextMask/text-mask-animation.type.js +0 -0
  1047. package/dist/src/types/TextMask/text-mask.type.cjs +1 -0
  1048. package/dist/src/types/TextMask/text-mask.type.d.ts +2 -0
  1049. package/dist/src/types/TextMask/text-mask.type.js +0 -0
  1050. package/dist/src/types/Textarea/textarea-mode.type.cjs +1 -0
  1051. package/dist/src/types/Textarea/textarea-mode.type.d.ts +2 -0
  1052. package/dist/src/types/Textarea/textarea-mode.type.js +0 -0
  1053. package/dist/src/types/Textarea/textarea-output.type.cjs +1 -0
  1054. package/dist/src/types/Textarea/textarea-output.type.d.ts +2 -0
  1055. package/dist/src/types/Textarea/textarea-output.type.js +0 -0
  1056. package/dist/src/types/Textarea/textarea-toolbar-command.type.cjs +1 -0
  1057. package/dist/src/types/Textarea/textarea-toolbar-command.type.d.ts +2 -0
  1058. package/dist/src/types/Textarea/textarea-toolbar-command.type.js +0 -0
  1059. package/dist/src/types/Textarea/textarea-toolbar-position.type.cjs +1 -0
  1060. package/dist/src/types/Textarea/textarea-toolbar-position.type.d.ts +2 -0
  1061. package/dist/src/types/Textarea/textarea-toolbar-position.type.js +0 -0
  1062. package/dist/src/types/Video/video-controls.type.cjs +1 -0
  1063. package/dist/src/types/Video/video-controls.type.d.ts +17 -0
  1064. package/dist/src/types/Video/video-controls.type.js +0 -0
  1065. package/dist/src/types/Video/video-track-kind.type.cjs +1 -0
  1066. package/dist/src/types/Video/video-track-kind.type.d.ts +11 -0
  1067. package/dist/src/types/Video/video-track-kind.type.js +0 -0
  1068. package/dist/src/types/index.cjs +708 -15
  1069. package/dist/src/types/index.d.ts +65 -2
  1070. package/dist/src/types/index.js +65 -2
  1071. package/dist/src/types/tokens.type.d.ts +1 -1
  1072. package/dist/src/utils/Calendar/date.util.cjs +181 -0
  1073. package/dist/src/utils/Calendar/date.util.d.ts +96 -0
  1074. package/dist/src/utils/Calendar/date.util.js +114 -0
  1075. package/dist/src/utils/Calendar/rrule.util.cjs +105 -0
  1076. package/dist/src/utils/Calendar/rrule.util.d.ts +49 -0
  1077. package/dist/src/utils/Calendar/rrule.util.js +92 -0
  1078. package/dist/src/utils/Chart/box-plot.util.cjs +62 -0
  1079. package/dist/src/utils/Chart/box-plot.util.d.ts +32 -0
  1080. package/dist/src/utils/Chart/box-plot.util.js +47 -0
  1081. package/dist/src/utils/Chart/mercator.util.cjs +53 -0
  1082. package/dist/src/utils/Chart/mercator.util.d.ts +51 -0
  1083. package/dist/src/utils/Chart/mercator.util.js +44 -0
  1084. package/dist/src/utils/Chart/path.util.cjs +150 -0
  1085. package/dist/src/utils/Chart/path.util.d.ts +116 -0
  1086. package/dist/src/utils/Chart/path.util.js +143 -0
  1087. package/dist/src/utils/Code/parse-highlight-lines.util.cjs +34 -0
  1088. package/dist/src/utils/Code/parse-highlight-lines.util.d.ts +24 -0
  1089. package/dist/src/utils/Code/parse-highlight-lines.util.js +28 -0
  1090. package/dist/src/utils/CommandPalette/fuzzy-match.util.cjs +84 -0
  1091. package/dist/src/utils/CommandPalette/fuzzy-match.util.d.ts +51 -0
  1092. package/dist/src/utils/CommandPalette/fuzzy-match.util.js +62 -0
  1093. package/dist/src/utils/Commons/gradient.util.cjs +74 -0
  1094. package/dist/src/utils/Commons/gradient.util.d.ts +36 -0
  1095. package/dist/src/utils/Commons/gradient.util.js +66 -0
  1096. package/dist/src/utils/Mask/apply-mask.util.cjs +120 -0
  1097. package/dist/src/utils/Mask/apply-mask.util.d.ts +13 -0
  1098. package/dist/src/utils/Mask/apply-mask.util.js +91 -0
  1099. package/dist/src/utils/Mask/index.cjs +38 -0
  1100. package/dist/src/utils/Mask/index.d.ts +3 -0
  1101. package/dist/src/utils/Mask/index.js +3 -0
  1102. package/dist/src/utils/Mask/resolve-mask-config.util.cjs +31 -0
  1103. package/dist/src/utils/Mask/resolve-mask-config.util.d.ts +15 -0
  1104. package/dist/src/utils/Mask/resolve-mask-config.util.js +21 -0
  1105. package/dist/src/utils/Mask/validate-pattern.util.cjs +92 -0
  1106. package/dist/src/utils/Mask/validate-pattern.util.d.ts +41 -0
  1107. package/dist/src/utils/Mask/validate-pattern.util.js +81 -0
  1108. package/dist/src/utils/Media/format-time.util.cjs +16 -0
  1109. package/dist/src/utils/Media/format-time.util.d.ts +16 -0
  1110. package/dist/src/utils/Media/format-time.util.js +10 -0
  1111. package/dist/src/utils/QrCode/qr-code-adapters.util.cjs +34 -0
  1112. package/dist/src/utils/QrCode/qr-code-adapters.util.d.ts +49 -0
  1113. package/dist/src/utils/QrCode/qr-code-adapters.util.js +27 -0
  1114. package/dist/src/utils/Textarea/html-to-markdown.util.cjs +85 -0
  1115. package/dist/src/utils/Textarea/html-to-markdown.util.d.ts +21 -0
  1116. package/dist/src/utils/Textarea/html-to-markdown.util.js +78 -0
  1117. package/dist/src/utils/Textarea/sanitize-html.util.cjs +82 -0
  1118. package/dist/src/utils/Textarea/sanitize-html.util.d.ts +17 -0
  1119. package/dist/src/utils/Textarea/sanitize-html.util.js +83 -0
  1120. package/dist/src/utils/index.cjs +125 -15
  1121. package/dist/src/utils/index.d.ts +12 -2
  1122. package/dist/src/utils/index.js +12 -2
  1123. package/package.json +22 -5
  1124. package/dist/src/components/SliderField/OrigamSliderFieldThumb.vue +0 -384
  1125. package/dist/src/consts/SliderField/slider-field.const.cjs +0 -7
  1126. package/dist/src/consts/SliderField/slider-field.const.d.ts +0 -3
  1127. package/dist/src/consts/SliderField/slider-field.const.js +0 -1
  1128. package/dist/src/enums/Charts/chart.enum.cjs +0 -12
  1129. package/dist/src/enums/Charts/chart.enum.d.ts +0 -5
  1130. package/dist/src/enums/Charts/chart.enum.js +0 -6
  1131. package/dist/src/globals.d.ts +0 -172
  1132. package/dist/src/interfaces/Charts/chart-bar.interface.d.ts +0 -4
  1133. package/dist/src/interfaces/Charts/chart-line.interface.d.ts +0 -15
  1134. package/dist/src/interfaces/Charts/chart.interface.d.ts +0 -21
  1135. package/dist/src/interfaces/SliderField/slider-field-thumb.interface.d.ts +0 -12
  1136. package/dist/src/shims.d.ts +0 -36
  1137. package/dist/src/types/Charts/chart.type.d.ts +0 -5
  1138. package/dist/src/types/SliderField/slider-field-thumb.type.d.ts +0 -2
  1139. package/dist/src/utils/Charts/chart.util.cjs +0 -50
  1140. package/dist/src/utils/Charts/chart.util.d.ts +0 -30
  1141. package/dist/src/utils/Charts/chart.util.js +0 -40
  1142. package/dist/src/utils/SliderField/slider-field.util.cjs +0 -12
  1143. package/dist/src/utils/SliderField/slider-field.util.d.ts +0 -8
  1144. package/dist/src/utils/SliderField/slider-field.util.js +0 -6
  1145. package/dist/src/vite-env.d.ts +0 -1
  1146. /package/dist/src/{interfaces/Charts/chart-bar.interface.js → components/QRCode/index.d.ts} +0 -0
  1147. /package/dist/src/interfaces/{Charts/chart-bar.interface.cjs → Audio/audio-player.interface.cjs} +0 -0
  1148. /package/dist/src/interfaces/{Charts/chart-line.interface.js → Audio/audio-player.interface.js} +0 -0
  1149. /package/dist/src/interfaces/{Charts/chart-line.interface.cjs → Blockquote/blockquote.interface.cjs} +0 -0
  1150. /package/dist/src/interfaces/{Charts/chart.interface.js → Blockquote/blockquote.interface.js} +0 -0
  1151. /package/dist/src/interfaces/{Charts/chart.interface.cjs → Bracket/bracket-competitor-component.interface.cjs} +0 -0
  1152. /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.js → Bracket/bracket-competitor-component.interface.js} +0 -0
  1153. /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.cjs → Bracket/bracket-competitor.interface.cjs} +0 -0
  1154. /package/dist/src/{types/Charts/chart.type.js → interfaces/Bracket/bracket-competitor.interface.js} +0 -0
  1155. /package/dist/src/{types/Charts/chart.type.cjs → interfaces/Bracket/bracket-match-component.interface.cjs} +0 -0
  1156. /package/dist/src/{types/SliderField/slider-field-thumb.type.js → interfaces/Bracket/bracket-match-component.interface.js} +0 -0
  1157. /package/dist/src/{types/SliderField/slider-field-thumb.type.cjs → interfaces/Bracket/bracket-match.interface.cjs} +0 -0
@@ -1,6 +1,9 @@
1
- import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, IGroupProps, IMarginProps, IPaddingProps, IRoundedProps, ISlideGroupProps, ITagProps } from '../../interfaces';
1
+ import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentEmits, ICommonsComponentProps, IGroupProps, IMarginProps, IPaddingProps, IRoundedProps, ISlideGroupProps, ITagProps } from '../../interfaces';
2
2
  export interface IChipGroupProps extends ICommonsComponentProps, ITagProps, IGroupProps, IColorProps, IBgColorProps, IMarginProps, IPaddingProps, IBorderProps, IRoundedProps, ISlideGroupProps {
3
3
  column?: boolean;
4
4
  filter?: boolean;
5
5
  valueComparator?: (a: any, b: any) => boolean;
6
6
  }
7
+ /** Emits fired by `<OrigamChipGroup>` — v-model on the active chip set. */
8
+ export interface IChipGroupEmits extends ICommonsComponentEmits {
9
+ }
@@ -1,4 +1,4 @@
1
- import type { IActiveProps, IAdjacentProps, IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IGroupItemProps, IHoverProps, ILinkProps, IMarginProps, IPaddingProps, IRippleProps, IRoundedProps, ISizeProps, ITagProps } from '../../interfaces';
1
+ import type { IActiveProps, IAdjacentEmits, IAdjacentProps, IBorderProps, IBgColorProps, IClickCloseEmits, IClickEmits, IColorProps, ICommonsComponentEmits, ICommonsComponentProps, IDensityProps, IElevationProps, IGroupEmits, IGroupItemProps, IHoverProps, ILinkProps, IMarginProps, IPaddingProps, IRippleProps, IRoundedProps, ISizeProps, ITagProps } from '../../interfaces';
2
2
  import type { TIcon } from '../../types';
3
3
  export interface IChipProps extends ICommonsComponentProps, IAdjacentProps, ITagProps, IColorProps, IBgColorProps, IRippleProps, IBorderProps, IRoundedProps, IPaddingProps, IMarginProps, IDensityProps, IGroupItemProps, ILinkProps, ISizeProps, IElevationProps, IActiveProps, IHoverProps {
4
4
  closable?: boolean;
@@ -13,3 +13,7 @@ export interface IChipProps extends ICommonsComponentProps, IAdjacentProps, ITag
13
13
  text?: string;
14
14
  modelValue?: boolean;
15
15
  }
16
+ /** Emits fired by `<OrigamChip>` — generic click, close button, group
17
+ * membership, prepend/append icons, and v-model on dismissal. */
18
+ export interface IChipEmits extends ICommonsComponentEmits, IClickEmits, IClickCloseEmits, IAdjacentEmits, IGroupEmits {
19
+ }
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,106 @@
1
+ import type { IBgColorProps, IBorderProps, IColorProps, ICommonsComponentProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../../interfaces';
2
+ /**
3
+ * Props for `<OrigamClipboard>` — copy-to-clipboard wrapper.
4
+ *
5
+ * The component is intentionally chrome-less: it owns the copy
6
+ * pipeline (`navigator.clipboard.writeText` + `execCommand` fallback)
7
+ * and the auto-resetting `copied` flag, but it does NOT impose any
8
+ * visual on the trigger. The built-in trigger (rendered when no slot
9
+ * is provided) is a single button whose label flips to `feedbackText`
10
+ * while `copied` is true — that's the only feedback surface the
11
+ * component owns. Consumers needing a different feedback shape (toast,
12
+ * inline pill, animation, …) pass a `#default` scoped slot exposing
13
+ * `{ copy, copied, error }` and render whatever they want.
14
+ */
15
+ export interface IClipboardProps extends ICommonsComponentProps, ITagProps, IColorProps, IBgColorProps, IBorderProps, IRoundedProps, IMarginProps, IPaddingProps {
16
+ /**
17
+ * Text payload written to the clipboard on `copy()`. Required.
18
+ * Re-read each time the trigger fires, so a parent that mutates
19
+ * the value between mounts still copies the up-to-date string.
20
+ */
21
+ value: string;
22
+ /**
23
+ * Duration (ms) the `copied` flag stays true after a successful
24
+ * write. The state auto-resets after this window — there is no
25
+ * need to clear it from the consumer side.
26
+ *
27
+ * @default 2000
28
+ */
29
+ feedbackDuration?: number;
30
+ /**
31
+ * Label rendered inside the built-in feedback overlay (and the
32
+ * auto-rendered button label when no slot is provided). Consumers
33
+ * wrap with `t()` if they need full i18n.
34
+ *
35
+ * @default 'Copied!'
36
+ */
37
+ feedbackText?: string;
38
+ /**
39
+ * Alias for `feedbackText`. Takes precedence when both are passed.
40
+ * Provided for callers who prefer the "success" framing in their
41
+ * codebase.
42
+ */
43
+ successText?: string;
44
+ /**
45
+ * Disables the copy action. The default trigger becomes
46
+ * non-interactive (`disabled` attribute) and `copy()` becomes a
47
+ * no-op. The scoped slot still receives the `copy` function so
48
+ * consumers can decide what to render — but it will short-circuit.
49
+ *
50
+ * @default false
51
+ */
52
+ disabled?: boolean;
53
+ }
54
+ /**
55
+ * Emits for `<OrigamClipboard>`.
56
+ */
57
+ export interface IClipboardEmits {
58
+ /** Fired after a successful write. Carries the payload string. */
59
+ (e: 'copy', value: string): void;
60
+ /** Fired after a failed write (clipboard API denied, no permission, …). */
61
+ (e: 'error', err: Error): void;
62
+ }
63
+ /**
64
+ * Bindings exposed via the `#default` scoped slot. Consumers use these
65
+ * to wire any trigger — button, icon, span, custom widget — to the
66
+ * copy pipeline without re-implementing the timing logic.
67
+ */
68
+ export interface IClipboardScopedSlotBindings {
69
+ /** Triggers the copy pipeline. Promise resolves true on success. */
70
+ copy: () => Promise<boolean>;
71
+ /** True for `feedbackDuration` ms after a successful copy. */
72
+ copied: boolean;
73
+ /** Set when the last copy attempt threw, null otherwise. */
74
+ error: Error | null;
75
+ }
76
+ /**
77
+ * Slot signatures for `<OrigamClipboard>`.
78
+ */
79
+ export interface IClipboardSlots {
80
+ /**
81
+ * Custom trigger. Scoped — receives `{ copy, copied, error }`.
82
+ * When omitted, the component renders a default icon button with
83
+ * `mdi:mdi-content-copy`.
84
+ */
85
+ default?: (bindings: IClipboardScopedSlotBindings) => any;
86
+ /**
87
+ * Custom feedback marker rendered when `showFeedback` is true and
88
+ * `copied` is true. Scoped — receives the boolean for symmetry
89
+ * with the default slot.
90
+ */
91
+ feedback?: (bindings: {
92
+ copied: boolean;
93
+ }) => any;
94
+ }
95
+ /**
96
+ * Options for the `useClipboard` composable.
97
+ */
98
+ export interface IUseClipboardOptions {
99
+ /**
100
+ * Duration (ms) the returned `copied` ref stays true after a
101
+ * successful write before auto-resetting.
102
+ *
103
+ * @default 2000
104
+ */
105
+ feedbackDuration?: number;
106
+ }
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,89 @@
1
+ import type { IBgColorProps, IBorderProps, IColorProps, ICommonsComponentProps, IDimensionProps, IElevationProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../index';
2
+ import type { TCodeLang } from '../../types';
3
+ /**
4
+ * Props for `<OrigamCode>` — a shiki-powered code block with line numbers,
5
+ * line highlighting, copy button and theme awareness.
6
+ *
7
+ * Backward-compat note: the v2.x `<OrigamCode>` was a thin `<pre>` wrapper
8
+ * with a `code` prop only. Every new prop below is optional with a
9
+ * conservative default so existing call sites keep their behaviour
10
+ * (plain-text, no line numbers, copy button visible).
11
+ */
12
+ export interface ICodeProps extends ICommonsComponentProps, ITagProps, IBorderProps, IRoundedProps, IElevationProps, IPaddingProps, IMarginProps, IDimensionProps, IColorProps, IBgColorProps {
13
+ /**
14
+ * The code to highlight. When omitted, the default slot is used as the
15
+ * source — useful for multi-line snippets that are nicer to read in
16
+ * the template than as a JS string literal. When both are provided,
17
+ * the prop wins.
18
+ */
19
+ code?: string;
20
+ /**
21
+ * Language grammar to apply. One of the values in `SUPPORTED_LANGS`.
22
+ * Unknown values fall back to `plaintext` (with a one-shot console
23
+ * warning).
24
+ */
25
+ lang?: TCodeLang;
26
+ /**
27
+ * Show a left gutter with line numbers. Pure CSS — uses a CSS counter
28
+ * incremented per `.origam-code__row`, no JS layout work.
29
+ */
30
+ lineNumbers?: boolean;
31
+ /**
32
+ * Lines to highlight. Accepts either a pre-computed array of 1-based
33
+ * line numbers (`[2, 5, 6, 7]`) or a comma/range string (`'2,5-7'`)
34
+ * that the component parses via `parseHighlightLines()`. `null` /
35
+ * empty disables the feature.
36
+ */
37
+ highlightLines?: number[] | string | null;
38
+ /**
39
+ * Show the copy-to-clipboard button in the top-right corner. Defaults
40
+ * to `true` — most code blocks benefit from it.
41
+ */
42
+ copyable?: boolean;
43
+ /**
44
+ * Auto-format the code before highlighting. Reserved for v3 — prettier
45
+ * is intentionally NOT bundled at runtime to keep the tarball small.
46
+ * Currently a no-op; passing `true` warns once in dev and pre-formats
47
+ * via a best-effort whitespace trim only.
48
+ */
49
+ format?: boolean;
50
+ /**
51
+ * Wrap long lines instead of scrolling horizontally. Off by default so
52
+ * the visual column matches the source file.
53
+ */
54
+ wrap?: boolean;
55
+ /**
56
+ * Optional filename rendered in the header bar (e.g. `'App.vue'`).
57
+ * When provided AND `copyable` is true, the header also hosts the copy
58
+ * button; otherwise the copy button is absolutely positioned in the
59
+ * top-right corner of the code surface.
60
+ */
61
+ filename?: string;
62
+ }
63
+ /**
64
+ * Public surface of the `useCode` composable. Lazily instantiates a shiki
65
+ * highlighter on first call and reuses it across every `OrigamCode`
66
+ * instance for the lifetime of the page.
67
+ */
68
+ export interface IUseCodeReturn {
69
+ /**
70
+ * Render `code` to a pre-tokenised HTML string. Resolves once the
71
+ * underlying shiki highlighter has loaded the requested language /
72
+ * theme (lazy; ~200 ms cold, instant on subsequent calls).
73
+ */
74
+ highlight(code: string, lang: TCodeLang): Promise<string>;
75
+ /**
76
+ * Force the highlighter to load. Useful for stories / tests that want
77
+ * to warm the cache before mounting consumers.
78
+ */
79
+ prime(): Promise<void>;
80
+ /**
81
+ * Whether the singleton highlighter is ready. `false` on first paint,
82
+ * flips to `true` once the dynamic import finishes.
83
+ */
84
+ isReady(): boolean;
85
+ /**
86
+ * Wipe the LRU cache. Test-only — production code never needs this.
87
+ */
88
+ resetCacheForTesting(): void;
89
+ }
File without changes
@@ -1,7 +1,11 @@
1
- import type { ICommonsComponentProps, IDimensionProps } from "../../interfaces";
1
+ import type { IColorHsvEmits, ICommonsComponentProps, IDimensionProps } from "../../interfaces";
2
2
  import type { THSVA } from "../../types";
3
3
  export interface IColorPickerCanvasProps extends ICommonsComponentProps, IDimensionProps {
4
4
  colorHsv?: THSVA | null;
5
5
  disabled?: boolean;
6
6
  dotSize?: string | number;
7
+ ariaLabel?: string;
8
+ }
9
+ /** Emits fired by `<OrigamColorPickerCanvas>` — drag/click updates the HSVA. */
10
+ export interface IColorPickerCanvasEmits extends IColorHsvEmits {
7
11
  }
@@ -1,4 +1,4 @@
1
- import type { ICommonsComponentProps } from "../../interfaces";
1
+ import type { IColorHsvEmits, IColorModeEmits, ICommonsComponentProps } from "../../interfaces";
2
2
  import type { TColorModes, THSVA } from "../../types";
3
3
  export interface IColorPickerEditProps extends ICommonsComponentProps {
4
4
  colorHsv?: THSVA | null;
@@ -6,3 +6,7 @@ export interface IColorPickerEditProps extends ICommonsComponentProps {
6
6
  mode?: TColorModes;
7
7
  modes?: Array<TColorModes>;
8
8
  }
9
+ /** Emits fired by `<OrigamColorPickerEdit>` — input edits the HSVA and
10
+ * flips between the active mode. */
11
+ export interface IColorPickerEditEmits extends IColorHsvEmits, IColorModeEmits {
12
+ }
@@ -1,7 +1,10 @@
1
- import type { ICommonsComponentProps, IDimensionProps } from "../../interfaces";
1
+ import type { IColorHsvEmits, ICommonsComponentProps, IDimensionProps } from "../../interfaces";
2
2
  import type { THSVA } from "../../types";
3
3
  export interface IColorPickerPreviewProps extends ICommonsComponentProps, IDimensionProps {
4
4
  colorHsv?: THSVA | null;
5
5
  disabled?: boolean;
6
6
  hideAlpha?: boolean;
7
7
  }
8
+ /** Emits fired by `<OrigamColorPickerPreview>` — alpha slider updates the HSVA. */
9
+ export interface IColorPickerPreviewEmits extends IColorHsvEmits {
10
+ }
@@ -1,7 +1,11 @@
1
- import type { ICommonsComponentProps, IDimensionProps } from "../../interfaces";
1
+ import type { IColorHsvEmits, ICommonsComponentProps, IDimensionProps } from "../../interfaces";
2
2
  import type { TColorType, THSVA } from "../../types";
3
3
  export interface IColorPickerSwatchesProps extends ICommonsComponentProps, IDimensionProps {
4
4
  colorHsv?: THSVA | null;
5
5
  disabled?: boolean;
6
6
  swatches?: Array<Array<TColorType>>;
7
7
  }
8
+ /** Emits fired by `<OrigamColorPickerSwatches>` — click on a swatch tile
9
+ * pushes the colour up the HSVA channel. */
10
+ export interface IColorPickerSwatchesEmits extends IColorHsvEmits {
11
+ }
@@ -1,5 +1,17 @@
1
- import type { IBorderProps, IColorPickerCanvasProps, IColorPickerEditProps, IColorPickerPreviewProps, IColorPickerSwatchesProps, IColorProps, ICommonsComponentProps, IElevationProps, IMarginProps, IPaddingProps, IPickerProps, IRoundedProps } from "../../interfaces";
2
- import type { THSVA } from "../../types";
1
+ import type { IBorderProps, IColorPickerCanvasProps, IColorPickerEditProps, IColorPickerPreviewProps, IColorPickerSwatchesProps, IColorProps, ICommonsComponentEmits, ICommonsComponentProps, IElevationProps, IMarginProps, IPaddingProps, IPickerProps, IRoundedProps } from "../../interfaces";
2
+ import type { TColorModes, THSVA } from "../../types";
3
+ /** Shared emit shape for sub-components driving the HSVA model
4
+ * (Canvas / Edit / Preview / Swatches all push their changes up the
5
+ * same channel). Factored here so the four sub-component interfaces
6
+ * can extend it without redeclaring. */
7
+ export interface IColorHsvEmits {
8
+ (e: 'update:colorHsv', value: THSVA): void;
9
+ }
10
+ /** Shared emit shape for sub-components that flip between color modes
11
+ * (RGB / HSL / HSV / HEX, …). */
12
+ export interface IColorModeEmits {
13
+ (e: 'update:mode', value: TColorModes): void;
14
+ }
3
15
  export interface IColorPickerProps extends ICommonsComponentProps, IBorderProps, IRoundedProps, IElevationProps, IPaddingProps, IMarginProps, IPickerProps, IColorProps, IColorPickerCanvasProps, IColorPickerPreviewProps, IColorPickerEditProps, IColorPickerSwatchesProps {
4
16
  canvasHeight?: string | number;
5
17
  canvasWidth?: string | number;
@@ -21,3 +33,7 @@ export interface IColorPickerMode {
21
33
  from: (color: any) => THSVA;
22
34
  to: (color: THSVA) => any;
23
35
  }
36
+ /** Emits fired by `<OrigamColorPicker>` — v-model on the resolved colour
37
+ * plus the active input mode. */
38
+ export interface IColorPickerEmits extends ICommonsComponentEmits, IColorModeEmits {
39
+ }
@@ -0,0 +1,57 @@
1
+ import type { ICommand } from './command.interface';
2
+ import type { ICommonsComponentProps } from '../Commons/commons.interface';
3
+ /**
4
+ * A hotkey is either a single combination (`['meta', 'k']`) or an
5
+ * array of alternatives — every entry being a list of normalised key
6
+ * tokens compatible with `useHotkey` (e.g. `[['meta', 'k'], ['ctrl', 'k']]`).
7
+ *
8
+ * The component normalises a single-combination input (`['meta', 'k']`)
9
+ * to the multi-combination shape (`[['meta', 'k']]`) before installing
10
+ * the listeners so consumers can pass either form interchangeably.
11
+ */
12
+ export type TCommandPaletteHotkey = ReadonlyArray<string> | ReadonlyArray<ReadonlyArray<string>>;
13
+ export interface ICommandPaletteProps extends ICommonsComponentProps {
14
+ /** v-model — whether the palette is open. */
15
+ modelValue?: boolean;
16
+ /**
17
+ * Global hotkey(s) that toggle the palette open. Defaults to
18
+ * `[['meta', 'k'], ['ctrl', 'k']]` (⌘K / Ctrl+K). Pass `null`
19
+ * to disable the global listener entirely.
20
+ */
21
+ hotkey?: TCommandPaletteHotkey | null;
22
+ /**
23
+ * Static command list. When omitted, the palette renders commands
24
+ * registered via the `useCommand()` global registry instead.
25
+ */
26
+ commands?: ReadonlyArray<ICommand>;
27
+ /** Placeholder of the search input (already-translated string). */
28
+ placeholder?: string;
29
+ /** Empty-state message when no command matches the query. */
30
+ emptyText?: string;
31
+ /** Max height of the result list. Number → px. */
32
+ maxHeight?: number | string;
33
+ /** Width of the palette dialog. Number → px. */
34
+ width?: number | string;
35
+ /** Display a loader inside the result list (use during async fetches). */
36
+ loading?: boolean;
37
+ /** Close the palette automatically when a command is selected. */
38
+ closeOnSelect?: boolean;
39
+ /** Close when the user presses Escape. */
40
+ closeOnEscape?: boolean;
41
+ /** Close when the user clicks the backdrop. */
42
+ closeOnBackdrop?: boolean;
43
+ }
44
+ export interface ICommandPaletteEmits {
45
+ (e: 'update:modelValue', value: boolean): void;
46
+ (e: 'select', command: ICommand): void;
47
+ (e: 'query', text: string): void;
48
+ }
49
+ export interface ICommandPaletteSlotProps {
50
+ command: ICommand;
51
+ isActive: boolean;
52
+ }
53
+ export interface ICommandPaletteSlots {
54
+ item?: (props: ICommandPaletteSlotProps) => any;
55
+ empty?: () => any;
56
+ footer?: () => any;
57
+ }
@@ -0,0 +1,51 @@
1
+ import type { TIcon } from '../../types';
2
+ /**
3
+ * A single command/action exposed by `OrigamCommandPalette`.
4
+ *
5
+ * Commands are registered either declaratively through the
6
+ * `commands` prop on `<OrigamCommandPalette>` OR programmatically
7
+ * via the `useCommand().register(cmd)` composable. The composable
8
+ * route is preferred when commands need to spawn from feature code
9
+ * that owns the side-effect (router push, store mutation, …).
10
+ */
11
+ export interface ICommand {
12
+ /**
13
+ * Stable identifier. Used as the v-for key, the ARIA
14
+ * `aria-activedescendant` target and as the dedup key in the
15
+ * registry — registering twice with the same `id` overwrites
16
+ * the previous entry instead of duplicating it.
17
+ */
18
+ id: string;
19
+ /** Visible primary label. Drives the default fuzzy-match input. */
20
+ label: string;
21
+ /** Secondary line shown under the label (optional). */
22
+ description?: string;
23
+ /** Optional prepend icon. */
24
+ icon?: TIcon;
25
+ /**
26
+ * Keyboard shortcut hint rendered through `<OrigamKbd>` next to
27
+ * the action. Display-only — it does NOT bind a global listener.
28
+ * (To bind a shortcut globally, use the `hotkey` prop on the
29
+ * palette OR the `useHotkey` composable on the call site.)
30
+ */
31
+ kbd?: ReadonlyArray<string>;
32
+ /**
33
+ * Group label (e.g. "Navigation", "Settings"). Commands sharing
34
+ * the same group render under the same subheader. Commands
35
+ * without a group fall back to a default bucket rendered first.
36
+ */
37
+ group?: string;
38
+ /**
39
+ * Extra search terms that should match the command (e.g.
40
+ * `['preferences', 'config']` for a "Settings" entry).
41
+ */
42
+ keywords?: ReadonlyArray<string>;
43
+ /**
44
+ * Handler invoked when the command is selected. May be async — the
45
+ * palette awaits the returned promise before closing (when
46
+ * `closeOnSelect` is `true`).
47
+ */
48
+ perform: () => void | Promise<void>;
49
+ /** Disabled commands stay visible but cannot be selected. */
50
+ disabled?: boolean;
51
+ }
@@ -1,4 +1,10 @@
1
- export interface IAudioProps {
1
+ /**
2
+ * Props for the low-level Commons `useAudio` composable (frequency
3
+ * analyser + play-on-flag wiring). Renamed from the legacy
4
+ * `IAudioProps` symbol to avoid collision with the canonical
5
+ * `IAudioProps` of `<OrigamAudio>` (`src/interfaces/Audio/`).
6
+ */
7
+ export interface IUseAudioProps {
2
8
  audio?: string;
3
9
  playAudio?: boolean;
4
10
  }
@@ -7,3 +7,8 @@ export interface IClickOutsideBindingArgs {
7
7
  closeConditional?: (e: Event) => boolean;
8
8
  include?: () => Array<HTMLElement>;
9
9
  }
10
+ /** `click:outside` emit — fires when a pointer down event lands outside
11
+ * the component's root (Dialog, Drawer, Sheet, …). */
12
+ export interface IClickOutsideEmits {
13
+ (e: 'click:outside', event: MouseEvent): void;
14
+ }
@@ -32,6 +32,24 @@ export interface ICommonsComponentProps {
32
32
  export interface ICommonsComponentEmits {
33
33
  (e: 'update:modelValue', event: any): void;
34
34
  }
35
+ /** Generic `click` emit — bubbles the native MouseEvent. */
36
+ export interface IClickEmits {
37
+ (e: 'click', event: MouseEvent): void;
38
+ }
39
+ /** `click:close` emit — surface for dismissable surfaces (Alert, Snackbar, …). */
40
+ export interface IClickCloseEmits {
41
+ (e: 'click:close', event: MouseEvent): void;
42
+ }
43
+ /** `click:label` emit — fires when the user clicks the associated <label>
44
+ * rather than the input chrome itself. Used by selection controls. */
45
+ export interface IClickLabelEmits {
46
+ (e: 'click:label', event: MouseEvent): void;
47
+ }
48
+ /** `update:indeterminate` emit — companion to `update:modelValue` for
49
+ * three-state controls (Switch, Checkbox, …). */
50
+ export interface IIndeterminateEmits {
51
+ (e: 'update:indeterminate', value: boolean): void;
52
+ }
35
53
  /** Default slot signature shared by container components. */
36
54
  export interface ICommonsComponentSlots {
37
55
  default?: () => any;
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,39 @@
1
+ import type { TIntent } from '../../types';
2
+ /**
3
+ * Single stop in a multi-stop gradient.
4
+ *
5
+ * - `color` accepts either a {@link TIntent} (resolved to its
6
+ * `--origam-color__action--{intent}---bg` token) or a raw CSS color
7
+ * string (hex / rgb / hsl / named).
8
+ * - `position` is a percentage in `[0..100]`.
9
+ */
10
+ export interface IGradientStop {
11
+ color: TIntent | string;
12
+ position: number;
13
+ }
14
+ /**
15
+ * Structured gradient descriptor — second of the three accepted formats
16
+ * for `color` / `bgColor` / `textColor` props (the others are a raw CSS
17
+ * gradient string and a preset name like `'gradient-sunset'`).
18
+ *
19
+ * Two ways to define the colour ramp:
20
+ *
21
+ * 1. Short form — `from` + `to` (+ optional `via`) → emits a 2- or
22
+ * 3-stop gradient with stops auto-spaced.
23
+ * 2. Full form — `stops: [...]` overrides the short form entirely and
24
+ * lets the consumer specify any number of stops with explicit
25
+ * positions.
26
+ *
27
+ * `direction` accepts a numeric angle in degrees (default `135`) OR a
28
+ * CSS keyword such as `'to right'`, `'to bottom left'`, … For radial /
29
+ * conic gradients, `direction` is forwarded as the shape/position prefix
30
+ * (e.g. `'circle at center'` for radial).
31
+ */
32
+ export interface IGradient {
33
+ type?: 'linear' | 'radial' | 'conic';
34
+ from?: TIntent | string;
35
+ to?: TIntent | string;
36
+ via?: TIntent | string;
37
+ direction?: number | string;
38
+ stops?: IGradientStop[];
39
+ }
@@ -44,3 +44,9 @@ export interface IGroupItemProvide {
44
44
  disabled: Ref<boolean | undefined>;
45
45
  group: IGroupProvide;
46
46
  }
47
+ /** Emit signature for components that are part of a selectable group. */
48
+ export interface IGroupEmits {
49
+ (e: 'group:selected', value: {
50
+ value: boolean;
51
+ }): void;
52
+ }
@@ -42,3 +42,7 @@ export interface IHoverHtmlElementHover {
42
42
  touched?: boolean;
43
43
  isTouch?: boolean;
44
44
  }
45
+ /** Emit signature for components that propagate their hover state. */
46
+ export interface IHoverEmits {
47
+ (e: 'update:hover', value: boolean): void;
48
+ }
@@ -1,5 +1,5 @@
1
1
  import type { ComponentInternalInstance, ComputedRef, CSSProperties, Ref } from 'vue';
2
- import type { ICommonsComponentProps } from '../../interfaces';
2
+ import type { IBgColorProps, IBorderProps, IColorProps, ICommonsComponentProps, IDimensionProps, IElevationProps, IMarginProps, IPaddingProps, IRoundedProps } from '../../interfaces';
3
3
  import type { TDirectionBoth } from '../../types';
4
4
  export interface ILayoutProvide {
5
5
  register: (vm: ComponentInternalInstance, options: {
@@ -36,7 +36,7 @@ export interface ILayerItem extends ILayer {
36
36
  size: number;
37
37
  position: TDirectionBoth;
38
38
  }
39
- export interface ILayoutProps extends ICommonsComponentProps {
39
+ export interface ILayoutProps extends ICommonsComponentProps, IDimensionProps, IMarginProps, IPaddingProps, IRoundedProps, IElevationProps, IBgColorProps, IColorProps, IBorderProps {
40
40
  overlaps?: Array<string>;
41
41
  fullHeight?: boolean;
42
42
  }
@@ -1,4 +1,4 @@
1
- import type { ICommonsComponentProps, IDimensionProps, ITagProps, ITransitionComponentProps } from '../../interfaces';
1
+ import type { ICommonsComponentEmits, ICommonsComponentProps, IDimensionProps, ITagProps, ITransitionComponentProps } from '../../interfaces';
2
2
  export interface ILazyProps {
3
3
  eager?: boolean;
4
4
  }
@@ -6,3 +6,7 @@ export interface ILazyComponentProps extends ICommonsComponentProps, IDimensionP
6
6
  modelValue?: boolean;
7
7
  options?: IntersectionObserverInit;
8
8
  }
9
+ /** Emits fired by `<OrigamLazy>` — v-model fires when the intersection
10
+ * observer flips the wrapper to "visible". */
11
+ export interface ILazyEmits extends ICommonsComponentEmits {
12
+ }
@@ -1,5 +1,5 @@
1
1
  import type { UnwrapRef } from 'vue';
2
- import type { IDataTableExpandProps, IDataTableFooterProps, IDataTableGroup, IDataTableGroupProps, IDataTableHeaderProps, IDataTableHeadersProps, IDataTableItem, IDataTableItemsProps, IDataTablePaginationProps, IDataTableProvideExpanded, IDataTableProvideGroup, IDataTableProvidePagination, IDataTableProvideSelection, IDataTableProvideSort, IDataTableRowProps, IDataTableSelectProps, IDataTableSortProps, IFiltersProps, IInternalDataTableHeader, ITableProps } from '../../interfaces';
2
+ import type { ICommonsComponentEmits, IDataTableExpandProps, IDataTableFooterProps, IDataTableGroup, IDataTableGroupProps, IDataTableHeaderProps, IDataTableHeadersProps, IDataTableItem, IDataTableItemsProps, IDataTablePaginationProps, IDataTableProvideExpanded, IDataTableProvideGroup, IDataTableProvidePagination, IDataTableProvideSelection, IDataTableProvideSort, IDataTableRowProps, IDataTableSelectProps, IDataTableSortProps, IFiltersProps, IInternalDataTableHeader, ITableProps } from '../../interfaces';
3
3
  export interface IDataTableProps extends ITableProps, IDataTableRowProps, IDataTableExpandProps, IDataTableGroupProps, IDataTableHeaderProps, IDataTableItemsProps, IDataTableSelectProps, IDataTableSortProps, IDataTableHeadersProps, IDataTablePaginationProps, IFiltersProps, IDataTableFooterProps {
4
4
  hideDefaultBody?: boolean;
5
5
  hideDefaultFooter?: boolean;
@@ -29,3 +29,14 @@ export interface IDataTableSlotProps<T> {
29
29
  columns: Array<IInternalDataTableHeader>;
30
30
  headers: Array<Array<IInternalDataTableHeader>>;
31
31
  }
32
+ /** Emits fired by `<OrigamDataTable>` — pagination, sorting, grouping,
33
+ * expansion, selection, and the v-model that ties them together. */
34
+ export interface IDataTableEmits extends ICommonsComponentEmits {
35
+ (e: 'update:page', value: number): void;
36
+ (e: 'update:itemsPerPage', value: number): void;
37
+ (e: 'update:sortBy', value: UnwrapRef<IDataTableProvideSort['sortBy']>): void;
38
+ (e: 'update:options', value: Record<string, unknown>): void;
39
+ (e: 'update:groupBy', value: UnwrapRef<IDataTableProvideGroup['groupBy']>): void;
40
+ (e: 'update:expanded', value: ReadonlySet<unknown>): void;
41
+ (e: 'update:currentItems', value: Array<IDataTableItem>): void;
42
+ }
@@ -1,6 +1,6 @@
1
1
  import type { ComputedRef, Ref, UnwrapRef } from 'vue';
2
2
  import { ALIGN } from '../../enums';
3
- import type { IColorProps, ICommonsComponentProps, IDataTableItem, IDataTableSortItem, IDisplayProps, ILoaderProps } from '../../interfaces';
3
+ import type { IAdjacentEmits, IColorProps, ICommonsComponentProps, IDataTableItem, IDataTableSortItem, IDisplayProps, ILoaderProps } from '../../interfaces';
4
4
  import type { TAlign, TDataTableCompareFunction, TDataTableHeaderCell, TFilterFunction, TIcon, TSelectItemKey } from '../../types';
5
5
  export interface IHeaderCellProps extends ICommonsComponentProps, IColorProps {
6
6
  disableSort?: boolean;
@@ -16,6 +16,11 @@ export interface IDataTableHeadersCellMobileProps extends ICommonsComponentProps
16
16
  columns: Array<IInternalDataTableHeader>;
17
17
  colspan?: number;
18
18
  }
19
+ /** Emits fired by `<OrigamDataTableHeadersCellMobile>` — clear button +
20
+ * prepend / append slot clicks. */
21
+ export interface IDataTableHeadersCellMobileEmits extends IAdjacentEmits {
22
+ (e: 'click:clear', event: MouseEvent): void;
23
+ }
19
24
  export interface IDataTableHeadersCellProps extends ICommonsComponentProps, IColorProps, IHeaderCellProps {
20
25
  headers: Array<Array<IInternalDataTableHeader>>;
21
26
  }
@@ -11,3 +11,14 @@ export interface IDataTableRowProps extends ICommonsComponentProps, IDisplayProp
11
11
  item: IDataTableItem;
12
12
  cellProps?: TDataTableCell<any>;
13
13
  }
14
+ /** Emits fired by `<OrigamDataTableRow>` — row-level expand / select. */
15
+ export interface IDataTableRowEmits {
16
+ (e: 'expand', payload: {
17
+ item: IDataTableItem;
18
+ value: boolean;
19
+ }): void;
20
+ (e: 'select', payload: {
21
+ item: IDataTableItem;
22
+ value: boolean;
23
+ }): void;
24
+ }