origam 2.3.0 → 2.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (900) hide show
  1. package/CHANGELOG.md +158 -1
  2. package/dist/src/assets/css/tokens/dark.css +424 -58
  3. package/dist/src/assets/css/tokens/light.css +212 -29
  4. package/dist/src/assets/locales/en.json +36 -0
  5. package/dist/src/assets/locales/fr.json +33 -0
  6. package/dist/src/assets/locales/index.js +2 -2
  7. package/dist/src/assets/scss/tokens/_dark.scss +212 -29
  8. package/dist/src/assets/scss/tokens/_light.scss +212 -29
  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 +64 -9
  25. package/dist/src/components/Bracket/OrigamBracketRound.vue +2 -0
  26. package/dist/src/components/Breadcrumb/OrigamBreadcrumb.vue +5 -3
  27. package/dist/src/components/Breadcrumb/OrigamBreadcrumbDivider.vue +1 -1
  28. package/dist/src/components/Breadcrumb/OrigamBreadcrumbItem.vue +3 -3
  29. package/dist/src/components/Btn/OrigamBtn.vue +14 -4
  30. package/dist/src/components/Btn/OrigamBtnGroup.vue +3 -2
  31. package/dist/src/components/Btn/OrigamBtnToggle.vue +2 -2
  32. package/dist/src/components/Calendar/OrigamCalendar.vue +1175 -0
  33. package/dist/src/components/Calendar/index.cjs +13 -0
  34. package/dist/src/components/Calendar/index.d.ts +1 -0
  35. package/dist/src/components/Calendar/index.js +1 -0
  36. package/dist/src/components/Card/OrigamCard.vue +2 -2
  37. package/dist/src/components/Card/OrigamCardHeader.vue +1 -1
  38. package/dist/src/components/Carousel/OrigamCarousel.vue +6 -1
  39. package/dist/src/components/Carousel/OrigamCarouselItem.vue +2 -2
  40. package/dist/src/components/Chart/OrigamChart.vue +882 -0
  41. package/dist/src/components/Chart/OrigamChartAxis.vue +141 -0
  42. package/dist/src/components/Chart/OrigamChartBoxPlot.vue +894 -0
  43. package/dist/src/components/Chart/OrigamChartBullet.vue +836 -0
  44. package/dist/src/components/Chart/OrigamChartCandlestick.vue +745 -0
  45. package/dist/src/components/Chart/OrigamChartCartesian.vue +1450 -0
  46. package/dist/src/components/Chart/OrigamChartGauge.vue +402 -0
  47. package/dist/src/components/Chart/OrigamChartHeatmap.vue +697 -0
  48. package/dist/src/components/Chart/OrigamChartHoneycomb.vue +723 -0
  49. package/dist/src/components/Chart/OrigamChartLegend.vue +59 -0
  50. package/dist/src/components/Chart/OrigamChartMap.vue +738 -0
  51. package/dist/src/components/Chart/OrigamChartPareto.vue +949 -0
  52. package/dist/src/components/Chart/OrigamChartPictorial.vue +1024 -0
  53. package/dist/src/components/Chart/OrigamChartPolar.vue +735 -0
  54. package/dist/src/components/Chart/OrigamChartPolarBar.vue +719 -0
  55. package/dist/src/components/Chart/OrigamChartPyramid.vue +706 -0
  56. package/dist/src/components/Chart/OrigamChartRadar.vue +504 -0
  57. package/dist/src/components/Chart/OrigamChartRangeSelector.vue +122 -0
  58. package/dist/src/components/Chart/OrigamChartSankey.vue +943 -0
  59. package/dist/src/components/Chart/OrigamChartSparkline.vue +474 -0
  60. package/dist/src/components/Chart/OrigamChartStreamgraph.vue +872 -0
  61. package/dist/src/components/Chart/OrigamChartSunburst.vue +865 -0
  62. package/dist/src/components/Chart/OrigamChartTooltip.vue +55 -0
  63. package/dist/src/components/Chart/OrigamChartTreemap.vue +744 -0
  64. package/dist/src/components/Chart/OrigamChartVariwide.vue +815 -0
  65. package/dist/src/components/Chart/OrigamChartWordCloud.vue +671 -0
  66. package/dist/src/components/Chart/index.cjs +188 -0
  67. package/dist/src/components/Chart/index.d.ts +26 -0
  68. package/dist/src/components/Chart/index.js +26 -0
  69. package/dist/src/components/Checkbox/OrigamCheckbox.vue +2 -2
  70. package/dist/src/components/Checkbox/OrigamCheckboxBtn.vue +2 -2
  71. package/dist/src/components/Chip/OrigamChip.vue +9 -7
  72. package/dist/src/components/Chip/OrigamChipGroup.vue +15 -3
  73. package/dist/src/components/Clipboard/OrigamClipboard.vue +195 -0
  74. package/dist/src/components/Clipboard/index.cjs +13 -0
  75. package/dist/src/components/Clipboard/index.d.ts +1 -0
  76. package/dist/src/components/Clipboard/index.js +1 -0
  77. package/dist/src/components/Code/OrigamCode.vue +79 -69
  78. package/dist/src/components/ColorPicker/OrigamColorPicker.vue +3 -2
  79. package/dist/src/components/ColorPicker/OrigamColorPickerCanvas.vue +75 -1
  80. package/dist/src/components/ColorPickerField/OrigamColorPickerField.vue +2 -2
  81. package/dist/src/components/CommandPalette/OrigamCommandPalette.vue +22 -16
  82. package/dist/src/components/ConfirmWrapper/OrigamConfirmWrapper.vue +1 -1
  83. package/dist/src/components/ContextualMenu/OrigamContextualMenu.vue +2 -2
  84. package/dist/src/components/Counter/OrigamCounter.vue +1 -1
  85. package/dist/src/components/DataList/OrigamDataList.vue +2 -2
  86. package/dist/src/components/DataList/OrigamDataText.vue +2 -2
  87. package/dist/src/components/DataList/OrigamDataTitle.vue +2 -2
  88. package/dist/src/components/DataTable/OrigamDataTable.vue +9 -3
  89. package/dist/src/components/DataTable/OrigamDataTableColumnCell.vue +1 -0
  90. package/dist/src/components/DataTable/OrigamDataTableFooter.vue +1 -1
  91. package/dist/src/components/DataTable/OrigamDataTableGroupHeaderRow.vue +1 -1
  92. package/dist/src/components/DataTable/OrigamDataTableHeaderCell.vue +2 -1
  93. package/dist/src/components/DataTable/OrigamDataTableHeaders.vue +1 -1
  94. package/dist/src/components/DataTable/OrigamDataTableHeadersCell.vue +1 -1
  95. package/dist/src/components/DataTable/OrigamDataTableHeadersCellMobile.vue +2 -2
  96. package/dist/src/components/DataTable/OrigamDataTableRow.vue +6 -1
  97. package/dist/src/components/DataTable/OrigamDataTableRows.vue +5 -3
  98. package/dist/src/components/DatePicker/OrigamDatePicker.vue +22 -12
  99. package/dist/src/components/DatePicker/OrigamDatePickerHeader.vue +1 -1
  100. package/dist/src/components/DatePicker/OrigamDatePickerMonth.vue +20 -15
  101. package/dist/src/components/DatePicker/OrigamDatePickerMonths.vue +1 -1
  102. package/dist/src/components/DatePicker/OrigamDatePickerYears.vue +1 -1
  103. package/dist/src/components/DatePickerField/OrigamDatePickerField.vue +5 -5
  104. package/dist/src/components/Dialog/OrigamDialog.vue +12 -4
  105. package/dist/src/components/Dialog/OrigamDialogConfirmation.vue +2 -2
  106. package/dist/src/components/Divider/OrigamDivider.vue +2 -2
  107. package/dist/src/components/Drawer/OrigamDrawer.vue +10 -2
  108. package/dist/src/components/EmptyState/OrigamEmptyState.vue +231 -0
  109. package/dist/src/components/EmptyState/index.cjs +13 -0
  110. package/dist/src/components/EmptyState/index.d.ts +1 -0
  111. package/dist/src/components/EmptyState/index.js +1 -0
  112. package/dist/src/components/ExpansionPanel/OrigamExpansionPanel.vue +2 -2
  113. package/dist/src/components/ExpansionPanel/OrigamExpansionPanelContent.vue +5 -2
  114. package/dist/src/components/ExpansionPanel/OrigamExpansionPanelHeader.vue +4 -2
  115. package/dist/src/components/ExpansionPanel/OrigamExpansionPanels.vue +2 -2
  116. package/dist/src/components/Field/OrigamField.vue +2 -2
  117. package/dist/src/components/FileField/OrigamFileField.vue +2 -2
  118. package/dist/src/components/FileField/OrigamFileFieldDragNDropItem.vue +2 -2
  119. package/dist/src/components/FileField/OrigamFileFieldListItem.vue +2 -2
  120. package/dist/src/components/Grid/OrigamGrid.vue +197 -0
  121. package/dist/src/components/Grid/OrigamGridItem.vue +69 -0
  122. package/dist/src/components/Grid/index.cjs +20 -0
  123. package/dist/src/components/Grid/index.d.ts +2 -0
  124. package/dist/src/components/Grid/index.js +2 -0
  125. package/dist/src/components/Grids/OrigamCol.vue +2 -2
  126. package/dist/src/components/Grids/OrigamRow.vue +1 -1
  127. package/dist/src/components/Icon/OrigamClassIcon.vue +14 -2
  128. package/dist/src/components/Icon/OrigamComponentIcon.vue +14 -2
  129. package/dist/src/components/Icon/OrigamIcon.vue +21 -2
  130. package/dist/src/components/Icon/OrigamLigatureIcon.vue +14 -2
  131. package/dist/src/components/Icon/OrigamSvgIcon.vue +15 -3
  132. package/dist/src/components/Img/OrigamImg.vue +2 -2
  133. package/dist/src/components/InfiniteScroll/OrigamInfiniteScroll.vue +4 -4
  134. package/dist/src/components/InlineEdit/OrigamInlineEdit.vue +477 -0
  135. package/dist/src/components/InlineEdit/index.cjs +13 -0
  136. package/dist/src/components/InlineEdit/index.d.ts +1 -0
  137. package/dist/src/components/InlineEdit/index.js +1 -0
  138. package/dist/src/components/Input/OrigamInput.vue +2 -2
  139. package/dist/src/components/Kbd/OrigamKbd.vue +2 -2
  140. package/dist/src/components/Label/OrigamLabel.vue +2 -2
  141. package/dist/src/components/Layout/OrigamLayout.vue +73 -4
  142. package/dist/src/components/Lazy/OrigamLazy.vue +1 -0
  143. package/dist/src/components/List/OrigamList.vue +3 -2
  144. package/dist/src/components/List/OrigamListGroup.vue +2 -2
  145. package/dist/src/components/List/OrigamListItem.vue +3 -2
  146. package/dist/src/components/List/OrigamListSubheader.vue +2 -2
  147. package/dist/src/components/Loader/OrigamLoader.vue +3 -1
  148. package/dist/src/components/Main/OrigamMain.vue +12 -2
  149. package/dist/src/components/Masonry/OrigamMasonry.vue +277 -0
  150. package/dist/src/components/Masonry/index.cjs +13 -0
  151. package/dist/src/components/Masonry/index.d.ts +1 -0
  152. package/dist/src/components/Masonry/index.js +1 -0
  153. package/dist/src/components/Media/OrigamMediaController.vue +529 -0
  154. package/dist/src/components/Media/OrigamMediaScrubber.vue +441 -0
  155. package/dist/src/components/Media/OrigamMediaVolumeControl.vue +151 -0
  156. package/dist/src/components/Media/index.cjs +27 -0
  157. package/dist/src/components/Media/index.d.ts +3 -0
  158. package/dist/src/components/Media/index.js +3 -0
  159. package/dist/src/components/Menu/OrigamMenu.vue +23 -5
  160. package/dist/src/components/Messages/OrigamMessages.vue +2 -2
  161. package/dist/src/components/NumberField/OrigamNumberField.vue +6 -6
  162. package/dist/src/components/NumberFormat/OrigamNumberFormat.vue +97 -0
  163. package/dist/src/components/NumberFormat/index.cjs +13 -0
  164. package/dist/src/components/NumberFormat/index.d.ts +1 -0
  165. package/dist/src/components/NumberFormat/index.js +1 -0
  166. package/dist/src/components/OtpInputField/OrigamOtpInputField.vue +12 -12
  167. package/dist/src/components/Overlay/OrigamOverlay.vue +1 -1
  168. package/dist/src/components/Overlay/OrigamOverlayScrim.vue +2 -1
  169. package/dist/src/components/Pagination/OrigamPagination.vue +4 -10
  170. package/dist/src/components/Parallax/OrigamParallax.vue +32 -4
  171. package/dist/src/components/PasswordField/OrigamPasswordField.vue +6 -6
  172. package/dist/src/components/Picker/OrigamPicker.vue +5 -5
  173. package/dist/src/components/Picker/OrigamPickerTitle.vue +2 -2
  174. package/dist/src/components/Progress/OrigamProgress.vue +3 -1
  175. package/dist/src/components/Progress/OrigamProgressCircular.vue +8 -1
  176. package/dist/src/components/Progress/OrigamProgressLinear.vue +13 -1
  177. package/dist/src/components/QRCode/OrigamQrCode.vue +246 -0
  178. package/dist/src/components/QRCode/index.cjs +13 -0
  179. package/dist/src/components/QRCode/index.js +1 -0
  180. package/dist/src/components/Radio/OrigamRadio.vue +2 -2
  181. package/dist/src/components/Radio/OrigamRadioBtn.vue +2 -2
  182. package/dist/src/components/Radio/OrigamRadioGroup.vue +2 -2
  183. package/dist/src/components/RatingField/OrigamRatingField.vue +20 -20
  184. package/dist/src/components/RatingField/OrigamRatingFieldItem.vue +1 -1
  185. package/dist/src/components/Select/OrigamSelect.vue +46 -12
  186. package/dist/src/components/SelectionControl/OrigamSelectionControl.vue +6 -2
  187. package/dist/src/components/SelectionControl/OrigamSelectionControlGroup.vue +2 -1
  188. package/dist/src/components/Sheet/OrigamSheet.vue +3 -3
  189. package/dist/src/components/Skeleton/OrigamSkeleton.vue +9 -2
  190. package/dist/src/components/SliderField/OrigamSliderField.vue +1065 -330
  191. package/dist/src/components/SliderField/OrigamSliderFieldTrack.vue +33 -45
  192. package/dist/src/components/SliderField/index.cjs +0 -7
  193. package/dist/src/components/SliderField/index.d.ts +0 -1
  194. package/dist/src/components/SliderField/index.js +0 -1
  195. package/dist/src/components/Snackbar/OrigamSnackbar.vue +255 -265
  196. package/dist/src/components/Snackbar/OrigamSnackbarGroup.vue +238 -0
  197. package/dist/src/components/Snackbar/OrigamSnackbarItem.vue +270 -0
  198. package/dist/src/components/Snackbar/index.cjs +14 -0
  199. package/dist/src/components/Snackbar/index.d.ts +2 -0
  200. package/dist/src/components/Snackbar/index.js +2 -0
  201. package/dist/src/components/Stepper/OrigamStepper.vue +66 -7
  202. package/dist/src/components/Switch/OrigamSwitch.vue +128 -11
  203. package/dist/src/components/Switch/OrigamSwitchTrack.vue +13 -2
  204. package/dist/src/components/SystemBar/OrigamSystemBar.vue +2 -2
  205. package/dist/src/components/Table/OrigamTable.vue +34 -1
  206. package/dist/src/components/Tabs/OrigamTabs.vue +2 -2
  207. package/dist/src/components/TextField/OrigamTextField.vue +4 -2
  208. package/dist/src/components/TextMask/OrigamTextMask.vue +157 -0
  209. package/dist/src/components/TextMask/index.cjs +13 -0
  210. package/dist/src/components/TextMask/index.d.ts +1 -0
  211. package/dist/src/components/TextMask/index.js +1 -0
  212. package/dist/src/components/TextareaField/OrigamTextareaField.vue +4 -2
  213. package/dist/src/components/Timeline/OrigamTimeline.vue +1 -1
  214. package/dist/src/components/Timeline/OrigamTimelineItem.vue +1 -1
  215. package/dist/src/components/Title/OrigamTitle.vue +2 -2
  216. package/dist/src/components/Toolbar/OrigamToolbar.vue +2 -2
  217. package/dist/src/components/Tooltip/OrigamTooltip.vue +2 -2
  218. package/dist/src/components/Treeview/OrigamTreeview.vue +2 -4
  219. package/dist/src/components/Video/OrigamVideo.vue +1087 -0
  220. package/dist/src/components/Video/index.cjs +13 -0
  221. package/dist/src/components/Video/index.d.ts +1 -0
  222. package/dist/src/components/Video/index.js +1 -0
  223. package/dist/src/components/Watermark/OrigamWatermark.vue +187 -0
  224. package/dist/src/components/Watermark/index.cjs +13 -0
  225. package/dist/src/components/Watermark/index.d.ts +1 -0
  226. package/dist/src/components/Watermark/index.js +1 -0
  227. package/dist/src/components/index.cjs +165 -11
  228. package/dist/src/components/index.d.ts +15 -1
  229. package/dist/src/components/index.js +15 -1
  230. package/dist/src/composables/Audio/use-audio-player.composable.cjs +26 -0
  231. package/dist/src/composables/Audio/use-audio-player.composable.d.ts +29 -0
  232. package/dist/src/composables/Audio/use-audio-player.composable.js +17 -0
  233. package/dist/src/composables/Audio/use-waveform.composable.cjs +91 -0
  234. package/dist/src/composables/Audio/use-waveform.composable.d.ts +32 -0
  235. package/dist/src/composables/Audio/use-waveform.composable.js +81 -0
  236. package/dist/src/composables/Calendar/calendar.composable.cjs +184 -0
  237. package/dist/src/composables/Calendar/calendar.composable.d.ts +72 -0
  238. package/dist/src/composables/Calendar/calendar.composable.js +182 -0
  239. package/dist/src/composables/Chart/chart-gauge.composable.cjs +54 -0
  240. package/dist/src/composables/Chart/chart-gauge.composable.d.ts +21 -0
  241. package/dist/src/composables/Chart/chart-gauge.composable.js +47 -0
  242. package/dist/src/composables/Chart/chart-zoom.composable.cjs +93 -0
  243. package/dist/src/composables/Chart/chart-zoom.composable.d.ts +34 -0
  244. package/dist/src/composables/Chart/chart-zoom.composable.js +87 -0
  245. package/dist/src/composables/Chart/chart.composable.cjs +893 -0
  246. package/dist/src/composables/Chart/chart.composable.d.ts +97 -0
  247. package/dist/src/composables/Chart/chart.composable.js +829 -0
  248. package/dist/src/composables/Clipboard/clipboard.composable.cjs +78 -0
  249. package/dist/src/composables/Clipboard/clipboard.composable.d.ts +21 -0
  250. package/dist/src/composables/Clipboard/clipboard.composable.js +79 -0
  251. package/dist/src/composables/Code/code.composable.cjs +21 -17
  252. package/dist/src/composables/Code/code.composable.js +13 -9
  253. package/dist/src/composables/Commons/audio.composable.d.ts +2 -2
  254. package/dist/src/composables/Commons/color.composable.cjs +47 -12
  255. package/dist/src/composables/Commons/color.composable.js +47 -12
  256. package/dist/src/composables/Commons/{calendar.composable.cjs → date-picker-calendar.composable.cjs} +2 -2
  257. package/dist/src/composables/Commons/{calendar.composable.d.ts → date-picker-calendar.composable.d.ts} +2 -2
  258. package/dist/src/composables/Commons/{calendar.composable.js → date-picker-calendar.composable.js} +1 -1
  259. package/dist/src/composables/Commons/elevation.composable.cjs +4 -5
  260. package/dist/src/composables/Commons/elevation.composable.js +1 -18
  261. package/dist/src/composables/CssSupport/cssSupport.composable.cjs +5 -26
  262. package/dist/src/composables/CssSupport/cssSupport.composable.d.ts +1 -23
  263. package/dist/src/composables/CssSupport/cssSupport.composable.js +1 -22
  264. package/dist/src/composables/DataTable/headers.composable.d.ts +28 -28
  265. package/dist/src/composables/InlineEdit/inline-edit.composable.cjs +87 -0
  266. package/dist/src/composables/InlineEdit/inline-edit.composable.d.ts +36 -0
  267. package/dist/src/composables/InlineEdit/inline-edit.composable.js +86 -0
  268. package/dist/src/composables/Masonry/masonry.composable.cjs +160 -0
  269. package/dist/src/composables/Masonry/masonry.composable.d.ts +132 -0
  270. package/dist/src/composables/Masonry/masonry.composable.js +160 -0
  271. package/dist/src/composables/Media/use-media-player.composable.cjs +286 -0
  272. package/dist/src/composables/Media/use-media-player.composable.d.ts +43 -0
  273. package/dist/src/composables/Media/use-media-player.composable.js +289 -0
  274. package/dist/src/composables/NumberFormat/number-format.composable.cjs +165 -0
  275. package/dist/src/composables/NumberFormat/number-format.composable.d.ts +33 -0
  276. package/dist/src/composables/NumberFormat/number-format.composable.js +146 -0
  277. package/dist/src/composables/QrCode/qr-code.composable.cjs +111 -0
  278. package/dist/src/composables/QrCode/qr-code.composable.d.ts +31 -0
  279. package/dist/src/composables/QrCode/qr-code.composable.js +120 -0
  280. package/dist/src/composables/Sheet/sheetSwipe.composable.cjs +5 -5
  281. package/dist/src/composables/Sheet/sheetSwipe.composable.d.ts +1 -1
  282. package/dist/src/composables/Sheet/sheetSwipe.composable.js +3 -3
  283. package/dist/src/composables/SliderField/slider-field.composable.cjs +0 -213
  284. package/dist/src/composables/SliderField/slider-field.composable.d.ts +11 -5
  285. package/dist/src/composables/SliderField/slider-field.composable.js +2 -191
  286. package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.cjs → Snackbar/snackbar-group.composable.cjs} +10 -10
  287. package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.d.ts → Snackbar/snackbar-group.composable.d.ts} +14 -14
  288. package/dist/src/composables/{SnackbarStack/snackbar-stack.composable.js → Snackbar/snackbar-group.composable.js} +9 -9
  289. package/dist/src/composables/Theme/theme.composable.cjs +5 -6
  290. package/dist/src/composables/Theme/theme.composable.js +1 -2
  291. package/dist/src/composables/Video/video-player.composable.cjs +129 -0
  292. package/dist/src/composables/Video/video-player.composable.d.ts +44 -0
  293. package/dist/src/composables/Video/video-player.composable.js +128 -0
  294. package/dist/src/composables/Watermark/watermark.composable.cjs +147 -0
  295. package/dist/src/composables/Watermark/watermark.composable.d.ts +28 -0
  296. package/dist/src/composables/Watermark/watermark.composable.js +158 -0
  297. package/dist/src/composables/index.cjs +237 -8
  298. package/dist/src/composables/index.d.ts +14 -2
  299. package/dist/src/composables/index.js +14 -2
  300. package/dist/src/consts/Audio/audio.const.cjs +25 -0
  301. package/dist/src/consts/Audio/audio.const.d.ts +30 -0
  302. package/dist/src/consts/Audio/audio.const.js +19 -0
  303. package/dist/src/consts/Blockquote/blockquote.const.cjs +32 -0
  304. package/dist/src/consts/Blockquote/blockquote.const.d.ts +37 -0
  305. package/dist/src/consts/Blockquote/blockquote.const.js +30 -0
  306. package/dist/src/consts/Chart/chart.const.cjs +26 -0
  307. package/dist/src/consts/Chart/chart.const.d.ts +32 -0
  308. package/dist/src/consts/Chart/chart.const.js +9 -0
  309. package/dist/src/consts/Chart/country-centroids.const.cjs +43 -0
  310. package/dist/src/consts/Chart/country-centroids.const.d.ts +10 -0
  311. package/dist/src/consts/Chart/country-centroids.const.js +37 -0
  312. package/dist/src/consts/Chart/pictorial-icons.const.cjs +12 -0
  313. package/dist/src/consts/Chart/pictorial-icons.const.d.ts +18 -0
  314. package/dist/src/consts/Chart/pictorial-icons.const.js +6 -0
  315. package/dist/src/consts/Chart/world-geographic.const.cjs +152 -0
  316. package/dist/src/consts/Chart/world-geographic.const.d.ts +22 -0
  317. package/dist/src/consts/Chart/world-geographic.const.js +1722 -0
  318. package/dist/src/consts/Chart/world-map.const.cjs +43 -0
  319. package/dist/src/consts/Chart/world-map.const.d.ts +14 -0
  320. package/dist/src/consts/Chart/world-map.const.js +37 -0
  321. package/dist/src/consts/Clipboard/clipboard.const.cjs +7 -0
  322. package/dist/src/consts/Clipboard/clipboard.const.d.ts +6 -0
  323. package/dist/src/consts/Clipboard/clipboard.const.js +1 -0
  324. package/dist/src/consts/Code/code.const.cjs +3 -6
  325. package/dist/src/consts/Code/code.const.d.ts +8 -12
  326. package/dist/src/consts/Code/code.const.js +3 -6
  327. package/dist/src/consts/Commons/elevation.const.cjs +8 -0
  328. package/dist/src/consts/Commons/elevation.const.d.ts +17 -0
  329. package/dist/src/consts/Commons/elevation.const.js +18 -0
  330. package/dist/src/consts/CssSupport/css-support.const.cjs +29 -0
  331. package/dist/src/consts/CssSupport/css-support.const.d.ts +40 -0
  332. package/dist/src/consts/CssSupport/css-support.const.js +23 -0
  333. package/dist/src/consts/DataTable/select.const.cjs +2 -1
  334. package/dist/src/consts/DataTable/select.const.d.ts +2 -1
  335. package/dist/src/consts/DataTable/select.const.js +1 -0
  336. package/dist/src/consts/EmptyState/empty-state.const.cjs +32 -0
  337. package/dist/src/consts/EmptyState/empty-state.const.d.ts +29 -0
  338. package/dist/src/consts/EmptyState/empty-state.const.js +39 -0
  339. package/dist/src/consts/Grid/grid.const.cjs +28 -0
  340. package/dist/src/consts/Grid/grid.const.d.ts +49 -0
  341. package/dist/src/consts/Grid/grid.const.js +46 -0
  342. package/dist/src/consts/Masonry/masonry.const.cjs +14 -0
  343. package/dist/src/consts/Masonry/masonry.const.d.ts +27 -0
  344. package/dist/src/consts/Masonry/masonry.const.js +11 -0
  345. package/dist/src/consts/Media/media.const.cjs +8 -0
  346. package/dist/src/consts/Media/media.const.d.ts +14 -0
  347. package/dist/src/consts/Media/media.const.js +2 -0
  348. package/dist/src/consts/NumberFormat/number-format.const.cjs +9 -0
  349. package/dist/src/consts/NumberFormat/number-format.const.d.ts +19 -0
  350. package/dist/src/consts/NumberFormat/number-format.const.js +3 -0
  351. package/dist/src/consts/QrCode/qr-code.const.cjs +12 -0
  352. package/dist/src/consts/QrCode/qr-code.const.d.ts +33 -0
  353. package/dist/src/consts/QrCode/qr-code.const.js +6 -0
  354. package/dist/src/consts/Sheet/sheet-swipe.const.cjs +7 -0
  355. package/dist/src/consts/Sheet/sheet-swipe.const.d.ts +11 -0
  356. package/dist/src/consts/Sheet/sheet-swipe.const.js +1 -0
  357. package/dist/src/consts/Snackbar/snackbar-group.const.cjs +12 -0
  358. package/dist/src/consts/Snackbar/snackbar-group.const.d.ts +33 -0
  359. package/dist/src/consts/Snackbar/snackbar-group.const.js +18 -0
  360. package/dist/src/consts/Video/video.const.cjs +7 -0
  361. package/dist/src/consts/Video/video.const.d.ts +7 -0
  362. package/dist/src/consts/Video/video.const.js +1 -0
  363. package/dist/src/consts/Watermark/watermark.const.cjs +16 -0
  364. package/dist/src/consts/Watermark/watermark.const.d.ts +27 -0
  365. package/dist/src/consts/Watermark/watermark.const.js +10 -0
  366. package/dist/src/consts/index.cjs +188 -12
  367. package/dist/src/consts/index.d.ts +18 -2
  368. package/dist/src/consts/index.js +18 -2
  369. package/dist/src/enums/Audio/audio-loop-mode.enum.cjs +12 -0
  370. package/dist/src/enums/Audio/audio-loop-mode.enum.d.ts +17 -0
  371. package/dist/src/enums/Audio/audio-loop-mode.enum.js +6 -0
  372. package/dist/src/enums/Audio/audio-variant.enum.cjs +13 -0
  373. package/dist/src/enums/Audio/audio-variant.enum.d.ts +26 -0
  374. package/dist/src/enums/Audio/audio-variant.enum.js +7 -0
  375. package/dist/src/enums/Audio/cover-position.enum.cjs +11 -0
  376. package/dist/src/enums/Audio/cover-position.enum.d.ts +9 -0
  377. package/dist/src/enums/Audio/cover-position.enum.js +5 -0
  378. package/dist/src/enums/Blockquote/blockquote-lang.enum.cjs +14 -0
  379. package/dist/src/enums/Blockquote/blockquote-lang.enum.d.ts +7 -0
  380. package/dist/src/enums/Blockquote/blockquote-lang.enum.js +8 -0
  381. package/dist/src/enums/Blockquote/blockquote-variant.enum.cjs +14 -0
  382. package/dist/src/enums/Blockquote/blockquote-variant.enum.d.ts +7 -0
  383. package/dist/src/enums/Blockquote/blockquote-variant.enum.js +8 -0
  384. package/dist/src/enums/Chart/chart-bullet-orientation.enum.cjs +11 -0
  385. package/dist/src/enums/Chart/chart-bullet-orientation.enum.d.ts +4 -0
  386. package/dist/src/enums/Chart/chart-bullet-orientation.enum.js +5 -0
  387. package/dist/src/enums/Chart/chart-cartesian-kind.enum.cjs +16 -0
  388. package/dist/src/enums/Chart/chart-cartesian-kind.enum.d.ts +14 -0
  389. package/dist/src/enums/Chart/chart-cartesian-kind.enum.js +10 -0
  390. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.cjs +11 -0
  391. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.d.ts +4 -0
  392. package/dist/src/enums/Chart/chart-honeycomb-color-mode.enum.js +5 -0
  393. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.cjs +11 -0
  394. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.d.ts +4 -0
  395. package/dist/src/enums/Chart/chart-honeycomb-orientation.enum.js +5 -0
  396. package/dist/src/enums/Chart/chart-map-mode.enum.cjs +11 -0
  397. package/dist/src/enums/Chart/chart-map-mode.enum.d.ts +4 -0
  398. package/dist/src/enums/Chart/chart-map-mode.enum.js +5 -0
  399. package/dist/src/enums/Chart/chart-pictorial-direction.enum.cjs +11 -0
  400. package/dist/src/enums/Chart/chart-pictorial-direction.enum.d.ts +4 -0
  401. package/dist/src/enums/Chart/chart-pictorial-direction.enum.js +5 -0
  402. package/dist/src/enums/Chart/chart-pictorial-mode.enum.cjs +11 -0
  403. package/dist/src/enums/Chart/chart-pictorial-mode.enum.d.ts +4 -0
  404. package/dist/src/enums/Chart/chart-pictorial-mode.enum.js +5 -0
  405. package/dist/src/enums/Chart/chart-polar-kind.enum.cjs +11 -0
  406. package/dist/src/enums/Chart/chart-polar-kind.enum.d.ts +8 -0
  407. package/dist/src/enums/Chart/chart-polar-kind.enum.js +5 -0
  408. package/dist/src/enums/Chart/chart-pyramid-kind.enum.cjs +11 -0
  409. package/dist/src/enums/Chart/chart-pyramid-kind.enum.d.ts +4 -0
  410. package/dist/src/enums/Chart/chart-pyramid-kind.enum.js +5 -0
  411. package/dist/src/enums/Chart/chart-sparkline-kind.enum.cjs +13 -0
  412. package/dist/src/enums/Chart/chart-sparkline-kind.enum.d.ts +6 -0
  413. package/dist/src/enums/Chart/chart-sparkline-kind.enum.js +7 -0
  414. package/dist/src/enums/Chart/chart-stacking.enum.cjs +11 -0
  415. package/dist/src/enums/Chart/chart-stacking.enum.d.ts +14 -0
  416. package/dist/src/enums/Chart/chart-stacking.enum.js +5 -0
  417. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.cjs +13 -0
  418. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.d.ts +6 -0
  419. package/dist/src/enums/Chart/chart-streamgraph-offset.enum.js +7 -0
  420. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.cjs +11 -0
  421. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.d.ts +9 -0
  422. package/dist/src/enums/Chart/chart-treemap-algorithm.enum.js +5 -0
  423. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.cjs +12 -0
  424. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.d.ts +5 -0
  425. package/dist/src/enums/Chart/chart-word-cloud-rotation.enum.js +6 -0
  426. package/dist/src/enums/Chart/chart.enum.cjs +38 -0
  427. package/dist/src/enums/Chart/chart.enum.d.ts +31 -0
  428. package/dist/src/enums/Chart/chart.enum.js +32 -0
  429. package/dist/src/enums/EmptyState/empty-state-preset.enum.cjs +14 -0
  430. package/dist/src/enums/EmptyState/empty-state-preset.enum.d.ts +16 -0
  431. package/dist/src/enums/EmptyState/empty-state-preset.enum.js +8 -0
  432. package/dist/src/enums/InlineEdit/inline-edit-action.enum.cjs +12 -0
  433. package/dist/src/enums/InlineEdit/inline-edit-action.enum.d.ts +10 -0
  434. package/dist/src/enums/InlineEdit/inline-edit-action.enum.js +6 -0
  435. package/dist/src/enums/SliderField/slider-field-variant.enum.cjs +12 -0
  436. package/dist/src/enums/SliderField/slider-field-variant.enum.d.ts +21 -0
  437. package/dist/src/enums/SliderField/slider-field-variant.enum.js +6 -0
  438. package/dist/src/enums/index.cjs +240 -9
  439. package/dist/src/enums/index.d.ts +23 -2
  440. package/dist/src/enums/index.js +23 -2
  441. package/dist/src/interfaces/Alert/alert.interface.d.ts +5 -1
  442. package/dist/src/interfaces/App/app-bar.interface.d.ts +4 -1
  443. package/dist/src/interfaces/Audio/audio-player.interface.d.ts +406 -0
  444. package/dist/src/interfaces/Avatar/avatar-group.interface.d.ts +5 -1
  445. package/dist/src/interfaces/Avatar/avatar.interface.d.ts +4 -1
  446. package/dist/src/interfaces/Blockquote/blockquote.interface.d.ts +84 -0
  447. package/dist/src/interfaces/BottomNav/bottom-nav.interface.d.ts +5 -1
  448. package/dist/src/interfaces/Bracket/bracket.interface.d.ts +3 -10
  449. package/dist/src/interfaces/Breadcrumb/breadcrumb-item.interface.d.ts +4 -1
  450. package/dist/src/interfaces/Btn/btn-toggle.interface.d.ts +4 -1
  451. package/dist/src/interfaces/Btn/btn.interface.d.ts +5 -1
  452. package/dist/src/interfaces/Calendar/calendar.interface.d.ts +159 -0
  453. package/dist/src/interfaces/Calendar/event.interface.d.ts +54 -0
  454. package/dist/src/interfaces/Card/card-header.interface.d.ts +4 -1
  455. package/dist/src/interfaces/Card/card.interface.d.ts +5 -1
  456. package/dist/src/interfaces/Carousel/carousel.interface.d.ts +4 -1
  457. package/dist/src/interfaces/Chart/chart-annotation.interface.d.ts +99 -0
  458. package/dist/src/interfaces/Chart/chart-axis.interface.d.ts +78 -0
  459. package/dist/src/interfaces/Chart/chart-base.interface.d.ts +87 -0
  460. package/dist/src/interfaces/Chart/chart-box-plot.interface.d.ts +203 -0
  461. package/dist/src/interfaces/Chart/chart-bullet.interface.d.ts +140 -0
  462. package/dist/src/interfaces/Chart/chart-candlestick.interface.d.ts +131 -0
  463. package/dist/src/interfaces/Chart/chart-cartesian.interface.d.ts +124 -0
  464. package/dist/src/interfaces/Chart/chart-cartesian.interface.js +0 -0
  465. package/dist/src/interfaces/Chart/chart-drilldown.interface.cjs +1 -0
  466. package/dist/src/interfaces/Chart/chart-drilldown.interface.d.ts +60 -0
  467. package/dist/src/interfaces/Chart/chart-drilldown.interface.js +0 -0
  468. package/dist/src/interfaces/Chart/chart-gauge.interface.cjs +1 -0
  469. package/dist/src/interfaces/Chart/chart-gauge.interface.d.ts +130 -0
  470. package/dist/src/interfaces/Chart/chart-gauge.interface.js +0 -0
  471. package/dist/src/interfaces/Chart/chart-heatmap.interface.cjs +1 -0
  472. package/dist/src/interfaces/Chart/chart-heatmap.interface.d.ts +128 -0
  473. package/dist/src/interfaces/Chart/chart-heatmap.interface.js +0 -0
  474. package/dist/src/interfaces/Chart/chart-honeycomb.interface.cjs +1 -0
  475. package/dist/src/interfaces/Chart/chart-honeycomb.interface.d.ts +109 -0
  476. package/dist/src/interfaces/Chart/chart-honeycomb.interface.js +0 -0
  477. package/dist/src/interfaces/Chart/chart-legend.interface.cjs +1 -0
  478. package/dist/src/interfaces/Chart/chart-legend.interface.d.ts +48 -0
  479. package/dist/src/interfaces/Chart/chart-legend.interface.js +0 -0
  480. package/dist/src/interfaces/Chart/chart-map.interface.cjs +1 -0
  481. package/dist/src/interfaces/Chart/chart-map.interface.d.ts +137 -0
  482. package/dist/src/interfaces/Chart/chart-map.interface.js +0 -0
  483. package/dist/src/interfaces/Chart/chart-pareto.interface.cjs +1 -0
  484. package/dist/src/interfaces/Chart/chart-pareto.interface.d.ts +124 -0
  485. package/dist/src/interfaces/Chart/chart-pareto.interface.js +0 -0
  486. package/dist/src/interfaces/Chart/chart-pictorial.interface.cjs +1 -0
  487. package/dist/src/interfaces/Chart/chart-pictorial.interface.d.ts +114 -0
  488. package/dist/src/interfaces/Chart/chart-pictorial.interface.js +0 -0
  489. package/dist/src/interfaces/Chart/chart-plot-band.interface.cjs +1 -0
  490. package/dist/src/interfaces/Chart/chart-plot-band.interface.d.ts +34 -0
  491. package/dist/src/interfaces/Chart/chart-plot-band.interface.js +0 -0
  492. package/dist/src/interfaces/Chart/chart-plot-line.interface.cjs +1 -0
  493. package/dist/src/interfaces/Chart/chart-plot-line.interface.d.ts +39 -0
  494. package/dist/src/interfaces/Chart/chart-plot-line.interface.js +0 -0
  495. package/dist/src/interfaces/Chart/chart-point.interface.cjs +1 -0
  496. package/dist/src/interfaces/Chart/chart-point.interface.d.ts +20 -0
  497. package/dist/src/interfaces/Chart/chart-point.interface.js +0 -0
  498. package/dist/src/interfaces/Chart/chart-polar-bar.interface.cjs +1 -0
  499. package/dist/src/interfaces/Chart/chart-polar-bar.interface.d.ts +118 -0
  500. package/dist/src/interfaces/Chart/chart-polar-bar.interface.js +0 -0
  501. package/dist/src/interfaces/Chart/chart-polar.interface.cjs +1 -0
  502. package/dist/src/interfaces/Chart/chart-polar.interface.d.ts +43 -0
  503. package/dist/src/interfaces/Chart/chart-polar.interface.js +0 -0
  504. package/dist/src/interfaces/Chart/chart-pyramid.interface.cjs +1 -0
  505. package/dist/src/interfaces/Chart/chart-pyramid.interface.d.ts +96 -0
  506. package/dist/src/interfaces/Chart/chart-pyramid.interface.js +0 -0
  507. package/dist/src/interfaces/Chart/chart-radar.interface.cjs +1 -0
  508. package/dist/src/interfaces/Chart/chart-radar.interface.d.ts +10 -0
  509. package/dist/src/interfaces/Chart/chart-radar.interface.js +0 -0
  510. package/dist/src/interfaces/Chart/chart-range-selector.interface.cjs +1 -0
  511. package/dist/src/interfaces/Chart/chart-range-selector.interface.d.ts +38 -0
  512. package/dist/src/interfaces/Chart/chart-range-selector.interface.js +0 -0
  513. package/dist/src/interfaces/Chart/chart-sankey.interface.cjs +1 -0
  514. package/dist/src/interfaces/Chart/chart-sankey.interface.d.ts +124 -0
  515. package/dist/src/interfaces/Chart/chart-sankey.interface.js +0 -0
  516. package/dist/src/interfaces/Chart/chart-series.interface.cjs +1 -0
  517. package/dist/src/interfaces/Chart/chart-series.interface.d.ts +80 -0
  518. package/dist/src/interfaces/Chart/chart-series.interface.js +0 -0
  519. package/dist/src/interfaces/Chart/chart-sparkline.interface.cjs +1 -0
  520. package/dist/src/interfaces/Chart/chart-sparkline.interface.d.ts +108 -0
  521. package/dist/src/interfaces/Chart/chart-sparkline.interface.js +0 -0
  522. package/dist/src/interfaces/Chart/chart-streamgraph.interface.cjs +1 -0
  523. package/dist/src/interfaces/Chart/chart-streamgraph.interface.d.ts +82 -0
  524. package/dist/src/interfaces/Chart/chart-streamgraph.interface.js +0 -0
  525. package/dist/src/interfaces/Chart/chart-sunburst.interface.cjs +1 -0
  526. package/dist/src/interfaces/Chart/chart-sunburst.interface.d.ts +100 -0
  527. package/dist/src/interfaces/Chart/chart-sunburst.interface.js +0 -0
  528. package/dist/src/interfaces/Chart/chart-tooltip.interface.cjs +1 -0
  529. package/dist/src/interfaces/Chart/chart-tooltip.interface.d.ts +55 -0
  530. package/dist/src/interfaces/Chart/chart-tooltip.interface.js +0 -0
  531. package/dist/src/interfaces/Chart/chart-treemap.interface.cjs +1 -0
  532. package/dist/src/interfaces/Chart/chart-treemap.interface.d.ts +106 -0
  533. package/dist/src/interfaces/Chart/chart-treemap.interface.js +0 -0
  534. package/dist/src/interfaces/Chart/chart-variwide.interface.cjs +1 -0
  535. package/dist/src/interfaces/Chart/chart-variwide.interface.d.ts +132 -0
  536. package/dist/src/interfaces/Chart/chart-variwide.interface.js +0 -0
  537. package/dist/src/interfaces/Chart/chart-word-cloud.interface.cjs +1 -0
  538. package/dist/src/interfaces/Chart/chart-word-cloud.interface.d.ts +83 -0
  539. package/dist/src/interfaces/Chart/chart-word-cloud.interface.js +0 -0
  540. package/dist/src/interfaces/Chart/chart.interface.cjs +1 -0
  541. package/dist/src/interfaces/Chart/chart.interface.d.ts +276 -0
  542. package/dist/src/interfaces/Chart/chart.interface.js +0 -0
  543. package/dist/src/interfaces/Chip/chip-group.interface.d.ts +4 -1
  544. package/dist/src/interfaces/Chip/chip.interface.d.ts +5 -1
  545. package/dist/src/interfaces/Clipboard/clipboard.interface.cjs +1 -0
  546. package/dist/src/interfaces/Clipboard/clipboard.interface.d.ts +106 -0
  547. package/dist/src/interfaces/Clipboard/clipboard.interface.js +0 -0
  548. package/dist/src/interfaces/Code/code.interface.d.ts +4 -14
  549. package/dist/src/interfaces/ColorPicker/color-picker-canvas.interface.d.ts +5 -1
  550. package/dist/src/interfaces/ColorPicker/color-picker-edit.interface.d.ts +5 -1
  551. package/dist/src/interfaces/ColorPicker/color-picker-preview.interface.d.ts +4 -1
  552. package/dist/src/interfaces/ColorPicker/color-picker-swatches.interface.d.ts +5 -1
  553. package/dist/src/interfaces/ColorPicker/color-picker.interface.d.ts +18 -2
  554. package/dist/src/interfaces/Commons/audio.interface.d.ts +7 -1
  555. package/dist/src/interfaces/Commons/clickOutside.interface.d.ts +5 -0
  556. package/dist/src/interfaces/Commons/commons.interface.d.ts +18 -0
  557. package/dist/src/interfaces/Commons/gradient.interface.cjs +1 -0
  558. package/dist/src/interfaces/Commons/gradient.interface.d.ts +39 -0
  559. package/dist/src/interfaces/Commons/gradient.interface.js +0 -0
  560. package/dist/src/interfaces/Commons/group.interface.d.ts +6 -0
  561. package/dist/src/interfaces/Commons/hover.interface.d.ts +4 -0
  562. package/dist/src/interfaces/Commons/layout.interface.d.ts +2 -2
  563. package/dist/src/interfaces/Commons/lazy.interface.d.ts +5 -1
  564. package/dist/src/interfaces/DataTable/data-table.interface.d.ts +12 -1
  565. package/dist/src/interfaces/DataTable/headers.interface.d.ts +6 -1
  566. package/dist/src/interfaces/DataTable/row.interface.d.ts +11 -0
  567. package/dist/src/interfaces/DatePicker/date-picker-controls.interface.d.ts +9 -0
  568. package/dist/src/interfaces/DatePicker/date-picker-header.interface.d.ts +4 -1
  569. package/dist/src/interfaces/DatePicker/date-picker-months.interface.d.ts +4 -0
  570. package/dist/src/interfaces/DatePicker/date-picker-years.interface.d.ts +4 -0
  571. package/dist/src/interfaces/DatePicker/date-picker.interface.d.ts +9 -1
  572. package/dist/src/interfaces/DatePickerField/date-picker-field.interface.d.ts +2 -2
  573. package/dist/src/interfaces/Dialog/dialog-confirmation.interface.d.ts +5 -0
  574. package/dist/src/interfaces/Dialog/dialog.interface.d.ts +8 -1
  575. package/dist/src/interfaces/Drawer/drawer.interface.d.ts +4 -0
  576. package/dist/src/interfaces/EmptyState/empty-state.interface.cjs +1 -0
  577. package/dist/src/interfaces/EmptyState/empty-state.interface.d.ts +100 -0
  578. package/dist/src/interfaces/EmptyState/empty-state.interface.js +0 -0
  579. package/dist/src/interfaces/ExpensionPanel/expansion-panel-header.interface.d.ts +4 -1
  580. package/dist/src/interfaces/ExpensionPanel/expansion-panel.interface.d.ts +4 -1
  581. package/dist/src/interfaces/ExpensionPanel/expansion-panels.interface.d.ts +4 -1
  582. package/dist/src/interfaces/FileField/file-field-dragndrop-item.interface.d.ts +2 -3
  583. package/dist/src/interfaces/FileField/file-field-list-item.interface.d.ts +2 -3
  584. package/dist/src/interfaces/Grid/grid-item.interface.cjs +1 -0
  585. package/dist/src/interfaces/Grid/grid-item.interface.d.ts +55 -0
  586. package/dist/src/interfaces/Grid/grid-item.interface.js +0 -0
  587. package/dist/src/interfaces/Grid/grid.interface.cjs +1 -0
  588. package/dist/src/interfaces/Grid/grid.interface.d.ts +121 -0
  589. package/dist/src/interfaces/Grid/grid.interface.js +0 -0
  590. package/dist/src/interfaces/Icon/icon.interface.d.ts +2 -2
  591. package/dist/src/interfaces/Img/img.interface.d.ts +14 -0
  592. package/dist/src/interfaces/InfiniteScroll/infinite-scroll.interface.d.ts +16 -0
  593. package/dist/src/interfaces/InlineEdit/inline-edit.interface.cjs +1 -0
  594. package/dist/src/interfaces/InlineEdit/inline-edit.interface.d.ts +241 -0
  595. package/dist/src/interfaces/InlineEdit/inline-edit.interface.js +0 -0
  596. package/dist/src/interfaces/ItemGroup/item-group.interface.d.ts +4 -1
  597. package/dist/src/interfaces/List/list-group.interface.d.ts +5 -0
  598. package/dist/src/interfaces/List/list-item.interface.d.ts +4 -1
  599. package/dist/src/interfaces/List/list.interface.d.ts +16 -0
  600. package/dist/src/interfaces/Main/main.interface.d.ts +2 -2
  601. package/dist/src/interfaces/Masonry/masonry.interface.cjs +1 -0
  602. package/dist/src/interfaces/Masonry/masonry.interface.d.ts +80 -0
  603. package/dist/src/interfaces/Masonry/masonry.interface.js +0 -0
  604. package/dist/src/interfaces/Media/index.cjs +49 -0
  605. package/dist/src/interfaces/Media/index.d.ts +4 -0
  606. package/dist/src/interfaces/Media/index.js +4 -0
  607. package/dist/src/interfaces/Media/media-controller.interface.cjs +1 -0
  608. package/dist/src/interfaces/Media/media-controller.interface.d.ts +159 -0
  609. package/dist/src/interfaces/Media/media-controller.interface.js +0 -0
  610. package/dist/src/interfaces/Media/media-player.interface.cjs +1 -0
  611. package/dist/src/interfaces/Media/media-player.interface.d.ts +121 -0
  612. package/dist/src/interfaces/Media/media-player.interface.js +0 -0
  613. package/dist/src/interfaces/Media/media-scrubber.interface.cjs +1 -0
  614. package/dist/src/interfaces/Media/media-scrubber.interface.d.ts +129 -0
  615. package/dist/src/interfaces/Media/media-scrubber.interface.js +0 -0
  616. package/dist/src/interfaces/Media/media-volume-control.interface.cjs +1 -0
  617. package/dist/src/interfaces/Media/media-volume-control.interface.d.ts +68 -0
  618. package/dist/src/interfaces/Media/media-volume-control.interface.js +0 -0
  619. package/dist/src/interfaces/Menu/menu.interface.d.ts +7 -1
  620. package/dist/src/interfaces/NumberField/number-field.interface.d.ts +2 -2
  621. package/dist/src/interfaces/NumberFormat/number-format.interface.cjs +1 -0
  622. package/dist/src/interfaces/NumberFormat/number-format.interface.d.ts +161 -0
  623. package/dist/src/interfaces/NumberFormat/number-format.interface.js +0 -0
  624. package/dist/src/interfaces/OtpInputField/otp-input-field.interface.d.ts +2 -2
  625. package/dist/src/interfaces/Overlay/overlay-scrim.interface.d.ts +8 -1
  626. package/dist/src/interfaces/Overlay/overlay.interface.d.ts +8 -1
  627. package/dist/src/interfaces/Pagination/pagination.interface.d.ts +9 -1
  628. package/dist/src/interfaces/PasswordField/password-field.interface.d.ts +2 -2
  629. package/dist/src/interfaces/Picker/picker.interface.d.ts +2 -2
  630. package/dist/src/interfaces/QrCode/qr-code-logo.interface.cjs +1 -0
  631. package/dist/src/interfaces/QrCode/qr-code-logo.interface.d.ts +47 -0
  632. package/dist/src/interfaces/QrCode/qr-code-logo.interface.js +0 -0
  633. package/dist/src/interfaces/QrCode/qr-code.interface.cjs +1 -0
  634. package/dist/src/interfaces/QrCode/qr-code.interface.d.ts +152 -0
  635. package/dist/src/interfaces/QrCode/qr-code.interface.js +0 -0
  636. package/dist/src/interfaces/Radio/radio-btn.interface.d.ts +4 -1
  637. package/dist/src/interfaces/Radio/radio.interface.d.ts +4 -1
  638. package/dist/src/interfaces/RatingField/rating-field-item.interface.d.ts +7 -1
  639. package/dist/src/interfaces/RatingField/rating-field.interface.d.ts +5 -2
  640. package/dist/src/interfaces/Select/select.interface.d.ts +9 -1
  641. package/dist/src/interfaces/Slide/slide-group.interface.d.ts +4 -1
  642. package/dist/src/interfaces/SliderField/slider-field-track.interface.d.ts +17 -0
  643. package/dist/src/interfaces/SliderField/slider-field.interface.d.ts +77 -59
  644. package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.cjs +1 -0
  645. package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.d.ts → Snackbar/snackbar-group-item.interface.d.ts} +5 -5
  646. package/dist/src/interfaces/Snackbar/snackbar-group-item.interface.js +0 -0
  647. package/dist/src/interfaces/Snackbar/snackbar-group.interface.cjs +1 -0
  648. package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.d.ts → Snackbar/snackbar-group.interface.d.ts} +7 -7
  649. package/dist/src/interfaces/Snackbar/snackbar-group.interface.js +0 -0
  650. package/dist/src/interfaces/Snackbar/snackbar-item.interface.cjs +1 -0
  651. package/dist/src/interfaces/Snackbar/snackbar-item.interface.d.ts +79 -0
  652. package/dist/src/interfaces/Snackbar/snackbar-item.interface.js +0 -0
  653. package/dist/src/interfaces/Stepper/stepper.interface.d.ts +2 -2
  654. package/dist/src/interfaces/Switch/switch-track.interface.d.ts +8 -0
  655. package/dist/src/interfaces/Switch/switch.interface.d.ts +5 -1
  656. package/dist/src/interfaces/Table/table.interface.d.ts +3 -0
  657. package/dist/src/interfaces/Tabs/tab-panels.interface.d.ts +4 -1
  658. package/dist/src/interfaces/Tabs/tabs.interface.d.ts +4 -1
  659. package/dist/src/interfaces/TextMask/text-mask.interface.cjs +1 -0
  660. package/dist/src/interfaces/TextMask/text-mask.interface.d.ts +112 -0
  661. package/dist/src/interfaces/TextMask/text-mask.interface.js +0 -0
  662. package/dist/src/interfaces/Tooltip/tooltip.interface.d.ts +4 -1
  663. package/dist/src/interfaces/Video/video-track.interface.cjs +1 -0
  664. package/dist/src/interfaces/Video/video-track.interface.d.ts +76 -0
  665. package/dist/src/interfaces/Video/video-track.interface.js +0 -0
  666. package/dist/src/interfaces/Video/video.interface.cjs +1 -0
  667. package/dist/src/interfaces/Video/video.interface.d.ts +317 -0
  668. package/dist/src/interfaces/Video/video.interface.js +0 -0
  669. package/dist/src/interfaces/VirtualScroll/virtual-scroll-item.interface.d.ts +6 -0
  670. package/dist/src/interfaces/Watermark/watermark.interface.cjs +1 -0
  671. package/dist/src/interfaces/Watermark/watermark.interface.d.ts +163 -0
  672. package/dist/src/interfaces/Watermark/watermark.interface.js +0 -0
  673. package/dist/src/interfaces/Window/window-item.interface.d.ts +4 -1
  674. package/dist/src/interfaces/Window/window.interface.d.ts +4 -1
  675. package/dist/src/interfaces/index.cjs +588 -49
  676. package/dist/src/interfaces/index.d.ts +55 -6
  677. package/dist/src/interfaces/index.js +55 -6
  678. package/dist/src/types/Audio/audio-controls.type.cjs +1 -0
  679. package/dist/src/types/Audio/audio-controls.type.d.ts +12 -0
  680. package/dist/src/types/Audio/audio-controls.type.js +0 -0
  681. package/dist/src/types/Audio/audio-loop-mode.type.cjs +1 -0
  682. package/dist/src/types/Audio/audio-loop-mode.type.d.ts +5 -0
  683. package/dist/src/types/Audio/audio-loop-mode.type.js +0 -0
  684. package/dist/src/types/Audio/audio-variant.type.cjs +1 -0
  685. package/dist/src/types/Audio/audio-variant.type.d.ts +7 -0
  686. package/dist/src/types/Audio/audio-variant.type.js +0 -0
  687. package/dist/src/types/Audio/cover-position.type.cjs +1 -0
  688. package/dist/src/types/Audio/cover-position.type.d.ts +6 -0
  689. package/dist/src/types/Audio/cover-position.type.js +0 -0
  690. package/dist/src/types/Blockquote/blockquote-align.type.cjs +1 -0
  691. package/dist/src/types/Blockquote/blockquote-align.type.d.ts +5 -0
  692. package/dist/src/types/Blockquote/blockquote-align.type.js +0 -0
  693. package/dist/src/types/Blockquote/blockquote-lang.type.cjs +1 -0
  694. package/dist/src/types/Blockquote/blockquote-lang.type.d.ts +18 -0
  695. package/dist/src/types/Blockquote/blockquote-lang.type.js +0 -0
  696. package/dist/src/types/Blockquote/blockquote-variant.type.cjs +1 -0
  697. package/dist/src/types/Blockquote/blockquote-variant.type.d.ts +17 -0
  698. package/dist/src/types/Blockquote/blockquote-variant.type.js +0 -0
  699. package/dist/src/types/Calendar/calendar-time-format.type.cjs +1 -0
  700. package/dist/src/types/Calendar/calendar-time-format.type.d.ts +13 -0
  701. package/dist/src/types/Calendar/calendar-time-format.type.js +0 -0
  702. package/dist/src/types/Calendar/calendar-view.type.cjs +1 -0
  703. package/dist/src/types/Calendar/calendar-view.type.d.ts +10 -0
  704. package/dist/src/types/Calendar/calendar-view.type.js +0 -0
  705. package/dist/src/types/Chart/chart-bullet-orientation.type.cjs +1 -0
  706. package/dist/src/types/Chart/chart-bullet-orientation.type.d.ts +1 -0
  707. package/dist/src/types/Chart/chart-bullet-orientation.type.js +0 -0
  708. package/dist/src/types/Chart/chart-cartesian-kind.type.cjs +1 -0
  709. package/dist/src/types/Chart/chart-cartesian-kind.type.d.ts +18 -0
  710. package/dist/src/types/Chart/chart-cartesian-kind.type.js +0 -0
  711. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.cjs +1 -0
  712. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.d.ts +2 -0
  713. package/dist/src/types/Chart/chart-honeycomb-color-mode.type.js +0 -0
  714. package/dist/src/types/Chart/chart-honeycomb-orientation.type.cjs +1 -0
  715. package/dist/src/types/Chart/chart-honeycomb-orientation.type.d.ts +2 -0
  716. package/dist/src/types/Chart/chart-honeycomb-orientation.type.js +0 -0
  717. package/dist/src/types/Chart/chart-item.type.cjs +1 -0
  718. package/dist/src/types/Chart/chart-item.type.d.ts +9 -0
  719. package/dist/src/types/Chart/chart-item.type.js +0 -0
  720. package/dist/src/types/Chart/chart-legend-position.type.cjs +1 -0
  721. package/dist/src/types/Chart/chart-legend-position.type.d.ts +6 -0
  722. package/dist/src/types/Chart/chart-legend-position.type.js +0 -0
  723. package/dist/src/types/Chart/chart-map-mode.type.cjs +1 -0
  724. package/dist/src/types/Chart/chart-map-mode.type.d.ts +8 -0
  725. package/dist/src/types/Chart/chart-map-mode.type.js +0 -0
  726. package/dist/src/types/Chart/chart-pictorial-direction.type.cjs +1 -0
  727. package/dist/src/types/Chart/chart-pictorial-direction.type.d.ts +1 -0
  728. package/dist/src/types/Chart/chart-pictorial-direction.type.js +0 -0
  729. package/dist/src/types/Chart/chart-pictorial-mode.type.cjs +1 -0
  730. package/dist/src/types/Chart/chart-pictorial-mode.type.d.ts +1 -0
  731. package/dist/src/types/Chart/chart-pictorial-mode.type.js +0 -0
  732. package/dist/src/types/Chart/chart-polar-kind.type.cjs +1 -0
  733. package/dist/src/types/Chart/chart-polar-kind.type.d.ts +14 -0
  734. package/dist/src/types/Chart/chart-polar-kind.type.js +0 -0
  735. package/dist/src/types/Chart/chart-pyramid-kind.type.cjs +1 -0
  736. package/dist/src/types/Chart/chart-pyramid-kind.type.d.ts +9 -0
  737. package/dist/src/types/Chart/chart-pyramid-kind.type.js +0 -0
  738. package/dist/src/types/Chart/chart-smoothing.type.cjs +1 -0
  739. package/dist/src/types/Chart/chart-smoothing.type.d.ts +17 -0
  740. package/dist/src/types/Chart/chart-smoothing.type.js +0 -0
  741. package/dist/src/types/Chart/chart-sparkline-kind.type.cjs +1 -0
  742. package/dist/src/types/Chart/chart-sparkline-kind.type.d.ts +10 -0
  743. package/dist/src/types/Chart/chart-sparkline-kind.type.js +0 -0
  744. package/dist/src/types/Chart/chart-stacking.type.cjs +1 -0
  745. package/dist/src/types/Chart/chart-stacking.type.d.ts +9 -0
  746. package/dist/src/types/Chart/chart-stacking.type.js +0 -0
  747. package/dist/src/types/Chart/chart-streamgraph-offset.type.cjs +1 -0
  748. package/dist/src/types/Chart/chart-streamgraph-offset.type.d.ts +1 -0
  749. package/dist/src/types/Chart/chart-streamgraph-offset.type.js +0 -0
  750. package/dist/src/types/Chart/chart-treemap-algorithm.type.cjs +1 -0
  751. package/dist/src/types/Chart/chart-treemap-algorithm.type.d.ts +12 -0
  752. package/dist/src/types/Chart/chart-treemap-algorithm.type.js +0 -0
  753. package/dist/src/types/Chart/chart-type.type.cjs +1 -0
  754. package/dist/src/types/Chart/chart-type.type.d.ts +7 -0
  755. package/dist/src/types/Chart/chart-type.type.js +0 -0
  756. package/dist/src/types/Chart/chart-word-cloud-rotation.type.cjs +1 -0
  757. package/dist/src/types/Chart/chart-word-cloud-rotation.type.d.ts +8 -0
  758. package/dist/src/types/Chart/chart-word-cloud-rotation.type.js +0 -0
  759. package/dist/src/types/Commons/color.type.d.ts +18 -1
  760. package/dist/src/types/EmptyState/empty-state-align.type.cjs +1 -0
  761. package/dist/src/types/EmptyState/empty-state-align.type.d.ts +10 -0
  762. package/dist/src/types/EmptyState/empty-state-align.type.js +0 -0
  763. package/dist/src/types/EmptyState/empty-state-preset.type.cjs +1 -0
  764. package/dist/src/types/EmptyState/empty-state-preset.type.d.ts +14 -0
  765. package/dist/src/types/EmptyState/empty-state-preset.type.js +0 -0
  766. package/dist/src/types/EmptyState/empty-state-size.type.cjs +1 -0
  767. package/dist/src/types/EmptyState/empty-state-size.type.d.ts +9 -0
  768. package/dist/src/types/EmptyState/empty-state-size.type.js +0 -0
  769. package/dist/src/types/Grid/grid-align.type.cjs +1 -0
  770. package/dist/src/types/Grid/grid-align.type.d.ts +28 -0
  771. package/dist/src/types/Grid/grid-align.type.js +0 -0
  772. package/dist/src/types/Grid/grid-flow.type.cjs +1 -0
  773. package/dist/src/types/Grid/grid-flow.type.d.ts +10 -0
  774. package/dist/src/types/Grid/grid-flow.type.js +0 -0
  775. package/dist/src/types/InlineEdit/inline-edit-input-type.type.cjs +1 -0
  776. package/dist/src/types/InlineEdit/inline-edit-input-type.type.d.ts +7 -0
  777. package/dist/src/types/InlineEdit/inline-edit-input-type.type.js +0 -0
  778. package/dist/src/types/Masonry/masonry-align.type.cjs +1 -0
  779. package/dist/src/types/Masonry/masonry-align.type.d.ts +16 -0
  780. package/dist/src/types/Masonry/masonry-align.type.js +0 -0
  781. package/dist/src/types/Media/index.cjs +27 -0
  782. package/dist/src/types/Media/index.d.ts +2 -0
  783. package/dist/src/types/Media/index.js +2 -0
  784. package/dist/src/types/Media/media-scrubber-orientation.type.cjs +1 -0
  785. package/dist/src/types/Media/media-scrubber-orientation.type.d.ts +6 -0
  786. package/dist/src/types/Media/media-scrubber-orientation.type.js +0 -0
  787. package/dist/src/types/Media/quality-option.type.cjs +1 -0
  788. package/dist/src/types/Media/quality-option.type.d.ts +25 -0
  789. package/dist/src/types/Media/quality-option.type.js +0 -0
  790. package/dist/src/types/NumberFormat/number-format-format.type.cjs +1 -0
  791. package/dist/src/types/NumberFormat/number-format-format.type.d.ts +56 -0
  792. package/dist/src/types/NumberFormat/number-format-format.type.js +0 -0
  793. package/dist/src/types/QrCode/qr-code-error-correction.type.cjs +1 -0
  794. package/dist/src/types/QrCode/qr-code-error-correction.type.d.ts +22 -0
  795. package/dist/src/types/QrCode/qr-code-error-correction.type.js +0 -0
  796. package/dist/src/types/SliderField/slider-field-variant.type.cjs +1 -0
  797. package/dist/src/types/SliderField/slider-field-variant.type.d.ts +10 -0
  798. package/dist/src/types/SliderField/slider-field-variant.type.js +0 -0
  799. package/dist/src/types/Snackbar/snackbar-group-direction.type.cjs +1 -0
  800. package/dist/src/types/{SnackbarStack/snackbar-stack-direction.type.d.ts → Snackbar/snackbar-group-direction.type.d.ts} +2 -2
  801. package/dist/src/types/Snackbar/snackbar-group-direction.type.js +0 -0
  802. package/dist/src/types/Snackbar/snackbar-group-location.type.cjs +1 -0
  803. package/dist/src/types/{SnackbarStack/snackbar-stack-location.type.d.ts → Snackbar/snackbar-group-location.type.d.ts} +2 -2
  804. package/dist/src/types/Snackbar/snackbar-group-location.type.js +0 -0
  805. package/dist/src/types/Snackbar/snackbar-group.type.cjs +1 -0
  806. package/dist/src/types/Snackbar/snackbar-group.type.d.ts +2 -0
  807. package/dist/src/types/Snackbar/snackbar-group.type.js +0 -0
  808. package/dist/src/types/TextMask/text-mask-animation.type.cjs +1 -0
  809. package/dist/src/types/TextMask/text-mask-animation.type.d.ts +16 -0
  810. package/dist/src/types/TextMask/text-mask-animation.type.js +0 -0
  811. package/dist/src/types/TextMask/text-mask.type.cjs +1 -0
  812. package/dist/src/types/TextMask/text-mask.type.d.ts +2 -0
  813. package/dist/src/types/TextMask/text-mask.type.js +0 -0
  814. package/dist/src/types/Video/video-controls.type.cjs +1 -0
  815. package/dist/src/types/Video/video-controls.type.d.ts +17 -0
  816. package/dist/src/types/Video/video-controls.type.js +0 -0
  817. package/dist/src/types/Video/video-track-kind.type.cjs +1 -0
  818. package/dist/src/types/Video/video-track-kind.type.d.ts +11 -0
  819. package/dist/src/types/Video/video-track-kind.type.js +0 -0
  820. package/dist/src/types/index.cjs +467 -38
  821. package/dist/src/types/index.d.ts +45 -6
  822. package/dist/src/types/index.js +45 -6
  823. package/dist/src/types/tokens.type.d.ts +1 -1
  824. package/dist/src/utils/Calendar/date.util.cjs +181 -0
  825. package/dist/src/utils/Calendar/date.util.d.ts +96 -0
  826. package/dist/src/utils/Calendar/date.util.js +114 -0
  827. package/dist/src/utils/Calendar/rrule.util.cjs +105 -0
  828. package/dist/src/utils/Calendar/rrule.util.d.ts +49 -0
  829. package/dist/src/utils/Calendar/rrule.util.js +92 -0
  830. package/dist/src/utils/Chart/box-plot.util.cjs +62 -0
  831. package/dist/src/utils/Chart/box-plot.util.d.ts +32 -0
  832. package/dist/src/utils/Chart/box-plot.util.js +47 -0
  833. package/dist/src/utils/Chart/mercator.util.cjs +53 -0
  834. package/dist/src/utils/Chart/mercator.util.d.ts +51 -0
  835. package/dist/src/utils/Chart/mercator.util.js +44 -0
  836. package/dist/src/utils/Chart/path.util.cjs +150 -0
  837. package/dist/src/utils/Chart/path.util.d.ts +116 -0
  838. package/dist/src/utils/Chart/path.util.js +143 -0
  839. package/dist/src/utils/Commons/gradient.util.cjs +74 -0
  840. package/dist/src/utils/Commons/gradient.util.d.ts +36 -0
  841. package/dist/src/utils/Commons/gradient.util.js +66 -0
  842. package/dist/src/utils/Media/format-time.util.cjs +16 -0
  843. package/dist/src/utils/Media/format-time.util.d.ts +16 -0
  844. package/dist/src/utils/Media/format-time.util.js +10 -0
  845. package/dist/src/utils/QrCode/qr-code-adapters.util.cjs +34 -0
  846. package/dist/src/utils/QrCode/qr-code-adapters.util.d.ts +49 -0
  847. package/dist/src/utils/QrCode/qr-code-adapters.util.js +27 -0
  848. package/dist/src/utils/index.cjs +55 -22
  849. package/dist/src/utils/index.d.ts +5 -2
  850. package/dist/src/utils/index.js +5 -2
  851. package/package.json +10 -3
  852. package/dist/src/components/SliderField/OrigamSliderFieldThumb.vue +0 -384
  853. package/dist/src/components/SnackbarStack/OrigamSnackbarStack.vue +0 -457
  854. package/dist/src/components/SnackbarStack/index.cjs +0 -13
  855. package/dist/src/components/SnackbarStack/index.d.ts +0 -1
  856. package/dist/src/components/SnackbarStack/index.js +0 -1
  857. package/dist/src/consts/SliderField/slider-field.const.cjs +0 -7
  858. package/dist/src/consts/SliderField/slider-field.const.d.ts +0 -3
  859. package/dist/src/consts/SliderField/slider-field.const.js +0 -1
  860. package/dist/src/consts/SnackbarStack/snackbar-stack.const.cjs +0 -12
  861. package/dist/src/consts/SnackbarStack/snackbar-stack.const.d.ts +0 -33
  862. package/dist/src/consts/SnackbarStack/snackbar-stack.const.js +0 -18
  863. package/dist/src/enums/Charts/chart.enum.cjs +0 -12
  864. package/dist/src/enums/Charts/chart.enum.d.ts +0 -5
  865. package/dist/src/enums/Charts/chart.enum.js +0 -6
  866. package/dist/src/interfaces/Charts/chart-bar.interface.d.ts +0 -4
  867. package/dist/src/interfaces/Charts/chart-line.interface.d.ts +0 -15
  868. package/dist/src/interfaces/Charts/chart.interface.d.ts +0 -21
  869. package/dist/src/interfaces/SliderField/slider-field-thumb.interface.d.ts +0 -12
  870. package/dist/src/types/Charts/chart.type.d.ts +0 -5
  871. package/dist/src/types/SliderField/slider-field-thumb.type.d.ts +0 -2
  872. package/dist/src/types/SnackbarStack/snackbar-stack.type.d.ts +0 -2
  873. package/dist/src/utils/Charts/chart.util.cjs +0 -50
  874. package/dist/src/utils/Charts/chart.util.d.ts +0 -30
  875. package/dist/src/utils/Charts/chart.util.js +0 -40
  876. package/dist/src/utils/SliderField/slider-field.util.cjs +0 -12
  877. package/dist/src/utils/SliderField/slider-field.util.d.ts +0 -8
  878. package/dist/src/utils/SliderField/slider-field.util.js +0 -6
  879. /package/dist/src/{interfaces/Charts/chart-bar.interface.js → components/QRCode/index.d.ts} +0 -0
  880. /package/dist/src/interfaces/{Charts/chart-bar.interface.cjs → Audio/audio-player.interface.cjs} +0 -0
  881. /package/dist/src/interfaces/{Charts/chart-line.interface.js → Audio/audio-player.interface.js} +0 -0
  882. /package/dist/src/interfaces/{Charts/chart-line.interface.cjs → Blockquote/blockquote.interface.cjs} +0 -0
  883. /package/dist/src/interfaces/{Charts/chart.interface.js → Blockquote/blockquote.interface.js} +0 -0
  884. /package/dist/src/interfaces/{Charts/chart.interface.cjs → Calendar/calendar.interface.cjs} +0 -0
  885. /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.js → Calendar/calendar.interface.js} +0 -0
  886. /package/dist/src/interfaces/{SliderField/slider-field-thumb.interface.cjs → Calendar/event.interface.cjs} +0 -0
  887. /package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.js → Calendar/event.interface.js} +0 -0
  888. /package/dist/src/interfaces/{SnackbarStack/snackbar-stack-item.interface.cjs → Chart/chart-annotation.interface.cjs} +0 -0
  889. /package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.js → Chart/chart-annotation.interface.js} +0 -0
  890. /package/dist/src/interfaces/{SnackbarStack/snackbar-stack.interface.cjs → Chart/chart-axis.interface.cjs} +0 -0
  891. /package/dist/src/{types/Charts/chart.type.js → interfaces/Chart/chart-axis.interface.js} +0 -0
  892. /package/dist/src/{types/Charts/chart.type.cjs → interfaces/Chart/chart-base.interface.cjs} +0 -0
  893. /package/dist/src/{types/SliderField/slider-field-thumb.type.js → interfaces/Chart/chart-base.interface.js} +0 -0
  894. /package/dist/src/{types/SliderField/slider-field-thumb.type.cjs → interfaces/Chart/chart-box-plot.interface.cjs} +0 -0
  895. /package/dist/src/{types/SnackbarStack/snackbar-stack-direction.type.js → interfaces/Chart/chart-box-plot.interface.js} +0 -0
  896. /package/dist/src/{types/SnackbarStack/snackbar-stack-direction.type.cjs → interfaces/Chart/chart-bullet.interface.cjs} +0 -0
  897. /package/dist/src/{types/SnackbarStack/snackbar-stack-location.type.js → interfaces/Chart/chart-bullet.interface.js} +0 -0
  898. /package/dist/src/{types/SnackbarStack/snackbar-stack-location.type.cjs → interfaces/Chart/chart-candlestick.interface.cjs} +0 -0
  899. /package/dist/src/{types/SnackbarStack/snackbar-stack.type.js → interfaces/Chart/chart-candlestick.interface.js} +0 -0
  900. /package/dist/src/{types/SnackbarStack/snackbar-stack.type.cjs → interfaces/Chart/chart-cartesian.interface.cjs} +0 -0
@@ -0,0 +1,68 @@
1
+ import type { ICommonsComponentProps } from '../../interfaces';
2
+ /**
3
+ * Props for `<OrigamMediaVolumeControl>` — the mute / unmute button
4
+ * AND the YouTube-style vertical scrubber tooltip that opens on
5
+ * hover above it.
6
+ *
7
+ * Owns:
8
+ * - the off/low/medium/high icon swap (driven by `volume` + `muted`),
9
+ * - the resolvedVolume collapse (slider sits at 0 when muted=true so
10
+ * the user can drag-up to unmute in a single gesture),
11
+ * - the tooltip percentage formatter.
12
+ *
13
+ * Does NOT own the underlying `methods.toggleMute()` /
14
+ * `methods.setVolume()` calls — emits `update:muted` and
15
+ * `update:volume` so the parent stays the source of truth for
16
+ * media-side mutations.
17
+ */
18
+ export interface IMediaVolumeControlProps extends ICommonsComponentProps {
19
+ /**
20
+ * Linear volume in `[0, 1]`. Typically `state.volume.value`.
21
+ * Required.
22
+ */
23
+ volume: number;
24
+ /**
25
+ * Whether the media is muted. When `true`, the slider collapses
26
+ * to 0 (resolvedVolume rule) and the icon becomes VOLUME_OFF.
27
+ * Required.
28
+ */
29
+ muted: boolean;
30
+ /**
31
+ * `aria-label` rendered on the toggle button when the media is
32
+ * NOT muted (clicking will mute). Already-translated. Required.
33
+ */
34
+ muteLabel: string;
35
+ /**
36
+ * `aria-label` rendered on the toggle button when the media IS
37
+ * muted (clicking will unmute). Already-translated. Required.
38
+ */
39
+ unmuteLabel: string;
40
+ /**
41
+ * `aria-label` rendered on the vertical scrubber inside the
42
+ * tooltip. Already-translated. Required.
43
+ */
44
+ volumeLabel: string;
45
+ /**
46
+ * Optional `data-cy` prefix used on the toggle button. The
47
+ * tooltip wrapper + scrubber expose their own selectors via
48
+ * convention (`${dataCy}-wrapper`, `${dataCy}-scrubber`).
49
+ *
50
+ * @default 'origam-media-volume-control'
51
+ */
52
+ dataCy?: string;
53
+ }
54
+ /**
55
+ * Emits surfaced by `<OrigamMediaVolumeControl>`. The atom does NOT
56
+ * call `methods.*` directly; the parent owns the media-side
57
+ * mutations.
58
+ */
59
+ export interface IMediaVolumeControlEmits {
60
+ /** The mute toggle button was clicked. Payload is the proposed
61
+ * new muted state (i.e. `!muted`). */
62
+ (e: 'update:muted', muted: boolean): void;
63
+ /** The vertical scrubber moved. Payload is the new linear
64
+ * volume in `[0, 1]`. The parent must call `setVolume()` AND
65
+ * toggle mute as appropriate (rising from 0 → unmute, falling
66
+ * to 0 → mute). */
67
+ (e: 'update:volume', volume: number): void;
68
+ }
@@ -1,4 +1,4 @@
1
- import type { IListItemProps, IListProps, IOverlayProps } from '../../interfaces';
1
+ import type { ICommonsComponentEmits, IListItemProps, IListProps, IOverlayProps } from '../../interfaces';
2
2
  export interface IMenuProvide {
3
3
  register(): void;
4
4
  unregister(): void;
@@ -7,3 +7,9 @@ export interface IMenuProvide {
7
7
  export interface IMenuProps extends IOverlayProps, IListProps, IListItemProps {
8
8
  id?: string;
9
9
  }
10
+ /** Emits fired by `<OrigamMenu>` — v-model on the open state plus the
11
+ * native `contextmenu` bubble forwarded for parents that want to
12
+ * show their own context menu instead. */
13
+ export interface IMenuEmits extends ICommonsComponentEmits {
14
+ (e: 'contextmenu', event: MouseEvent): void;
15
+ }
@@ -1,6 +1,6 @@
1
- import type { IAdjacentInnerProps, IBorderProps, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IFieldEmits, IFieldProps, IFieldSlots, IInputEmits, IInputProps, IInputSlots, IMarginProps, IPaddingProps, IRoundedProps, IVariantProps } from "../../interfaces";
1
+ import type { IFieldEmits, IFieldProps, IFieldSlots, IInputEmits, IInputProps, IInputSlots, IVariantProps } from "../../interfaces";
2
2
  import type { TIcon } from "../../types";
3
- export interface INumberFieldProps extends ICommonsComponentProps, IColorProps, IDensityProps, IFieldProps, IInputProps, IPaddingProps, IMarginProps, IBorderProps, IRoundedProps, IElevationProps, IVariantProps, IAdjacentInnerProps {
3
+ export interface INumberFieldProps extends IFieldProps, IInputProps, IVariantProps {
4
4
  autofocus?: boolean;
5
5
  placeholder?: string;
6
6
  persistentPlaceholder?: boolean;
@@ -0,0 +1,161 @@
1
+ import type { ICommonsComponentProps, ITagProps } from '../../interfaces';
2
+ import type { TNumberFormatCompactDisplay, TNumberFormatCurrencyDisplay, TNumberFormatFormat, TNumberFormatLocale, TNumberFormatNotation, TNumberFormatSignDisplay, TNumberFormatUnitDisplay, TNumberFormatUseGrouping } from '../../types';
3
+ /**
4
+ * Props for `<OrigamNumberFormat>` — pure-display i18n number renderer
5
+ * powered by `Intl.NumberFormat` (zero external dep).
6
+ *
7
+ * The component owns NO state: it transforms `value` through the
8
+ * resolved `Intl` instance and emits the result into a `<tag>` element
9
+ * (default `<span>`). Consumers who want to override the rendering
10
+ * granularly use the scoped `#default` slot which exposes
11
+ * `{ formatted, parts, value }`.
12
+ */
13
+ export interface INumberFormatProps extends ICommonsComponentProps, ITagProps {
14
+ /**
15
+ * Number to render. Strings are parsed via `Number()` — callers can
16
+ * pass a stringified BigInt-like to preserve precision before
17
+ * coercion (the actual formatting still goes through `Number`, so
18
+ * values beyond `Number.MAX_SAFE_INTEGER` may lose accuracy).
19
+ */
20
+ value: number | string;
21
+ /**
22
+ * High-level format dialect — see `TNumberFormatFormat`.
23
+ *
24
+ * @default 'decimal'
25
+ */
26
+ format?: TNumberFormatFormat;
27
+ /**
28
+ * BCP-47 locale tag (or array, for fallback chains). The literal
29
+ * string `'auto'` triggers the runtime resolution chain (`<html
30
+ * lang>` → `navigator.language` → `'en-US'`).
31
+ *
32
+ * @default 'auto'
33
+ */
34
+ locale?: TNumberFormatLocale;
35
+ /**
36
+ * ISO 4217 currency code. Required when `format === 'currency'`; we
37
+ * fall back to `'USD'` rather than throwing so storybook controls
38
+ * remain forgiving.
39
+ *
40
+ * @default 'USD' (only when format === 'currency')
41
+ */
42
+ currency?: string;
43
+ /**
44
+ * Currency-symbol rendering — `'symbol'` (`$`), `'narrowSymbol'`
45
+ * (`$` instead of `US$`), `'code'` (`USD`) or `'name'`
46
+ * (`US dollar`).
47
+ *
48
+ * @default 'symbol'
49
+ */
50
+ currencyDisplay?: TNumberFormatCurrencyDisplay;
51
+ /**
52
+ * Sanctioned unit identifier (e.g. `'kilometer-per-hour'`,
53
+ * `'celsius'`, `'liter'`). Required when `format === 'unit'`. The
54
+ * full ECMAScript-sanctioned list is exposed under
55
+ * `Intl.supportedValuesOf('unit')` at runtime.
56
+ */
57
+ unit?: string;
58
+ /**
59
+ * Unit-label rendering — `'short'` (`km/h`), `'long'`
60
+ * (`kilometers per hour`) or `'narrow'` (`kph`).
61
+ *
62
+ * @default 'short'
63
+ */
64
+ unitDisplay?: TNumberFormatUnitDisplay;
65
+ /**
66
+ * Raw `notation` override. Auto-set to `'compact'` when `format ===
67
+ * 'compact'`, to `'scientific'` / `'engineering'` for the matching
68
+ * formats. Explicit values still win — useful for `format:
69
+ * 'decimal'` with `notation: 'scientific'`.
70
+ */
71
+ notation?: TNumberFormatNotation;
72
+ /**
73
+ * Compact-notation rendering — `'short'` (`1M`) or `'long'`
74
+ * (`1 million`). Only honoured when `notation === 'compact'`.
75
+ *
76
+ * @default 'short'
77
+ */
78
+ compactDisplay?: TNumberFormatCompactDisplay;
79
+ /** Minimum digits after the decimal point. */
80
+ minimumFractionDigits?: number;
81
+ /** Maximum digits after the decimal point. */
82
+ maximumFractionDigits?: number;
83
+ /** Minimum significant digits (mutually exclusive with fraction digits). */
84
+ minimumSignificantDigits?: number;
85
+ /** Maximum significant digits (mutually exclusive with fraction digits). */
86
+ maximumSignificantDigits?: number;
87
+ /**
88
+ * Thousands-separator behaviour. `true` / `'auto'` keep the locale
89
+ * default, `false` removes them, `'always'` forces them on, `'min2'`
90
+ * only renders them when the integer part has at least 2 groups.
91
+ *
92
+ * @default true
93
+ */
94
+ useGrouping?: TNumberFormatUseGrouping;
95
+ /**
96
+ * Sign-display strategy. `'auto'` (default — only negatives),
97
+ * `'always'`, `'except-zero'`, `'negative'`, `'never'`.
98
+ *
99
+ * @default 'auto'
100
+ */
101
+ signDisplay?: TNumberFormatSignDisplay;
102
+ }
103
+ /**
104
+ * Bindings exposed by the scoped `#default` slot. Consumers use these
105
+ * to highlight specific parts of the formatted output (currency symbol,
106
+ * decimal separator, …) without re-running `Intl.NumberFormat`
107
+ * themselves.
108
+ */
109
+ export interface INumberFormatScopedSlotBindings {
110
+ /** The locale-formatted string, ready to render. */
111
+ formatted: string;
112
+ /** The structured parts (`Intl.NumberFormatPart[]`). */
113
+ parts: Intl.NumberFormatPart[];
114
+ /** The numeric value after string-to-number coercion. */
115
+ value: number;
116
+ }
117
+ /**
118
+ * Slot signatures for `<OrigamNumberFormat>`.
119
+ */
120
+ export interface INumberFormatSlots {
121
+ /**
122
+ * Custom render override. Scoped — receives the resolved value plus
123
+ * the structured parts so consumers can paint individual segments.
124
+ */
125
+ default?: (bindings: INumberFormatScopedSlotBindings) => any;
126
+ }
127
+ /**
128
+ * Options accepted by `useNumberFormat`. Mirrors the public props of
129
+ * `<OrigamNumberFormat>` minus the wiring concerns (`tag`, `class`,
130
+ * `style`).
131
+ */
132
+ export interface IUseNumberFormatOptions {
133
+ /** Same semantics as `INumberFormatProps.format`. */
134
+ format?: TNumberFormatFormat;
135
+ /** Same semantics as `INumberFormatProps.locale`. */
136
+ locale?: TNumberFormatLocale;
137
+ /** Same semantics as `INumberFormatProps.currency`. */
138
+ currency?: string;
139
+ /** Same semantics as `INumberFormatProps.currencyDisplay`. */
140
+ currencyDisplay?: TNumberFormatCurrencyDisplay;
141
+ /** Same semantics as `INumberFormatProps.unit`. */
142
+ unit?: string;
143
+ /** Same semantics as `INumberFormatProps.unitDisplay`. */
144
+ unitDisplay?: TNumberFormatUnitDisplay;
145
+ /** Same semantics as `INumberFormatProps.notation`. */
146
+ notation?: TNumberFormatNotation;
147
+ /** Same semantics as `INumberFormatProps.compactDisplay`. */
148
+ compactDisplay?: TNumberFormatCompactDisplay;
149
+ /** Same semantics as `INumberFormatProps.minimumFractionDigits`. */
150
+ minimumFractionDigits?: number;
151
+ /** Same semantics as `INumberFormatProps.maximumFractionDigits`. */
152
+ maximumFractionDigits?: number;
153
+ /** Same semantics as `INumberFormatProps.minimumSignificantDigits`. */
154
+ minimumSignificantDigits?: number;
155
+ /** Same semantics as `INumberFormatProps.maximumSignificantDigits`. */
156
+ maximumSignificantDigits?: number;
157
+ /** Same semantics as `INumberFormatProps.useGrouping`. */
158
+ useGrouping?: TNumberFormatUseGrouping;
159
+ /** Same semantics as `INumberFormatProps.signDisplay`. */
160
+ signDisplay?: TNumberFormatSignDisplay;
161
+ }
@@ -1,6 +1,6 @@
1
- import type { IColorProps, ICommonsComponentProps, IDensityProps, IDimensionProps, IElevationProps, IFieldEmits, IFieldProps, IFieldSlots, IFocusProps, IInputEmits, IInputProps, IInputSlots, IRoundedProps, IVariantProps } from "../../interfaces";
1
+ import type { IFieldEmits, IFieldProps, IFieldSlots, IInputEmits, IInputProps, IInputSlots, IVariantProps } from "../../interfaces";
2
2
  import type { TOtpInputFieldType } from "../../types";
3
- export interface IOtpInputFieldProps extends ICommonsComponentProps, IColorProps, IDensityProps, IDimensionProps, IFieldProps, IInputProps, IRoundedProps, IElevationProps, IVariantProps, IFocusProps {
3
+ export interface IOtpInputFieldProps extends IFieldProps, IInputProps, IVariantProps {
4
4
  autofocus?: boolean;
5
5
  divider?: string;
6
6
  focusAll?: boolean;
@@ -1,7 +1,14 @@
1
- import type { ICommonsComponentProps, ITagProps, ITransitionComponentProps } from '../../interfaces';
1
+ import type { IClickEmits, ICommonsComponentProps, ITagProps, ITransitionComponentProps } from '../../interfaces';
2
2
  export interface IOverlayScrimProps extends ICommonsComponentProps, ITagProps, ITransitionComponentProps, IScrimProps {
3
3
  active?: boolean;
4
4
  }
5
5
  export interface IScrimProps {
6
6
  scrim?: boolean | string;
7
7
  }
8
+ /** Emits fired by `<OrigamOverlayScrim>` — click + pointer hover events
9
+ * surface to the parent overlay (so it can close on backdrop click
10
+ * or pause its auto-close timer while the pointer is over the scrim). */
11
+ export interface IOverlayScrimEmits extends IClickEmits {
12
+ (e: 'mouseenter', event: MouseEvent): void;
13
+ (e: 'mouseleave', event: MouseEvent): void;
14
+ }
@@ -1,4 +1,4 @@
1
- import type { IActivatorProps, ICommonsComponentProps, IDimensionProps, ILazyProps, ILocationStrategyProps, IScrimProps, IScrollStrategyProps, ITransitionComponentProps } from '../../interfaces';
1
+ import type { IActivatorProps, IClickOutsideEmits, ICommonsComponentEmits, ICommonsComponentProps, IDimensionProps, ILazyProps, ILocationStrategyProps, IScrimProps, IScrollStrategyProps, ITransitionComponentProps } from '../../interfaces';
2
2
  export interface IOverlayProps extends ICommonsComponentProps, IDimensionProps, IActivatorProps, ILocationStrategyProps, IScrollStrategyProps, ILazyProps, ITransitionComponentProps, IScrimProps {
3
3
  absolute?: boolean;
4
4
  attach?: boolean | string | Element;
@@ -12,3 +12,10 @@ export interface IOverlayProps extends ICommonsComponentProps, IDimensionProps,
12
12
  disableGlobalStack?: boolean;
13
13
  persistent?: boolean;
14
14
  }
15
+ /** Emits fired by `<OrigamOverlay>` — v-model on the open state, outside
16
+ * click, transition lifecycle hooks, and keyboard bubble. */
17
+ export interface IOverlayEmits extends ICommonsComponentEmits, IClickOutsideEmits {
18
+ (e: 'afterEnter'): void;
19
+ (e: 'afterLeave'): void;
20
+ (e: 'keydown', event: KeyboardEvent): void;
21
+ }
@@ -1,4 +1,4 @@
1
- import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IMarginProps, IPaddingProps, ISizeProps, ITagProps } from "../../interfaces";
1
+ import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentEmits, ICommonsComponentProps, IDensityProps, IElevationProps, IMarginProps, IPaddingProps, ISizeProps, ITagProps } from "../../interfaces";
2
2
  import type { TIcon } from "../../types";
3
3
  export interface IPaginationProps extends ICommonsComponentProps, ITagProps, IColorProps, IBgColorProps, IBorderProps, IPaddingProps, IMarginProps, IElevationProps, ISizeProps, IDensityProps {
4
4
  start?: number;
@@ -57,3 +57,11 @@ export interface IPaginationProps extends ICommonsComponentProps, ITagProps, ICo
57
57
  */
58
58
  nextText?: string;
59
59
  }
60
+ /** Emits fired by `<OrigamPagination>` — current page v-model + the four
61
+ * navigation shortcuts (first / prev / next / last). */
62
+ export interface IPaginationEmits extends ICommonsComponentEmits {
63
+ (e: 'first', value: number): void;
64
+ (e: 'prev', value: number): void;
65
+ (e: 'next', value: number): void;
66
+ (e: 'last', value: number): void;
67
+ }
@@ -1,4 +1,4 @@
1
- import type { IAdjacentInnerProps, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IFieldEmits, IFieldSlots, IInputEmits, IInputSlots, IMenuProps, IPasswordRequirement, IRoundedProps, ITextFieldProps } from '../../interfaces';
1
+ import type { IFieldEmits, IFieldSlots, IInputEmits, IInputSlots, IMenuProps, IPasswordRequirement, ITextFieldProps } from '../../interfaces';
2
2
  import type { TIcon, TPasswordStrengthLevel } from '../../types';
3
3
  /**
4
4
  * Props for `<OrigamPasswordField>` — a TextField specialised for password
@@ -14,7 +14,7 @@ import type { TIcon, TPasswordStrengthLevel } from '../../types';
14
14
  * Extends `ITextFieldProps` so anything you can pass to TextField
15
15
  * (counter, placeholder, persistentPlaceholder, etc.) flows through.
16
16
  */
17
- export interface IPasswordFieldProps extends ICommonsComponentProps, IColorProps, IDensityProps, ITextFieldProps, IRoundedProps, IElevationProps, IAdjacentInnerProps {
17
+ export interface IPasswordFieldProps extends ITextFieldProps {
18
18
  /** Icon shown when the password is HIDDEN (toggle reveals). */
19
19
  onIcon?: TIcon;
20
20
  /** Icon shown when the password is VISIBLE (toggle hides). */
@@ -1,5 +1,5 @@
1
- import type { IBorderProps, IBgColorProps, IColorProps, ICommonsComponentProps, IElevationProps, IMarginProps, IPaddingProps, IPickerTitleProps, IRoundedProps, ISheetProps } from "../../interfaces";
2
- export interface IPickerProps extends ICommonsComponentProps, IColorProps, IBgColorProps, ISheetProps, IBorderProps, IPaddingProps, IMarginProps, IElevationProps, IRoundedProps, IPickerTitleProps {
1
+ import type { IBgColorProps, IPickerTitleProps, ISheetProps } from "../../interfaces";
2
+ export interface IPickerProps extends ISheetProps, IBgColorProps, IPickerTitleProps {
3
3
  landscape?: boolean;
4
4
  hideHeader?: boolean;
5
5
  }
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,47 @@
1
+ /**
2
+ * Optional logo overlay rendered at the centre of an OrigamQrCode.
3
+ *
4
+ * The overlay is painted **on top** of the QR matrix — any module
5
+ * underneath becomes unreadable. Error-correction takes care of the
6
+ * loss as long as the overlay stays small enough:
7
+ *
8
+ * - L → do not use a logo (≤7% redundancy budget).
9
+ * - M → ≤10% of QR width.
10
+ * - Q → ≤20% of QR width.
11
+ * - H → ≤25–30% of QR width.
12
+ *
13
+ * `<OrigamQrCode>` does **not** enforce these caps — the consumer
14
+ * decides what's acceptable. We warn (`console.warn`) when `size` is
15
+ * configured above 0.3 because no error-correction level survives that.
16
+ */
17
+ export interface IQrCodeLogo {
18
+ /**
19
+ * Logo source. Any URL accepted by `<image href>` works — SVG, PNG,
20
+ * data-URI, …. The SVG fragment loads the asset asynchronously; if
21
+ * it fails the QR remains valid (only the overlay disappears).
22
+ */
23
+ src: string;
24
+ /**
25
+ * Logo width as a proportion of the QR width (0..1).
26
+ *
27
+ * @default 0.2
28
+ */
29
+ size?: number;
30
+ /**
31
+ * Pixel padding of the (opaque) backdrop drawn around the logo.
32
+ * Keeps the modules immediately adjacent to the logo readable —
33
+ * without padding, the scanner sees a soft-edged blob and fails.
34
+ *
35
+ * @default 6
36
+ */
37
+ padding?: number;
38
+ /**
39
+ * Backdrop colour painted under the logo (and within the padding
40
+ * box). Defaults to the QR background; pass a different value to
41
+ * paint a coloured halo (e.g. brand colour for a logotype that
42
+ * already includes its own white box).
43
+ *
44
+ * @default — falls back to the QR `background` prop.
45
+ */
46
+ background?: string;
47
+ }
@@ -0,0 +1 @@
1
+ "use strict";
@@ -0,0 +1,152 @@
1
+ import type { IBgColorProps, IBorderProps, IColorProps, ICommonsComponentProps, IElevationProps, IMarginProps, IPaddingProps, IRoundedProps, ISizeProps, ISrcObject, ITagProps } from '../../interfaces';
2
+ import type { TIcon, TQrCodeErrorCorrectionLevel } from '../../types';
3
+ /**
4
+ * Per-matrix overrides — applied INSIDE the SVG (modules + quiet
5
+ * zone) independently of the wrapper-level same-name props. Pass via
6
+ * the `qrCodeProps` slot on `<OrigamQrCode>`:
7
+ *
8
+ * - `qrCodeProps.color` → modules colour (overrides the wrapper
9
+ * `color` for the matrix paint only).
10
+ * - `qrCodeProps.bgColor` → fill of the SVG's quiet-zone rect.
11
+ * - `qrCodeProps.rounded` → per-module corner radius (mapped to
12
+ * [0, 0.5] module units via
13
+ * `resolveQrCornerRadius`).
14
+ *
15
+ * The DS-shape values (intents, hex, `currentColor`, named rungs)
16
+ * are transformed by `resolveQrColor` / `resolveQrCornerRadius` in
17
+ * `src/utils/QrCode/qr-code-adapters.util.ts` — consumers always pass
18
+ * canonical DS values, the component handles the SVG-side translation.
19
+ */
20
+ export interface IQrCodeOptions extends IRoundedProps, IBgColorProps, IColorProps {
21
+ }
22
+ /**
23
+ * Props for `<OrigamQrCode>` — SVG QR code renderer.
24
+ *
25
+ * The component owns no state: every prop change rebuilds the
26
+ * underlying matrix through `qrcode-generator` and re-emits the SVG.
27
+ * The renderer is SSR-safe — no `window` / `document` / `canvas` API
28
+ * is touched.
29
+ *
30
+ * DS transverse props (all applied to the WRAPPER element, the
31
+ * standard chrome you get on every Origam component):
32
+ *
33
+ * - `color` (`IColorProps`) — wrapper `color:` (text colour).
34
+ * The SVG modules inherit this via
35
+ * `fill="currentColor"` unless
36
+ * `qrCodeProps.color` overrides.
37
+ * - `bgColor` (`IBgColorProps`) — wrapper `background-color:`.
38
+ * - `rounded` (`IRoundedProps`) — wrapper `border-radius`.
39
+ * - `border` (`IBorderProps`) — wrapper `border`.
40
+ * - `size` (`ISizeProps`) — wrapper width/height.
41
+ * - `padding` (`IPaddingProps`) — wrapper inner spacing.
42
+ * - `margin` (`IMarginProps`) — wrapper outer spacing.
43
+ * - `elevation` (`IElevationProps`) — wrapper `box-shadow`.
44
+ *
45
+ * QR-internal props (apply to the SVG itself, NOT the wrapper):
46
+ *
47
+ * - `qrCodeProps.color` / `.bgColor` / `.rounded` — see
48
+ * `IQrCodeOptions` above for the full mapping.
49
+ */
50
+ export interface IQrCodeProps extends ICommonsComponentProps, ITagProps, IColorProps, IBgColorProps, IRoundedProps, IBorderProps, IElevationProps, ISizeProps, IPaddingProps, IMarginProps {
51
+ /**
52
+ * Text or URL encoded into the QR matrix. UTF-8 is supported via
53
+ * the underlying `qrcode-generator` Byte mode.
54
+ */
55
+ value: string;
56
+ /**
57
+ * Optional heading rendered above the QR matrix inside the
58
+ * wrapper. Useful when the QR is presented alongside meta
59
+ * (campaign name, recipient, …) — no manual extra markup needed.
60
+ */
61
+ title?: string;
62
+ /**
63
+ * Per-matrix overrides — see `IQrCodeOptions`. When omitted, the
64
+ * SVG inherits the wrapper-level `color` / `bgColor` / and
65
+ * defaults to square modules.
66
+ */
67
+ qrCodeProps?: IQrCodeOptions;
68
+ /**
69
+ * Reed-Solomon redundancy level. Higher levels reserve more matrix
70
+ * cells for correction codewords (and therefore tolerate more
71
+ * damage / overlay). See `TQrCodeErrorCorrectionLevel` for the
72
+ * tradeoff matrix.
73
+ *
74
+ * @default 'M'
75
+ */
76
+ errorCorrectionLevel?: TQrCodeErrorCorrectionLevel;
77
+ /**
78
+ * Number of modules reserved as quiet-zone padding around the
79
+ * matrix. The ISO spec mandates ≥4 — anything smaller risks
80
+ * scanner failures, anything larger is purely aesthetic.
81
+ *
82
+ * @default 4
83
+ */
84
+ quietZone?: number;
85
+ /**
86
+ * Optional centred icon overlay — rendered via `<OrigamIcon>` on
87
+ * top of the matrix. Coexists with `image`; the `#center` slot
88
+ * overrides both when provided.
89
+ */
90
+ icon?: TIcon;
91
+ /**
92
+ * Optional centred image overlay. Accepts a raw URL (string) or
93
+ * the standard `ISrcObject` shape (src / srcset / lazySrc /
94
+ * aspectRatio / alt). Rendered as an `<OrigamAvatar>` overlay.
95
+ */
96
+ image?: string | ISrcObject;
97
+ /**
98
+ * Accessible label used as `aria-label`. When omitted, the
99
+ * component falls back to `"QR code for {value}"`.
100
+ */
101
+ ariaLabel?: string;
102
+ }
103
+ /**
104
+ * Options accepted by `useQrCode`. Lower-level than `IQrCodeProps`:
105
+ * the composable does not speak the canonical DS contracts. It only
106
+ * owns the raw SVG string — the wrapper component is responsible for
107
+ * mapping `color` / `bgColor` / `rounded` (wrapper or qrCodeProps)
108
+ * down to the primitive `foreground` / `background` / `cornerRadius`
109
+ * keys here.
110
+ */
111
+ export interface IUseQrCodeOptions {
112
+ /** Reed-Solomon level — same semantics as `IQrCodeProps`. */
113
+ errorCorrectionLevel?: TQrCodeErrorCorrectionLevel;
114
+ /** Raw CSS colour painted on dark modules. */
115
+ foreground?: string;
116
+ /** Raw CSS colour painted behind the matrix (quiet zone). */
117
+ background?: string;
118
+ /** Quiet-zone padding in module units. */
119
+ margin?: number;
120
+ /**
121
+ * Per-module corner radius in module units (0 → square,
122
+ * 0.5 → circle). The component layer derives this from the
123
+ * public `qrCodeProps.rounded` prop via `resolveQrCornerRadius`.
124
+ */
125
+ cornerRadius?: number;
126
+ /**
127
+ * Optional logo overlay rendered inside the SVG via `<image>`.
128
+ * Public consumers should use the `image` prop on
129
+ * `<OrigamQrCode>`; this lower-level shape stays here for direct
130
+ * `useQrCode` consumers.
131
+ */
132
+ logo?: {
133
+ src: string;
134
+ size?: number;
135
+ padding?: number;
136
+ background?: string;
137
+ };
138
+ }
139
+ /**
140
+ * Slot signatures for `<OrigamQrCode>`.
141
+ *
142
+ * - `center` — replaces the default `icon` / `image` overlay.
143
+ * Receives the resolved size of the central reserved square (in
144
+ * matrix module units) so the consumer can paint a custom SVG /
145
+ * icon without re-deriving the geometry. When this slot is
146
+ * provided, both `icon` and `image` props are ignored.
147
+ */
148
+ export interface IQrCodeSlots {
149
+ center?: (bindings: {
150
+ size: number;
151
+ }) => any;
152
+ }
@@ -1,3 +1,6 @@
1
- import type { ICommonsComponentProps, ISelectionControlProps } from '../../interfaces';
1
+ import type { IClickLabelEmits, ICommonsComponentEmits, ICommonsComponentProps, IFocusEmits, ISelectionControlProps } from '../../interfaces';
2
2
  export interface IRadioBtnProps extends ICommonsComponentProps, ISelectionControlProps {
3
3
  }
4
+ /** Emits fired by `<OrigamRadioBtn>` — same surface as `<OrigamRadio>`. */
5
+ export interface IRadioBtnEmits extends ICommonsComponentEmits, IFocusEmits, IClickLabelEmits {
6
+ }
@@ -1,3 +1,6 @@
1
- import type { IActiveProps, IBorderProps, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IHoverProps, IInputProps, IMarginProps, IPaddingProps, IRadioBtnProps, IRoundedProps } from '../../interfaces';
1
+ import type { IActiveProps, IBorderProps, IClickLabelEmits, IColorProps, ICommonsComponentEmits, ICommonsComponentProps, IDensityProps, IElevationProps, IFocusEmits, IHoverProps, IInputProps, IMarginProps, IPaddingProps, IRadioBtnProps, IRoundedProps } from '../../interfaces';
2
2
  export interface IRadioProps extends ICommonsComponentProps, IInputProps, IRadioBtnProps, IDensityProps, IPaddingProps, IMarginProps, IRoundedProps, IColorProps, IBorderProps, IElevationProps, IActiveProps, IHoverProps {
3
3
  }
4
+ /** Emits fired by `<OrigamRadio>` — v-model + focus + label click. */
5
+ export interface IRadioEmits extends ICommonsComponentEmits, IFocusEmits, IClickLabelEmits {
6
+ }
@@ -1,4 +1,4 @@
1
- import type { IBorderProps, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IMarginProps, IPaddingProps, IRippleProps, IRoundedProps, ISizeProps, ITagProps } from '../../interfaces';
1
+ import type { IBorderProps, IClickEmits, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IMarginProps, IPaddingProps, IRippleProps, IRoundedProps, ISizeProps, ITagProps } from '../../interfaces';
2
2
  import type { TIcon } from '../../types';
3
3
  export interface IRatingFieldItemProps extends ICommonsComponentProps, ITagProps, IColorProps, IDensityProps, IRippleProps, ISizeProps, IBorderProps, IPaddingProps, IMarginProps, IRoundedProps, IElevationProps {
4
4
  name?: string;
@@ -17,3 +17,9 @@ export interface IRatingFieldItemProps extends ICommonsComponentProps, ITagProps
17
17
  checked?: boolean;
18
18
  length?: number;
19
19
  }
20
+ /** Emits fired by `<OrigamRatingFieldItem>` — click + hover surface
21
+ * (pointer enter / leave drive the half-rating preview). */
22
+ export interface IRatingFieldItemEmits extends IClickEmits {
23
+ (e: 'mouseenter', event: MouseEvent): void;
24
+ (e: 'mouseleave', event: MouseEvent): void;
25
+ }
@@ -1,6 +1,6 @@
1
- import type { IBorderProps, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IInputProps, ILabelProps, IMarginProps, IPaddingProps, IRippleProps, IRoundedProps, ISizeProps, ITagProps } from '../../interfaces';
1
+ import type { ICommonsComponentEmits, IInputProps, ILabelProps, IRippleProps, ITagProps } from '../../interfaces';
2
2
  import type { TBlock, TIcon } from '../../types';
3
- export interface IRatingFieldProps extends ICommonsComponentProps, IRippleProps, IDensityProps, IPaddingProps, IBorderProps, IMarginProps, IRoundedProps, IElevationProps, IColorProps, ISizeProps, ITagProps, IInputProps, ILabelProps {
3
+ export interface IRatingFieldProps extends IInputProps, IRippleProps, ITagProps, ILabelProps {
4
4
  name?: string;
5
5
  itemAriaLabel?: string;
6
6
  clearable?: boolean;
@@ -15,3 +15,6 @@ export interface IRatingFieldProps extends ICommonsComponentProps, IRippleProps,
15
15
  itemLabels?: Array<string>;
16
16
  itemLabelPosition?: TBlock;
17
17
  }
18
+ /** Emits fired by `<OrigamRatingField>` — v-model on the rating value. */
19
+ export interface IRatingFieldEmits extends ICommonsComponentEmits {
20
+ }
@@ -1,4 +1,4 @@
1
- import type { IAdjacentInnerProps, IAdjacentProps, IBorderProps, IChipProps, IBgColorProps, IColorProps, ICommonsComponentProps, IDensityProps, IElevationProps, IFieldProps, IFiltersProps, IInputProps, IItemProps, ILazyProps, IListProps, IMarginProps, IMenuProps, IPaddingProps, IRoundedProps, ITextFieldProps, ITransitionComponentProps } from '../../interfaces';
1
+ import type { IAdjacentEmits, IAdjacentInnerEmits, IAdjacentInnerProps, IAdjacentProps, IBorderProps, IChipProps, IBgColorProps, IColorProps, ICommonsComponentEmits, ICommonsComponentProps, IDensityProps, IElevationProps, IFieldProps, IFiltersProps, IFocusEmits, IInputProps, IItemProps, ILazyProps, IListProps, IMarginProps, IMenuProps, IPaddingProps, IRoundedProps, ITextFieldProps, ITransitionComponentProps } from '../../interfaces';
2
2
  import type { TIcon } from '../../types';
3
3
  export interface ISelectProps extends ICommonsComponentProps, IColorProps, IBgColorProps, ITextFieldProps, IDensityProps, IAdjacentProps, IAdjacentInnerProps, IFieldProps, IInputProps, IPaddingProps, IMarginProps, IBorderProps, IRoundedProps, IElevationProps, IItemProps, ITransitionComponentProps, IFiltersProps, ILazyProps {
4
4
  chips?: boolean;
@@ -21,3 +21,11 @@ export interface ISelectProps extends ICommonsComponentProps, IColorProps, IBgCo
21
21
  closeText?: string;
22
22
  openText?: string;
23
23
  }
24
+ /** Emits fired by `<OrigamSelect>` — v-model + focus + menu open/close +
25
+ * click handlers on the control surface and the adjacent slots
26
+ * (prepend / append / prependInner / appendInner / clear). */
27
+ export interface ISelectEmits extends ICommonsComponentEmits, IFocusEmits, IAdjacentEmits, IAdjacentInnerEmits {
28
+ (e: 'click:control', event: MouseEvent): void;
29
+ (e: 'mousedown:control', event: MouseEvent): void;
30
+ (e: 'update:menu', value: boolean): void;
31
+ }
@@ -1,4 +1,4 @@
1
- import type { IBorderProps, ICommonsComponentProps, IDirectionProps, IDisplayProps, IGroupProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../../interfaces';
1
+ import type { IBorderProps, ICommonsComponentEmits, ICommonsComponentProps, IDirectionProps, IDisplayProps, IGroupProps, IMarginProps, IPaddingProps, IRoundedProps, ITagProps } from '../../interfaces';
2
2
  import type { TIcon } from '../../types';
3
3
  export interface ISlideGroupProps extends ICommonsComponentProps, ITagProps, IDirectionProps, IGroupProps, IPaddingProps, IMarginProps, IRoundedProps, IBorderProps, IDisplayProps {
4
4
  centerActive?: boolean;
@@ -6,3 +6,6 @@ export interface ISlideGroupProps extends ICommonsComponentProps, ITagProps, IDi
6
6
  prevIcon?: TIcon;
7
7
  showArrows?: boolean | string;
8
8
  }
9
+ /** Emits fired by `<OrigamSlideGroup>` — v-model on the active slide. */
10
+ export interface ISlideGroupEmits extends ICommonsComponentEmits {
11
+ }