intergalactic 15.87.0 → 15.88.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 (3555) hide show
  1. package/CHANGELOG.md +10 -1
  2. package/accordion/lib/cjs/Accordion.js +7 -7
  3. package/accordion/lib/es6/Accordion.js +7 -7
  4. package/animation/lib/cjs/Animation.js +11 -11
  5. package/animation/lib/cjs/Collapse.js +28 -28
  6. package/animation/lib/cjs/FadeInOut.js +28 -28
  7. package/animation/lib/cjs/Scale.js +28 -28
  8. package/animation/lib/cjs/Slide.js +28 -28
  9. package/animation/lib/cjs/Transform.js +28 -28
  10. package/animation/lib/es6/Animation.js +11 -11
  11. package/animation/lib/es6/Collapse.js +28 -28
  12. package/animation/lib/es6/FadeInOut.js +28 -28
  13. package/animation/lib/es6/Scale.js +28 -28
  14. package/animation/lib/es6/Slide.js +28 -28
  15. package/animation/lib/es6/Transform.js +28 -28
  16. package/badge/lib/cjs/Badge.js +6 -6
  17. package/badge/lib/es6/Badge.js +6 -6
  18. package/base-trigger/lib/cjs/BaseTrigger.js +18 -18
  19. package/base-trigger/lib/cjs/ButtonTrigger.js +3 -3
  20. package/base-trigger/lib/cjs/FilterTrigger.js +7 -7
  21. package/base-trigger/lib/cjs/LinkTrigger.js +12 -12
  22. package/base-trigger/lib/es6/BaseTrigger.js +18 -18
  23. package/base-trigger/lib/es6/ButtonTrigger.js +3 -3
  24. package/base-trigger/lib/es6/FilterTrigger.js +7 -7
  25. package/base-trigger/lib/es6/LinkTrigger.js +12 -12
  26. package/breadcrumbs/lib/cjs/Breadcrumbs.js +6 -6
  27. package/breadcrumbs/lib/es6/Breadcrumbs.js +6 -6
  28. package/card/lib/cjs/Card.js +8 -8
  29. package/card/lib/es6/Card.js +8 -8
  30. package/carousel/lib/cjs/Carousel.js +19 -19
  31. package/carousel/lib/es6/Carousel.js +19 -19
  32. package/checkbox/lib/cjs/Checkbox.js +18 -18
  33. package/checkbox/lib/es6/Checkbox.js +18 -18
  34. package/color-picker/lib/cjs/ColorPicker.js +23 -23
  35. package/color-picker/lib/cjs/PaletteManager.js +23 -23
  36. package/color-picker/lib/cjs/components/InputColor.js +23 -23
  37. package/color-picker/lib/es6/ColorPicker.js +23 -23
  38. package/color-picker/lib/es6/PaletteManager.js +23 -23
  39. package/color-picker/lib/es6/components/InputColor.js +23 -23
  40. package/components.json +70 -70
  41. package/core/Component.d.ts +152 -0
  42. package/core/enhancement/Children.d.ts +6 -0
  43. package/core/enhancement/Root.d.ts +6 -0
  44. package/core/enhancement/bindHandler.d.ts +5 -0
  45. package/core/enhancement/dataName.d.ts +4 -0
  46. package/core/enhancement/enhance.d.ts +5 -0
  47. package/core/enhancement/functionDefaultProps.d.ts +8 -0
  48. package/core/enhancement/hoistProps.d.ts +10 -0
  49. package/core/enhancement/i18n.d.ts +4 -0
  50. package/core/enhancement/inheritedName.d.ts +8 -0
  51. package/core/enhancement/staticChildren.d.ts +13 -0
  52. package/core/enhancement/style.d.ts +9 -0
  53. package/core/enhancement/uncontrolledProps.d.ts +7 -0
  54. package/core/lib/cjs/Component.js +58 -0
  55. package/core/lib/cjs/Component.js.map +1 -0
  56. package/core/lib/cjs/enhancement/Children.js +121 -0
  57. package/core/lib/cjs/enhancement/Children.js.map +1 -0
  58. package/core/lib/cjs/enhancement/Root.js +78 -0
  59. package/core/lib/cjs/enhancement/Root.js.map +1 -0
  60. package/core/lib/cjs/enhancement/bindHandler.js +54 -0
  61. package/core/lib/cjs/enhancement/bindHandler.js.map +1 -0
  62. package/core/lib/cjs/enhancement/dataName.js +20 -0
  63. package/core/lib/cjs/enhancement/dataName.js.map +1 -0
  64. package/core/lib/cjs/enhancement/enhance.js +22 -0
  65. package/core/lib/cjs/enhancement/enhance.js.map +1 -0
  66. package/core/lib/cjs/enhancement/functionDefaultProps.js +36 -0
  67. package/core/lib/cjs/enhancement/functionDefaultProps.js.map +1 -0
  68. package/core/lib/cjs/enhancement/hoistProps.js +102 -0
  69. package/core/lib/cjs/enhancement/hoistProps.js.map +1 -0
  70. package/core/lib/cjs/enhancement/i18n.js +28 -0
  71. package/core/lib/cjs/enhancement/i18n.js.map +1 -0
  72. package/core/lib/cjs/enhancement/inheritedName.js +24 -0
  73. package/core/lib/cjs/enhancement/inheritedName.js.map +1 -0
  74. package/core/lib/cjs/enhancement/staticChildren.js +141 -0
  75. package/core/lib/cjs/enhancement/staticChildren.js.map +1 -0
  76. package/core/lib/cjs/enhancement/style.js +60 -0
  77. package/core/lib/cjs/enhancement/style.js.map +1 -0
  78. package/core/lib/cjs/enhancement/uncontrolledProps.js +135 -0
  79. package/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -0
  80. package/core/lib/cjs/register.js +37 -0
  81. package/core/lib/cjs/register.js.map +1 -0
  82. package/core/lib/cjs/reshadow.d.js +2 -0
  83. package/core/lib/cjs/reshadow.d.js.map +1 -0
  84. package/core/lib/cjs/styled/index.js +54 -0
  85. package/core/lib/cjs/styled/index.js.map +1 -0
  86. package/core/lib/cjs/styled/sstyled.js +150 -0
  87. package/core/lib/cjs/styled/sstyled.js.map +1 -0
  88. package/core/lib/es6/Component.js +50 -0
  89. package/core/lib/es6/Component.js.map +1 -0
  90. package/core/lib/es6/enhancement/Children.js +112 -0
  91. package/core/lib/es6/enhancement/Children.js.map +1 -0
  92. package/core/lib/es6/enhancement/Root.js +72 -0
  93. package/core/lib/es6/enhancement/Root.js.map +1 -0
  94. package/core/lib/es6/enhancement/bindHandler.js +47 -0
  95. package/core/lib/es6/enhancement/bindHandler.js.map +1 -0
  96. package/core/lib/es6/enhancement/dataName.js +12 -0
  97. package/core/lib/es6/enhancement/dataName.js.map +1 -0
  98. package/core/lib/es6/enhancement/enhance.js +15 -0
  99. package/core/lib/es6/enhancement/enhance.js.map +1 -0
  100. package/core/lib/es6/enhancement/functionDefaultProps.js +29 -0
  101. package/core/lib/es6/enhancement/functionDefaultProps.js.map +1 -0
  102. package/core/lib/es6/enhancement/hoistProps.js +90 -0
  103. package/core/lib/es6/enhancement/hoistProps.js.map +1 -0
  104. package/core/lib/es6/enhancement/i18n.js +21 -0
  105. package/core/lib/es6/enhancement/i18n.js.map +1 -0
  106. package/core/lib/es6/enhancement/inheritedName.js +15 -0
  107. package/core/lib/es6/enhancement/inheritedName.js.map +1 -0
  108. package/core/lib/es6/enhancement/staticChildren.js +126 -0
  109. package/core/lib/es6/enhancement/staticChildren.js.map +1 -0
  110. package/core/lib/es6/enhancement/style.js +52 -0
  111. package/core/lib/es6/enhancement/style.js.map +1 -0
  112. package/core/lib/es6/enhancement/uncontrolledProps.js +125 -0
  113. package/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -0
  114. package/core/lib/es6/register.js +29 -0
  115. package/core/lib/es6/register.js.map +1 -0
  116. package/core/lib/es6/reshadow.d.js +2 -0
  117. package/core/lib/es6/reshadow.d.js.map +1 -0
  118. package/core/lib/es6/styled/index.js +10 -0
  119. package/core/lib/es6/styled/index.js.map +1 -0
  120. package/core/lib/es6/styled/sstyled.js +143 -0
  121. package/core/lib/es6/styled/sstyled.js.map +1 -0
  122. package/core/lib/types/Component.d.ts +152 -0
  123. package/core/lib/types/enhancement/Children.d.ts +6 -0
  124. package/core/lib/types/enhancement/Root.d.ts +6 -0
  125. package/core/lib/types/enhancement/bindHandler.d.ts +5 -0
  126. package/core/lib/types/enhancement/dataName.d.ts +4 -0
  127. package/core/lib/types/enhancement/enhance.d.ts +5 -0
  128. package/core/lib/types/enhancement/functionDefaultProps.d.ts +8 -0
  129. package/core/lib/types/enhancement/hoistProps.d.ts +10 -0
  130. package/core/lib/types/enhancement/i18n.d.ts +4 -0
  131. package/core/lib/types/enhancement/inheritedName.d.ts +8 -0
  132. package/core/lib/types/enhancement/staticChildren.d.ts +13 -0
  133. package/core/lib/types/enhancement/style.d.ts +9 -0
  134. package/core/lib/types/enhancement/uncontrolledProps.d.ts +7 -0
  135. package/core/lib/types/register.d.ts +8 -0
  136. package/core/lib/types/styled/index.d.ts +14 -0
  137. package/core/lib/types/styled/sstyled.d.ts +17 -0
  138. package/core/register.d.ts +8 -0
  139. package/core/styled/index.d.ts +14 -0
  140. package/core/styled/sstyled.d.ts +17 -0
  141. package/counter/lib/cjs/Counter.js +10 -10
  142. package/counter/lib/es6/Counter.js +10 -10
  143. package/d3-chart/lib/cjs/Area.js +11 -11
  144. package/d3-chart/lib/cjs/Axis.js +14 -14
  145. package/d3-chart/lib/cjs/Bar.js +10 -10
  146. package/d3-chart/lib/cjs/Bubble.js +12 -12
  147. package/d3-chart/lib/cjs/ClipPath.js +94 -0
  148. package/d3-chart/lib/cjs/ClipPath.js.map +1 -0
  149. package/d3-chart/lib/cjs/Donut.js +9 -9
  150. package/d3-chart/lib/cjs/Dots.js +8 -8
  151. package/d3-chart/lib/cjs/HorizontalBar.js +10 -10
  152. package/d3-chart/lib/cjs/Hover.js +3 -3
  153. package/d3-chart/lib/cjs/Line.js +9 -9
  154. package/d3-chart/lib/cjs/Plot.js +3 -3
  155. package/d3-chart/lib/cjs/Radar.js +19 -19
  156. package/d3-chart/lib/cjs/RadialTree.js +11 -11
  157. package/d3-chart/lib/cjs/ReferenceLine.js +9 -9
  158. package/d3-chart/lib/cjs/ScatterPlot.js +9 -9
  159. package/d3-chart/lib/cjs/Tooltip.js +9 -9
  160. package/d3-chart/lib/cjs/Venn.js +9 -9
  161. package/d3-chart/lib/cjs/a11y/PlotA11yModule.js +2 -2
  162. package/d3-chart/lib/cjs/a11y/PlotA11yView.js +2 -2
  163. package/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
  164. package/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +17 -17
  165. package/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +6 -6
  166. package/d3-chart/lib/es6/Area.js +11 -11
  167. package/d3-chart/lib/es6/Axis.js +14 -14
  168. package/d3-chart/lib/es6/Bar.js +10 -10
  169. package/d3-chart/lib/es6/Bubble.js +12 -12
  170. package/d3-chart/lib/es6/ClipPath.js +85 -0
  171. package/d3-chart/lib/es6/ClipPath.js.map +1 -0
  172. package/d3-chart/lib/es6/Donut.js +9 -9
  173. package/d3-chart/lib/es6/Dots.js +8 -8
  174. package/d3-chart/lib/es6/HorizontalBar.js +10 -10
  175. package/d3-chart/lib/es6/Hover.js +3 -3
  176. package/d3-chart/lib/es6/Line.js +9 -9
  177. package/d3-chart/lib/es6/Plot.js +3 -3
  178. package/d3-chart/lib/es6/Radar.js +19 -19
  179. package/d3-chart/lib/es6/RadialTree.js +11 -11
  180. package/d3-chart/lib/es6/ReferenceLine.js +9 -9
  181. package/d3-chart/lib/es6/ScatterPlot.js +9 -9
  182. package/d3-chart/lib/es6/Tooltip.js +9 -9
  183. package/d3-chart/lib/es6/Venn.js +9 -9
  184. package/d3-chart/lib/es6/a11y/PlotA11yModule.js +2 -2
  185. package/d3-chart/lib/es6/a11y/PlotA11yView.js +2 -2
  186. package/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +4 -4
  187. package/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +17 -17
  188. package/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +6 -6
  189. package/data-table/lib/cjs/DataTable.js +37 -37
  190. package/data-table/lib/es6/DataTable.js +37 -37
  191. package/date-picker/lib/cjs/components/Calendar.js +21 -21
  192. package/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js +29 -29
  193. package/date-picker/lib/cjs/components/InputTrigger.js +29 -29
  194. package/date-picker/lib/cjs/components/PickerAbstract.js +29 -29
  195. package/date-picker/lib/cjs/components/RangePickerAbstract.js +29 -29
  196. package/date-picker/lib/es6/components/Calendar.js +21 -21
  197. package/date-picker/lib/es6/components/DateRangeComparatorAbstract.js +29 -29
  198. package/date-picker/lib/es6/components/InputTrigger.js +29 -29
  199. package/date-picker/lib/es6/components/PickerAbstract.js +29 -29
  200. package/date-picker/lib/es6/components/RangePickerAbstract.js +29 -29
  201. package/divider/lib/cjs/Divider.js +9 -9
  202. package/divider/lib/es6/Divider.js +9 -9
  203. package/dot/lib/cjs/Dot.js +10 -10
  204. package/dot/lib/es6/Dot.js +10 -10
  205. package/drag-and-drop/lib/cjs/DragAndDrop.js +16 -16
  206. package/drag-and-drop/lib/es6/DragAndDrop.js +16 -16
  207. package/dropdown/lib/cjs/Dropdown.js +2 -2
  208. package/dropdown/lib/es6/Dropdown.js +2 -2
  209. package/dropdown-menu/lib/cjs/DropdownMenu.js +16 -16
  210. package/dropdown-menu/lib/cjs/styleScrollArea.js +6 -6
  211. package/dropdown-menu/lib/es6/DropdownMenu.js +16 -16
  212. package/dropdown-menu/lib/es6/styleScrollArea.js +6 -6
  213. package/ellipsis/lib/cjs/Ellipsis.js +10 -10
  214. package/ellipsis/lib/es6/Ellipsis.js +10 -10
  215. package/errors/lib/cjs/Error.js +9 -9
  216. package/errors/lib/es6/Error.js +9 -9
  217. package/feature-popover/lib/cjs/FeaturePopover.js +10 -10
  218. package/feature-popover/lib/es6/FeaturePopover.js +10 -10
  219. package/feedback-form/component/checkbox-button/CheckboxButton.d.ts +4 -0
  220. package/feedback-form/component/feedback-item/FeedbackItem.d.ts +7 -0
  221. package/feedback-form/component/feedback-rating/FeedbackRating.d.ts +156 -0
  222. package/feedback-form/component/feedback-rating/FeedbackRating.type.d.ts +55 -0
  223. package/feedback-form/component/slider-rating/SliderRating.d.ts +14 -0
  224. package/feedback-form/component/submit-button/SubmitButton.d.ts +3 -0
  225. package/feedback-form/index.d.ts +4 -0
  226. package/feedback-form/lib/cjs/FeedbackForm.js +28 -86
  227. package/feedback-form/lib/cjs/FeedbackForm.js.map +1 -1
  228. package/feedback-form/lib/cjs/component/checkbox-button/CheckboxButton.js +58 -0
  229. package/feedback-form/lib/cjs/component/checkbox-button/CheckboxButton.js.map +1 -0
  230. package/feedback-form/lib/cjs/component/feedback-item/FeedbackItem.js +63 -0
  231. package/feedback-form/lib/cjs/component/feedback-item/FeedbackItem.js.map +1 -0
  232. package/feedback-form/lib/cjs/component/feedback-rating/FeedbackRating.js +360 -0
  233. package/feedback-form/lib/cjs/component/feedback-rating/FeedbackRating.js.map +1 -0
  234. package/feedback-form/lib/cjs/component/feedback-rating/FeedbackRating.type.js +2 -0
  235. package/feedback-form/lib/cjs/component/feedback-rating/FeedbackRating.type.js.map +1 -0
  236. package/feedback-form/lib/cjs/component/slider-rating/SliderRating.js +172 -0
  237. package/feedback-form/lib/cjs/component/slider-rating/SliderRating.js.map +1 -0
  238. package/feedback-form/lib/cjs/component/submit-button/SubmitButton.js +23 -0
  239. package/feedback-form/lib/cjs/component/submit-button/SubmitButton.js.map +1 -0
  240. package/feedback-form/lib/cjs/index.d.js +12 -0
  241. package/feedback-form/lib/cjs/index.d.js.map +1 -1
  242. package/feedback-form/lib/cjs/index.js +7 -0
  243. package/feedback-form/lib/cjs/index.js.map +1 -1
  244. package/feedback-form/lib/cjs/style/checkbox-button.shadow.css +21 -0
  245. package/feedback-form/lib/cjs/style/feedback-rating.shadow.css +9 -0
  246. package/feedback-form/lib/cjs/style/slider-rating.shadow.css +34 -0
  247. package/feedback-form/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  248. package/feedback-form/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  249. package/feedback-form/lib/cjs/translations/de.json +7 -0
  250. package/feedback-form/lib/cjs/translations/en.json +8 -0
  251. package/feedback-form/lib/cjs/translations/es.json +7 -0
  252. package/feedback-form/lib/cjs/translations/fr.json +7 -0
  253. package/feedback-form/lib/cjs/translations/it.json +7 -0
  254. package/feedback-form/lib/cjs/translations/ja.json +7 -0
  255. package/feedback-form/lib/cjs/translations/ko.json +7 -0
  256. package/feedback-form/lib/cjs/translations/nl.json +7 -0
  257. package/feedback-form/lib/cjs/translations/pl.json +7 -0
  258. package/feedback-form/lib/cjs/translations/pt.json +7 -0
  259. package/feedback-form/lib/cjs/translations/sv.json +7 -0
  260. package/feedback-form/lib/cjs/translations/tr.json +7 -0
  261. package/feedback-form/lib/cjs/translations/vi.json +7 -0
  262. package/feedback-form/lib/cjs/translations/zh.json +7 -0
  263. package/feedback-form/lib/es6/FeedbackForm.js +28 -88
  264. package/feedback-form/lib/es6/FeedbackForm.js.map +1 -1
  265. package/feedback-form/lib/es6/component/checkbox-button/CheckboxButton.js +50 -0
  266. package/feedback-form/lib/es6/component/checkbox-button/CheckboxButton.js.map +1 -0
  267. package/feedback-form/lib/es6/component/feedback-item/FeedbackItem.js +56 -0
  268. package/feedback-form/lib/es6/component/feedback-item/FeedbackItem.js.map +1 -0
  269. package/feedback-form/lib/es6/component/feedback-rating/FeedbackRating.js +354 -0
  270. package/feedback-form/lib/es6/component/feedback-rating/FeedbackRating.js.map +1 -0
  271. package/feedback-form/lib/es6/component/feedback-rating/FeedbackRating.type.js +2 -0
  272. package/feedback-form/lib/es6/component/feedback-rating/FeedbackRating.type.js.map +1 -0
  273. package/feedback-form/lib/es6/component/slider-rating/SliderRating.js +165 -0
  274. package/feedback-form/lib/es6/component/slider-rating/SliderRating.js.map +1 -0
  275. package/feedback-form/lib/es6/component/submit-button/SubmitButton.js +17 -0
  276. package/feedback-form/lib/es6/component/submit-button/SubmitButton.js.map +1 -0
  277. package/feedback-form/lib/es6/index.d.js +5 -1
  278. package/feedback-form/lib/es6/index.d.js.map +1 -1
  279. package/feedback-form/lib/es6/index.js +2 -0
  280. package/feedback-form/lib/es6/index.js.map +1 -1
  281. package/feedback-form/lib/es6/style/checkbox-button.shadow.css +21 -0
  282. package/feedback-form/lib/es6/style/feedback-rating.shadow.css +9 -0
  283. package/feedback-form/lib/es6/style/slider-rating.shadow.css +34 -0
  284. package/feedback-form/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  285. package/feedback-form/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  286. package/feedback-form/lib/es6/translations/de.json +7 -0
  287. package/feedback-form/lib/es6/translations/en.json +8 -0
  288. package/feedback-form/lib/es6/translations/es.json +7 -0
  289. package/feedback-form/lib/es6/translations/fr.json +7 -0
  290. package/feedback-form/lib/es6/translations/it.json +7 -0
  291. package/feedback-form/lib/es6/translations/ja.json +7 -0
  292. package/feedback-form/lib/es6/translations/ko.json +7 -0
  293. package/feedback-form/lib/es6/translations/nl.json +7 -0
  294. package/feedback-form/lib/es6/translations/pl.json +7 -0
  295. package/feedback-form/lib/es6/translations/pt.json +7 -0
  296. package/feedback-form/lib/es6/translations/sv.json +7 -0
  297. package/feedback-form/lib/es6/translations/tr.json +7 -0
  298. package/feedback-form/lib/es6/translations/vi.json +7 -0
  299. package/feedback-form/lib/es6/translations/zh.json +7 -0
  300. package/feedback-form/lib/types/component/checkbox-button/CheckboxButton.d.ts +4 -0
  301. package/feedback-form/lib/types/component/feedback-item/FeedbackItem.d.ts +7 -0
  302. package/feedback-form/lib/types/component/feedback-rating/FeedbackRating.d.ts +156 -0
  303. package/feedback-form/lib/types/component/feedback-rating/FeedbackRating.type.d.ts +55 -0
  304. package/feedback-form/lib/types/component/slider-rating/SliderRating.d.ts +14 -0
  305. package/feedback-form/lib/types/component/submit-button/SubmitButton.d.ts +3 -0
  306. package/feedback-form/lib/types/index.d.ts +4 -0
  307. package/feedback-form/lib/types/translations/__intergalactic-dynamic-locales.d.ts +101 -0
  308. package/feedback-form/translations/__intergalactic-dynamic-locales.d.ts +101 -0
  309. package/flags/lib/sprites/sprite@1x.png +0 -0
  310. package/flags/lib/sprites/sprite@2x.png +0 -0
  311. package/flex-box/lib/cjs/Box/useBox.js +3 -3
  312. package/flex-box/lib/cjs/Flex/useFlex.js +3 -3
  313. package/flex-box/lib/cjs/invalid-state-box/InvalidStateBox.js +2 -2
  314. package/flex-box/lib/es6/Box/useBox.js +3 -3
  315. package/flex-box/lib/es6/Flex/useFlex.js +3 -3
  316. package/flex-box/lib/es6/invalid-state-box/InvalidStateBox.js +2 -2
  317. package/format-text/lib/cjs/FormatText.js +5 -5
  318. package/format-text/lib/es6/FormatText.js +5 -5
  319. package/fullscreen-modal/lib/cjs/FullscreenModal.js +13 -13
  320. package/fullscreen-modal/lib/es6/FullscreenModal.js +13 -13
  321. package/grid/lib/cjs/Grid.js +114 -114
  322. package/grid/lib/es6/Grid.js +114 -114
  323. package/icon/color/Confluence/l/index.js +4 -4
  324. package/icon/color/Confluence/l/index.mjs +4 -4
  325. package/icon/color/Confluence/m/index.js +4 -4
  326. package/icon/color/Confluence/m/index.mjs +4 -4
  327. package/icon/color/MicrosoftOffice/l/index.js +10 -10
  328. package/icon/color/MicrosoftOffice/l/index.mjs +10 -10
  329. package/icon/color/MicrosoftOffice/m/index.js +10 -10
  330. package/icon/color/MicrosoftOffice/m/index.mjs +10 -10
  331. package/icon/lib/cjs/Icon.js +5 -5
  332. package/icon/lib/es6/Icon.js +5 -5
  333. package/icon/pay/Discover/l/index.js +1 -1
  334. package/icon/pay/Discover/l/index.mjs +1 -1
  335. package/icon/pay/Discover/m/index.js +1 -1
  336. package/icon/pay/Discover/m/index.mjs +1 -1
  337. package/icon/pay/JCB/l/index.js +10 -10
  338. package/icon/pay/JCB/l/index.mjs +10 -10
  339. package/icon/pay/JCB/m/index.js +10 -10
  340. package/icon/pay/JCB/m/index.mjs +10 -10
  341. package/icon/pay/Visa/l/index.js +2 -2
  342. package/icon/pay/Visa/l/index.mjs +2 -2
  343. package/icon/pay/Visa/m/index.js +2 -2
  344. package/icon/pay/Visa/m/index.mjs +2 -2
  345. package/illustration/lib/cjs/index.js +1 -1
  346. package/illustration/lib/es6/index.js +1 -1
  347. package/inline-edit/lib/cjs/InlineEdit.js +4 -4
  348. package/inline-edit/lib/es6/InlineEdit.js +4 -4
  349. package/inline-input/lib/cjs/InlineInput.js +18 -18
  350. package/inline-input/lib/es6/InlineInput.js +18 -18
  351. package/input/lib/cjs/Input.js +17 -17
  352. package/input/lib/es6/Input.js +17 -17
  353. package/input-mask/lib/cjs/InputMask.js +6 -6
  354. package/input-mask/lib/es6/InputMask.js +6 -6
  355. package/input-number/lib/cjs/InputNumber.js +10 -10
  356. package/input-number/lib/cjs/InputNumber.js.map +1 -1
  357. package/input-number/lib/es6/InputNumber.js +10 -10
  358. package/input-number/lib/es6/InputNumber.js.map +1 -1
  359. package/input-tags/lib/cjs/InputTags.js +12 -12
  360. package/input-tags/lib/es6/InputTags.js +12 -12
  361. package/libs/accordion/lib/cjs/Accordion.js +229 -0
  362. package/libs/accordion/lib/cjs/Accordion.js.map +1 -0
  363. package/libs/accordion/lib/cjs/index.d.js +2 -0
  364. package/libs/accordion/lib/cjs/index.d.js.map +1 -0
  365. package/libs/accordion/lib/cjs/index.js +26 -0
  366. package/libs/accordion/lib/cjs/index.js.map +1 -0
  367. package/libs/accordion/lib/es6/Accordion.js +223 -0
  368. package/libs/accordion/lib/es6/Accordion.js.map +1 -0
  369. package/libs/accordion/lib/es6/index.d.js +2 -0
  370. package/libs/accordion/lib/es6/index.d.js.map +1 -0
  371. package/libs/accordion/lib/es6/index.js +3 -0
  372. package/libs/accordion/lib/es6/index.js.map +1 -0
  373. package/libs/accordion/lib/types/index.d.ts +95 -0
  374. package/libs/animation/lib/cjs/Animation.js +165 -0
  375. package/libs/animation/lib/cjs/Animation.js.map +1 -0
  376. package/libs/animation/lib/cjs/Collapse.js +103 -0
  377. package/libs/animation/lib/cjs/Collapse.js.map +1 -0
  378. package/libs/animation/lib/cjs/FadeInOut.js +53 -0
  379. package/libs/animation/lib/cjs/FadeInOut.js.map +1 -0
  380. package/libs/animation/lib/cjs/Scale.js +80 -0
  381. package/libs/animation/lib/cjs/Scale.js.map +1 -0
  382. package/libs/animation/lib/cjs/Slide.js +53 -0
  383. package/libs/animation/lib/cjs/Slide.js.map +1 -0
  384. package/libs/animation/lib/cjs/Transform.js +60 -0
  385. package/libs/animation/lib/cjs/Transform.js.map +1 -0
  386. package/libs/animation/lib/cjs/index.d.js +2 -0
  387. package/libs/animation/lib/cjs/index.d.js.map +1 -0
  388. package/libs/animation/lib/cjs/index.js +56 -0
  389. package/libs/animation/lib/cjs/index.js.map +1 -0
  390. package/libs/animation/lib/es6/Animation.js +157 -0
  391. package/libs/animation/lib/es6/Animation.js.map +1 -0
  392. package/libs/animation/lib/es6/Collapse.js +96 -0
  393. package/libs/animation/lib/es6/Collapse.js.map +1 -0
  394. package/libs/animation/lib/es6/FadeInOut.js +46 -0
  395. package/libs/animation/lib/es6/FadeInOut.js.map +1 -0
  396. package/libs/animation/lib/es6/Scale.js +73 -0
  397. package/libs/animation/lib/es6/Scale.js.map +1 -0
  398. package/libs/animation/lib/es6/Slide.js +46 -0
  399. package/libs/animation/lib/es6/Slide.js.map +1 -0
  400. package/libs/animation/lib/es6/Transform.js +53 -0
  401. package/libs/animation/lib/es6/Transform.js.map +1 -0
  402. package/libs/animation/lib/es6/index.d.js +2 -0
  403. package/libs/animation/lib/es6/index.d.js.map +1 -0
  404. package/libs/animation/lib/es6/index.js +7 -0
  405. package/libs/animation/lib/es6/index.js.map +1 -0
  406. package/libs/animation/lib/types/index.d.ts +103 -0
  407. package/libs/badge/lib/cjs/Badge.js +63 -0
  408. package/libs/badge/lib/cjs/Badge.js.map +1 -0
  409. package/libs/badge/lib/cjs/index.d.js +2 -0
  410. package/libs/badge/lib/cjs/index.d.js.map +1 -0
  411. package/libs/badge/lib/cjs/index.js +14 -0
  412. package/libs/badge/lib/cjs/index.js.map +1 -0
  413. package/libs/badge/lib/es6/Badge.js +56 -0
  414. package/libs/badge/lib/es6/Badge.js.map +1 -0
  415. package/libs/badge/lib/es6/index.d.js +2 -0
  416. package/libs/badge/lib/es6/index.d.js.map +1 -0
  417. package/libs/badge/lib/es6/index.js +2 -0
  418. package/libs/badge/lib/es6/index.js.map +1 -0
  419. package/libs/badge/lib/types/index.d.ts +20 -0
  420. package/libs/base-trigger/lib/cjs/BaseTrigger.js +128 -0
  421. package/libs/base-trigger/lib/cjs/BaseTrigger.js.map +1 -0
  422. package/libs/base-trigger/lib/cjs/ButtonTrigger.js +73 -0
  423. package/libs/base-trigger/lib/cjs/ButtonTrigger.js.map +1 -0
  424. package/libs/base-trigger/lib/cjs/FilterTrigger.js +159 -0
  425. package/libs/base-trigger/lib/cjs/FilterTrigger.js.map +1 -0
  426. package/libs/base-trigger/lib/cjs/LinkTrigger.js +113 -0
  427. package/libs/base-trigger/lib/cjs/LinkTrigger.js.map +1 -0
  428. package/libs/base-trigger/lib/cjs/index.d.js +2 -0
  429. package/libs/base-trigger/lib/cjs/index.d.js.map +1 -0
  430. package/libs/base-trigger/lib/cjs/index.js +35 -0
  431. package/libs/base-trigger/lib/cjs/index.js.map +1 -0
  432. package/libs/base-trigger/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  433. package/libs/base-trigger/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  434. package/libs/base-trigger/lib/cjs/translations/de.json +4 -0
  435. package/libs/base-trigger/lib/cjs/translations/en.json +4 -0
  436. package/libs/base-trigger/lib/cjs/translations/es.json +4 -0
  437. package/libs/base-trigger/lib/cjs/translations/fr.json +4 -0
  438. package/libs/base-trigger/lib/cjs/translations/it.json +4 -0
  439. package/libs/base-trigger/lib/cjs/translations/ja.json +4 -0
  440. package/libs/base-trigger/lib/cjs/translations/ko.json +4 -0
  441. package/libs/base-trigger/lib/cjs/translations/nl.json +4 -0
  442. package/libs/base-trigger/lib/cjs/translations/pl.json +4 -0
  443. package/libs/base-trigger/lib/cjs/translations/pt.json +4 -0
  444. package/libs/base-trigger/lib/cjs/translations/sv.json +4 -0
  445. package/libs/base-trigger/lib/cjs/translations/tr.json +4 -0
  446. package/libs/base-trigger/lib/cjs/translations/vi.json +4 -0
  447. package/libs/base-trigger/lib/cjs/translations/zh.json +4 -0
  448. package/libs/base-trigger/lib/es6/BaseTrigger.js +123 -0
  449. package/libs/base-trigger/lib/es6/BaseTrigger.js.map +1 -0
  450. package/libs/base-trigger/lib/es6/ButtonTrigger.js +66 -0
  451. package/libs/base-trigger/lib/es6/ButtonTrigger.js.map +1 -0
  452. package/libs/base-trigger/lib/es6/FilterTrigger.js +153 -0
  453. package/libs/base-trigger/lib/es6/FilterTrigger.js.map +1 -0
  454. package/libs/base-trigger/lib/es6/LinkTrigger.js +108 -0
  455. package/libs/base-trigger/lib/es6/LinkTrigger.js.map +1 -0
  456. package/libs/base-trigger/lib/es6/index.d.js +2 -0
  457. package/libs/base-trigger/lib/es6/index.d.js.map +1 -0
  458. package/libs/base-trigger/lib/es6/index.js +5 -0
  459. package/libs/base-trigger/lib/es6/index.js.map +1 -0
  460. package/libs/base-trigger/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  461. package/libs/base-trigger/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  462. package/libs/base-trigger/lib/es6/translations/de.json +4 -0
  463. package/libs/base-trigger/lib/es6/translations/en.json +4 -0
  464. package/libs/base-trigger/lib/es6/translations/es.json +4 -0
  465. package/libs/base-trigger/lib/es6/translations/fr.json +4 -0
  466. package/libs/base-trigger/lib/es6/translations/it.json +4 -0
  467. package/libs/base-trigger/lib/es6/translations/ja.json +4 -0
  468. package/libs/base-trigger/lib/es6/translations/ko.json +4 -0
  469. package/libs/base-trigger/lib/es6/translations/nl.json +4 -0
  470. package/libs/base-trigger/lib/es6/translations/pl.json +4 -0
  471. package/libs/base-trigger/lib/es6/translations/pt.json +4 -0
  472. package/libs/base-trigger/lib/es6/translations/sv.json +4 -0
  473. package/libs/base-trigger/lib/es6/translations/tr.json +4 -0
  474. package/libs/base-trigger/lib/es6/translations/vi.json +4 -0
  475. package/libs/base-trigger/lib/es6/translations/zh.json +4 -0
  476. package/libs/base-trigger/lib/types/index.d.ts +95 -0
  477. package/libs/breadcrumbs/lib/cjs/Breadcrumbs.js +116 -0
  478. package/libs/breadcrumbs/lib/cjs/Breadcrumbs.js.map +1 -0
  479. package/libs/breadcrumbs/lib/cjs/index.d.js +2 -0
  480. package/libs/breadcrumbs/lib/cjs/index.d.js.map +1 -0
  481. package/libs/breadcrumbs/lib/cjs/index.js +14 -0
  482. package/libs/breadcrumbs/lib/cjs/index.js.map +1 -0
  483. package/libs/breadcrumbs/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  484. package/libs/breadcrumbs/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  485. package/libs/breadcrumbs/lib/cjs/translations/de.json +3 -0
  486. package/libs/breadcrumbs/lib/cjs/translations/en.json +3 -0
  487. package/libs/breadcrumbs/lib/cjs/translations/es.json +3 -0
  488. package/libs/breadcrumbs/lib/cjs/translations/fr.json +3 -0
  489. package/libs/breadcrumbs/lib/cjs/translations/it.json +3 -0
  490. package/libs/breadcrumbs/lib/cjs/translations/ja.json +3 -0
  491. package/libs/breadcrumbs/lib/cjs/translations/ko.json +3 -0
  492. package/libs/breadcrumbs/lib/cjs/translations/nl.json +3 -0
  493. package/libs/breadcrumbs/lib/cjs/translations/pl.json +3 -0
  494. package/libs/breadcrumbs/lib/cjs/translations/pt.json +3 -0
  495. package/libs/breadcrumbs/lib/cjs/translations/sv.json +3 -0
  496. package/libs/breadcrumbs/lib/cjs/translations/tr.json +3 -0
  497. package/libs/breadcrumbs/lib/cjs/translations/vi.json +3 -0
  498. package/libs/breadcrumbs/lib/cjs/translations/zh.json +3 -0
  499. package/libs/breadcrumbs/lib/es6/Breadcrumbs.js +110 -0
  500. package/libs/breadcrumbs/lib/es6/Breadcrumbs.js.map +1 -0
  501. package/libs/breadcrumbs/lib/es6/index.d.js +2 -0
  502. package/libs/breadcrumbs/lib/es6/index.d.js.map +1 -0
  503. package/libs/breadcrumbs/lib/es6/index.js +2 -0
  504. package/libs/breadcrumbs/lib/es6/index.js.map +1 -0
  505. package/libs/breadcrumbs/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  506. package/libs/breadcrumbs/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  507. package/libs/breadcrumbs/lib/es6/translations/de.json +3 -0
  508. package/libs/breadcrumbs/lib/es6/translations/en.json +3 -0
  509. package/libs/breadcrumbs/lib/es6/translations/es.json +3 -0
  510. package/libs/breadcrumbs/lib/es6/translations/fr.json +3 -0
  511. package/libs/breadcrumbs/lib/es6/translations/it.json +3 -0
  512. package/libs/breadcrumbs/lib/es6/translations/ja.json +3 -0
  513. package/libs/breadcrumbs/lib/es6/translations/ko.json +3 -0
  514. package/libs/breadcrumbs/lib/es6/translations/nl.json +3 -0
  515. package/libs/breadcrumbs/lib/es6/translations/pl.json +3 -0
  516. package/libs/breadcrumbs/lib/es6/translations/pt.json +3 -0
  517. package/libs/breadcrumbs/lib/es6/translations/sv.json +3 -0
  518. package/libs/breadcrumbs/lib/es6/translations/tr.json +3 -0
  519. package/libs/breadcrumbs/lib/es6/translations/vi.json +3 -0
  520. package/libs/breadcrumbs/lib/es6/translations/zh.json +3 -0
  521. package/libs/breadcrumbs/lib/types/index.d.ts +34 -0
  522. package/libs/breakpoints/lib/cjs/Breakpoints.js +99 -0
  523. package/libs/breakpoints/lib/cjs/Breakpoints.js.map +1 -0
  524. package/libs/breakpoints/lib/cjs/index.d.js +2 -0
  525. package/libs/breakpoints/lib/cjs/index.d.js.map +1 -0
  526. package/libs/breakpoints/lib/cjs/index.js +26 -0
  527. package/libs/breakpoints/lib/cjs/index.js.map +1 -0
  528. package/libs/breakpoints/lib/es6/Breakpoints.js +88 -0
  529. package/libs/breakpoints/lib/es6/Breakpoints.js.map +1 -0
  530. package/libs/breakpoints/lib/es6/index.d.js +2 -0
  531. package/libs/breakpoints/lib/es6/index.d.js.map +1 -0
  532. package/libs/breakpoints/lib/es6/index.js +3 -0
  533. package/libs/breakpoints/lib/es6/index.js.map +1 -0
  534. package/libs/breakpoints/lib/types/index.d.ts +46 -0
  535. package/libs/button/lib/cjs/Button.js +178 -0
  536. package/libs/button/lib/cjs/Button.js.map +1 -0
  537. package/libs/button/lib/cjs/SpinButton.js +42 -0
  538. package/libs/button/lib/cjs/SpinButton.js.map +1 -0
  539. package/libs/button/lib/cjs/index.d.js +2 -0
  540. package/libs/button/lib/cjs/index.d.js.map +1 -0
  541. package/libs/button/lib/cjs/index.js +26 -0
  542. package/libs/button/lib/cjs/index.js.map +1 -0
  543. package/libs/button/lib/es6/Button.js +172 -0
  544. package/libs/button/lib/es6/Button.js.map +1 -0
  545. package/libs/button/lib/es6/SpinButton.js +32 -0
  546. package/libs/button/lib/es6/SpinButton.js.map +1 -0
  547. package/libs/button/lib/es6/index.d.js +2 -0
  548. package/libs/button/lib/es6/index.d.js.map +1 -0
  549. package/libs/button/lib/es6/index.js +3 -0
  550. package/libs/button/lib/es6/index.js.map +1 -0
  551. package/libs/button/lib/types/index.d.ts +62 -0
  552. package/libs/card/lib/cjs/Card.js +102 -0
  553. package/libs/card/lib/cjs/Card.js.map +1 -0
  554. package/libs/card/lib/cjs/index.d.js +2 -0
  555. package/libs/card/lib/cjs/index.d.js.map +1 -0
  556. package/libs/card/lib/cjs/index.js +14 -0
  557. package/libs/card/lib/cjs/index.js.map +1 -0
  558. package/libs/card/lib/es6/Card.js +99 -0
  559. package/libs/card/lib/es6/Card.js.map +1 -0
  560. package/libs/card/lib/es6/index.d.js +2 -0
  561. package/libs/card/lib/es6/index.d.js.map +1 -0
  562. package/libs/card/lib/es6/index.js +2 -0
  563. package/libs/card/lib/es6/index.js.map +1 -0
  564. package/libs/card/lib/types/index.d.ts +22 -0
  565. package/libs/carousel/lib/cjs/Carousel.js +692 -0
  566. package/libs/carousel/lib/cjs/Carousel.js.map +1 -0
  567. package/libs/carousel/lib/cjs/Carousel.types.js +2 -0
  568. package/libs/carousel/lib/cjs/Carousel.types.js.map +1 -0
  569. package/libs/carousel/lib/cjs/index.js +14 -0
  570. package/libs/carousel/lib/cjs/index.js.map +1 -0
  571. package/libs/carousel/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  572. package/libs/carousel/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  573. package/libs/carousel/lib/cjs/translations/de.json +4 -0
  574. package/libs/carousel/lib/cjs/translations/en.json +4 -0
  575. package/libs/carousel/lib/cjs/translations/es.json +4 -0
  576. package/libs/carousel/lib/cjs/translations/fr.json +4 -0
  577. package/libs/carousel/lib/cjs/translations/it.json +4 -0
  578. package/libs/carousel/lib/cjs/translations/ja.json +4 -0
  579. package/libs/carousel/lib/cjs/translations/ko.json +4 -0
  580. package/libs/carousel/lib/cjs/translations/nl.json +4 -0
  581. package/libs/carousel/lib/cjs/translations/pl.json +4 -0
  582. package/libs/carousel/lib/cjs/translations/pt.json +4 -0
  583. package/libs/carousel/lib/cjs/translations/sv.json +4 -0
  584. package/libs/carousel/lib/cjs/translations/tr.json +4 -0
  585. package/libs/carousel/lib/cjs/translations/vi.json +4 -0
  586. package/libs/carousel/lib/cjs/translations/zh.json +4 -0
  587. package/libs/carousel/lib/es6/Carousel.js +693 -0
  588. package/libs/carousel/lib/es6/Carousel.js.map +1 -0
  589. package/libs/carousel/lib/es6/Carousel.types.js +2 -0
  590. package/libs/carousel/lib/es6/Carousel.types.js.map +1 -0
  591. package/libs/carousel/lib/es6/index.js +2 -0
  592. package/libs/carousel/lib/es6/index.js.map +1 -0
  593. package/libs/carousel/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  594. package/libs/carousel/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  595. package/libs/carousel/lib/es6/translations/de.json +4 -0
  596. package/libs/carousel/lib/es6/translations/en.json +4 -0
  597. package/libs/carousel/lib/es6/translations/es.json +4 -0
  598. package/libs/carousel/lib/es6/translations/fr.json +4 -0
  599. package/libs/carousel/lib/es6/translations/it.json +4 -0
  600. package/libs/carousel/lib/es6/translations/ja.json +4 -0
  601. package/libs/carousel/lib/es6/translations/ko.json +4 -0
  602. package/libs/carousel/lib/es6/translations/nl.json +4 -0
  603. package/libs/carousel/lib/es6/translations/pl.json +4 -0
  604. package/libs/carousel/lib/es6/translations/pt.json +4 -0
  605. package/libs/carousel/lib/es6/translations/sv.json +4 -0
  606. package/libs/carousel/lib/es6/translations/tr.json +4 -0
  607. package/libs/carousel/lib/es6/translations/vi.json +4 -0
  608. package/libs/carousel/lib/es6/translations/zh.json +4 -0
  609. package/libs/checkbox/lib/cjs/Checkbox.js +298 -0
  610. package/libs/checkbox/lib/cjs/Checkbox.js.map +1 -0
  611. package/libs/checkbox/lib/cjs/index.d.js +2 -0
  612. package/libs/checkbox/lib/cjs/index.d.js.map +1 -0
  613. package/libs/checkbox/lib/cjs/index.js +26 -0
  614. package/libs/checkbox/lib/cjs/index.js.map +1 -0
  615. package/libs/checkbox/lib/es6/Checkbox.js +289 -0
  616. package/libs/checkbox/lib/es6/Checkbox.js.map +1 -0
  617. package/libs/checkbox/lib/es6/index.d.js +2 -0
  618. package/libs/checkbox/lib/es6/index.d.js.map +1 -0
  619. package/libs/checkbox/lib/es6/index.js +3 -0
  620. package/libs/checkbox/lib/es6/index.js.map +1 -0
  621. package/libs/checkbox/lib/types/index.d.ts +106 -0
  622. package/libs/color-picker/lib/cjs/ColorPicker.js +250 -0
  623. package/libs/color-picker/lib/cjs/ColorPicker.js.map +1 -0
  624. package/libs/color-picker/lib/cjs/PaletteManager.js +166 -0
  625. package/libs/color-picker/lib/cjs/PaletteManager.js.map +1 -0
  626. package/libs/color-picker/lib/cjs/components/InputColor.js +190 -0
  627. package/libs/color-picker/lib/cjs/components/InputColor.js.map +1 -0
  628. package/libs/color-picker/lib/cjs/components/Item.js +61 -0
  629. package/libs/color-picker/lib/cjs/components/Item.js.map +1 -0
  630. package/libs/color-picker/lib/cjs/components/colors.js +59 -0
  631. package/libs/color-picker/lib/cjs/components/colors.js.map +1 -0
  632. package/libs/color-picker/lib/cjs/components/index.js +40 -0
  633. package/libs/color-picker/lib/cjs/components/index.js.map +1 -0
  634. package/libs/color-picker/lib/cjs/index.d.js +2 -0
  635. package/libs/color-picker/lib/cjs/index.d.js.map +1 -0
  636. package/libs/color-picker/lib/cjs/index.js +26 -0
  637. package/libs/color-picker/lib/cjs/index.js.map +1 -0
  638. package/libs/color-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  639. package/libs/color-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  640. package/libs/color-picker/lib/cjs/translations/de.json +13 -0
  641. package/libs/color-picker/lib/cjs/translations/en.json +13 -0
  642. package/libs/color-picker/lib/cjs/translations/es.json +13 -0
  643. package/libs/color-picker/lib/cjs/translations/fr.json +13 -0
  644. package/libs/color-picker/lib/cjs/translations/it.json +13 -0
  645. package/libs/color-picker/lib/cjs/translations/ja.json +13 -0
  646. package/libs/color-picker/lib/cjs/translations/ko.json +13 -0
  647. package/libs/color-picker/lib/cjs/translations/nl.json +13 -0
  648. package/libs/color-picker/lib/cjs/translations/pl.json +13 -0
  649. package/libs/color-picker/lib/cjs/translations/pt.json +13 -0
  650. package/libs/color-picker/lib/cjs/translations/sv.json +13 -0
  651. package/libs/color-picker/lib/cjs/translations/tr.json +13 -0
  652. package/libs/color-picker/lib/cjs/translations/vi.json +13 -0
  653. package/libs/color-picker/lib/cjs/translations/zh.json +13 -0
  654. package/libs/color-picker/lib/es6/ColorPicker.js +242 -0
  655. package/libs/color-picker/lib/es6/ColorPicker.js.map +1 -0
  656. package/libs/color-picker/lib/es6/PaletteManager.js +159 -0
  657. package/libs/color-picker/lib/es6/PaletteManager.js.map +1 -0
  658. package/libs/color-picker/lib/es6/components/InputColor.js +183 -0
  659. package/libs/color-picker/lib/es6/components/InputColor.js.map +1 -0
  660. package/libs/color-picker/lib/es6/components/Item.js +55 -0
  661. package/libs/color-picker/lib/es6/components/Item.js.map +1 -0
  662. package/libs/color-picker/lib/es6/components/colors.js +52 -0
  663. package/libs/color-picker/lib/es6/components/colors.js.map +1 -0
  664. package/libs/color-picker/lib/es6/components/index.js +4 -0
  665. package/libs/color-picker/lib/es6/components/index.js.map +1 -0
  666. package/libs/color-picker/lib/es6/index.d.js +2 -0
  667. package/libs/color-picker/lib/es6/index.d.js.map +1 -0
  668. package/libs/color-picker/lib/es6/index.js +3 -0
  669. package/libs/color-picker/lib/es6/index.js.map +1 -0
  670. package/libs/color-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  671. package/libs/color-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  672. package/libs/color-picker/lib/es6/translations/de.json +13 -0
  673. package/libs/color-picker/lib/es6/translations/en.json +13 -0
  674. package/libs/color-picker/lib/es6/translations/es.json +13 -0
  675. package/libs/color-picker/lib/es6/translations/fr.json +13 -0
  676. package/libs/color-picker/lib/es6/translations/it.json +13 -0
  677. package/libs/color-picker/lib/es6/translations/ja.json +13 -0
  678. package/libs/color-picker/lib/es6/translations/ko.json +13 -0
  679. package/libs/color-picker/lib/es6/translations/nl.json +13 -0
  680. package/libs/color-picker/lib/es6/translations/pl.json +13 -0
  681. package/libs/color-picker/lib/es6/translations/pt.json +13 -0
  682. package/libs/color-picker/lib/es6/translations/sv.json +13 -0
  683. package/libs/color-picker/lib/es6/translations/tr.json +13 -0
  684. package/libs/color-picker/lib/es6/translations/vi.json +13 -0
  685. package/libs/color-picker/lib/es6/translations/zh.json +13 -0
  686. package/libs/color-picker/lib/types/ColorPicker.d.ts +28 -0
  687. package/libs/color-picker/lib/types/PaletteManager.d.ts +253 -0
  688. package/libs/color-picker/lib/types/components/InputColor.d.ts +3 -0
  689. package/libs/color-picker/lib/types/components/Item.d.ts +18 -0
  690. package/libs/color-picker/lib/types/components/colors.d.ts +15 -0
  691. package/libs/color-picker/lib/types/components/index.d.ts +3 -0
  692. package/libs/color-picker/lib/types/translations/__intergalactic-dynamic-locales.d.ts +184 -0
  693. package/libs/core/lib/cjs/Component.js +54 -0
  694. package/libs/core/lib/cjs/Component.js.map +1 -0
  695. package/libs/core/lib/cjs/enhancement/Children.js +121 -0
  696. package/libs/core/lib/cjs/enhancement/Children.js.map +1 -0
  697. package/libs/core/lib/cjs/enhancement/Root.js +78 -0
  698. package/libs/core/lib/cjs/enhancement/Root.js.map +1 -0
  699. package/libs/core/lib/cjs/enhancement/bindHandler.js +54 -0
  700. package/libs/core/lib/cjs/enhancement/bindHandler.js.map +1 -0
  701. package/libs/core/lib/cjs/enhancement/dataName.js +20 -0
  702. package/libs/core/lib/cjs/enhancement/dataName.js.map +1 -0
  703. package/libs/core/lib/cjs/enhancement/enhance.js +22 -0
  704. package/libs/core/lib/cjs/enhancement/enhance.js.map +1 -0
  705. package/libs/core/lib/cjs/enhancement/functionDefaultProps.js +36 -0
  706. package/libs/core/lib/cjs/enhancement/functionDefaultProps.js.map +1 -0
  707. package/libs/core/lib/cjs/enhancement/hoistProps.js +102 -0
  708. package/libs/core/lib/cjs/enhancement/hoistProps.js.map +1 -0
  709. package/libs/core/lib/cjs/enhancement/i18n.js +28 -0
  710. package/libs/core/lib/cjs/enhancement/i18n.js.map +1 -0
  711. package/libs/core/lib/cjs/enhancement/inheritedName.js +24 -0
  712. package/libs/core/lib/cjs/enhancement/inheritedName.js.map +1 -0
  713. package/libs/core/lib/cjs/enhancement/staticChildren.js +141 -0
  714. package/libs/core/lib/cjs/enhancement/staticChildren.js.map +1 -0
  715. package/libs/core/lib/cjs/enhancement/style.js +60 -0
  716. package/libs/core/lib/cjs/enhancement/style.js.map +1 -0
  717. package/libs/core/lib/cjs/enhancement/uncontrolledProps.js +135 -0
  718. package/libs/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -0
  719. package/libs/core/lib/cjs/index.js +443 -0
  720. package/libs/core/lib/cjs/index.js.map +1 -0
  721. package/libs/core/lib/cjs/register.js +37 -0
  722. package/libs/core/lib/cjs/register.js.map +1 -0
  723. package/libs/core/lib/cjs/reshadow.d.js +2 -0
  724. package/libs/core/lib/cjs/reshadow.d.js.map +1 -0
  725. package/libs/core/lib/cjs/styled/index.js +54 -0
  726. package/libs/core/lib/cjs/styled/index.js.map +1 -0
  727. package/libs/core/lib/cjs/styled/sstyled.js +150 -0
  728. package/libs/core/lib/cjs/styled/sstyled.js.map +1 -0
  729. package/libs/core/lib/es6/Component.js +47 -0
  730. package/libs/core/lib/es6/Component.js.map +1 -0
  731. package/libs/core/lib/es6/enhancement/Children.js +112 -0
  732. package/libs/core/lib/es6/enhancement/Children.js.map +1 -0
  733. package/libs/core/lib/es6/enhancement/Root.js +72 -0
  734. package/libs/core/lib/es6/enhancement/Root.js.map +1 -0
  735. package/libs/core/lib/es6/enhancement/bindHandler.js +47 -0
  736. package/libs/core/lib/es6/enhancement/bindHandler.js.map +1 -0
  737. package/libs/core/lib/es6/enhancement/dataName.js +12 -0
  738. package/libs/core/lib/es6/enhancement/dataName.js.map +1 -0
  739. package/libs/core/lib/es6/enhancement/enhance.js +15 -0
  740. package/libs/core/lib/es6/enhancement/enhance.js.map +1 -0
  741. package/libs/core/lib/es6/enhancement/functionDefaultProps.js +29 -0
  742. package/libs/core/lib/es6/enhancement/functionDefaultProps.js.map +1 -0
  743. package/libs/core/lib/es6/enhancement/hoistProps.js +90 -0
  744. package/libs/core/lib/es6/enhancement/hoistProps.js.map +1 -0
  745. package/libs/core/lib/es6/enhancement/i18n.js +21 -0
  746. package/libs/core/lib/es6/enhancement/i18n.js.map +1 -0
  747. package/libs/core/lib/es6/enhancement/inheritedName.js +15 -0
  748. package/libs/core/lib/es6/enhancement/inheritedName.js.map +1 -0
  749. package/libs/core/lib/es6/enhancement/staticChildren.js +126 -0
  750. package/libs/core/lib/es6/enhancement/staticChildren.js.map +1 -0
  751. package/libs/core/lib/es6/enhancement/style.js +52 -0
  752. package/libs/core/lib/es6/enhancement/style.js.map +1 -0
  753. package/libs/core/lib/es6/enhancement/uncontrolledProps.js +125 -0
  754. package/libs/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -0
  755. package/libs/core/lib/es6/index.js +357 -0
  756. package/libs/core/lib/es6/index.js.map +1 -0
  757. package/libs/core/lib/es6/register.js +29 -0
  758. package/libs/core/lib/es6/register.js.map +1 -0
  759. package/libs/core/lib/es6/reshadow.d.js +2 -0
  760. package/libs/core/lib/es6/reshadow.d.js.map +1 -0
  761. package/libs/core/lib/es6/styled/index.js +10 -0
  762. package/libs/core/lib/es6/styled/index.js.map +1 -0
  763. package/libs/core/lib/es6/styled/sstyled.js +143 -0
  764. package/libs/core/lib/es6/styled/sstyled.js.map +1 -0
  765. package/libs/core/lib/types/Component.d.ts +139 -0
  766. package/libs/core/lib/types/enhancement/Children.d.ts +6 -0
  767. package/libs/core/lib/types/enhancement/Root.d.ts +6 -0
  768. package/libs/core/lib/types/enhancement/bindHandler.d.ts +5 -0
  769. package/libs/core/lib/types/enhancement/dataName.d.ts +4 -0
  770. package/libs/core/lib/types/enhancement/enhance.d.ts +5 -0
  771. package/libs/core/lib/types/enhancement/functionDefaultProps.d.ts +8 -0
  772. package/libs/core/lib/types/enhancement/hoistProps.d.ts +10 -0
  773. package/libs/core/lib/types/enhancement/i18n.d.ts +4 -0
  774. package/libs/core/lib/types/enhancement/inheritedName.d.ts +8 -0
  775. package/libs/core/lib/types/enhancement/staticChildren.d.ts +13 -0
  776. package/libs/core/lib/types/enhancement/style.d.ts +9 -0
  777. package/libs/core/lib/types/enhancement/uncontrolledProps.d.ts +7 -0
  778. package/libs/core/lib/types/index.d.ts +41 -0
  779. package/libs/core/lib/types/register.d.ts +8 -0
  780. package/libs/core/lib/types/styled/index.d.ts +14 -0
  781. package/libs/core/lib/types/styled/sstyled.d.ts +17 -0
  782. package/libs/counter/lib/cjs/AnimatedNumber.js +76 -0
  783. package/libs/counter/lib/cjs/AnimatedNumber.js.map +1 -0
  784. package/libs/counter/lib/cjs/Counter.js +79 -0
  785. package/libs/counter/lib/cjs/Counter.js.map +1 -0
  786. package/libs/counter/lib/cjs/index.d.js +2 -0
  787. package/libs/counter/lib/cjs/index.d.js.map +1 -0
  788. package/libs/counter/lib/cjs/index.js +20 -0
  789. package/libs/counter/lib/cjs/index.js.map +1 -0
  790. package/libs/counter/lib/es6/AnimatedNumber.js +68 -0
  791. package/libs/counter/lib/es6/AnimatedNumber.js.map +1 -0
  792. package/libs/counter/lib/es6/Counter.js +60 -0
  793. package/libs/counter/lib/es6/Counter.js.map +1 -0
  794. package/libs/counter/lib/es6/index.d.js +2 -0
  795. package/libs/counter/lib/es6/index.d.js.map +1 -0
  796. package/libs/counter/lib/es6/index.js +2 -0
  797. package/libs/counter/lib/es6/index.js.map +1 -0
  798. package/libs/counter/lib/types/index.d.ts +32 -0
  799. package/libs/d3-chart/lib/cjs/Area.js +236 -0
  800. package/libs/d3-chart/lib/cjs/Area.js.map +1 -0
  801. package/libs/d3-chart/lib/cjs/Axis.js +468 -0
  802. package/libs/d3-chart/lib/cjs/Axis.js.map +1 -0
  803. package/libs/d3-chart/lib/cjs/Bar.js +221 -0
  804. package/libs/d3-chart/lib/cjs/Bar.js.map +1 -0
  805. package/libs/d3-chart/lib/cjs/Bubble.js +235 -0
  806. package/libs/d3-chart/lib/cjs/Bubble.js.map +1 -0
  807. package/libs/d3-chart/lib/cjs/ClipPath.js +94 -0
  808. package/libs/d3-chart/lib/cjs/ClipPath.js.map +1 -0
  809. package/libs/d3-chart/lib/cjs/Donut.js +490 -0
  810. package/libs/d3-chart/lib/cjs/Donut.js.map +1 -0
  811. package/libs/d3-chart/lib/cjs/Dots.js +116 -0
  812. package/libs/d3-chart/lib/cjs/Dots.js.map +1 -0
  813. package/libs/d3-chart/lib/cjs/GroupBar.js +111 -0
  814. package/libs/d3-chart/lib/cjs/GroupBar.js.map +1 -0
  815. package/libs/d3-chart/lib/cjs/HorizontalBar.js +200 -0
  816. package/libs/d3-chart/lib/cjs/HorizontalBar.js.map +1 -0
  817. package/libs/d3-chart/lib/cjs/Hover.js +252 -0
  818. package/libs/d3-chart/lib/cjs/Hover.js.map +1 -0
  819. package/libs/d3-chart/lib/cjs/Line.js +231 -0
  820. package/libs/d3-chart/lib/cjs/Line.js.map +1 -0
  821. package/libs/d3-chart/lib/cjs/Plot.js +155 -0
  822. package/libs/d3-chart/lib/cjs/Plot.js.map +1 -0
  823. package/libs/d3-chart/lib/cjs/Radar.js +817 -0
  824. package/libs/d3-chart/lib/cjs/Radar.js.map +1 -0
  825. package/libs/d3-chart/lib/cjs/RadialTree.js +663 -0
  826. package/libs/d3-chart/lib/cjs/RadialTree.js.map +1 -0
  827. package/libs/d3-chart/lib/cjs/ReferenceLine.js +239 -0
  828. package/libs/d3-chart/lib/cjs/ReferenceLine.js.map +1 -0
  829. package/libs/d3-chart/lib/cjs/ResponsiveContainer.js +116 -0
  830. package/libs/d3-chart/lib/cjs/ResponsiveContainer.js.map +1 -0
  831. package/libs/d3-chart/lib/cjs/ScatterPlot.js +205 -0
  832. package/libs/d3-chart/lib/cjs/ScatterPlot.js.map +1 -0
  833. package/libs/d3-chart/lib/cjs/StackBar.js +197 -0
  834. package/libs/d3-chart/lib/cjs/StackBar.js.map +1 -0
  835. package/libs/d3-chart/lib/cjs/StackedArea.js +94 -0
  836. package/libs/d3-chart/lib/cjs/StackedArea.js.map +1 -0
  837. package/libs/d3-chart/lib/cjs/Tooltip.js +233 -0
  838. package/libs/d3-chart/lib/cjs/Tooltip.js.map +1 -0
  839. package/libs/d3-chart/lib/cjs/Venn.js +240 -0
  840. package/libs/d3-chart/lib/cjs/Venn.js.map +1 -0
  841. package/libs/d3-chart/lib/cjs/a11y/PlotA11yModule.js +133 -0
  842. package/libs/d3-chart/lib/cjs/a11y/PlotA11yModule.js.map +1 -0
  843. package/libs/d3-chart/lib/cjs/a11y/PlotA11yView.js +229 -0
  844. package/libs/d3-chart/lib/cjs/a11y/PlotA11yView.js.map +1 -0
  845. package/libs/d3-chart/lib/cjs/a11y/bezier.js +37 -0
  846. package/libs/d3-chart/lib/cjs/a11y/bezier.js.map +1 -0
  847. package/libs/d3-chart/lib/cjs/a11y/focus.js +45 -0
  848. package/libs/d3-chart/lib/cjs/a11y/focus.js.map +1 -0
  849. package/libs/d3-chart/lib/cjs/a11y/hints.js +128 -0
  850. package/libs/d3-chart/lib/cjs/a11y/hints.js.map +1 -0
  851. package/libs/d3-chart/lib/cjs/a11y/insights.js +722 -0
  852. package/libs/d3-chart/lib/cjs/a11y/insights.js.map +1 -0
  853. package/libs/d3-chart/lib/cjs/a11y/intl.js +22 -0
  854. package/libs/d3-chart/lib/cjs/a11y/intl.js.map +1 -0
  855. package/libs/d3-chart/lib/cjs/a11y/locale.js +49 -0
  856. package/libs/d3-chart/lib/cjs/a11y/locale.js.map +1 -0
  857. package/libs/d3-chart/lib/cjs/a11y/serialize.js +381 -0
  858. package/libs/d3-chart/lib/cjs/a11y/serialize.js.map +1 -0
  859. package/libs/d3-chart/lib/cjs/a11y/summarize.js +19 -0
  860. package/libs/d3-chart/lib/cjs/a11y/summarize.js.map +1 -0
  861. package/libs/d3-chart/lib/cjs/a11y/translations/module/__intergalactic-dynamic-locales.js +39 -0
  862. package/libs/d3-chart/lib/cjs/a11y/translations/module/__intergalactic-dynamic-locales.js.map +1 -0
  863. package/libs/d3-chart/lib/cjs/a11y/translations/module/de.json +5 -0
  864. package/libs/d3-chart/lib/cjs/a11y/translations/module/en.json +5 -0
  865. package/libs/d3-chart/lib/cjs/a11y/translations/module/es.json +5 -0
  866. package/libs/d3-chart/lib/cjs/a11y/translations/module/fr.json +5 -0
  867. package/libs/d3-chart/lib/cjs/a11y/translations/module/it.json +5 -0
  868. package/libs/d3-chart/lib/cjs/a11y/translations/module/ja.json +5 -0
  869. package/libs/d3-chart/lib/cjs/a11y/translations/module/ko.json +5 -0
  870. package/libs/d3-chart/lib/cjs/a11y/translations/module/nl.json +5 -0
  871. package/libs/d3-chart/lib/cjs/a11y/translations/module/pl.json +5 -0
  872. package/libs/d3-chart/lib/cjs/a11y/translations/module/pt.json +5 -0
  873. package/libs/d3-chart/lib/cjs/a11y/translations/module/sv.json +5 -0
  874. package/libs/d3-chart/lib/cjs/a11y/translations/module/tr.json +5 -0
  875. package/libs/d3-chart/lib/cjs/a11y/translations/module/vi.json +5 -0
  876. package/libs/d3-chart/lib/cjs/a11y/translations/module/zh.json +5 -0
  877. package/libs/d3-chart/lib/cjs/a11y/translations/view/__intergalactic-dynamic-locales.js +39 -0
  878. package/libs/d3-chart/lib/cjs/a11y/translations/view/__intergalactic-dynamic-locales.js.map +1 -0
  879. package/libs/d3-chart/lib/cjs/a11y/translations/view/de.json +43 -0
  880. package/libs/d3-chart/lib/cjs/a11y/translations/view/en.csv +42 -0
  881. package/libs/d3-chart/lib/cjs/a11y/translations/view/en.json +43 -0
  882. package/libs/d3-chart/lib/cjs/a11y/translations/view/es.json +43 -0
  883. package/libs/d3-chart/lib/cjs/a11y/translations/view/fr.json +43 -0
  884. package/libs/d3-chart/lib/cjs/a11y/translations/view/it.json +43 -0
  885. package/libs/d3-chart/lib/cjs/a11y/translations/view/ja.json +43 -0
  886. package/libs/d3-chart/lib/cjs/a11y/translations/view/ko.json +43 -0
  887. package/libs/d3-chart/lib/cjs/a11y/translations/view/nl.json +43 -0
  888. package/libs/d3-chart/lib/cjs/a11y/translations/view/pl.json +43 -0
  889. package/libs/d3-chart/lib/cjs/a11y/translations/view/pt.json +43 -0
  890. package/libs/d3-chart/lib/cjs/a11y/translations/view/sv.json +43 -0
  891. package/libs/d3-chart/lib/cjs/a11y/translations/view/tr.json +43 -0
  892. package/libs/d3-chart/lib/cjs/a11y/translations/view/vi.json +43 -0
  893. package/libs/d3-chart/lib/cjs/a11y/translations/view/zh.json +43 -0
  894. package/libs/d3-chart/lib/cjs/color.js +133 -0
  895. package/libs/d3-chart/lib/cjs/color.js.map +1 -0
  896. package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.js +420 -0
  897. package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.js.map +1 -0
  898. package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js +2 -0
  899. package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js.map +1 -0
  900. package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.js +160 -0
  901. package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.js.map +1 -0
  902. package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.type.js +2 -0
  903. package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.type.js.map +1 -0
  904. package/libs/d3-chart/lib/cjs/component/Chart/BarChart.js +253 -0
  905. package/libs/d3-chart/lib/cjs/component/Chart/BarChart.js.map +1 -0
  906. package/libs/d3-chart/lib/cjs/component/Chart/BarChart.type.js +2 -0
  907. package/libs/d3-chart/lib/cjs/component/Chart/BarChart.type.js.map +1 -0
  908. package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.js +145 -0
  909. package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.js.map +1 -0
  910. package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.type.js +2 -0
  911. package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.type.js.map +1 -0
  912. package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.js +117 -0
  913. package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.js.map +1 -0
  914. package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.type.js +2 -0
  915. package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.type.js.map +1 -0
  916. package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.js +189 -0
  917. package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.js.map +1 -0
  918. package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.type.js +2 -0
  919. package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.type.js.map +1 -0
  920. package/libs/d3-chart/lib/cjs/component/Chart/LineChart.js +147 -0
  921. package/libs/d3-chart/lib/cjs/component/Chart/LineChart.js.map +1 -0
  922. package/libs/d3-chart/lib/cjs/component/Chart/LineChart.type.js +2 -0
  923. package/libs/d3-chart/lib/cjs/component/Chart/LineChart.type.js.map +1 -0
  924. package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.js +121 -0
  925. package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.js.map +1 -0
  926. package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.type.js +2 -0
  927. package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.type.js.map +1 -0
  928. package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.js +159 -0
  929. package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.js.map +1 -0
  930. package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.type.js +2 -0
  931. package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.type.js.map +1 -0
  932. package/libs/d3-chart/lib/cjs/component/Chart/VennChart.js +144 -0
  933. package/libs/d3-chart/lib/cjs/component/Chart/VennChart.js.map +1 -0
  934. package/libs/d3-chart/lib/cjs/component/Chart/VennChart.type.js +2 -0
  935. package/libs/d3-chart/lib/cjs/component/Chart/VennChart.type.js.map +1 -0
  936. package/libs/d3-chart/lib/cjs/component/Chart/index.js +28 -0
  937. package/libs/d3-chart/lib/cjs/component/Chart/index.js.map +1 -0
  938. package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js +108 -0
  939. package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js.map +1 -0
  940. package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js +2 -0
  941. package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js.map +1 -0
  942. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +93 -0
  943. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js.map +1 -0
  944. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.type.js +2 -0
  945. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.type.js.map +1 -0
  946. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +233 -0
  947. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js.map +1 -0
  948. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js +13 -0
  949. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -0
  950. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +99 -0
  951. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js.map +1 -0
  952. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.type.js +2 -0
  953. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.type.js.map +1 -0
  954. package/libs/d3-chart/lib/cjs/component/ChartLegend/index.js +23 -0
  955. package/libs/d3-chart/lib/cjs/component/ChartLegend/index.js.map +1 -0
  956. package/libs/d3-chart/lib/cjs/createElement.d.js +2 -0
  957. package/libs/d3-chart/lib/cjs/createElement.d.js.map +1 -0
  958. package/libs/d3-chart/lib/cjs/createElement.js +128 -0
  959. package/libs/d3-chart/lib/cjs/createElement.js.map +1 -0
  960. package/libs/d3-chart/lib/cjs/index.js +206 -0
  961. package/libs/d3-chart/lib/cjs/index.js.map +1 -0
  962. package/libs/d3-chart/lib/cjs/style/var.css +125 -0
  963. package/libs/d3-chart/lib/cjs/translations/__intergalactic-dynamic-locales.js +37 -0
  964. package/libs/d3-chart/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  965. package/libs/d3-chart/lib/cjs/translations/de.json +3 -0
  966. package/libs/d3-chart/lib/cjs/translations/en.json +3 -0
  967. package/libs/d3-chart/lib/cjs/translations/es.json +3 -0
  968. package/libs/d3-chart/lib/cjs/translations/fr.json +3 -0
  969. package/libs/d3-chart/lib/cjs/translations/it.json +3 -0
  970. package/libs/d3-chart/lib/cjs/translations/ja.json +3 -0
  971. package/libs/d3-chart/lib/cjs/translations/ko.json +3 -0
  972. package/libs/d3-chart/lib/cjs/translations/nl.json +3 -0
  973. package/libs/d3-chart/lib/cjs/translations/pl.json +3 -0
  974. package/libs/d3-chart/lib/cjs/translations/pt.json +3 -0
  975. package/libs/d3-chart/lib/cjs/translations/sv.json +3 -0
  976. package/libs/d3-chart/lib/cjs/translations/tr.json +3 -0
  977. package/libs/d3-chart/lib/cjs/translations/vi.json +3 -0
  978. package/libs/d3-chart/lib/cjs/translations/zh.json +3 -0
  979. package/libs/d3-chart/lib/cjs/types/Area.d.js +2 -0
  980. package/libs/d3-chart/lib/cjs/types/Area.d.js.map +1 -0
  981. package/libs/d3-chart/lib/cjs/types/Axis.d.js +2 -0
  982. package/libs/d3-chart/lib/cjs/types/Axis.d.js.map +1 -0
  983. package/libs/d3-chart/lib/cjs/types/Bar.d.js +2 -0
  984. package/libs/d3-chart/lib/cjs/types/Bar.d.js.map +1 -0
  985. package/libs/d3-chart/lib/cjs/types/Bubble.d.js +2 -0
  986. package/libs/d3-chart/lib/cjs/types/Bubble.d.js.map +1 -0
  987. package/libs/d3-chart/lib/cjs/types/ClipPath.d.js +2 -0
  988. package/libs/d3-chart/lib/cjs/types/ClipPath.d.js.map +1 -0
  989. package/libs/d3-chart/lib/cjs/types/Donut.d.js +2 -0
  990. package/libs/d3-chart/lib/cjs/types/Donut.d.js.map +1 -0
  991. package/libs/d3-chart/lib/cjs/types/GroupBar.d.js +2 -0
  992. package/libs/d3-chart/lib/cjs/types/GroupBar.d.js.map +1 -0
  993. package/libs/d3-chart/lib/cjs/types/HorizontalBar.d.js +2 -0
  994. package/libs/d3-chart/lib/cjs/types/HorizontalBar.d.js.map +1 -0
  995. package/libs/d3-chart/lib/cjs/types/Hover.d.js +2 -0
  996. package/libs/d3-chart/lib/cjs/types/Hover.d.js.map +1 -0
  997. package/libs/d3-chart/lib/cjs/types/Line.d.js +2 -0
  998. package/libs/d3-chart/lib/cjs/types/Line.d.js.map +1 -0
  999. package/libs/d3-chart/lib/cjs/types/Plot.d.js +2 -0
  1000. package/libs/d3-chart/lib/cjs/types/Plot.d.js.map +1 -0
  1001. package/libs/d3-chart/lib/cjs/types/Radar.d.js +2 -0
  1002. package/libs/d3-chart/lib/cjs/types/Radar.d.js.map +1 -0
  1003. package/libs/d3-chart/lib/cjs/types/ReferenceLine.d.js +2 -0
  1004. package/libs/d3-chart/lib/cjs/types/ReferenceLine.d.js.map +1 -0
  1005. package/libs/d3-chart/lib/cjs/types/ResponsiveContainer.d.js +2 -0
  1006. package/libs/d3-chart/lib/cjs/types/ResponsiveContainer.d.js.map +1 -0
  1007. package/libs/d3-chart/lib/cjs/types/ScatterPlot.d.js +2 -0
  1008. package/libs/d3-chart/lib/cjs/types/ScatterPlot.d.js.map +1 -0
  1009. package/libs/d3-chart/lib/cjs/types/StackBar.d.js +2 -0
  1010. package/libs/d3-chart/lib/cjs/types/StackBar.d.js.map +1 -0
  1011. package/libs/d3-chart/lib/cjs/types/StackedArea.d.js +2 -0
  1012. package/libs/d3-chart/lib/cjs/types/StackedArea.d.js.map +1 -0
  1013. package/libs/d3-chart/lib/cjs/types/Tooltip.d.js +2 -0
  1014. package/libs/d3-chart/lib/cjs/types/Tooltip.d.js.map +1 -0
  1015. package/libs/d3-chart/lib/cjs/types/Venn.d.js +2 -0
  1016. package/libs/d3-chart/lib/cjs/types/Venn.d.js.map +1 -0
  1017. package/libs/d3-chart/lib/cjs/types/context.d.js +2 -0
  1018. package/libs/d3-chart/lib/cjs/types/context.d.js.map +1 -0
  1019. package/libs/d3-chart/lib/cjs/types/index.d.js +544 -0
  1020. package/libs/d3-chart/lib/cjs/types/index.d.js.map +1 -0
  1021. package/libs/d3-chart/lib/cjs/utils.js +211 -0
  1022. package/libs/d3-chart/lib/cjs/utils.js.map +1 -0
  1023. package/libs/d3-chart/lib/es6/Area.js +229 -0
  1024. package/libs/d3-chart/lib/es6/Area.js.map +1 -0
  1025. package/libs/d3-chart/lib/es6/Axis.js +461 -0
  1026. package/libs/d3-chart/lib/es6/Axis.js.map +1 -0
  1027. package/libs/d3-chart/lib/es6/Bar.js +213 -0
  1028. package/libs/d3-chart/lib/es6/Bar.js.map +1 -0
  1029. package/libs/d3-chart/lib/es6/Bubble.js +229 -0
  1030. package/libs/d3-chart/lib/es6/Bubble.js.map +1 -0
  1031. package/libs/d3-chart/lib/es6/ClipPath.js +85 -0
  1032. package/libs/d3-chart/lib/es6/ClipPath.js.map +1 -0
  1033. package/libs/d3-chart/lib/es6/Donut.js +484 -0
  1034. package/libs/d3-chart/lib/es6/Donut.js.map +1 -0
  1035. package/libs/d3-chart/lib/es6/Dots.js +109 -0
  1036. package/libs/d3-chart/lib/es6/Dots.js.map +1 -0
  1037. package/libs/d3-chart/lib/es6/GroupBar.js +103 -0
  1038. package/libs/d3-chart/lib/es6/GroupBar.js.map +1 -0
  1039. package/libs/d3-chart/lib/es6/HorizontalBar.js +192 -0
  1040. package/libs/d3-chart/lib/es6/HorizontalBar.js.map +1 -0
  1041. package/libs/d3-chart/lib/es6/Hover.js +247 -0
  1042. package/libs/d3-chart/lib/es6/Hover.js.map +1 -0
  1043. package/libs/d3-chart/lib/es6/Line.js +223 -0
  1044. package/libs/d3-chart/lib/es6/Line.js.map +1 -0
  1045. package/libs/d3-chart/lib/es6/Plot.js +148 -0
  1046. package/libs/d3-chart/lib/es6/Plot.js.map +1 -0
  1047. package/libs/d3-chart/lib/es6/Radar.js +809 -0
  1048. package/libs/d3-chart/lib/es6/Radar.js.map +1 -0
  1049. package/libs/d3-chart/lib/es6/RadialTree.js +656 -0
  1050. package/libs/d3-chart/lib/es6/RadialTree.js.map +1 -0
  1051. package/libs/d3-chart/lib/es6/ReferenceLine.js +232 -0
  1052. package/libs/d3-chart/lib/es6/ReferenceLine.js.map +1 -0
  1053. package/libs/d3-chart/lib/es6/ResponsiveContainer.js +108 -0
  1054. package/libs/d3-chart/lib/es6/ResponsiveContainer.js.map +1 -0
  1055. package/libs/d3-chart/lib/es6/ScatterPlot.js +199 -0
  1056. package/libs/d3-chart/lib/es6/ScatterPlot.js.map +1 -0
  1057. package/libs/d3-chart/lib/es6/StackBar.js +188 -0
  1058. package/libs/d3-chart/lib/es6/StackBar.js.map +1 -0
  1059. package/libs/d3-chart/lib/es6/StackedArea.js +86 -0
  1060. package/libs/d3-chart/lib/es6/StackedArea.js.map +1 -0
  1061. package/libs/d3-chart/lib/es6/Tooltip.js +230 -0
  1062. package/libs/d3-chart/lib/es6/Tooltip.js.map +1 -0
  1063. package/libs/d3-chart/lib/es6/Venn.js +234 -0
  1064. package/libs/d3-chart/lib/es6/Venn.js.map +1 -0
  1065. package/libs/d3-chart/lib/es6/a11y/PlotA11yModule.js +126 -0
  1066. package/libs/d3-chart/lib/es6/a11y/PlotA11yModule.js.map +1 -0
  1067. package/libs/d3-chart/lib/es6/a11y/PlotA11yView.js +223 -0
  1068. package/libs/d3-chart/lib/es6/a11y/PlotA11yView.js.map +1 -0
  1069. package/libs/d3-chart/lib/es6/a11y/bezier.js +30 -0
  1070. package/libs/d3-chart/lib/es6/a11y/bezier.js.map +1 -0
  1071. package/libs/d3-chart/lib/es6/a11y/focus.js +38 -0
  1072. package/libs/d3-chart/lib/es6/a11y/focus.js.map +1 -0
  1073. package/libs/d3-chart/lib/es6/a11y/hints.js +118 -0
  1074. package/libs/d3-chart/lib/es6/a11y/hints.js.map +1 -0
  1075. package/libs/d3-chart/lib/es6/a11y/insights.js +714 -0
  1076. package/libs/d3-chart/lib/es6/a11y/insights.js.map +1 -0
  1077. package/libs/d3-chart/lib/es6/a11y/intl.js +15 -0
  1078. package/libs/d3-chart/lib/es6/a11y/intl.js.map +1 -0
  1079. package/libs/d3-chart/lib/es6/a11y/locale.js +41 -0
  1080. package/libs/d3-chart/lib/es6/a11y/locale.js.map +1 -0
  1081. package/libs/d3-chart/lib/es6/a11y/serialize.js +372 -0
  1082. package/libs/d3-chart/lib/es6/a11y/serialize.js.map +1 -0
  1083. package/libs/d3-chart/lib/es6/a11y/summarize.js +12 -0
  1084. package/libs/d3-chart/lib/es6/a11y/summarize.js.map +1 -0
  1085. package/libs/d3-chart/lib/es6/a11y/translations/module/__intergalactic-dynamic-locales.js +31 -0
  1086. package/libs/d3-chart/lib/es6/a11y/translations/module/__intergalactic-dynamic-locales.js.map +1 -0
  1087. package/libs/d3-chart/lib/es6/a11y/translations/module/de.json +5 -0
  1088. package/libs/d3-chart/lib/es6/a11y/translations/module/en.json +5 -0
  1089. package/libs/d3-chart/lib/es6/a11y/translations/module/es.json +5 -0
  1090. package/libs/d3-chart/lib/es6/a11y/translations/module/fr.json +5 -0
  1091. package/libs/d3-chart/lib/es6/a11y/translations/module/it.json +5 -0
  1092. package/libs/d3-chart/lib/es6/a11y/translations/module/ja.json +5 -0
  1093. package/libs/d3-chart/lib/es6/a11y/translations/module/ko.json +5 -0
  1094. package/libs/d3-chart/lib/es6/a11y/translations/module/nl.json +5 -0
  1095. package/libs/d3-chart/lib/es6/a11y/translations/module/pl.json +5 -0
  1096. package/libs/d3-chart/lib/es6/a11y/translations/module/pt.json +5 -0
  1097. package/libs/d3-chart/lib/es6/a11y/translations/module/sv.json +5 -0
  1098. package/libs/d3-chart/lib/es6/a11y/translations/module/tr.json +5 -0
  1099. package/libs/d3-chart/lib/es6/a11y/translations/module/vi.json +5 -0
  1100. package/libs/d3-chart/lib/es6/a11y/translations/module/zh.json +5 -0
  1101. package/libs/d3-chart/lib/es6/a11y/translations/view/__intergalactic-dynamic-locales.js +31 -0
  1102. package/libs/d3-chart/lib/es6/a11y/translations/view/__intergalactic-dynamic-locales.js.map +1 -0
  1103. package/libs/d3-chart/lib/es6/a11y/translations/view/de.json +43 -0
  1104. package/libs/d3-chart/lib/es6/a11y/translations/view/en.csv +42 -0
  1105. package/libs/d3-chart/lib/es6/a11y/translations/view/en.json +43 -0
  1106. package/libs/d3-chart/lib/es6/a11y/translations/view/es.json +43 -0
  1107. package/libs/d3-chart/lib/es6/a11y/translations/view/fr.json +43 -0
  1108. package/libs/d3-chart/lib/es6/a11y/translations/view/it.json +43 -0
  1109. package/libs/d3-chart/lib/es6/a11y/translations/view/ja.json +43 -0
  1110. package/libs/d3-chart/lib/es6/a11y/translations/view/ko.json +43 -0
  1111. package/libs/d3-chart/lib/es6/a11y/translations/view/nl.json +43 -0
  1112. package/libs/d3-chart/lib/es6/a11y/translations/view/pl.json +43 -0
  1113. package/libs/d3-chart/lib/es6/a11y/translations/view/pt.json +43 -0
  1114. package/libs/d3-chart/lib/es6/a11y/translations/view/sv.json +43 -0
  1115. package/libs/d3-chart/lib/es6/a11y/translations/view/tr.json +43 -0
  1116. package/libs/d3-chart/lib/es6/a11y/translations/view/vi.json +43 -0
  1117. package/libs/d3-chart/lib/es6/a11y/translations/view/zh.json +43 -0
  1118. package/libs/d3-chart/lib/es6/color.js +127 -0
  1119. package/libs/d3-chart/lib/es6/color.js.map +1 -0
  1120. package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.js +412 -0
  1121. package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.js.map +1 -0
  1122. package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.type.js +2 -0
  1123. package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.type.js.map +1 -0
  1124. package/libs/d3-chart/lib/es6/component/Chart/AreaChart.js +152 -0
  1125. package/libs/d3-chart/lib/es6/component/Chart/AreaChart.js.map +1 -0
  1126. package/libs/d3-chart/lib/es6/component/Chart/AreaChart.type.js +2 -0
  1127. package/libs/d3-chart/lib/es6/component/Chart/AreaChart.type.js.map +1 -0
  1128. package/libs/d3-chart/lib/es6/component/Chart/BarChart.js +245 -0
  1129. package/libs/d3-chart/lib/es6/component/Chart/BarChart.js.map +1 -0
  1130. package/libs/d3-chart/lib/es6/component/Chart/BarChart.type.js +2 -0
  1131. package/libs/d3-chart/lib/es6/component/Chart/BarChart.type.js.map +1 -0
  1132. package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.js +137 -0
  1133. package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.js.map +1 -0
  1134. package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.type.js +2 -0
  1135. package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.type.js.map +1 -0
  1136. package/libs/d3-chart/lib/es6/component/Chart/DonutChart.js +109 -0
  1137. package/libs/d3-chart/lib/es6/component/Chart/DonutChart.js.map +1 -0
  1138. package/libs/d3-chart/lib/es6/component/Chart/DonutChart.type.js +2 -0
  1139. package/libs/d3-chart/lib/es6/component/Chart/DonutChart.type.js.map +1 -0
  1140. package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.js +181 -0
  1141. package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.js.map +1 -0
  1142. package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.type.js +2 -0
  1143. package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.type.js.map +1 -0
  1144. package/libs/d3-chart/lib/es6/component/Chart/LineChart.js +139 -0
  1145. package/libs/d3-chart/lib/es6/component/Chart/LineChart.js.map +1 -0
  1146. package/libs/d3-chart/lib/es6/component/Chart/LineChart.type.js +2 -0
  1147. package/libs/d3-chart/lib/es6/component/Chart/LineChart.type.js.map +1 -0
  1148. package/libs/d3-chart/lib/es6/component/Chart/RadarChart.js +113 -0
  1149. package/libs/d3-chart/lib/es6/component/Chart/RadarChart.js.map +1 -0
  1150. package/libs/d3-chart/lib/es6/component/Chart/RadarChart.type.js +2 -0
  1151. package/libs/d3-chart/lib/es6/component/Chart/RadarChart.type.js.map +1 -0
  1152. package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.js +151 -0
  1153. package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.js.map +1 -0
  1154. package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.type.js +2 -0
  1155. package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.type.js.map +1 -0
  1156. package/libs/d3-chart/lib/es6/component/Chart/VennChart.js +136 -0
  1157. package/libs/d3-chart/lib/es6/component/Chart/VennChart.js.map +1 -0
  1158. package/libs/d3-chart/lib/es6/component/Chart/VennChart.type.js +2 -0
  1159. package/libs/d3-chart/lib/es6/component/Chart/VennChart.type.js.map +1 -0
  1160. package/libs/d3-chart/lib/es6/component/Chart/index.js +21 -0
  1161. package/libs/d3-chart/lib/es6/component/Chart/index.js.map +1 -0
  1162. package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js +100 -0
  1163. package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js.map +1 -0
  1164. package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js +2 -0
  1165. package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js.map +1 -0
  1166. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +86 -0
  1167. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js.map +1 -0
  1168. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.type.js +2 -0
  1169. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.type.js.map +1 -0
  1170. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +231 -0
  1171. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js.map +1 -0
  1172. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js +6 -0
  1173. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -0
  1174. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +93 -0
  1175. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js.map +1 -0
  1176. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.type.js +2 -0
  1177. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.type.js.map +1 -0
  1178. package/libs/d3-chart/lib/es6/component/ChartLegend/index.js +5 -0
  1179. package/libs/d3-chart/lib/es6/component/ChartLegend/index.js.map +1 -0
  1180. package/libs/d3-chart/lib/es6/createElement.d.js +2 -0
  1181. package/libs/d3-chart/lib/es6/createElement.d.js.map +1 -0
  1182. package/libs/d3-chart/lib/es6/createElement.js +119 -0
  1183. package/libs/d3-chart/lib/es6/createElement.js.map +1 -0
  1184. package/libs/d3-chart/lib/es6/index.js +25 -0
  1185. package/libs/d3-chart/lib/es6/index.js.map +1 -0
  1186. package/libs/d3-chart/lib/es6/style/var.css +125 -0
  1187. package/libs/d3-chart/lib/es6/translations/__intergalactic-dynamic-locales.js +29 -0
  1188. package/libs/d3-chart/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1189. package/libs/d3-chart/lib/es6/translations/de.json +3 -0
  1190. package/libs/d3-chart/lib/es6/translations/en.json +3 -0
  1191. package/libs/d3-chart/lib/es6/translations/es.json +3 -0
  1192. package/libs/d3-chart/lib/es6/translations/fr.json +3 -0
  1193. package/libs/d3-chart/lib/es6/translations/it.json +3 -0
  1194. package/libs/d3-chart/lib/es6/translations/ja.json +3 -0
  1195. package/libs/d3-chart/lib/es6/translations/ko.json +3 -0
  1196. package/libs/d3-chart/lib/es6/translations/nl.json +3 -0
  1197. package/libs/d3-chart/lib/es6/translations/pl.json +3 -0
  1198. package/libs/d3-chart/lib/es6/translations/pt.json +3 -0
  1199. package/libs/d3-chart/lib/es6/translations/sv.json +3 -0
  1200. package/libs/d3-chart/lib/es6/translations/tr.json +3 -0
  1201. package/libs/d3-chart/lib/es6/translations/vi.json +3 -0
  1202. package/libs/d3-chart/lib/es6/translations/zh.json +3 -0
  1203. package/libs/d3-chart/lib/es6/types/Area.d.js +2 -0
  1204. package/libs/d3-chart/lib/es6/types/Area.d.js.map +1 -0
  1205. package/libs/d3-chart/lib/es6/types/Axis.d.js +2 -0
  1206. package/libs/d3-chart/lib/es6/types/Axis.d.js.map +1 -0
  1207. package/libs/d3-chart/lib/es6/types/Bar.d.js +2 -0
  1208. package/libs/d3-chart/lib/es6/types/Bar.d.js.map +1 -0
  1209. package/libs/d3-chart/lib/es6/types/Bubble.d.js +2 -0
  1210. package/libs/d3-chart/lib/es6/types/Bubble.d.js.map +1 -0
  1211. package/libs/d3-chart/lib/es6/types/ClipPath.d.js +2 -0
  1212. package/libs/d3-chart/lib/es6/types/ClipPath.d.js.map +1 -0
  1213. package/libs/d3-chart/lib/es6/types/Donut.d.js +2 -0
  1214. package/libs/d3-chart/lib/es6/types/Donut.d.js.map +1 -0
  1215. package/libs/d3-chart/lib/es6/types/GroupBar.d.js +2 -0
  1216. package/libs/d3-chart/lib/es6/types/GroupBar.d.js.map +1 -0
  1217. package/libs/d3-chart/lib/es6/types/HorizontalBar.d.js +2 -0
  1218. package/libs/d3-chart/lib/es6/types/HorizontalBar.d.js.map +1 -0
  1219. package/libs/d3-chart/lib/es6/types/Hover.d.js +2 -0
  1220. package/libs/d3-chart/lib/es6/types/Hover.d.js.map +1 -0
  1221. package/libs/d3-chart/lib/es6/types/Line.d.js +2 -0
  1222. package/libs/d3-chart/lib/es6/types/Line.d.js.map +1 -0
  1223. package/libs/d3-chart/lib/es6/types/Plot.d.js +2 -0
  1224. package/libs/d3-chart/lib/es6/types/Plot.d.js.map +1 -0
  1225. package/libs/d3-chart/lib/es6/types/Radar.d.js +2 -0
  1226. package/libs/d3-chart/lib/es6/types/Radar.d.js.map +1 -0
  1227. package/libs/d3-chart/lib/es6/types/ReferenceLine.d.js +2 -0
  1228. package/libs/d3-chart/lib/es6/types/ReferenceLine.d.js.map +1 -0
  1229. package/libs/d3-chart/lib/es6/types/ResponsiveContainer.d.js +2 -0
  1230. package/libs/d3-chart/lib/es6/types/ResponsiveContainer.d.js.map +1 -0
  1231. package/libs/d3-chart/lib/es6/types/ScatterPlot.d.js +2 -0
  1232. package/libs/d3-chart/lib/es6/types/ScatterPlot.d.js.map +1 -0
  1233. package/libs/d3-chart/lib/es6/types/StackBar.d.js +2 -0
  1234. package/libs/d3-chart/lib/es6/types/StackBar.d.js.map +1 -0
  1235. package/libs/d3-chart/lib/es6/types/StackedArea.d.js +2 -0
  1236. package/libs/d3-chart/lib/es6/types/StackedArea.d.js.map +1 -0
  1237. package/libs/d3-chart/lib/es6/types/Tooltip.d.js +2 -0
  1238. package/libs/d3-chart/lib/es6/types/Tooltip.d.js.map +1 -0
  1239. package/libs/d3-chart/lib/es6/types/Venn.d.js +2 -0
  1240. package/libs/d3-chart/lib/es6/types/Venn.d.js.map +1 -0
  1241. package/libs/d3-chart/lib/es6/types/context.d.js +2 -0
  1242. package/libs/d3-chart/lib/es6/types/context.d.js.map +1 -0
  1243. package/libs/d3-chart/lib/es6/types/index.d.js +75 -0
  1244. package/libs/d3-chart/lib/es6/types/index.d.js.map +1 -0
  1245. package/libs/d3-chart/lib/es6/utils.js +189 -0
  1246. package/libs/d3-chart/lib/es6/utils.js.map +1 -0
  1247. package/libs/d3-chart/lib/types/Area.d.ts +61 -0
  1248. package/libs/d3-chart/lib/types/Axis.d.ts +90 -0
  1249. package/libs/d3-chart/lib/types/Bar.d.ts +80 -0
  1250. package/libs/d3-chart/lib/types/Bubble.d.ts +53 -0
  1251. package/libs/d3-chart/lib/types/ClipPath.d.ts +24 -0
  1252. package/libs/d3-chart/lib/types/Donut.d.ts +67 -0
  1253. package/libs/d3-chart/lib/types/GroupBar.d.ts +29 -0
  1254. package/libs/d3-chart/lib/types/HorizontalBar.d.ts +35 -0
  1255. package/libs/d3-chart/lib/types/Hover.d.ts +45 -0
  1256. package/libs/d3-chart/lib/types/Line.d.ts +83 -0
  1257. package/libs/d3-chart/lib/types/Plot.d.ts +118 -0
  1258. package/libs/d3-chart/lib/types/Radar.d.ts +145 -0
  1259. package/libs/d3-chart/lib/types/RadialTree.d.ts +240 -0
  1260. package/libs/d3-chart/lib/types/ReferenceLine.d.ts +45 -0
  1261. package/libs/d3-chart/lib/types/ResponsiveContainer.d.ts +29 -0
  1262. package/libs/d3-chart/lib/types/ScatterPlot.d.ts +46 -0
  1263. package/libs/d3-chart/lib/types/StackBar.d.ts +37 -0
  1264. package/libs/d3-chart/lib/types/StackedArea.d.ts +31 -0
  1265. package/libs/d3-chart/lib/types/Tooltip.d.ts +66 -0
  1266. package/libs/d3-chart/lib/types/Venn.d.ts +68 -0
  1267. package/libs/d3-chart/lib/types/a11y/PlotA11yModule.d.ts +12 -0
  1268. package/libs/d3-chart/lib/types/a11y/PlotA11yView.d.ts +3 -0
  1269. package/libs/d3-chart/lib/types/a11y/bezier.d.ts +8 -0
  1270. package/libs/d3-chart/lib/types/a11y/focus.d.ts +5 -0
  1271. package/libs/d3-chart/lib/types/a11y/hints.d.ts +79 -0
  1272. package/libs/d3-chart/lib/types/a11y/insights.d.ts +55 -0
  1273. package/libs/d3-chart/lib/types/a11y/intl.d.ts +8 -0
  1274. package/libs/d3-chart/lib/types/a11y/locale.d.ts +3 -0
  1275. package/libs/d3-chart/lib/types/a11y/serialize.d.ts +17 -0
  1276. package/libs/d3-chart/lib/types/a11y/summarize.d.ts +6 -0
  1277. package/libs/d3-chart/lib/types/a11y/translations/module/__intergalactic-dynamic-locales.d.ts +72 -0
  1278. package/libs/d3-chart/lib/types/a11y/translations/view/__intergalactic-dynamic-locales.d.ts +604 -0
  1279. package/libs/d3-chart/lib/types/component/Chart/AbstractChart.d.ts +50 -0
  1280. package/libs/d3-chart/lib/types/component/Chart/AbstractChart.type.d.ts +161 -0
  1281. package/libs/d3-chart/lib/types/component/Chart/AreaChart.d.ts +2 -0
  1282. package/libs/d3-chart/lib/types/component/Chart/AreaChart.type.d.ts +16 -0
  1283. package/libs/d3-chart/lib/types/component/Chart/BarChart.d.ts +2 -0
  1284. package/libs/d3-chart/lib/types/component/Chart/BarChart.type.d.ts +19 -0
  1285. package/libs/d3-chart/lib/types/component/Chart/BubbleChart.d.ts +2 -0
  1286. package/libs/d3-chart/lib/types/component/Chart/BubbleChart.type.d.ts +17 -0
  1287. package/libs/d3-chart/lib/types/component/Chart/DonutChart.d.ts +2 -0
  1288. package/libs/d3-chart/lib/types/component/Chart/DonutChart.type.d.ts +15 -0
  1289. package/libs/d3-chart/lib/types/component/Chart/HistogramChart.d.ts +2 -0
  1290. package/libs/d3-chart/lib/types/component/Chart/HistogramChart.type.d.ts +11 -0
  1291. package/libs/d3-chart/lib/types/component/Chart/LineChart.d.ts +2 -0
  1292. package/libs/d3-chart/lib/types/component/Chart/LineChart.type.d.ts +24 -0
  1293. package/libs/d3-chart/lib/types/component/Chart/RadarChart.d.ts +2 -0
  1294. package/libs/d3-chart/lib/types/component/Chart/RadarChart.type.d.ts +14 -0
  1295. package/libs/d3-chart/lib/types/component/Chart/ScatterPlotChart.d.ts +2 -0
  1296. package/libs/d3-chart/lib/types/component/Chart/ScatterPlotChart.type.d.ts +13 -0
  1297. package/libs/d3-chart/lib/types/component/Chart/VennChart.d.ts +2 -0
  1298. package/libs/d3-chart/lib/types/component/Chart/VennChart.type.d.ts +11 -0
  1299. package/libs/d3-chart/lib/types/component/Chart/index.d.ts +12 -0
  1300. package/libs/d3-chart/lib/types/component/ChartLegend/BaseLegend.d.ts +14 -0
  1301. package/libs/d3-chart/lib/types/component/ChartLegend/BaseLegend.type.d.ts +27 -0
  1302. package/libs/d3-chart/lib/types/component/ChartLegend/LegendFlex/LegendFlex.d.ts +2 -0
  1303. package/libs/d3-chart/lib/types/component/ChartLegend/LegendFlex/LegendFlex.type.d.ts +38 -0
  1304. package/libs/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.d.ts +2 -0
  1305. package/libs/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.type.d.ts +67 -0
  1306. package/libs/d3-chart/lib/types/component/ChartLegend/LegendTable/LegendTable.d.ts +2 -0
  1307. package/libs/d3-chart/lib/types/component/ChartLegend/LegendTable/LegendTable.type.d.ts +21 -0
  1308. package/libs/d3-chart/lib/types/component/ChartLegend/index.d.ts +4 -0
  1309. package/libs/d3-chart/lib/types/context.d.ts +18 -0
  1310. package/libs/d3-chart/lib/types/createElement.d.ts +2 -0
  1311. package/libs/d3-chart/lib/types/index.d.ts +94 -0
  1312. package/libs/d3-chart/lib/types/translations/__intergalactic-dynamic-locales.d.ts +41 -0
  1313. package/libs/d3-chart/lib/types/utils.d.ts +32 -0
  1314. package/libs/data-table/lib/cjs/Body.js +386 -0
  1315. package/libs/data-table/lib/cjs/Body.js.map +1 -0
  1316. package/libs/data-table/lib/cjs/DataTable.js +429 -0
  1317. package/libs/data-table/lib/cjs/DataTable.js.map +1 -0
  1318. package/libs/data-table/lib/cjs/Head.js +189 -0
  1319. package/libs/data-table/lib/cjs/Head.js.map +1 -0
  1320. package/libs/data-table/lib/cjs/index.js +26 -0
  1321. package/libs/data-table/lib/cjs/index.js.map +1 -0
  1322. package/libs/data-table/lib/cjs/types.js +4 -0
  1323. package/libs/data-table/lib/cjs/types.js.map +1 -0
  1324. package/libs/data-table/lib/cjs/utils.js +57 -0
  1325. package/libs/data-table/lib/cjs/utils.js.map +1 -0
  1326. package/libs/data-table/lib/es6/Body.js +379 -0
  1327. package/libs/data-table/lib/es6/Body.js.map +1 -0
  1328. package/libs/data-table/lib/es6/DataTable.js +422 -0
  1329. package/libs/data-table/lib/es6/DataTable.js.map +1 -0
  1330. package/libs/data-table/lib/es6/Head.js +183 -0
  1331. package/libs/data-table/lib/es6/Head.js.map +1 -0
  1332. package/libs/data-table/lib/es6/index.js +3 -0
  1333. package/libs/data-table/lib/es6/index.js.map +1 -0
  1334. package/libs/data-table/lib/es6/types.js +2 -0
  1335. package/libs/data-table/lib/es6/types.js.map +1 -0
  1336. package/libs/data-table/lib/es6/utils.js +48 -0
  1337. package/libs/data-table/lib/es6/utils.js.map +1 -0
  1338. package/libs/data-table/lib/types/Body.d.ts +46 -0
  1339. package/libs/data-table/lib/types/DataTable.d.ts +157 -0
  1340. package/libs/data-table/lib/types/Head.d.ts +25 -0
  1341. package/libs/data-table/lib/types/index.d.ts +2 -0
  1342. package/libs/data-table/lib/types/types.d.ts +71 -0
  1343. package/libs/data-table/lib/types/utils.d.ts +4 -0
  1344. package/libs/date-picker/lib/cjs/DatePicker.js +183 -0
  1345. package/libs/date-picker/lib/cjs/DatePicker.js.map +1 -0
  1346. package/libs/date-picker/lib/cjs/DateRangeComparator.js +188 -0
  1347. package/libs/date-picker/lib/cjs/DateRangeComparator.js.map +1 -0
  1348. package/libs/date-picker/lib/cjs/DateRangePicker.js +133 -0
  1349. package/libs/date-picker/lib/cjs/DateRangePicker.js.map +1 -0
  1350. package/libs/date-picker/lib/cjs/MonthDateRangeComparator.js +223 -0
  1351. package/libs/date-picker/lib/cjs/MonthDateRangeComparator.js.map +1 -0
  1352. package/libs/date-picker/lib/cjs/MonthPicker.js +122 -0
  1353. package/libs/date-picker/lib/cjs/MonthPicker.js.map +1 -0
  1354. package/libs/date-picker/lib/cjs/MonthRangePicker.js +147 -0
  1355. package/libs/date-picker/lib/cjs/MonthRangePicker.js.map +1 -0
  1356. package/libs/date-picker/lib/cjs/components/ButtonTrigger.js +32 -0
  1357. package/libs/date-picker/lib/cjs/components/ButtonTrigger.js.map +1 -0
  1358. package/libs/date-picker/lib/cjs/components/Calendar.js +413 -0
  1359. package/libs/date-picker/lib/cjs/components/Calendar.js.map +1 -0
  1360. package/libs/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js +584 -0
  1361. package/libs/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js.map +1 -0
  1362. package/libs/date-picker/lib/cjs/components/InputTrigger.js +665 -0
  1363. package/libs/date-picker/lib/cjs/components/InputTrigger.js.map +1 -0
  1364. package/libs/date-picker/lib/cjs/components/PickerAbstract.js +250 -0
  1365. package/libs/date-picker/lib/cjs/components/PickerAbstract.js.map +1 -0
  1366. package/libs/date-picker/lib/cjs/components/RangePickerAbstract.js +406 -0
  1367. package/libs/date-picker/lib/cjs/components/RangePickerAbstract.js.map +1 -0
  1368. package/libs/date-picker/lib/cjs/components/index.js +175 -0
  1369. package/libs/date-picker/lib/cjs/components/index.js.map +1 -0
  1370. package/libs/date-picker/lib/cjs/index.d.js +2 -0
  1371. package/libs/date-picker/lib/cjs/index.d.js.map +1 -0
  1372. package/libs/date-picker/lib/cjs/index.js +53 -0
  1373. package/libs/date-picker/lib/cjs/index.js.map +1 -0
  1374. package/libs/date-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +41 -0
  1375. package/libs/date-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1376. package/libs/date-picker/lib/cjs/translations/de.json +16 -0
  1377. package/libs/date-picker/lib/cjs/translations/en.json +17 -0
  1378. package/libs/date-picker/lib/cjs/translations/es.json +16 -0
  1379. package/libs/date-picker/lib/cjs/translations/fr.json +16 -0
  1380. package/libs/date-picker/lib/cjs/translations/it.json +16 -0
  1381. package/libs/date-picker/lib/cjs/translations/ja.json +16 -0
  1382. package/libs/date-picker/lib/cjs/translations/ko.json +16 -0
  1383. package/libs/date-picker/lib/cjs/translations/nl.json +16 -0
  1384. package/libs/date-picker/lib/cjs/translations/pl.json +16 -0
  1385. package/libs/date-picker/lib/cjs/translations/pt.json +16 -0
  1386. package/libs/date-picker/lib/cjs/translations/ru.json +13 -0
  1387. package/libs/date-picker/lib/cjs/translations/sv.json +16 -0
  1388. package/libs/date-picker/lib/cjs/translations/tr.json +16 -0
  1389. package/libs/date-picker/lib/cjs/translations/vi.json +16 -0
  1390. package/libs/date-picker/lib/cjs/translations/zh.json +16 -0
  1391. package/libs/date-picker/lib/cjs/utils/cronTabScheduler.js +98 -0
  1392. package/libs/date-picker/lib/cjs/utils/cronTabScheduler.js.map +1 -0
  1393. package/libs/date-picker/lib/cjs/utils/formatDate.js +22 -0
  1394. package/libs/date-picker/lib/cjs/utils/formatDate.js.map +1 -0
  1395. package/libs/date-picker/lib/cjs/utils/includesDate.js +26 -0
  1396. package/libs/date-picker/lib/cjs/utils/includesDate.js.map +1 -0
  1397. package/libs/date-picker/lib/cjs/utils/shortDateRangeFormat.js +69 -0
  1398. package/libs/date-picker/lib/cjs/utils/shortDateRangeFormat.js.map +1 -0
  1399. package/libs/date-picker/lib/es6/DatePicker.js +174 -0
  1400. package/libs/date-picker/lib/es6/DatePicker.js.map +1 -0
  1401. package/libs/date-picker/lib/es6/DateRangeComparator.js +180 -0
  1402. package/libs/date-picker/lib/es6/DateRangeComparator.js.map +1 -0
  1403. package/libs/date-picker/lib/es6/DateRangePicker.js +124 -0
  1404. package/libs/date-picker/lib/es6/DateRangePicker.js.map +1 -0
  1405. package/libs/date-picker/lib/es6/MonthDateRangeComparator.js +215 -0
  1406. package/libs/date-picker/lib/es6/MonthDateRangeComparator.js.map +1 -0
  1407. package/libs/date-picker/lib/es6/MonthPicker.js +114 -0
  1408. package/libs/date-picker/lib/es6/MonthPicker.js.map +1 -0
  1409. package/libs/date-picker/lib/es6/MonthRangePicker.js +138 -0
  1410. package/libs/date-picker/lib/es6/MonthRangePicker.js.map +1 -0
  1411. package/libs/date-picker/lib/es6/components/ButtonTrigger.js +24 -0
  1412. package/libs/date-picker/lib/es6/components/ButtonTrigger.js.map +1 -0
  1413. package/libs/date-picker/lib/es6/components/Calendar.js +407 -0
  1414. package/libs/date-picker/lib/es6/components/Calendar.js.map +1 -0
  1415. package/libs/date-picker/lib/es6/components/DateRangeComparatorAbstract.js +574 -0
  1416. package/libs/date-picker/lib/es6/components/DateRangeComparatorAbstract.js.map +1 -0
  1417. package/libs/date-picker/lib/es6/components/InputTrigger.js +664 -0
  1418. package/libs/date-picker/lib/es6/components/InputTrigger.js.map +1 -0
  1419. package/libs/date-picker/lib/es6/components/PickerAbstract.js +244 -0
  1420. package/libs/date-picker/lib/es6/components/PickerAbstract.js.map +1 -0
  1421. package/libs/date-picker/lib/es6/components/RangePickerAbstract.js +401 -0
  1422. package/libs/date-picker/lib/es6/components/RangePickerAbstract.js.map +1 -0
  1423. package/libs/date-picker/lib/es6/components/index.js +168 -0
  1424. package/libs/date-picker/lib/es6/components/index.js.map +1 -0
  1425. package/libs/date-picker/lib/es6/index.d.js +2 -0
  1426. package/libs/date-picker/lib/es6/index.d.js.map +1 -0
  1427. package/libs/date-picker/lib/es6/index.js +6 -0
  1428. package/libs/date-picker/lib/es6/index.js.map +1 -0
  1429. package/libs/date-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +33 -0
  1430. package/libs/date-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1431. package/libs/date-picker/lib/es6/translations/de.json +16 -0
  1432. package/libs/date-picker/lib/es6/translations/en.json +17 -0
  1433. package/libs/date-picker/lib/es6/translations/es.json +16 -0
  1434. package/libs/date-picker/lib/es6/translations/fr.json +16 -0
  1435. package/libs/date-picker/lib/es6/translations/it.json +16 -0
  1436. package/libs/date-picker/lib/es6/translations/ja.json +16 -0
  1437. package/libs/date-picker/lib/es6/translations/ko.json +16 -0
  1438. package/libs/date-picker/lib/es6/translations/nl.json +16 -0
  1439. package/libs/date-picker/lib/es6/translations/pl.json +16 -0
  1440. package/libs/date-picker/lib/es6/translations/pt.json +16 -0
  1441. package/libs/date-picker/lib/es6/translations/ru.json +13 -0
  1442. package/libs/date-picker/lib/es6/translations/sv.json +16 -0
  1443. package/libs/date-picker/lib/es6/translations/tr.json +16 -0
  1444. package/libs/date-picker/lib/es6/translations/vi.json +16 -0
  1445. package/libs/date-picker/lib/es6/translations/zh.json +16 -0
  1446. package/libs/date-picker/lib/es6/utils/cronTabScheduler.js +90 -0
  1447. package/libs/date-picker/lib/es6/utils/cronTabScheduler.js.map +1 -0
  1448. package/libs/date-picker/lib/es6/utils/formatDate.js +14 -0
  1449. package/libs/date-picker/lib/es6/utils/formatDate.js.map +1 -0
  1450. package/libs/date-picker/lib/es6/utils/includesDate.js +18 -0
  1451. package/libs/date-picker/lib/es6/utils/includesDate.js.map +1 -0
  1452. package/libs/date-picker/lib/es6/utils/shortDateRangeFormat.js +62 -0
  1453. package/libs/date-picker/lib/es6/utils/shortDateRangeFormat.js.map +1 -0
  1454. package/libs/date-picker/lib/types/index.d.ts +470 -0
  1455. package/libs/divider/lib/cjs/Divider.js +59 -0
  1456. package/libs/divider/lib/cjs/Divider.js.map +1 -0
  1457. package/libs/divider/lib/cjs/index.d.js +2 -0
  1458. package/libs/divider/lib/cjs/index.d.js.map +1 -0
  1459. package/libs/divider/lib/cjs/index.js +14 -0
  1460. package/libs/divider/lib/cjs/index.js.map +1 -0
  1461. package/libs/divider/lib/es6/Divider.js +52 -0
  1462. package/libs/divider/lib/es6/Divider.js.map +1 -0
  1463. package/libs/divider/lib/es6/index.d.js +2 -0
  1464. package/libs/divider/lib/es6/index.d.js.map +1 -0
  1465. package/libs/divider/lib/es6/index.js +2 -0
  1466. package/libs/divider/lib/es6/index.js.map +1 -0
  1467. package/libs/divider/lib/types/index.d.ts +25 -0
  1468. package/libs/dot/lib/cjs/Dot.js +107 -0
  1469. package/libs/dot/lib/cjs/Dot.js.map +1 -0
  1470. package/libs/dot/lib/cjs/index.d.js +2 -0
  1471. package/libs/dot/lib/cjs/index.d.js.map +1 -0
  1472. package/libs/dot/lib/cjs/index.js +14 -0
  1473. package/libs/dot/lib/cjs/index.js.map +1 -0
  1474. package/libs/dot/lib/es6/Dot.js +100 -0
  1475. package/libs/dot/lib/es6/Dot.js.map +1 -0
  1476. package/libs/dot/lib/es6/index.d.js +2 -0
  1477. package/libs/dot/lib/es6/index.d.js.map +1 -0
  1478. package/libs/dot/lib/es6/index.js +2 -0
  1479. package/libs/dot/lib/es6/index.js.map +1 -0
  1480. package/libs/dot/lib/types/index.d.ts +23 -0
  1481. package/libs/drag-and-drop/lib/cjs/DragAndDrop.js +410 -0
  1482. package/libs/drag-and-drop/lib/cjs/DragAndDrop.js.map +1 -0
  1483. package/libs/drag-and-drop/lib/cjs/index.d.js +2 -0
  1484. package/libs/drag-and-drop/lib/cjs/index.d.js.map +1 -0
  1485. package/libs/drag-and-drop/lib/cjs/index.js +14 -0
  1486. package/libs/drag-and-drop/lib/cjs/index.js.map +1 -0
  1487. package/libs/drag-and-drop/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1488. package/libs/drag-and-drop/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1489. package/libs/drag-and-drop/lib/cjs/translations/de.json +6 -0
  1490. package/libs/drag-and-drop/lib/cjs/translations/en.json +6 -0
  1491. package/libs/drag-and-drop/lib/cjs/translations/es.json +6 -0
  1492. package/libs/drag-and-drop/lib/cjs/translations/fr.json +6 -0
  1493. package/libs/drag-and-drop/lib/cjs/translations/it.json +6 -0
  1494. package/libs/drag-and-drop/lib/cjs/translations/ja.json +6 -0
  1495. package/libs/drag-and-drop/lib/cjs/translations/ko.json +6 -0
  1496. package/libs/drag-and-drop/lib/cjs/translations/nl.json +6 -0
  1497. package/libs/drag-and-drop/lib/cjs/translations/pl.json +6 -0
  1498. package/libs/drag-and-drop/lib/cjs/translations/pt.json +6 -0
  1499. package/libs/drag-and-drop/lib/cjs/translations/sv.json +6 -0
  1500. package/libs/drag-and-drop/lib/cjs/translations/tr.json +6 -0
  1501. package/libs/drag-and-drop/lib/cjs/translations/vi.json +6 -0
  1502. package/libs/drag-and-drop/lib/cjs/translations/zh.json +6 -0
  1503. package/libs/drag-and-drop/lib/es6/DragAndDrop.js +405 -0
  1504. package/libs/drag-and-drop/lib/es6/DragAndDrop.js.map +1 -0
  1505. package/libs/drag-and-drop/lib/es6/index.d.js +2 -0
  1506. package/libs/drag-and-drop/lib/es6/index.d.js.map +1 -0
  1507. package/libs/drag-and-drop/lib/es6/index.js +2 -0
  1508. package/libs/drag-and-drop/lib/es6/index.js.map +1 -0
  1509. package/libs/drag-and-drop/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1510. package/libs/drag-and-drop/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1511. package/libs/drag-and-drop/lib/es6/translations/de.json +6 -0
  1512. package/libs/drag-and-drop/lib/es6/translations/en.json +6 -0
  1513. package/libs/drag-and-drop/lib/es6/translations/es.json +6 -0
  1514. package/libs/drag-and-drop/lib/es6/translations/fr.json +6 -0
  1515. package/libs/drag-and-drop/lib/es6/translations/it.json +6 -0
  1516. package/libs/drag-and-drop/lib/es6/translations/ja.json +6 -0
  1517. package/libs/drag-and-drop/lib/es6/translations/ko.json +6 -0
  1518. package/libs/drag-and-drop/lib/es6/translations/nl.json +6 -0
  1519. package/libs/drag-and-drop/lib/es6/translations/pl.json +6 -0
  1520. package/libs/drag-and-drop/lib/es6/translations/pt.json +6 -0
  1521. package/libs/drag-and-drop/lib/es6/translations/sv.json +6 -0
  1522. package/libs/drag-and-drop/lib/es6/translations/tr.json +6 -0
  1523. package/libs/drag-and-drop/lib/es6/translations/vi.json +6 -0
  1524. package/libs/drag-and-drop/lib/es6/translations/zh.json +6 -0
  1525. package/libs/drag-and-drop/lib/types/index.d.ts +62 -0
  1526. package/libs/dropdown/lib/cjs/Dropdown.js +177 -0
  1527. package/libs/dropdown/lib/cjs/Dropdown.js.map +1 -0
  1528. package/libs/dropdown/lib/cjs/index.d.js +2 -0
  1529. package/libs/dropdown/lib/cjs/index.d.js.map +1 -0
  1530. package/libs/dropdown/lib/cjs/index.js +14 -0
  1531. package/libs/dropdown/lib/cjs/index.js.map +1 -0
  1532. package/libs/dropdown/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1533. package/libs/dropdown/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1534. package/libs/dropdown/lib/cjs/translations/de.json +3 -0
  1535. package/libs/dropdown/lib/cjs/translations/en.json +3 -0
  1536. package/libs/dropdown/lib/cjs/translations/es.json +3 -0
  1537. package/libs/dropdown/lib/cjs/translations/fr.json +3 -0
  1538. package/libs/dropdown/lib/cjs/translations/it.json +3 -0
  1539. package/libs/dropdown/lib/cjs/translations/ja.json +3 -0
  1540. package/libs/dropdown/lib/cjs/translations/ko.json +3 -0
  1541. package/libs/dropdown/lib/cjs/translations/nl.json +3 -0
  1542. package/libs/dropdown/lib/cjs/translations/pl.json +3 -0
  1543. package/libs/dropdown/lib/cjs/translations/pt.json +3 -0
  1544. package/libs/dropdown/lib/cjs/translations/sv.json +3 -0
  1545. package/libs/dropdown/lib/cjs/translations/tr.json +3 -0
  1546. package/libs/dropdown/lib/cjs/translations/vi.json +3 -0
  1547. package/libs/dropdown/lib/cjs/translations/zh.json +3 -0
  1548. package/libs/dropdown/lib/es6/Dropdown.js +170 -0
  1549. package/libs/dropdown/lib/es6/Dropdown.js.map +1 -0
  1550. package/libs/dropdown/lib/es6/index.d.js +2 -0
  1551. package/libs/dropdown/lib/es6/index.d.js.map +1 -0
  1552. package/libs/dropdown/lib/es6/index.js +2 -0
  1553. package/libs/dropdown/lib/es6/index.js.map +1 -0
  1554. package/libs/dropdown/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1555. package/libs/dropdown/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1556. package/libs/dropdown/lib/es6/translations/de.json +3 -0
  1557. package/libs/dropdown/lib/es6/translations/en.json +3 -0
  1558. package/libs/dropdown/lib/es6/translations/es.json +3 -0
  1559. package/libs/dropdown/lib/es6/translations/fr.json +3 -0
  1560. package/libs/dropdown/lib/es6/translations/it.json +3 -0
  1561. package/libs/dropdown/lib/es6/translations/ja.json +3 -0
  1562. package/libs/dropdown/lib/es6/translations/ko.json +3 -0
  1563. package/libs/dropdown/lib/es6/translations/nl.json +3 -0
  1564. package/libs/dropdown/lib/es6/translations/pl.json +3 -0
  1565. package/libs/dropdown/lib/es6/translations/pt.json +3 -0
  1566. package/libs/dropdown/lib/es6/translations/sv.json +3 -0
  1567. package/libs/dropdown/lib/es6/translations/tr.json +3 -0
  1568. package/libs/dropdown/lib/es6/translations/vi.json +3 -0
  1569. package/libs/dropdown/lib/es6/translations/zh.json +3 -0
  1570. package/libs/dropdown/lib/types/index.d.ts +43 -0
  1571. package/libs/dropdown-menu/lib/cjs/DropdownMenu.js +372 -0
  1572. package/libs/dropdown-menu/lib/cjs/DropdownMenu.js.map +1 -0
  1573. package/libs/dropdown-menu/lib/cjs/index.d.js +2 -0
  1574. package/libs/dropdown-menu/lib/cjs/index.d.js.map +1 -0
  1575. package/libs/dropdown-menu/lib/cjs/index.js +14 -0
  1576. package/libs/dropdown-menu/lib/cjs/index.js.map +1 -0
  1577. package/libs/dropdown-menu/lib/cjs/styleScrollArea.js +23 -0
  1578. package/libs/dropdown-menu/lib/cjs/styleScrollArea.js.map +1 -0
  1579. package/libs/dropdown-menu/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1580. package/libs/dropdown-menu/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1581. package/libs/dropdown-menu/lib/cjs/translations/de.json +3 -0
  1582. package/libs/dropdown-menu/lib/cjs/translations/en.json +3 -0
  1583. package/libs/dropdown-menu/lib/cjs/translations/es.json +3 -0
  1584. package/libs/dropdown-menu/lib/cjs/translations/fr.json +3 -0
  1585. package/libs/dropdown-menu/lib/cjs/translations/it.json +3 -0
  1586. package/libs/dropdown-menu/lib/cjs/translations/ja.json +3 -0
  1587. package/libs/dropdown-menu/lib/cjs/translations/ko.json +3 -0
  1588. package/libs/dropdown-menu/lib/cjs/translations/nl.json +3 -0
  1589. package/libs/dropdown-menu/lib/cjs/translations/pl.json +3 -0
  1590. package/libs/dropdown-menu/lib/cjs/translations/pt.json +3 -0
  1591. package/libs/dropdown-menu/lib/cjs/translations/sv.json +3 -0
  1592. package/libs/dropdown-menu/lib/cjs/translations/tr.json +3 -0
  1593. package/libs/dropdown-menu/lib/cjs/translations/vi.json +3 -0
  1594. package/libs/dropdown-menu/lib/cjs/translations/zh.json +3 -0
  1595. package/libs/dropdown-menu/lib/es6/DropdownMenu.js +370 -0
  1596. package/libs/dropdown-menu/lib/es6/DropdownMenu.js.map +1 -0
  1597. package/libs/dropdown-menu/lib/es6/index.d.js +2 -0
  1598. package/libs/dropdown-menu/lib/es6/index.d.js.map +1 -0
  1599. package/libs/dropdown-menu/lib/es6/index.js +2 -0
  1600. package/libs/dropdown-menu/lib/es6/index.js.map +1 -0
  1601. package/libs/dropdown-menu/lib/es6/styleScrollArea.js +16 -0
  1602. package/libs/dropdown-menu/lib/es6/styleScrollArea.js.map +1 -0
  1603. package/libs/dropdown-menu/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1604. package/libs/dropdown-menu/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1605. package/libs/dropdown-menu/lib/es6/translations/de.json +3 -0
  1606. package/libs/dropdown-menu/lib/es6/translations/en.json +3 -0
  1607. package/libs/dropdown-menu/lib/es6/translations/es.json +3 -0
  1608. package/libs/dropdown-menu/lib/es6/translations/fr.json +3 -0
  1609. package/libs/dropdown-menu/lib/es6/translations/it.json +3 -0
  1610. package/libs/dropdown-menu/lib/es6/translations/ja.json +3 -0
  1611. package/libs/dropdown-menu/lib/es6/translations/ko.json +3 -0
  1612. package/libs/dropdown-menu/lib/es6/translations/nl.json +3 -0
  1613. package/libs/dropdown-menu/lib/es6/translations/pl.json +3 -0
  1614. package/libs/dropdown-menu/lib/es6/translations/pt.json +3 -0
  1615. package/libs/dropdown-menu/lib/es6/translations/sv.json +3 -0
  1616. package/libs/dropdown-menu/lib/es6/translations/tr.json +3 -0
  1617. package/libs/dropdown-menu/lib/es6/translations/vi.json +3 -0
  1618. package/libs/dropdown-menu/lib/es6/translations/zh.json +3 -0
  1619. package/libs/dropdown-menu/lib/types/index.d.ts +151 -0
  1620. package/libs/ellipsis/lib/cjs/Ellipsis.js +290 -0
  1621. package/libs/ellipsis/lib/cjs/Ellipsis.js.map +1 -0
  1622. package/libs/ellipsis/lib/cjs/index.d.js +2 -0
  1623. package/libs/ellipsis/lib/cjs/index.d.js.map +1 -0
  1624. package/libs/ellipsis/lib/cjs/index.js +21 -0
  1625. package/libs/ellipsis/lib/cjs/index.js.map +1 -0
  1626. package/libs/ellipsis/lib/cjs/useResizeObserver.js +45 -0
  1627. package/libs/ellipsis/lib/cjs/useResizeObserver.js.map +1 -0
  1628. package/libs/ellipsis/lib/es6/Ellipsis.js +284 -0
  1629. package/libs/ellipsis/lib/es6/Ellipsis.js.map +1 -0
  1630. package/libs/ellipsis/lib/es6/index.d.js +2 -0
  1631. package/libs/ellipsis/lib/es6/index.d.js.map +1 -0
  1632. package/libs/ellipsis/lib/es6/index.js +3 -0
  1633. package/libs/ellipsis/lib/es6/index.js.map +1 -0
  1634. package/libs/ellipsis/lib/es6/useResizeObserver.js +37 -0
  1635. package/libs/ellipsis/lib/es6/useResizeObserver.js.map +1 -0
  1636. package/libs/ellipsis/lib/types/index.d.ts +50 -0
  1637. package/libs/email/lib/badge/index.css +1 -0
  1638. package/libs/email/lib/button/index.css +1 -0
  1639. package/libs/email/lib/core/base.css +1 -0
  1640. package/libs/email/lib/core/index.css +1 -0
  1641. package/libs/email/lib/core/var.css +47 -0
  1642. package/libs/email/lib/divider/index.css +1 -0
  1643. package/libs/email/lib/grid/index.css +1 -0
  1644. package/libs/email/lib/notice/index.css +1 -0
  1645. package/libs/email/lib/summary/index.css +1 -0
  1646. package/libs/email/lib/table/index.css +1 -0
  1647. package/libs/email/lib/typography/index.css +1 -0
  1648. package/libs/errors/lib/cjs/AccessDenied/index.js +63 -0
  1649. package/libs/errors/lib/cjs/AccessDenied/index.js.map +1 -0
  1650. package/libs/errors/lib/cjs/AccessDenied/translations/__intergalactic-dynamic-locales.js +41 -0
  1651. package/libs/errors/lib/cjs/AccessDenied/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1652. package/libs/errors/lib/cjs/AccessDenied/translations/de.json +5 -0
  1653. package/libs/errors/lib/cjs/AccessDenied/translations/en.json +5 -0
  1654. package/libs/errors/lib/cjs/AccessDenied/translations/es.json +5 -0
  1655. package/libs/errors/lib/cjs/AccessDenied/translations/fr.json +5 -0
  1656. package/libs/errors/lib/cjs/AccessDenied/translations/it.json +5 -0
  1657. package/libs/errors/lib/cjs/AccessDenied/translations/ja.json +5 -0
  1658. package/libs/errors/lib/cjs/AccessDenied/translations/ko.json +5 -0
  1659. package/libs/errors/lib/cjs/AccessDenied/translations/nl.json +5 -0
  1660. package/libs/errors/lib/cjs/AccessDenied/translations/pl.json +5 -0
  1661. package/libs/errors/lib/cjs/AccessDenied/translations/pt.json +5 -0
  1662. package/libs/errors/lib/cjs/AccessDenied/translations/ru.json +5 -0
  1663. package/libs/errors/lib/cjs/AccessDenied/translations/sv.json +5 -0
  1664. package/libs/errors/lib/cjs/AccessDenied/translations/tr.json +5 -0
  1665. package/libs/errors/lib/cjs/AccessDenied/translations/vi.json +5 -0
  1666. package/libs/errors/lib/cjs/AccessDenied/translations/zh.json +5 -0
  1667. package/libs/errors/lib/cjs/Error.js +97 -0
  1668. package/libs/errors/lib/cjs/Error.js.map +1 -0
  1669. package/libs/errors/lib/cjs/Maintenance/index.js +62 -0
  1670. package/libs/errors/lib/cjs/Maintenance/index.js.map +1 -0
  1671. package/libs/errors/lib/cjs/Maintenance/translations/__intergalactic-dynamic-locales.js +41 -0
  1672. package/libs/errors/lib/cjs/Maintenance/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1673. package/libs/errors/lib/cjs/Maintenance/translations/de.json +5 -0
  1674. package/libs/errors/lib/cjs/Maintenance/translations/en.json +5 -0
  1675. package/libs/errors/lib/cjs/Maintenance/translations/es.json +5 -0
  1676. package/libs/errors/lib/cjs/Maintenance/translations/fr.json +5 -0
  1677. package/libs/errors/lib/cjs/Maintenance/translations/it.json +5 -0
  1678. package/libs/errors/lib/cjs/Maintenance/translations/ja.json +5 -0
  1679. package/libs/errors/lib/cjs/Maintenance/translations/ko.json +5 -0
  1680. package/libs/errors/lib/cjs/Maintenance/translations/nl.json +5 -0
  1681. package/libs/errors/lib/cjs/Maintenance/translations/pl.json +5 -0
  1682. package/libs/errors/lib/cjs/Maintenance/translations/pt.json +5 -0
  1683. package/libs/errors/lib/cjs/Maintenance/translations/ru.json +5 -0
  1684. package/libs/errors/lib/cjs/Maintenance/translations/sv.json +5 -0
  1685. package/libs/errors/lib/cjs/Maintenance/translations/tr.json +5 -0
  1686. package/libs/errors/lib/cjs/Maintenance/translations/vi.json +5 -0
  1687. package/libs/errors/lib/cjs/Maintenance/translations/zh.json +5 -0
  1688. package/libs/errors/lib/cjs/PageError/index.js +73 -0
  1689. package/libs/errors/lib/cjs/PageError/index.js.map +1 -0
  1690. package/libs/errors/lib/cjs/PageError/translations/__intergalactic-dynamic-locales.js +41 -0
  1691. package/libs/errors/lib/cjs/PageError/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1692. package/libs/errors/lib/cjs/PageError/translations/de.json +5 -0
  1693. package/libs/errors/lib/cjs/PageError/translations/en.json +5 -0
  1694. package/libs/errors/lib/cjs/PageError/translations/es.json +5 -0
  1695. package/libs/errors/lib/cjs/PageError/translations/fr.json +5 -0
  1696. package/libs/errors/lib/cjs/PageError/translations/it.json +5 -0
  1697. package/libs/errors/lib/cjs/PageError/translations/ja.json +5 -0
  1698. package/libs/errors/lib/cjs/PageError/translations/ko.json +5 -0
  1699. package/libs/errors/lib/cjs/PageError/translations/nl.json +5 -0
  1700. package/libs/errors/lib/cjs/PageError/translations/pl.json +5 -0
  1701. package/libs/errors/lib/cjs/PageError/translations/pt.json +5 -0
  1702. package/libs/errors/lib/cjs/PageError/translations/ru.json +5 -0
  1703. package/libs/errors/lib/cjs/PageError/translations/sv.json +5 -0
  1704. package/libs/errors/lib/cjs/PageError/translations/tr.json +5 -0
  1705. package/libs/errors/lib/cjs/PageError/translations/vi.json +5 -0
  1706. package/libs/errors/lib/cjs/PageError/translations/zh.json +5 -0
  1707. package/libs/errors/lib/cjs/PageNotFound/index.js +61 -0
  1708. package/libs/errors/lib/cjs/PageNotFound/index.js.map +1 -0
  1709. package/libs/errors/lib/cjs/PageNotFound/translations/__intergalactic-dynamic-locales.js +41 -0
  1710. package/libs/errors/lib/cjs/PageNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1711. package/libs/errors/lib/cjs/PageNotFound/translations/de.json +5 -0
  1712. package/libs/errors/lib/cjs/PageNotFound/translations/en.json +5 -0
  1713. package/libs/errors/lib/cjs/PageNotFound/translations/es.json +5 -0
  1714. package/libs/errors/lib/cjs/PageNotFound/translations/fr.json +5 -0
  1715. package/libs/errors/lib/cjs/PageNotFound/translations/it.json +5 -0
  1716. package/libs/errors/lib/cjs/PageNotFound/translations/ja.json +5 -0
  1717. package/libs/errors/lib/cjs/PageNotFound/translations/ko.json +5 -0
  1718. package/libs/errors/lib/cjs/PageNotFound/translations/nl.json +5 -0
  1719. package/libs/errors/lib/cjs/PageNotFound/translations/pl.json +5 -0
  1720. package/libs/errors/lib/cjs/PageNotFound/translations/pt.json +5 -0
  1721. package/libs/errors/lib/cjs/PageNotFound/translations/ru.json +5 -0
  1722. package/libs/errors/lib/cjs/PageNotFound/translations/sv.json +5 -0
  1723. package/libs/errors/lib/cjs/PageNotFound/translations/tr.json +5 -0
  1724. package/libs/errors/lib/cjs/PageNotFound/translations/vi.json +5 -0
  1725. package/libs/errors/lib/cjs/PageNotFound/translations/zh.json +5 -0
  1726. package/libs/errors/lib/cjs/ProjectNotFound/index.js +80 -0
  1727. package/libs/errors/lib/cjs/ProjectNotFound/index.js.map +1 -0
  1728. package/libs/errors/lib/cjs/ProjectNotFound/translations/__intergalactic-dynamic-locales.js +41 -0
  1729. package/libs/errors/lib/cjs/ProjectNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1730. package/libs/errors/lib/cjs/ProjectNotFound/translations/de.json +6 -0
  1731. package/libs/errors/lib/cjs/ProjectNotFound/translations/en.json +6 -0
  1732. package/libs/errors/lib/cjs/ProjectNotFound/translations/es.json +6 -0
  1733. package/libs/errors/lib/cjs/ProjectNotFound/translations/fr.json +6 -0
  1734. package/libs/errors/lib/cjs/ProjectNotFound/translations/it.json +6 -0
  1735. package/libs/errors/lib/cjs/ProjectNotFound/translations/ja.json +6 -0
  1736. package/libs/errors/lib/cjs/ProjectNotFound/translations/ko.json +6 -0
  1737. package/libs/errors/lib/cjs/ProjectNotFound/translations/nl.json +6 -0
  1738. package/libs/errors/lib/cjs/ProjectNotFound/translations/pl.json +6 -0
  1739. package/libs/errors/lib/cjs/ProjectNotFound/translations/pt.json +6 -0
  1740. package/libs/errors/lib/cjs/ProjectNotFound/translations/ru.json +6 -0
  1741. package/libs/errors/lib/cjs/ProjectNotFound/translations/sv.json +6 -0
  1742. package/libs/errors/lib/cjs/ProjectNotFound/translations/tr.json +6 -0
  1743. package/libs/errors/lib/cjs/ProjectNotFound/translations/vi.json +6 -0
  1744. package/libs/errors/lib/cjs/ProjectNotFound/translations/zh.json +6 -0
  1745. package/libs/errors/lib/cjs/index.d.js +16 -0
  1746. package/libs/errors/lib/cjs/index.d.js.map +1 -0
  1747. package/libs/errors/lib/cjs/index.js +68 -0
  1748. package/libs/errors/lib/cjs/index.js.map +1 -0
  1749. package/libs/errors/lib/es6/AccessDenied/index.js +55 -0
  1750. package/libs/errors/lib/es6/AccessDenied/index.js.map +1 -0
  1751. package/libs/errors/lib/es6/AccessDenied/translations/__intergalactic-dynamic-locales.js +33 -0
  1752. package/libs/errors/lib/es6/AccessDenied/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1753. package/libs/errors/lib/es6/AccessDenied/translations/de.json +5 -0
  1754. package/libs/errors/lib/es6/AccessDenied/translations/en.json +5 -0
  1755. package/libs/errors/lib/es6/AccessDenied/translations/es.json +5 -0
  1756. package/libs/errors/lib/es6/AccessDenied/translations/fr.json +5 -0
  1757. package/libs/errors/lib/es6/AccessDenied/translations/it.json +5 -0
  1758. package/libs/errors/lib/es6/AccessDenied/translations/ja.json +5 -0
  1759. package/libs/errors/lib/es6/AccessDenied/translations/ko.json +5 -0
  1760. package/libs/errors/lib/es6/AccessDenied/translations/nl.json +5 -0
  1761. package/libs/errors/lib/es6/AccessDenied/translations/pl.json +5 -0
  1762. package/libs/errors/lib/es6/AccessDenied/translations/pt.json +5 -0
  1763. package/libs/errors/lib/es6/AccessDenied/translations/ru.json +5 -0
  1764. package/libs/errors/lib/es6/AccessDenied/translations/sv.json +5 -0
  1765. package/libs/errors/lib/es6/AccessDenied/translations/tr.json +5 -0
  1766. package/libs/errors/lib/es6/AccessDenied/translations/vi.json +5 -0
  1767. package/libs/errors/lib/es6/AccessDenied/translations/zh.json +5 -0
  1768. package/libs/errors/lib/es6/Error.js +92 -0
  1769. package/libs/errors/lib/es6/Error.js.map +1 -0
  1770. package/libs/errors/lib/es6/Maintenance/index.js +54 -0
  1771. package/libs/errors/lib/es6/Maintenance/index.js.map +1 -0
  1772. package/libs/errors/lib/es6/Maintenance/translations/__intergalactic-dynamic-locales.js +33 -0
  1773. package/libs/errors/lib/es6/Maintenance/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1774. package/libs/errors/lib/es6/Maintenance/translations/de.json +5 -0
  1775. package/libs/errors/lib/es6/Maintenance/translations/en.json +5 -0
  1776. package/libs/errors/lib/es6/Maintenance/translations/es.json +5 -0
  1777. package/libs/errors/lib/es6/Maintenance/translations/fr.json +5 -0
  1778. package/libs/errors/lib/es6/Maintenance/translations/it.json +5 -0
  1779. package/libs/errors/lib/es6/Maintenance/translations/ja.json +5 -0
  1780. package/libs/errors/lib/es6/Maintenance/translations/ko.json +5 -0
  1781. package/libs/errors/lib/es6/Maintenance/translations/nl.json +5 -0
  1782. package/libs/errors/lib/es6/Maintenance/translations/pl.json +5 -0
  1783. package/libs/errors/lib/es6/Maintenance/translations/pt.json +5 -0
  1784. package/libs/errors/lib/es6/Maintenance/translations/ru.json +5 -0
  1785. package/libs/errors/lib/es6/Maintenance/translations/sv.json +5 -0
  1786. package/libs/errors/lib/es6/Maintenance/translations/tr.json +5 -0
  1787. package/libs/errors/lib/es6/Maintenance/translations/vi.json +5 -0
  1788. package/libs/errors/lib/es6/Maintenance/translations/zh.json +5 -0
  1789. package/libs/errors/lib/es6/PageError/index.js +64 -0
  1790. package/libs/errors/lib/es6/PageError/index.js.map +1 -0
  1791. package/libs/errors/lib/es6/PageError/translations/__intergalactic-dynamic-locales.js +33 -0
  1792. package/libs/errors/lib/es6/PageError/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1793. package/libs/errors/lib/es6/PageError/translations/de.json +5 -0
  1794. package/libs/errors/lib/es6/PageError/translations/en.json +5 -0
  1795. package/libs/errors/lib/es6/PageError/translations/es.json +5 -0
  1796. package/libs/errors/lib/es6/PageError/translations/fr.json +5 -0
  1797. package/libs/errors/lib/es6/PageError/translations/it.json +5 -0
  1798. package/libs/errors/lib/es6/PageError/translations/ja.json +5 -0
  1799. package/libs/errors/lib/es6/PageError/translations/ko.json +5 -0
  1800. package/libs/errors/lib/es6/PageError/translations/nl.json +5 -0
  1801. package/libs/errors/lib/es6/PageError/translations/pl.json +5 -0
  1802. package/libs/errors/lib/es6/PageError/translations/pt.json +5 -0
  1803. package/libs/errors/lib/es6/PageError/translations/ru.json +5 -0
  1804. package/libs/errors/lib/es6/PageError/translations/sv.json +5 -0
  1805. package/libs/errors/lib/es6/PageError/translations/tr.json +5 -0
  1806. package/libs/errors/lib/es6/PageError/translations/vi.json +5 -0
  1807. package/libs/errors/lib/es6/PageError/translations/zh.json +5 -0
  1808. package/libs/errors/lib/es6/PageNotFound/index.js +53 -0
  1809. package/libs/errors/lib/es6/PageNotFound/index.js.map +1 -0
  1810. package/libs/errors/lib/es6/PageNotFound/translations/__intergalactic-dynamic-locales.js +33 -0
  1811. package/libs/errors/lib/es6/PageNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1812. package/libs/errors/lib/es6/PageNotFound/translations/de.json +5 -0
  1813. package/libs/errors/lib/es6/PageNotFound/translations/en.json +5 -0
  1814. package/libs/errors/lib/es6/PageNotFound/translations/es.json +5 -0
  1815. package/libs/errors/lib/es6/PageNotFound/translations/fr.json +5 -0
  1816. package/libs/errors/lib/es6/PageNotFound/translations/it.json +5 -0
  1817. package/libs/errors/lib/es6/PageNotFound/translations/ja.json +5 -0
  1818. package/libs/errors/lib/es6/PageNotFound/translations/ko.json +5 -0
  1819. package/libs/errors/lib/es6/PageNotFound/translations/nl.json +5 -0
  1820. package/libs/errors/lib/es6/PageNotFound/translations/pl.json +5 -0
  1821. package/libs/errors/lib/es6/PageNotFound/translations/pt.json +5 -0
  1822. package/libs/errors/lib/es6/PageNotFound/translations/ru.json +5 -0
  1823. package/libs/errors/lib/es6/PageNotFound/translations/sv.json +5 -0
  1824. package/libs/errors/lib/es6/PageNotFound/translations/tr.json +5 -0
  1825. package/libs/errors/lib/es6/PageNotFound/translations/vi.json +5 -0
  1826. package/libs/errors/lib/es6/PageNotFound/translations/zh.json +5 -0
  1827. package/libs/errors/lib/es6/ProjectNotFound/index.js +72 -0
  1828. package/libs/errors/lib/es6/ProjectNotFound/index.js.map +1 -0
  1829. package/libs/errors/lib/es6/ProjectNotFound/translations/__intergalactic-dynamic-locales.js +33 -0
  1830. package/libs/errors/lib/es6/ProjectNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1831. package/libs/errors/lib/es6/ProjectNotFound/translations/de.json +6 -0
  1832. package/libs/errors/lib/es6/ProjectNotFound/translations/en.json +6 -0
  1833. package/libs/errors/lib/es6/ProjectNotFound/translations/es.json +6 -0
  1834. package/libs/errors/lib/es6/ProjectNotFound/translations/fr.json +6 -0
  1835. package/libs/errors/lib/es6/ProjectNotFound/translations/it.json +6 -0
  1836. package/libs/errors/lib/es6/ProjectNotFound/translations/ja.json +6 -0
  1837. package/libs/errors/lib/es6/ProjectNotFound/translations/ko.json +6 -0
  1838. package/libs/errors/lib/es6/ProjectNotFound/translations/nl.json +6 -0
  1839. package/libs/errors/lib/es6/ProjectNotFound/translations/pl.json +6 -0
  1840. package/libs/errors/lib/es6/ProjectNotFound/translations/pt.json +6 -0
  1841. package/libs/errors/lib/es6/ProjectNotFound/translations/ru.json +6 -0
  1842. package/libs/errors/lib/es6/ProjectNotFound/translations/sv.json +6 -0
  1843. package/libs/errors/lib/es6/ProjectNotFound/translations/tr.json +6 -0
  1844. package/libs/errors/lib/es6/ProjectNotFound/translations/vi.json +6 -0
  1845. package/libs/errors/lib/es6/ProjectNotFound/translations/zh.json +6 -0
  1846. package/libs/errors/lib/es6/index.d.js +16 -0
  1847. package/libs/errors/lib/es6/index.d.js.map +1 -0
  1848. package/libs/errors/lib/es6/index.js +8 -0
  1849. package/libs/errors/lib/es6/index.js.map +1 -0
  1850. package/libs/errors/lib/types/index.d.ts +120 -0
  1851. package/libs/feature-popover/lib/cjs/FeaturePopover.js +202 -0
  1852. package/libs/feature-popover/lib/cjs/FeaturePopover.js.map +1 -0
  1853. package/libs/feature-popover/lib/cjs/index.d.js +2 -0
  1854. package/libs/feature-popover/lib/cjs/index.d.js.map +1 -0
  1855. package/libs/feature-popover/lib/cjs/index.js +14 -0
  1856. package/libs/feature-popover/lib/cjs/index.js.map +1 -0
  1857. package/libs/feature-popover/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1858. package/libs/feature-popover/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1859. package/libs/feature-popover/lib/cjs/translations/de.json +3 -0
  1860. package/libs/feature-popover/lib/cjs/translations/en.json +3 -0
  1861. package/libs/feature-popover/lib/cjs/translations/es.json +3 -0
  1862. package/libs/feature-popover/lib/cjs/translations/fr.json +3 -0
  1863. package/libs/feature-popover/lib/cjs/translations/it.json +3 -0
  1864. package/libs/feature-popover/lib/cjs/translations/ja.json +3 -0
  1865. package/libs/feature-popover/lib/cjs/translations/ko.json +3 -0
  1866. package/libs/feature-popover/lib/cjs/translations/nl.json +3 -0
  1867. package/libs/feature-popover/lib/cjs/translations/pl.json +3 -0
  1868. package/libs/feature-popover/lib/cjs/translations/pt.json +3 -0
  1869. package/libs/feature-popover/lib/cjs/translations/sv.json +3 -0
  1870. package/libs/feature-popover/lib/cjs/translations/tr.json +3 -0
  1871. package/libs/feature-popover/lib/cjs/translations/vi.json +3 -0
  1872. package/libs/feature-popover/lib/cjs/translations/zh.json +3 -0
  1873. package/libs/feature-popover/lib/es6/FeaturePopover.js +197 -0
  1874. package/libs/feature-popover/lib/es6/FeaturePopover.js.map +1 -0
  1875. package/libs/feature-popover/lib/es6/index.d.js +2 -0
  1876. package/libs/feature-popover/lib/es6/index.d.js.map +1 -0
  1877. package/libs/feature-popover/lib/es6/index.js +2 -0
  1878. package/libs/feature-popover/lib/es6/index.js.map +1 -0
  1879. package/libs/feature-popover/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1880. package/libs/feature-popover/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1881. package/libs/feature-popover/lib/es6/translations/de.json +3 -0
  1882. package/libs/feature-popover/lib/es6/translations/en.json +3 -0
  1883. package/libs/feature-popover/lib/es6/translations/es.json +3 -0
  1884. package/libs/feature-popover/lib/es6/translations/fr.json +3 -0
  1885. package/libs/feature-popover/lib/es6/translations/it.json +3 -0
  1886. package/libs/feature-popover/lib/es6/translations/ja.json +3 -0
  1887. package/libs/feature-popover/lib/es6/translations/ko.json +3 -0
  1888. package/libs/feature-popover/lib/es6/translations/nl.json +3 -0
  1889. package/libs/feature-popover/lib/es6/translations/pl.json +3 -0
  1890. package/libs/feature-popover/lib/es6/translations/pt.json +3 -0
  1891. package/libs/feature-popover/lib/es6/translations/sv.json +3 -0
  1892. package/libs/feature-popover/lib/es6/translations/tr.json +3 -0
  1893. package/libs/feature-popover/lib/es6/translations/vi.json +3 -0
  1894. package/libs/feature-popover/lib/es6/translations/zh.json +3 -0
  1895. package/libs/feature-popover/lib/types/index.d.ts +33 -0
  1896. package/libs/feedback-form/lib/cjs/FeedbackForm.js +216 -0
  1897. package/libs/feedback-form/lib/cjs/FeedbackForm.js.map +1 -0
  1898. package/libs/feedback-form/lib/cjs/index.d.js +2 -0
  1899. package/libs/feedback-form/lib/cjs/index.d.js.map +1 -0
  1900. package/libs/feedback-form/lib/cjs/index.js +14 -0
  1901. package/libs/feedback-form/lib/cjs/index.js.map +1 -0
  1902. package/libs/feedback-form/lib/es6/FeedbackForm.js +213 -0
  1903. package/libs/feedback-form/lib/es6/FeedbackForm.js.map +1 -0
  1904. package/libs/feedback-form/lib/es6/index.d.js +2 -0
  1905. package/libs/feedback-form/lib/es6/index.d.js.map +1 -0
  1906. package/libs/feedback-form/lib/es6/index.js +2 -0
  1907. package/libs/feedback-form/lib/es6/index.js.map +1 -0
  1908. package/libs/feedback-form/lib/types/index.d.ts +35 -0
  1909. package/libs/flags/lib/cjs/Flags.js +108 -0
  1910. package/libs/flags/lib/cjs/Flags.js.map +1 -0
  1911. package/libs/flags/lib/cjs/aliases.json +7 -0
  1912. package/libs/flags/lib/cjs/countries.json +509 -0
  1913. package/libs/flags/lib/cjs/index.d.js +2 -0
  1914. package/libs/flags/lib/cjs/index.d.js.map +1 -0
  1915. package/libs/flags/lib/cjs/index.js +26 -0
  1916. package/libs/flags/lib/cjs/index.js.map +1 -0
  1917. package/libs/flags/lib/es6/Flags.js +98 -0
  1918. package/libs/flags/lib/es6/Flags.js.map +1 -0
  1919. package/libs/flags/lib/es6/aliases.json +7 -0
  1920. package/libs/flags/lib/es6/countries.json +509 -0
  1921. package/libs/flags/lib/es6/index.d.js +2 -0
  1922. package/libs/flags/lib/es6/index.d.js.map +1 -0
  1923. package/libs/flags/lib/es6/index.js +3 -0
  1924. package/libs/flags/lib/es6/index.js.map +1 -0
  1925. package/libs/flags/lib/sprites/sprite@1x.css +766 -0
  1926. package/libs/flags/lib/sprites/sprite@1x.png +0 -0
  1927. package/libs/flags/lib/sprites/sprite@2x.css +769 -0
  1928. package/libs/flags/lib/sprites/sprite@2x.png +0 -0
  1929. package/libs/flags/lib/types/index.d.ts +1344 -0
  1930. package/libs/flex-box/lib/cjs/Box/index.js +22 -0
  1931. package/libs/flex-box/lib/cjs/Box/index.js.map +1 -0
  1932. package/libs/flex-box/lib/cjs/Box/useBox.js +132 -0
  1933. package/libs/flex-box/lib/cjs/Box/useBox.js.map +1 -0
  1934. package/libs/flex-box/lib/cjs/Flex/index.js +22 -0
  1935. package/libs/flex-box/lib/cjs/Flex/index.js.map +1 -0
  1936. package/libs/flex-box/lib/cjs/Flex/useFlex.js +77 -0
  1937. package/libs/flex-box/lib/cjs/Flex/useFlex.js.map +1 -0
  1938. package/libs/flex-box/lib/cjs/index.js +64 -0
  1939. package/libs/flex-box/lib/cjs/index.js.map +1 -0
  1940. package/libs/flex-box/lib/cjs/utils.js +20 -0
  1941. package/libs/flex-box/lib/cjs/utils.js.map +1 -0
  1942. package/libs/flex-box/lib/es6/Box/index.js +14 -0
  1943. package/libs/flex-box/lib/es6/Box/index.js.map +1 -0
  1944. package/libs/flex-box/lib/es6/Box/useBox.js +125 -0
  1945. package/libs/flex-box/lib/es6/Box/useBox.js.map +1 -0
  1946. package/libs/flex-box/lib/es6/Flex/index.js +14 -0
  1947. package/libs/flex-box/lib/es6/Flex/index.js.map +1 -0
  1948. package/libs/flex-box/lib/es6/Flex/useFlex.js +70 -0
  1949. package/libs/flex-box/lib/es6/Flex/useFlex.js.map +1 -0
  1950. package/libs/flex-box/lib/es6/index.js +9 -0
  1951. package/libs/flex-box/lib/es6/index.js.map +1 -0
  1952. package/libs/flex-box/lib/es6/utils.js +13 -0
  1953. package/libs/flex-box/lib/es6/utils.js.map +1 -0
  1954. package/libs/flex-box/lib/types/Box/index.d.ts +4 -0
  1955. package/libs/flex-box/lib/types/Box/useBox.d.ts +109 -0
  1956. package/libs/flex-box/lib/types/Flex/index.d.ts +4 -0
  1957. package/libs/flex-box/lib/types/Flex/useFlex.d.ts +54 -0
  1958. package/libs/flex-box/lib/types/index.d.ts +6 -0
  1959. package/libs/flex-box/lib/types/utils.d.ts +1 -0
  1960. package/libs/format-text/lib/cjs/FormatText.js +51 -0
  1961. package/libs/format-text/lib/cjs/FormatText.js.map +1 -0
  1962. package/libs/format-text/lib/cjs/index.js +26 -0
  1963. package/libs/format-text/lib/cjs/index.js.map +1 -0
  1964. package/libs/format-text/lib/es6/FormatText.js +44 -0
  1965. package/libs/format-text/lib/es6/FormatText.js.map +1 -0
  1966. package/libs/format-text/lib/es6/index.js +3 -0
  1967. package/libs/format-text/lib/es6/index.js.map +1 -0
  1968. package/libs/format-text/lib/types/FormatText.d.ts +10 -0
  1969. package/libs/format-text/lib/types/index.d.ts +2 -0
  1970. package/libs/fullscreen-modal/lib/cjs/FullscreenModal.js +219 -0
  1971. package/libs/fullscreen-modal/lib/cjs/FullscreenModal.js.map +1 -0
  1972. package/libs/fullscreen-modal/lib/cjs/index.d.js +2 -0
  1973. package/libs/fullscreen-modal/lib/cjs/index.d.js.map +1 -0
  1974. package/libs/fullscreen-modal/lib/cjs/index.js +14 -0
  1975. package/libs/fullscreen-modal/lib/cjs/index.js.map +1 -0
  1976. package/libs/fullscreen-modal/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1977. package/libs/fullscreen-modal/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1978. package/libs/fullscreen-modal/lib/cjs/translations/de.json +4 -0
  1979. package/libs/fullscreen-modal/lib/cjs/translations/en.json +4 -0
  1980. package/libs/fullscreen-modal/lib/cjs/translations/es.json +4 -0
  1981. package/libs/fullscreen-modal/lib/cjs/translations/fr.json +4 -0
  1982. package/libs/fullscreen-modal/lib/cjs/translations/it.json +4 -0
  1983. package/libs/fullscreen-modal/lib/cjs/translations/ja.json +4 -0
  1984. package/libs/fullscreen-modal/lib/cjs/translations/ko.json +4 -0
  1985. package/libs/fullscreen-modal/lib/cjs/translations/nl.json +4 -0
  1986. package/libs/fullscreen-modal/lib/cjs/translations/pl.json +4 -0
  1987. package/libs/fullscreen-modal/lib/cjs/translations/pt.json +4 -0
  1988. package/libs/fullscreen-modal/lib/cjs/translations/sv.json +4 -0
  1989. package/libs/fullscreen-modal/lib/cjs/translations/tr.json +4 -0
  1990. package/libs/fullscreen-modal/lib/cjs/translations/vi.json +4 -0
  1991. package/libs/fullscreen-modal/lib/cjs/translations/zh.json +4 -0
  1992. package/libs/fullscreen-modal/lib/es6/FullscreenModal.js +220 -0
  1993. package/libs/fullscreen-modal/lib/es6/FullscreenModal.js.map +1 -0
  1994. package/libs/fullscreen-modal/lib/es6/index.d.js +2 -0
  1995. package/libs/fullscreen-modal/lib/es6/index.d.js.map +1 -0
  1996. package/libs/fullscreen-modal/lib/es6/index.js +2 -0
  1997. package/libs/fullscreen-modal/lib/es6/index.js.map +1 -0
  1998. package/libs/fullscreen-modal/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1999. package/libs/fullscreen-modal/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2000. package/libs/fullscreen-modal/lib/es6/translations/de.json +4 -0
  2001. package/libs/fullscreen-modal/lib/es6/translations/en.json +4 -0
  2002. package/libs/fullscreen-modal/lib/es6/translations/es.json +4 -0
  2003. package/libs/fullscreen-modal/lib/es6/translations/fr.json +4 -0
  2004. package/libs/fullscreen-modal/lib/es6/translations/it.json +4 -0
  2005. package/libs/fullscreen-modal/lib/es6/translations/ja.json +4 -0
  2006. package/libs/fullscreen-modal/lib/es6/translations/ko.json +4 -0
  2007. package/libs/fullscreen-modal/lib/es6/translations/nl.json +4 -0
  2008. package/libs/fullscreen-modal/lib/es6/translations/pl.json +4 -0
  2009. package/libs/fullscreen-modal/lib/es6/translations/pt.json +4 -0
  2010. package/libs/fullscreen-modal/lib/es6/translations/sv.json +4 -0
  2011. package/libs/fullscreen-modal/lib/es6/translations/tr.json +4 -0
  2012. package/libs/fullscreen-modal/lib/es6/translations/vi.json +4 -0
  2013. package/libs/fullscreen-modal/lib/es6/translations/zh.json +4 -0
  2014. package/libs/fullscreen-modal/lib/types/index.d.ts +48 -0
  2015. package/libs/grid/lib/cjs/Grid.js +218 -0
  2016. package/libs/grid/lib/cjs/Grid.js.map +1 -0
  2017. package/libs/grid/lib/cjs/index.d.js +2 -0
  2018. package/libs/grid/lib/cjs/index.d.js.map +1 -0
  2019. package/libs/grid/lib/cjs/index.js +17 -0
  2020. package/libs/grid/lib/cjs/index.js.map +1 -0
  2021. package/libs/grid/lib/es6/Grid.js +212 -0
  2022. package/libs/grid/lib/es6/Grid.js.map +1 -0
  2023. package/libs/grid/lib/es6/index.d.js +2 -0
  2024. package/libs/grid/lib/es6/index.d.js.map +1 -0
  2025. package/libs/grid/lib/es6/index.js +4 -0
  2026. package/libs/grid/lib/es6/index.js.map +1 -0
  2027. package/libs/grid/lib/types/index.d.ts +48 -0
  2028. package/libs/i18n-unplugin/lib/cjs/index.js +140 -0
  2029. package/libs/i18n-unplugin/lib/cjs/index.js.map +1 -0
  2030. package/libs/i18n-unplugin/lib/es6/index.js +128 -0
  2031. package/libs/i18n-unplugin/lib/es6/index.js.map +1 -0
  2032. package/libs/i18n-unplugin/lib/types/index.d.ts +12 -0
  2033. package/libs/icon/lib/cjs/Icon.js +89 -0
  2034. package/libs/icon/lib/cjs/Icon.js.map +1 -0
  2035. package/libs/icon/lib/cjs/index.d.js +2 -0
  2036. package/libs/icon/lib/cjs/index.d.js.map +1 -0
  2037. package/libs/icon/lib/cjs/index.js +14 -0
  2038. package/libs/icon/lib/cjs/index.js.map +1 -0
  2039. package/libs/icon/lib/es6/Icon.js +82 -0
  2040. package/libs/icon/lib/es6/Icon.js.map +1 -0
  2041. package/libs/icon/lib/es6/index.d.js +2 -0
  2042. package/libs/icon/lib/es6/index.d.js.map +1 -0
  2043. package/libs/icon/lib/es6/index.js +2 -0
  2044. package/libs/icon/lib/es6/index.js.map +1 -0
  2045. package/libs/icon/lib/types/index.d.ts +20 -0
  2046. package/libs/illustration/lib/cjs/index.d.js +2 -0
  2047. package/libs/illustration/lib/cjs/index.d.js.map +1 -0
  2048. package/libs/illustration/lib/cjs/index.js +22 -0
  2049. package/libs/illustration/lib/cjs/index.js.map +1 -0
  2050. package/libs/illustration/lib/es6/index.d.js +2 -0
  2051. package/libs/illustration/lib/es6/index.d.js.map +1 -0
  2052. package/libs/illustration/lib/es6/index.js +15 -0
  2053. package/libs/illustration/lib/es6/index.js.map +1 -0
  2054. package/libs/illustration/lib/types/index.d.ts +55 -0
  2055. package/libs/inline-edit/lib/cjs/InlineEdit.js +156 -0
  2056. package/libs/inline-edit/lib/cjs/InlineEdit.js.map +1 -0
  2057. package/libs/inline-edit/lib/cjs/index.d.js +2 -0
  2058. package/libs/inline-edit/lib/cjs/index.d.js.map +1 -0
  2059. package/libs/inline-edit/lib/cjs/index.js +14 -0
  2060. package/libs/inline-edit/lib/cjs/index.js.map +1 -0
  2061. package/libs/inline-edit/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2062. package/libs/inline-edit/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2063. package/libs/inline-edit/lib/cjs/translations/de.json +3 -0
  2064. package/libs/inline-edit/lib/cjs/translations/en.json +3 -0
  2065. package/libs/inline-edit/lib/cjs/translations/es.json +3 -0
  2066. package/libs/inline-edit/lib/cjs/translations/fr.json +3 -0
  2067. package/libs/inline-edit/lib/cjs/translations/it.json +3 -0
  2068. package/libs/inline-edit/lib/cjs/translations/ja.json +3 -0
  2069. package/libs/inline-edit/lib/cjs/translations/ko.json +3 -0
  2070. package/libs/inline-edit/lib/cjs/translations/nl.json +3 -0
  2071. package/libs/inline-edit/lib/cjs/translations/pl.json +3 -0
  2072. package/libs/inline-edit/lib/cjs/translations/pt.json +3 -0
  2073. package/libs/inline-edit/lib/cjs/translations/sv.json +3 -0
  2074. package/libs/inline-edit/lib/cjs/translations/tr.json +3 -0
  2075. package/libs/inline-edit/lib/cjs/translations/vi.json +3 -0
  2076. package/libs/inline-edit/lib/cjs/translations/zh.json +3 -0
  2077. package/libs/inline-edit/lib/es6/InlineEdit.js +151 -0
  2078. package/libs/inline-edit/lib/es6/InlineEdit.js.map +1 -0
  2079. package/libs/inline-edit/lib/es6/index.d.js +2 -0
  2080. package/libs/inline-edit/lib/es6/index.d.js.map +1 -0
  2081. package/libs/inline-edit/lib/es6/index.js +2 -0
  2082. package/libs/inline-edit/lib/es6/index.js.map +1 -0
  2083. package/libs/inline-edit/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2084. package/libs/inline-edit/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2085. package/libs/inline-edit/lib/es6/translations/de.json +3 -0
  2086. package/libs/inline-edit/lib/es6/translations/en.json +3 -0
  2087. package/libs/inline-edit/lib/es6/translations/es.json +3 -0
  2088. package/libs/inline-edit/lib/es6/translations/fr.json +3 -0
  2089. package/libs/inline-edit/lib/es6/translations/it.json +3 -0
  2090. package/libs/inline-edit/lib/es6/translations/ja.json +3 -0
  2091. package/libs/inline-edit/lib/es6/translations/ko.json +3 -0
  2092. package/libs/inline-edit/lib/es6/translations/nl.json +3 -0
  2093. package/libs/inline-edit/lib/es6/translations/pl.json +3 -0
  2094. package/libs/inline-edit/lib/es6/translations/pt.json +3 -0
  2095. package/libs/inline-edit/lib/es6/translations/sv.json +3 -0
  2096. package/libs/inline-edit/lib/es6/translations/tr.json +3 -0
  2097. package/libs/inline-edit/lib/es6/translations/vi.json +3 -0
  2098. package/libs/inline-edit/lib/es6/translations/zh.json +3 -0
  2099. package/libs/inline-edit/lib/types/index.d.ts +43 -0
  2100. package/libs/inline-input/lib/cjs/InlineInput.js +541 -0
  2101. package/libs/inline-input/lib/cjs/InlineInput.js.map +1 -0
  2102. package/libs/inline-input/lib/cjs/index.d.js +2 -0
  2103. package/libs/inline-input/lib/cjs/index.d.js.map +1 -0
  2104. package/libs/inline-input/lib/cjs/index.js +11 -0
  2105. package/libs/inline-input/lib/cjs/index.js.map +1 -0
  2106. package/libs/inline-input/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2107. package/libs/inline-input/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2108. package/libs/inline-input/lib/cjs/translations/de.json +5 -0
  2109. package/libs/inline-input/lib/cjs/translations/en.json +5 -0
  2110. package/libs/inline-input/lib/cjs/translations/es.json +5 -0
  2111. package/libs/inline-input/lib/cjs/translations/fr.json +5 -0
  2112. package/libs/inline-input/lib/cjs/translations/it.json +5 -0
  2113. package/libs/inline-input/lib/cjs/translations/ja.json +5 -0
  2114. package/libs/inline-input/lib/cjs/translations/ko.json +5 -0
  2115. package/libs/inline-input/lib/cjs/translations/nl.json +5 -0
  2116. package/libs/inline-input/lib/cjs/translations/pl.json +5 -0
  2117. package/libs/inline-input/lib/cjs/translations/pt.json +5 -0
  2118. package/libs/inline-input/lib/cjs/translations/sv.json +5 -0
  2119. package/libs/inline-input/lib/cjs/translations/tr.json +5 -0
  2120. package/libs/inline-input/lib/cjs/translations/vi.json +5 -0
  2121. package/libs/inline-input/lib/cjs/translations/zh.json +5 -0
  2122. package/libs/inline-input/lib/es6/InlineInput.js +542 -0
  2123. package/libs/inline-input/lib/es6/InlineInput.js.map +1 -0
  2124. package/libs/inline-input/lib/es6/index.d.js +2 -0
  2125. package/libs/inline-input/lib/es6/index.d.js.map +1 -0
  2126. package/libs/inline-input/lib/es6/index.js +3 -0
  2127. package/libs/inline-input/lib/es6/index.js.map +1 -0
  2128. package/libs/inline-input/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2129. package/libs/inline-input/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2130. package/libs/inline-input/lib/es6/translations/de.json +5 -0
  2131. package/libs/inline-input/lib/es6/translations/en.json +5 -0
  2132. package/libs/inline-input/lib/es6/translations/es.json +5 -0
  2133. package/libs/inline-input/lib/es6/translations/fr.json +5 -0
  2134. package/libs/inline-input/lib/es6/translations/it.json +5 -0
  2135. package/libs/inline-input/lib/es6/translations/ja.json +5 -0
  2136. package/libs/inline-input/lib/es6/translations/ko.json +5 -0
  2137. package/libs/inline-input/lib/es6/translations/nl.json +5 -0
  2138. package/libs/inline-input/lib/es6/translations/pl.json +5 -0
  2139. package/libs/inline-input/lib/es6/translations/pt.json +5 -0
  2140. package/libs/inline-input/lib/es6/translations/sv.json +5 -0
  2141. package/libs/inline-input/lib/es6/translations/tr.json +5 -0
  2142. package/libs/inline-input/lib/es6/translations/vi.json +5 -0
  2143. package/libs/inline-input/lib/es6/translations/zh.json +5 -0
  2144. package/libs/inline-input/lib/types/index.d.ts +151 -0
  2145. package/libs/input/lib/cjs/Input.js +223 -0
  2146. package/libs/input/lib/cjs/Input.js.map +1 -0
  2147. package/libs/input/lib/cjs/index.d.js +2 -0
  2148. package/libs/input/lib/cjs/index.d.js.map +1 -0
  2149. package/libs/input/lib/cjs/index.js +14 -0
  2150. package/libs/input/lib/cjs/index.js.map +1 -0
  2151. package/libs/input/lib/es6/Input.js +218 -0
  2152. package/libs/input/lib/es6/Input.js.map +1 -0
  2153. package/libs/input/lib/es6/index.d.js +2 -0
  2154. package/libs/input/lib/es6/index.d.js.map +1 -0
  2155. package/libs/input/lib/es6/index.js +2 -0
  2156. package/libs/input/lib/es6/index.js.map +1 -0
  2157. package/libs/input/lib/types/index.d.ts +92 -0
  2158. package/libs/input-mask/lib/cjs/InputMask.js +336 -0
  2159. package/libs/input-mask/lib/cjs/InputMask.js.map +1 -0
  2160. package/libs/input-mask/lib/cjs/index.js +26 -0
  2161. package/libs/input-mask/lib/cjs/index.js.map +1 -0
  2162. package/libs/input-mask/lib/es6/InputMask.js +329 -0
  2163. package/libs/input-mask/lib/es6/InputMask.js.map +1 -0
  2164. package/libs/input-mask/lib/es6/index.js +3 -0
  2165. package/libs/input-mask/lib/es6/index.js.map +1 -0
  2166. package/libs/input-mask/lib/types/InputMask.d.ts +59 -0
  2167. package/libs/input-mask/lib/types/index.d.ts +2 -0
  2168. package/libs/input-number/lib/cjs/InputNumber.js +251 -0
  2169. package/libs/input-number/lib/cjs/InputNumber.js.map +1 -0
  2170. package/libs/input-number/lib/cjs/buttons.js +31 -0
  2171. package/libs/input-number/lib/cjs/buttons.js.map +1 -0
  2172. package/libs/input-number/lib/cjs/index.d.js +2 -0
  2173. package/libs/input-number/lib/cjs/index.d.js.map +1 -0
  2174. package/libs/input-number/lib/cjs/index.js +33 -0
  2175. package/libs/input-number/lib/cjs/index.js.map +1 -0
  2176. package/libs/input-number/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2177. package/libs/input-number/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2178. package/libs/input-number/lib/cjs/translations/de.json +4 -0
  2179. package/libs/input-number/lib/cjs/translations/en.json +4 -0
  2180. package/libs/input-number/lib/cjs/translations/es.json +4 -0
  2181. package/libs/input-number/lib/cjs/translations/fr.json +4 -0
  2182. package/libs/input-number/lib/cjs/translations/it.json +4 -0
  2183. package/libs/input-number/lib/cjs/translations/ja.json +4 -0
  2184. package/libs/input-number/lib/cjs/translations/ko.json +4 -0
  2185. package/libs/input-number/lib/cjs/translations/nl.json +4 -0
  2186. package/libs/input-number/lib/cjs/translations/pl.json +4 -0
  2187. package/libs/input-number/lib/cjs/translations/pt.json +4 -0
  2188. package/libs/input-number/lib/cjs/translations/sv.json +4 -0
  2189. package/libs/input-number/lib/cjs/translations/tr.json +4 -0
  2190. package/libs/input-number/lib/cjs/translations/vi.json +4 -0
  2191. package/libs/input-number/lib/cjs/translations/zh.json +4 -0
  2192. package/libs/input-number/lib/es6/InputNumber.js +245 -0
  2193. package/libs/input-number/lib/es6/InputNumber.js.map +1 -0
  2194. package/libs/input-number/lib/es6/buttons.js +22 -0
  2195. package/libs/input-number/lib/es6/buttons.js.map +1 -0
  2196. package/libs/input-number/lib/es6/index.d.js +2 -0
  2197. package/libs/input-number/lib/es6/index.d.js.map +1 -0
  2198. package/libs/input-number/lib/es6/index.js +3 -0
  2199. package/libs/input-number/lib/es6/index.js.map +1 -0
  2200. package/libs/input-number/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2201. package/libs/input-number/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2202. package/libs/input-number/lib/es6/translations/de.json +4 -0
  2203. package/libs/input-number/lib/es6/translations/en.json +4 -0
  2204. package/libs/input-number/lib/es6/translations/es.json +4 -0
  2205. package/libs/input-number/lib/es6/translations/fr.json +4 -0
  2206. package/libs/input-number/lib/es6/translations/it.json +4 -0
  2207. package/libs/input-number/lib/es6/translations/ja.json +4 -0
  2208. package/libs/input-number/lib/es6/translations/ko.json +4 -0
  2209. package/libs/input-number/lib/es6/translations/nl.json +4 -0
  2210. package/libs/input-number/lib/es6/translations/pl.json +4 -0
  2211. package/libs/input-number/lib/es6/translations/pt.json +4 -0
  2212. package/libs/input-number/lib/es6/translations/sv.json +4 -0
  2213. package/libs/input-number/lib/es6/translations/tr.json +4 -0
  2214. package/libs/input-number/lib/es6/translations/vi.json +4 -0
  2215. package/libs/input-number/lib/es6/translations/zh.json +4 -0
  2216. package/libs/input-number/lib/types/index.d.ts +68 -0
  2217. package/libs/input-tags/lib/cjs/InputTags.js +284 -0
  2218. package/libs/input-tags/lib/cjs/InputTags.js.map +1 -0
  2219. package/libs/input-tags/lib/cjs/index.js +26 -0
  2220. package/libs/input-tags/lib/cjs/index.js.map +1 -0
  2221. package/libs/input-tags/lib/es6/InputTags.js +279 -0
  2222. package/libs/input-tags/lib/es6/InputTags.js.map +1 -0
  2223. package/libs/input-tags/lib/es6/index.js +3 -0
  2224. package/libs/input-tags/lib/es6/index.js.map +1 -0
  2225. package/libs/input-tags/lib/types/InputTags.d.ts +68 -0
  2226. package/libs/input-tags/lib/types/index.d.ts +2 -0
  2227. package/libs/link/lib/cjs/Link.js +122 -0
  2228. package/libs/link/lib/cjs/Link.js.map +1 -0
  2229. package/libs/link/lib/cjs/index.d.js +2 -0
  2230. package/libs/link/lib/cjs/index.d.js.map +1 -0
  2231. package/libs/link/lib/cjs/index.js +14 -0
  2232. package/libs/link/lib/cjs/index.js.map +1 -0
  2233. package/libs/link/lib/es6/Link.js +117 -0
  2234. package/libs/link/lib/es6/Link.js.map +1 -0
  2235. package/libs/link/lib/es6/index.d.js +2 -0
  2236. package/libs/link/lib/es6/index.d.js.map +1 -0
  2237. package/libs/link/lib/es6/index.js +2 -0
  2238. package/libs/link/lib/es6/index.js.map +1 -0
  2239. package/libs/link/lib/types/index.d.ts +42 -0
  2240. package/libs/modal/lib/cjs/Modal.js +242 -0
  2241. package/libs/modal/lib/cjs/Modal.js.map +1 -0
  2242. package/libs/modal/lib/cjs/index.d.js +2 -0
  2243. package/libs/modal/lib/cjs/index.d.js.map +1 -0
  2244. package/libs/modal/lib/cjs/index.js +14 -0
  2245. package/libs/modal/lib/cjs/index.js.map +1 -0
  2246. package/libs/modal/lib/cjs/modal.vo-test.js +106 -0
  2247. package/libs/modal/lib/cjs/modal.vo-test.js.map +1 -0
  2248. package/libs/modal/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2249. package/libs/modal/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2250. package/libs/modal/lib/cjs/translations/de.json +4 -0
  2251. package/libs/modal/lib/cjs/translations/en.json +4 -0
  2252. package/libs/modal/lib/cjs/translations/es.json +4 -0
  2253. package/libs/modal/lib/cjs/translations/fr.json +4 -0
  2254. package/libs/modal/lib/cjs/translations/it.json +4 -0
  2255. package/libs/modal/lib/cjs/translations/ja.json +4 -0
  2256. package/libs/modal/lib/cjs/translations/ko.json +4 -0
  2257. package/libs/modal/lib/cjs/translations/nl.json +4 -0
  2258. package/libs/modal/lib/cjs/translations/pl.json +4 -0
  2259. package/libs/modal/lib/cjs/translations/pt.json +4 -0
  2260. package/libs/modal/lib/cjs/translations/sv.json +4 -0
  2261. package/libs/modal/lib/cjs/translations/tr.json +4 -0
  2262. package/libs/modal/lib/cjs/translations/vi.json +4 -0
  2263. package/libs/modal/lib/cjs/translations/zh.json +4 -0
  2264. package/libs/modal/lib/es6/Modal.js +239 -0
  2265. package/libs/modal/lib/es6/Modal.js.map +1 -0
  2266. package/libs/modal/lib/es6/index.d.js +2 -0
  2267. package/libs/modal/lib/es6/index.d.js.map +1 -0
  2268. package/libs/modal/lib/es6/index.js +2 -0
  2269. package/libs/modal/lib/es6/index.js.map +1 -0
  2270. package/libs/modal/lib/es6/modal.vo-test.js +103 -0
  2271. package/libs/modal/lib/es6/modal.vo-test.js.map +1 -0
  2272. package/libs/modal/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2273. package/libs/modal/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2274. package/libs/modal/lib/es6/translations/de.json +4 -0
  2275. package/libs/modal/lib/es6/translations/en.json +4 -0
  2276. package/libs/modal/lib/es6/translations/es.json +4 -0
  2277. package/libs/modal/lib/es6/translations/fr.json +4 -0
  2278. package/libs/modal/lib/es6/translations/it.json +4 -0
  2279. package/libs/modal/lib/es6/translations/ja.json +4 -0
  2280. package/libs/modal/lib/es6/translations/ko.json +4 -0
  2281. package/libs/modal/lib/es6/translations/nl.json +4 -0
  2282. package/libs/modal/lib/es6/translations/pl.json +4 -0
  2283. package/libs/modal/lib/es6/translations/pt.json +4 -0
  2284. package/libs/modal/lib/es6/translations/sv.json +4 -0
  2285. package/libs/modal/lib/es6/translations/tr.json +4 -0
  2286. package/libs/modal/lib/es6/translations/vi.json +4 -0
  2287. package/libs/modal/lib/es6/translations/zh.json +4 -0
  2288. package/libs/modal/lib/types/index.d.ts +61 -0
  2289. package/libs/neighbor-location/lib/cjs/NeighborLocation.js +145 -0
  2290. package/libs/neighbor-location/lib/cjs/NeighborLocation.js.map +1 -0
  2291. package/libs/neighbor-location/lib/cjs/index.d.js +2 -0
  2292. package/libs/neighbor-location/lib/cjs/index.d.js.map +1 -0
  2293. package/libs/neighbor-location/lib/cjs/index.js +26 -0
  2294. package/libs/neighbor-location/lib/cjs/index.js.map +1 -0
  2295. package/libs/neighbor-location/lib/es6/NeighborLocation.js +137 -0
  2296. package/libs/neighbor-location/lib/es6/NeighborLocation.js.map +1 -0
  2297. package/libs/neighbor-location/lib/es6/index.d.js +2 -0
  2298. package/libs/neighbor-location/lib/es6/index.d.js.map +1 -0
  2299. package/libs/neighbor-location/lib/es6/index.js +3 -0
  2300. package/libs/neighbor-location/lib/es6/index.js.map +1 -0
  2301. package/libs/neighbor-location/lib/types/index.d.ts +42 -0
  2302. package/libs/notice/lib/cjs/Notice.js +161 -0
  2303. package/libs/notice/lib/cjs/Notice.js.map +1 -0
  2304. package/libs/notice/lib/cjs/NoticeSmart.js +49 -0
  2305. package/libs/notice/lib/cjs/NoticeSmart.js.map +1 -0
  2306. package/libs/notice/lib/cjs/index.d.js +2 -0
  2307. package/libs/notice/lib/cjs/index.d.js.map +1 -0
  2308. package/libs/notice/lib/cjs/index.js +18 -0
  2309. package/libs/notice/lib/cjs/index.js.map +1 -0
  2310. package/libs/notice/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2311. package/libs/notice/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2312. package/libs/notice/lib/cjs/translations/de.json +3 -0
  2313. package/libs/notice/lib/cjs/translations/en.json +3 -0
  2314. package/libs/notice/lib/cjs/translations/es.json +3 -0
  2315. package/libs/notice/lib/cjs/translations/fr.json +3 -0
  2316. package/libs/notice/lib/cjs/translations/it.json +3 -0
  2317. package/libs/notice/lib/cjs/translations/ja.json +3 -0
  2318. package/libs/notice/lib/cjs/translations/ko.json +3 -0
  2319. package/libs/notice/lib/cjs/translations/nl.json +3 -0
  2320. package/libs/notice/lib/cjs/translations/pl.json +3 -0
  2321. package/libs/notice/lib/cjs/translations/pt.json +3 -0
  2322. package/libs/notice/lib/cjs/translations/sv.json +3 -0
  2323. package/libs/notice/lib/cjs/translations/tr.json +3 -0
  2324. package/libs/notice/lib/cjs/translations/vi.json +3 -0
  2325. package/libs/notice/lib/cjs/translations/zh.json +3 -0
  2326. package/libs/notice/lib/es6/Notice.js +158 -0
  2327. package/libs/notice/lib/es6/Notice.js.map +1 -0
  2328. package/libs/notice/lib/es6/NoticeSmart.js +41 -0
  2329. package/libs/notice/lib/es6/NoticeSmart.js.map +1 -0
  2330. package/libs/notice/lib/es6/index.d.js +2 -0
  2331. package/libs/notice/lib/es6/index.d.js.map +1 -0
  2332. package/libs/notice/lib/es6/index.js +4 -0
  2333. package/libs/notice/lib/es6/index.js.map +1 -0
  2334. package/libs/notice/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2335. package/libs/notice/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2336. package/libs/notice/lib/es6/translations/de.json +3 -0
  2337. package/libs/notice/lib/es6/translations/en.json +3 -0
  2338. package/libs/notice/lib/es6/translations/es.json +3 -0
  2339. package/libs/notice/lib/es6/translations/fr.json +3 -0
  2340. package/libs/notice/lib/es6/translations/it.json +3 -0
  2341. package/libs/notice/lib/es6/translations/ja.json +3 -0
  2342. package/libs/notice/lib/es6/translations/ko.json +3 -0
  2343. package/libs/notice/lib/es6/translations/nl.json +3 -0
  2344. package/libs/notice/lib/es6/translations/pl.json +3 -0
  2345. package/libs/notice/lib/es6/translations/pt.json +3 -0
  2346. package/libs/notice/lib/es6/translations/sv.json +3 -0
  2347. package/libs/notice/lib/es6/translations/tr.json +3 -0
  2348. package/libs/notice/lib/es6/translations/vi.json +3 -0
  2349. package/libs/notice/lib/es6/translations/zh.json +3 -0
  2350. package/libs/notice/lib/types/index.d.ts +74 -0
  2351. package/libs/notice-bubble/lib/cjs/NoticeBubble.js +315 -0
  2352. package/libs/notice-bubble/lib/cjs/NoticeBubble.js.map +1 -0
  2353. package/libs/notice-bubble/lib/cjs/NoticeBubbleManager.js +104 -0
  2354. package/libs/notice-bubble/lib/cjs/NoticeBubbleManager.js.map +1 -0
  2355. package/libs/notice-bubble/lib/cjs/index.d.js +20 -0
  2356. package/libs/notice-bubble/lib/cjs/index.d.js.map +1 -0
  2357. package/libs/notice-bubble/lib/cjs/index.js +50 -0
  2358. package/libs/notice-bubble/lib/cjs/index.js.map +1 -0
  2359. package/libs/notice-bubble/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2360. package/libs/notice-bubble/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2361. package/libs/notice-bubble/lib/cjs/translations/de.json +3 -0
  2362. package/libs/notice-bubble/lib/cjs/translations/en.json +3 -0
  2363. package/libs/notice-bubble/lib/cjs/translations/es.json +3 -0
  2364. package/libs/notice-bubble/lib/cjs/translations/fr.json +3 -0
  2365. package/libs/notice-bubble/lib/cjs/translations/it.json +3 -0
  2366. package/libs/notice-bubble/lib/cjs/translations/ja.json +3 -0
  2367. package/libs/notice-bubble/lib/cjs/translations/ko.json +3 -0
  2368. package/libs/notice-bubble/lib/cjs/translations/nl.json +3 -0
  2369. package/libs/notice-bubble/lib/cjs/translations/pl.json +3 -0
  2370. package/libs/notice-bubble/lib/cjs/translations/pt.json +3 -0
  2371. package/libs/notice-bubble/lib/cjs/translations/sv.json +3 -0
  2372. package/libs/notice-bubble/lib/cjs/translations/tr.json +3 -0
  2373. package/libs/notice-bubble/lib/cjs/translations/vi.json +3 -0
  2374. package/libs/notice-bubble/lib/cjs/translations/zh.json +3 -0
  2375. package/libs/notice-bubble/lib/cjs/utils.js +46 -0
  2376. package/libs/notice-bubble/lib/cjs/utils.js.map +1 -0
  2377. package/libs/notice-bubble/lib/es6/NoticeBubble.js +307 -0
  2378. package/libs/notice-bubble/lib/es6/NoticeBubble.js.map +1 -0
  2379. package/libs/notice-bubble/lib/es6/NoticeBubbleManager.js +96 -0
  2380. package/libs/notice-bubble/lib/es6/NoticeBubbleManager.js.map +1 -0
  2381. package/libs/notice-bubble/lib/es6/index.d.js +18 -0
  2382. package/libs/notice-bubble/lib/es6/index.d.js.map +1 -0
  2383. package/libs/notice-bubble/lib/es6/index.js +7 -0
  2384. package/libs/notice-bubble/lib/es6/index.js.map +1 -0
  2385. package/libs/notice-bubble/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2386. package/libs/notice-bubble/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2387. package/libs/notice-bubble/lib/es6/translations/de.json +3 -0
  2388. package/libs/notice-bubble/lib/es6/translations/en.json +3 -0
  2389. package/libs/notice-bubble/lib/es6/translations/es.json +3 -0
  2390. package/libs/notice-bubble/lib/es6/translations/fr.json +3 -0
  2391. package/libs/notice-bubble/lib/es6/translations/it.json +3 -0
  2392. package/libs/notice-bubble/lib/es6/translations/ja.json +3 -0
  2393. package/libs/notice-bubble/lib/es6/translations/ko.json +3 -0
  2394. package/libs/notice-bubble/lib/es6/translations/nl.json +3 -0
  2395. package/libs/notice-bubble/lib/es6/translations/pl.json +3 -0
  2396. package/libs/notice-bubble/lib/es6/translations/pt.json +3 -0
  2397. package/libs/notice-bubble/lib/es6/translations/sv.json +3 -0
  2398. package/libs/notice-bubble/lib/es6/translations/tr.json +3 -0
  2399. package/libs/notice-bubble/lib/es6/translations/vi.json +3 -0
  2400. package/libs/notice-bubble/lib/es6/translations/zh.json +3 -0
  2401. package/libs/notice-bubble/lib/es6/utils.js +39 -0
  2402. package/libs/notice-bubble/lib/es6/utils.js.map +1 -0
  2403. package/libs/notice-bubble/lib/types/index.d.ts +145 -0
  2404. package/libs/notice-global/lib/cjs/NoticeGlobal.js +126 -0
  2405. package/libs/notice-global/lib/cjs/NoticeGlobal.js.map +1 -0
  2406. package/libs/notice-global/lib/cjs/index.d.js +2 -0
  2407. package/libs/notice-global/lib/cjs/index.d.js.map +1 -0
  2408. package/libs/notice-global/lib/cjs/index.js +14 -0
  2409. package/libs/notice-global/lib/cjs/index.js.map +1 -0
  2410. package/libs/notice-global/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2411. package/libs/notice-global/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2412. package/libs/notice-global/lib/cjs/translations/de.json +3 -0
  2413. package/libs/notice-global/lib/cjs/translations/en.json +3 -0
  2414. package/libs/notice-global/lib/cjs/translations/es.json +3 -0
  2415. package/libs/notice-global/lib/cjs/translations/fr.json +3 -0
  2416. package/libs/notice-global/lib/cjs/translations/it.json +3 -0
  2417. package/libs/notice-global/lib/cjs/translations/ja.json +3 -0
  2418. package/libs/notice-global/lib/cjs/translations/ko.json +3 -0
  2419. package/libs/notice-global/lib/cjs/translations/nl.json +3 -0
  2420. package/libs/notice-global/lib/cjs/translations/pl.json +3 -0
  2421. package/libs/notice-global/lib/cjs/translations/pt.json +3 -0
  2422. package/libs/notice-global/lib/cjs/translations/sv.json +3 -0
  2423. package/libs/notice-global/lib/cjs/translations/tr.json +3 -0
  2424. package/libs/notice-global/lib/cjs/translations/vi.json +3 -0
  2425. package/libs/notice-global/lib/cjs/translations/zh.json +3 -0
  2426. package/libs/notice-global/lib/es6/NoticeGlobal.js +121 -0
  2427. package/libs/notice-global/lib/es6/NoticeGlobal.js.map +1 -0
  2428. package/libs/notice-global/lib/es6/index.d.js +2 -0
  2429. package/libs/notice-global/lib/es6/index.d.js.map +1 -0
  2430. package/libs/notice-global/lib/es6/index.js +2 -0
  2431. package/libs/notice-global/lib/es6/index.js.map +1 -0
  2432. package/libs/notice-global/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2433. package/libs/notice-global/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2434. package/libs/notice-global/lib/es6/translations/de.json +3 -0
  2435. package/libs/notice-global/lib/es6/translations/en.json +3 -0
  2436. package/libs/notice-global/lib/es6/translations/es.json +3 -0
  2437. package/libs/notice-global/lib/es6/translations/fr.json +3 -0
  2438. package/libs/notice-global/lib/es6/translations/it.json +3 -0
  2439. package/libs/notice-global/lib/es6/translations/ja.json +3 -0
  2440. package/libs/notice-global/lib/es6/translations/ko.json +3 -0
  2441. package/libs/notice-global/lib/es6/translations/nl.json +3 -0
  2442. package/libs/notice-global/lib/es6/translations/pl.json +3 -0
  2443. package/libs/notice-global/lib/es6/translations/pt.json +3 -0
  2444. package/libs/notice-global/lib/es6/translations/sv.json +3 -0
  2445. package/libs/notice-global/lib/es6/translations/tr.json +3 -0
  2446. package/libs/notice-global/lib/es6/translations/vi.json +3 -0
  2447. package/libs/notice-global/lib/es6/translations/zh.json +3 -0
  2448. package/libs/notice-global/lib/types/index.d.ts +36 -0
  2449. package/libs/outside-click/lib/cjs/OutsideClick.js +61 -0
  2450. package/libs/outside-click/lib/cjs/OutsideClick.js.map +1 -0
  2451. package/libs/outside-click/lib/cjs/index.js +26 -0
  2452. package/libs/outside-click/lib/cjs/index.js.map +1 -0
  2453. package/libs/outside-click/lib/es6/OutsideClick.js +55 -0
  2454. package/libs/outside-click/lib/es6/OutsideClick.js.map +1 -0
  2455. package/libs/outside-click/lib/es6/index.js +3 -0
  2456. package/libs/outside-click/lib/es6/index.js.map +1 -0
  2457. package/libs/outside-click/lib/types/OutsideClick.d.ts +24 -0
  2458. package/libs/outside-click/lib/types/index.d.ts +2 -0
  2459. package/libs/pagination/lib/cjs/Pagination.js +432 -0
  2460. package/libs/pagination/lib/cjs/Pagination.js.map +1 -0
  2461. package/libs/pagination/lib/cjs/index.d.js +2 -0
  2462. package/libs/pagination/lib/cjs/index.d.js.map +1 -0
  2463. package/libs/pagination/lib/cjs/index.js +14 -0
  2464. package/libs/pagination/lib/cjs/index.js.map +1 -0
  2465. package/libs/pagination/lib/cjs/translations/__intergalactic-dynamic-locales.js +41 -0
  2466. package/libs/pagination/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2467. package/libs/pagination/lib/cjs/translations/de.json +14 -0
  2468. package/libs/pagination/lib/cjs/translations/en.json +14 -0
  2469. package/libs/pagination/lib/cjs/translations/es.json +14 -0
  2470. package/libs/pagination/lib/cjs/translations/fr.json +14 -0
  2471. package/libs/pagination/lib/cjs/translations/it.json +14 -0
  2472. package/libs/pagination/lib/cjs/translations/ja.json +14 -0
  2473. package/libs/pagination/lib/cjs/translations/ko.json +14 -0
  2474. package/libs/pagination/lib/cjs/translations/nl.json +14 -0
  2475. package/libs/pagination/lib/cjs/translations/pl.json +14 -0
  2476. package/libs/pagination/lib/cjs/translations/pt.json +14 -0
  2477. package/libs/pagination/lib/cjs/translations/ru.json +6 -0
  2478. package/libs/pagination/lib/cjs/translations/sv.json +14 -0
  2479. package/libs/pagination/lib/cjs/translations/tr.json +14 -0
  2480. package/libs/pagination/lib/cjs/translations/vi.json +14 -0
  2481. package/libs/pagination/lib/cjs/translations/zh.json +14 -0
  2482. package/libs/pagination/lib/es6/Pagination.js +432 -0
  2483. package/libs/pagination/lib/es6/Pagination.js.map +1 -0
  2484. package/libs/pagination/lib/es6/index.d.js +2 -0
  2485. package/libs/pagination/lib/es6/index.d.js.map +1 -0
  2486. package/libs/pagination/lib/es6/index.js +2 -0
  2487. package/libs/pagination/lib/es6/index.js.map +1 -0
  2488. package/libs/pagination/lib/es6/translations/__intergalactic-dynamic-locales.js +33 -0
  2489. package/libs/pagination/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2490. package/libs/pagination/lib/es6/translations/de.json +14 -0
  2491. package/libs/pagination/lib/es6/translations/en.json +14 -0
  2492. package/libs/pagination/lib/es6/translations/es.json +14 -0
  2493. package/libs/pagination/lib/es6/translations/fr.json +14 -0
  2494. package/libs/pagination/lib/es6/translations/it.json +14 -0
  2495. package/libs/pagination/lib/es6/translations/ja.json +14 -0
  2496. package/libs/pagination/lib/es6/translations/ko.json +14 -0
  2497. package/libs/pagination/lib/es6/translations/nl.json +14 -0
  2498. package/libs/pagination/lib/es6/translations/pl.json +14 -0
  2499. package/libs/pagination/lib/es6/translations/pt.json +14 -0
  2500. package/libs/pagination/lib/es6/translations/ru.json +6 -0
  2501. package/libs/pagination/lib/es6/translations/sv.json +14 -0
  2502. package/libs/pagination/lib/es6/translations/tr.json +14 -0
  2503. package/libs/pagination/lib/es6/translations/vi.json +14 -0
  2504. package/libs/pagination/lib/es6/translations/zh.json +14 -0
  2505. package/libs/pagination/lib/types/index.d.ts +76 -0
  2506. package/libs/pills/lib/cjs/Pills.js +228 -0
  2507. package/libs/pills/lib/cjs/Pills.js.map +1 -0
  2508. package/libs/pills/lib/cjs/index.d.js +2 -0
  2509. package/libs/pills/lib/cjs/index.d.js.map +1 -0
  2510. package/libs/pills/lib/cjs/index.js +14 -0
  2511. package/libs/pills/lib/cjs/index.js.map +1 -0
  2512. package/libs/pills/lib/es6/Pills.js +224 -0
  2513. package/libs/pills/lib/es6/Pills.js.map +1 -0
  2514. package/libs/pills/lib/es6/index.d.js +2 -0
  2515. package/libs/pills/lib/es6/index.d.js.map +1 -0
  2516. package/libs/pills/lib/es6/index.js +2 -0
  2517. package/libs/pills/lib/es6/index.js.map +1 -0
  2518. package/libs/pills/lib/types/index.d.ts +94 -0
  2519. package/libs/popper/lib/cjs/Popper.js +596 -0
  2520. package/libs/popper/lib/cjs/Popper.js.map +1 -0
  2521. package/libs/popper/lib/cjs/arrowOffset.js +66 -0
  2522. package/libs/popper/lib/cjs/arrowOffset.js.map +1 -0
  2523. package/libs/popper/lib/cjs/createPopper.js +15 -0
  2524. package/libs/popper/lib/cjs/createPopper.js.map +1 -0
  2525. package/libs/popper/lib/cjs/index.d.js +2 -0
  2526. package/libs/popper/lib/cjs/index.d.js.map +1 -0
  2527. package/libs/popper/lib/cjs/index.js +14 -0
  2528. package/libs/popper/lib/cjs/index.js.map +1 -0
  2529. package/libs/popper/lib/es6/Popper.js +590 -0
  2530. package/libs/popper/lib/es6/Popper.js.map +1 -0
  2531. package/libs/popper/lib/es6/arrowOffset.js +58 -0
  2532. package/libs/popper/lib/es6/arrowOffset.js.map +1 -0
  2533. package/libs/popper/lib/es6/createPopper.js +7 -0
  2534. package/libs/popper/lib/es6/createPopper.js.map +1 -0
  2535. package/libs/popper/lib/es6/index.d.js +2 -0
  2536. package/libs/popper/lib/es6/index.d.js.map +1 -0
  2537. package/libs/popper/lib/es6/index.js +2 -0
  2538. package/libs/popper/lib/es6/index.js.map +1 -0
  2539. package/libs/popper/lib/types/index.d.ts +134 -0
  2540. package/libs/portal/lib/cjs/Portal.js +48 -0
  2541. package/libs/portal/lib/cjs/Portal.js.map +1 -0
  2542. package/libs/portal/lib/cjs/index.js +26 -0
  2543. package/libs/portal/lib/cjs/index.js.map +1 -0
  2544. package/libs/portal/lib/es6/Portal.js +42 -0
  2545. package/libs/portal/lib/es6/Portal.js.map +1 -0
  2546. package/libs/portal/lib/es6/index.js +3 -0
  2547. package/libs/portal/lib/es6/index.js.map +1 -0
  2548. package/libs/portal/lib/types/Portal.d.ts +16 -0
  2549. package/libs/portal/lib/types/index.d.ts +2 -0
  2550. package/libs/product-head/lib/cjs/Info.js +68 -0
  2551. package/libs/product-head/lib/cjs/Info.js.map +1 -0
  2552. package/libs/product-head/lib/cjs/ProductHead.js +70 -0
  2553. package/libs/product-head/lib/cjs/ProductHead.js.map +1 -0
  2554. package/libs/product-head/lib/cjs/Title.js +64 -0
  2555. package/libs/product-head/lib/cjs/Title.js.map +1 -0
  2556. package/libs/product-head/lib/cjs/index.js +55 -0
  2557. package/libs/product-head/lib/cjs/index.js.map +1 -0
  2558. package/libs/product-head/lib/es6/Info.js +63 -0
  2559. package/libs/product-head/lib/es6/Info.js.map +1 -0
  2560. package/libs/product-head/lib/es6/ProductHead.js +66 -0
  2561. package/libs/product-head/lib/es6/ProductHead.js.map +1 -0
  2562. package/libs/product-head/lib/es6/Title.js +58 -0
  2563. package/libs/product-head/lib/es6/Title.js.map +1 -0
  2564. package/libs/product-head/lib/es6/index.js +6 -0
  2565. package/libs/product-head/lib/es6/index.js.map +1 -0
  2566. package/libs/product-head/lib/types/Info.d.ts +16 -0
  2567. package/libs/product-head/lib/types/ProductHead.d.ts +7 -0
  2568. package/libs/product-head/lib/types/Title.d.ts +13 -0
  2569. package/libs/product-head/lib/types/index.d.ts +5 -0
  2570. package/libs/progress-bar/lib/cjs/ProgressBar.js +119 -0
  2571. package/libs/progress-bar/lib/cjs/ProgressBar.js.map +1 -0
  2572. package/libs/progress-bar/lib/cjs/index.d.js +2 -0
  2573. package/libs/progress-bar/lib/cjs/index.d.js.map +1 -0
  2574. package/libs/progress-bar/lib/cjs/index.js +14 -0
  2575. package/libs/progress-bar/lib/cjs/index.js.map +1 -0
  2576. package/libs/progress-bar/lib/es6/ProgressBar.js +113 -0
  2577. package/libs/progress-bar/lib/es6/ProgressBar.js.map +1 -0
  2578. package/libs/progress-bar/lib/es6/index.d.js +2 -0
  2579. package/libs/progress-bar/lib/es6/index.d.js.map +1 -0
  2580. package/libs/progress-bar/lib/es6/index.js +2 -0
  2581. package/libs/progress-bar/lib/es6/index.js.map +1 -0
  2582. package/libs/progress-bar/lib/types/index.d.ts +44 -0
  2583. package/libs/radio/lib/cjs/Radio.js +377 -0
  2584. package/libs/radio/lib/cjs/Radio.js.map +1 -0
  2585. package/libs/radio/lib/cjs/index.d.js +2 -0
  2586. package/libs/radio/lib/cjs/index.d.js.map +1 -0
  2587. package/libs/radio/lib/cjs/index.js +26 -0
  2588. package/libs/radio/lib/cjs/index.js.map +1 -0
  2589. package/libs/radio/lib/es6/Radio.js +368 -0
  2590. package/libs/radio/lib/es6/Radio.js.map +1 -0
  2591. package/libs/radio/lib/es6/index.d.js +2 -0
  2592. package/libs/radio/lib/es6/index.d.js.map +1 -0
  2593. package/libs/radio/lib/es6/index.js +3 -0
  2594. package/libs/radio/lib/es6/index.js.map +1 -0
  2595. package/libs/radio/lib/types/index.d.ts +138 -0
  2596. package/libs/scroll-area/lib/cjs/ScrollArea.js +302 -0
  2597. package/libs/scroll-area/lib/cjs/ScrollArea.js.map +1 -0
  2598. package/libs/scroll-area/lib/cjs/ScrollBar.js +393 -0
  2599. package/libs/scroll-area/lib/cjs/ScrollBar.js.map +1 -0
  2600. package/libs/scroll-area/lib/cjs/index.d.js +2 -0
  2601. package/libs/scroll-area/lib/cjs/index.d.js.map +1 -0
  2602. package/libs/scroll-area/lib/cjs/index.js +26 -0
  2603. package/libs/scroll-area/lib/cjs/index.js.map +1 -0
  2604. package/libs/scroll-area/lib/es6/ScrollArea.js +295 -0
  2605. package/libs/scroll-area/lib/es6/ScrollArea.js.map +1 -0
  2606. package/libs/scroll-area/lib/es6/ScrollBar.js +386 -0
  2607. package/libs/scroll-area/lib/es6/ScrollBar.js.map +1 -0
  2608. package/libs/scroll-area/lib/es6/index.d.js +2 -0
  2609. package/libs/scroll-area/lib/es6/index.d.js.map +1 -0
  2610. package/libs/scroll-area/lib/es6/index.js +3 -0
  2611. package/libs/scroll-area/lib/es6/index.js.map +1 -0
  2612. package/libs/scroll-area/lib/types/index.d.ts +58 -0
  2613. package/libs/select/lib/cjs/InputSearch.js +150 -0
  2614. package/libs/select/lib/cjs/InputSearch.js.map +1 -0
  2615. package/libs/select/lib/cjs/Select.js +405 -0
  2616. package/libs/select/lib/cjs/Select.js.map +1 -0
  2617. package/libs/select/lib/cjs/context.js +11 -0
  2618. package/libs/select/lib/cjs/context.js.map +1 -0
  2619. package/libs/select/lib/cjs/index.d.js +2 -0
  2620. package/libs/select/lib/cjs/index.d.js.map +1 -0
  2621. package/libs/select/lib/cjs/index.js +21 -0
  2622. package/libs/select/lib/cjs/index.js.map +1 -0
  2623. package/libs/select/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2624. package/libs/select/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2625. package/libs/select/lib/cjs/translations/de.json +6 -0
  2626. package/libs/select/lib/cjs/translations/en.json +6 -0
  2627. package/libs/select/lib/cjs/translations/es.json +6 -0
  2628. package/libs/select/lib/cjs/translations/fr.json +6 -0
  2629. package/libs/select/lib/cjs/translations/it.json +6 -0
  2630. package/libs/select/lib/cjs/translations/ja.json +6 -0
  2631. package/libs/select/lib/cjs/translations/ko.json +6 -0
  2632. package/libs/select/lib/cjs/translations/nl.json +6 -0
  2633. package/libs/select/lib/cjs/translations/pl.json +6 -0
  2634. package/libs/select/lib/cjs/translations/pt.json +6 -0
  2635. package/libs/select/lib/cjs/translations/sv.json +6 -0
  2636. package/libs/select/lib/cjs/translations/tr.json +6 -0
  2637. package/libs/select/lib/cjs/translations/vi.json +6 -0
  2638. package/libs/select/lib/cjs/translations/zh.json +6 -0
  2639. package/libs/select/lib/es6/InputSearch.js +146 -0
  2640. package/libs/select/lib/es6/InputSearch.js.map +1 -0
  2641. package/libs/select/lib/es6/Select.js +401 -0
  2642. package/libs/select/lib/es6/Select.js.map +1 -0
  2643. package/libs/select/lib/es6/context.js +3 -0
  2644. package/libs/select/lib/es6/context.js.map +1 -0
  2645. package/libs/select/lib/es6/index.d.js +2 -0
  2646. package/libs/select/lib/es6/index.d.js.map +1 -0
  2647. package/libs/select/lib/es6/index.js +3 -0
  2648. package/libs/select/lib/es6/index.js.map +1 -0
  2649. package/libs/select/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2650. package/libs/select/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2651. package/libs/select/lib/es6/translations/de.json +6 -0
  2652. package/libs/select/lib/es6/translations/en.json +6 -0
  2653. package/libs/select/lib/es6/translations/es.json +6 -0
  2654. package/libs/select/lib/es6/translations/fr.json +6 -0
  2655. package/libs/select/lib/es6/translations/it.json +6 -0
  2656. package/libs/select/lib/es6/translations/ja.json +6 -0
  2657. package/libs/select/lib/es6/translations/ko.json +6 -0
  2658. package/libs/select/lib/es6/translations/nl.json +6 -0
  2659. package/libs/select/lib/es6/translations/pl.json +6 -0
  2660. package/libs/select/lib/es6/translations/pt.json +6 -0
  2661. package/libs/select/lib/es6/translations/sv.json +6 -0
  2662. package/libs/select/lib/es6/translations/tr.json +6 -0
  2663. package/libs/select/lib/es6/translations/vi.json +6 -0
  2664. package/libs/select/lib/es6/translations/zh.json +6 -0
  2665. package/libs/select/lib/types/index.d.ts +162 -0
  2666. package/libs/side-panel/lib/cjs/SidePanel.js +270 -0
  2667. package/libs/side-panel/lib/cjs/SidePanel.js.map +1 -0
  2668. package/libs/side-panel/lib/cjs/index.d.js +2 -0
  2669. package/libs/side-panel/lib/cjs/index.d.js.map +1 -0
  2670. package/libs/side-panel/lib/cjs/index.js +14 -0
  2671. package/libs/side-panel/lib/cjs/index.js.map +1 -0
  2672. package/libs/side-panel/lib/es6/SidePanel.js +271 -0
  2673. package/libs/side-panel/lib/es6/SidePanel.js.map +1 -0
  2674. package/libs/side-panel/lib/es6/index.d.js +2 -0
  2675. package/libs/side-panel/lib/es6/index.d.js.map +1 -0
  2676. package/libs/side-panel/lib/es6/index.js +2 -0
  2677. package/libs/side-panel/lib/es6/index.js.map +1 -0
  2678. package/libs/side-panel/lib/types/index.d.ts +85 -0
  2679. package/libs/skeleton/lib/cjs/Charts/Area.js +44 -0
  2680. package/libs/skeleton/lib/cjs/Charts/Area.js.map +1 -0
  2681. package/libs/skeleton/lib/cjs/Charts/Bar.js +54 -0
  2682. package/libs/skeleton/lib/cjs/Charts/Bar.js.map +1 -0
  2683. package/libs/skeleton/lib/cjs/Charts/Bubble.js +38 -0
  2684. package/libs/skeleton/lib/cjs/Charts/Bubble.js.map +1 -0
  2685. package/libs/skeleton/lib/cjs/Charts/Donut.js +48 -0
  2686. package/libs/skeleton/lib/cjs/Charts/Donut.js.map +1 -0
  2687. package/libs/skeleton/lib/cjs/Charts/Histogram.js +54 -0
  2688. package/libs/skeleton/lib/cjs/Charts/Histogram.js.map +1 -0
  2689. package/libs/skeleton/lib/cjs/Charts/Line.js +44 -0
  2690. package/libs/skeleton/lib/cjs/Charts/Line.js.map +1 -0
  2691. package/libs/skeleton/lib/cjs/Charts/RadialTree.js +38 -0
  2692. package/libs/skeleton/lib/cjs/Charts/RadialTree.js.map +1 -0
  2693. package/libs/skeleton/lib/cjs/Charts/ScatterPlot.js +38 -0
  2694. package/libs/skeleton/lib/cjs/Charts/ScatterPlot.js.map +1 -0
  2695. package/libs/skeleton/lib/cjs/Charts/Venn.js +38 -0
  2696. package/libs/skeleton/lib/cjs/Charts/Venn.js.map +1 -0
  2697. package/libs/skeleton/lib/cjs/Charts/index.js +70 -0
  2698. package/libs/skeleton/lib/cjs/Charts/index.js.map +1 -0
  2699. package/libs/skeleton/lib/cjs/Skeleton.d.js +2 -0
  2700. package/libs/skeleton/lib/cjs/Skeleton.d.js.map +1 -0
  2701. package/libs/skeleton/lib/cjs/Skeleton.js +165 -0
  2702. package/libs/skeleton/lib/cjs/Skeleton.js.map +1 -0
  2703. package/libs/skeleton/lib/cjs/index.d.js +2 -0
  2704. package/libs/skeleton/lib/cjs/index.d.js.map +1 -0
  2705. package/libs/skeleton/lib/cjs/index.js +27 -0
  2706. package/libs/skeleton/lib/cjs/index.js.map +1 -0
  2707. package/libs/skeleton/lib/cjs/svg/area-chart-linear.svg +3 -0
  2708. package/libs/skeleton/lib/cjs/svg/area-chart-monotone.svg +3 -0
  2709. package/libs/skeleton/lib/cjs/svg/bar-chart-horizontal.svg +6 -0
  2710. package/libs/skeleton/lib/cjs/svg/bar-chart-vertical.svg +7 -0
  2711. package/libs/skeleton/lib/cjs/svg/bubble-chart.svg +7 -0
  2712. package/libs/skeleton/lib/cjs/svg/donut-chart-halfsize.svg +4 -0
  2713. package/libs/skeleton/lib/cjs/svg/donut-chart.svg +9 -0
  2714. package/libs/skeleton/lib/cjs/svg/histogram-chart-horizontal.svg +6 -0
  2715. package/libs/skeleton/lib/cjs/svg/histogram-chart-vertical.svg +7 -0
  2716. package/libs/skeleton/lib/cjs/svg/line-chart-linear.svg +10 -0
  2717. package/libs/skeleton/lib/cjs/svg/line-chart-monotone.svg +3 -0
  2718. package/libs/skeleton/lib/cjs/svg/radial-chart.svg +19 -0
  2719. package/libs/skeleton/lib/cjs/svg/scatter-plot-chart.svg +16 -0
  2720. package/libs/skeleton/lib/cjs/svg/venn-chart.svg +13 -0
  2721. package/libs/skeleton/lib/es6/Charts/Area.js +37 -0
  2722. package/libs/skeleton/lib/es6/Charts/Area.js.map +1 -0
  2723. package/libs/skeleton/lib/es6/Charts/Bar.js +47 -0
  2724. package/libs/skeleton/lib/es6/Charts/Bar.js.map +1 -0
  2725. package/libs/skeleton/lib/es6/Charts/Bubble.js +31 -0
  2726. package/libs/skeleton/lib/es6/Charts/Bubble.js.map +1 -0
  2727. package/libs/skeleton/lib/es6/Charts/Donut.js +41 -0
  2728. package/libs/skeleton/lib/es6/Charts/Donut.js.map +1 -0
  2729. package/libs/skeleton/lib/es6/Charts/Histogram.js +47 -0
  2730. package/libs/skeleton/lib/es6/Charts/Histogram.js.map +1 -0
  2731. package/libs/skeleton/lib/es6/Charts/Line.js +37 -0
  2732. package/libs/skeleton/lib/es6/Charts/Line.js.map +1 -0
  2733. package/libs/skeleton/lib/es6/Charts/RadialTree.js +31 -0
  2734. package/libs/skeleton/lib/es6/Charts/RadialTree.js.map +1 -0
  2735. package/libs/skeleton/lib/es6/Charts/ScatterPlot.js +31 -0
  2736. package/libs/skeleton/lib/es6/Charts/ScatterPlot.js.map +1 -0
  2737. package/libs/skeleton/lib/es6/Charts/Venn.js +31 -0
  2738. package/libs/skeleton/lib/es6/Charts/Venn.js.map +1 -0
  2739. package/libs/skeleton/lib/es6/Charts/index.js +10 -0
  2740. package/libs/skeleton/lib/es6/Charts/index.js.map +1 -0
  2741. package/libs/skeleton/lib/es6/Skeleton.d.js +2 -0
  2742. package/libs/skeleton/lib/es6/Skeleton.d.js.map +1 -0
  2743. package/libs/skeleton/lib/es6/Skeleton.js +159 -0
  2744. package/libs/skeleton/lib/es6/Skeleton.js.map +1 -0
  2745. package/libs/skeleton/lib/es6/index.d.js +2 -0
  2746. package/libs/skeleton/lib/es6/index.d.js.map +1 -0
  2747. package/libs/skeleton/lib/es6/index.js +3 -0
  2748. package/libs/skeleton/lib/es6/index.js.map +1 -0
  2749. package/libs/skeleton/lib/es6/svg/area-chart-linear.svg +3 -0
  2750. package/libs/skeleton/lib/es6/svg/area-chart-monotone.svg +3 -0
  2751. package/libs/skeleton/lib/es6/svg/bar-chart-horizontal.svg +6 -0
  2752. package/libs/skeleton/lib/es6/svg/bar-chart-vertical.svg +7 -0
  2753. package/libs/skeleton/lib/es6/svg/bubble-chart.svg +7 -0
  2754. package/libs/skeleton/lib/es6/svg/donut-chart-halfsize.svg +4 -0
  2755. package/libs/skeleton/lib/es6/svg/donut-chart.svg +9 -0
  2756. package/libs/skeleton/lib/es6/svg/histogram-chart-horizontal.svg +6 -0
  2757. package/libs/skeleton/lib/es6/svg/histogram-chart-vertical.svg +7 -0
  2758. package/libs/skeleton/lib/es6/svg/line-chart-linear.svg +10 -0
  2759. package/libs/skeleton/lib/es6/svg/line-chart-monotone.svg +3 -0
  2760. package/libs/skeleton/lib/es6/svg/radial-chart.svg +19 -0
  2761. package/libs/skeleton/lib/es6/svg/scatter-plot-chart.svg +16 -0
  2762. package/libs/skeleton/lib/es6/svg/venn-chart.svg +13 -0
  2763. package/libs/skeleton/lib/types/Skeleton.d.ts +4 -0
  2764. package/libs/skeleton/lib/types/index.d.ts +86 -0
  2765. package/libs/slider/lib/cjs/Slider.js +312 -0
  2766. package/libs/slider/lib/cjs/Slider.js.map +1 -0
  2767. package/libs/slider/lib/cjs/index.d.js +2 -0
  2768. package/libs/slider/lib/cjs/index.d.js.map +1 -0
  2769. package/libs/slider/lib/cjs/index.js +14 -0
  2770. package/libs/slider/lib/cjs/index.js.map +1 -0
  2771. package/libs/slider/lib/es6/Slider.js +309 -0
  2772. package/libs/slider/lib/es6/Slider.js.map +1 -0
  2773. package/libs/slider/lib/es6/index.d.js +2 -0
  2774. package/libs/slider/lib/es6/index.d.js.map +1 -0
  2775. package/libs/slider/lib/es6/index.js +2 -0
  2776. package/libs/slider/lib/es6/index.js.map +1 -0
  2777. package/libs/slider/lib/types/index.d.ts +83 -0
  2778. package/libs/spin/lib/cjs/Spin.js +74 -0
  2779. package/libs/spin/lib/cjs/Spin.js.map +1 -0
  2780. package/libs/spin/lib/cjs/index.d.js +2 -0
  2781. package/libs/spin/lib/cjs/index.d.js.map +1 -0
  2782. package/libs/spin/lib/cjs/index.js +14 -0
  2783. package/libs/spin/lib/cjs/index.js.map +1 -0
  2784. package/libs/spin/lib/es6/Spin.js +67 -0
  2785. package/libs/spin/lib/es6/Spin.js.map +1 -0
  2786. package/libs/spin/lib/es6/index.d.js +2 -0
  2787. package/libs/spin/lib/es6/index.d.js.map +1 -0
  2788. package/libs/spin/lib/es6/index.js +2 -0
  2789. package/libs/spin/lib/es6/index.js.map +1 -0
  2790. package/libs/spin/lib/types/index.d.ts +26 -0
  2791. package/libs/spin-container/lib/cjs/SpinContainer.js +142 -0
  2792. package/libs/spin-container/lib/cjs/SpinContainer.js.map +1 -0
  2793. package/libs/spin-container/lib/cjs/index.d.js +2 -0
  2794. package/libs/spin-container/lib/cjs/index.d.js.map +1 -0
  2795. package/libs/spin-container/lib/cjs/index.js +14 -0
  2796. package/libs/spin-container/lib/cjs/index.js.map +1 -0
  2797. package/libs/spin-container/lib/es6/SpinContainer.js +137 -0
  2798. package/libs/spin-container/lib/es6/SpinContainer.js.map +1 -0
  2799. package/libs/spin-container/lib/es6/index.d.js +2 -0
  2800. package/libs/spin-container/lib/es6/index.d.js.map +1 -0
  2801. package/libs/spin-container/lib/es6/index.js +2 -0
  2802. package/libs/spin-container/lib/es6/index.js.map +1 -0
  2803. package/libs/spin-container/lib/types/index.d.ts +52 -0
  2804. package/libs/sticky/lib/cjs/Sticky.js +53 -0
  2805. package/libs/sticky/lib/cjs/Sticky.js.map +1 -0
  2806. package/libs/sticky/lib/cjs/index.js +26 -0
  2807. package/libs/sticky/lib/cjs/index.js.map +1 -0
  2808. package/libs/sticky/lib/es6/Sticky.js +46 -0
  2809. package/libs/sticky/lib/es6/Sticky.js.map +1 -0
  2810. package/libs/sticky/lib/es6/index.js +3 -0
  2811. package/libs/sticky/lib/es6/index.js.map +1 -0
  2812. package/libs/sticky/lib/types/Sticky.d.ts +17 -0
  2813. package/libs/sticky/lib/types/index.d.ts +2 -0
  2814. package/libs/switch/lib/cjs/Switch.js +287 -0
  2815. package/libs/switch/lib/cjs/Switch.js.map +1 -0
  2816. package/libs/switch/lib/cjs/index.d.js +13 -0
  2817. package/libs/switch/lib/cjs/index.d.js.map +1 -0
  2818. package/libs/switch/lib/cjs/index.js +26 -0
  2819. package/libs/switch/lib/cjs/index.js.map +1 -0
  2820. package/libs/switch/lib/es6/Switch.js +276 -0
  2821. package/libs/switch/lib/es6/Switch.js.map +1 -0
  2822. package/libs/switch/lib/es6/index.d.js +3 -0
  2823. package/libs/switch/lib/es6/index.d.js.map +1 -0
  2824. package/libs/switch/lib/es6/index.js +3 -0
  2825. package/libs/switch/lib/es6/index.js.map +1 -0
  2826. package/libs/switch/lib/types/index.d.ts +61 -0
  2827. package/libs/tab-line/lib/cjs/TabLine.js +261 -0
  2828. package/libs/tab-line/lib/cjs/TabLine.js.map +1 -0
  2829. package/libs/tab-line/lib/cjs/index.d.js +2 -0
  2830. package/libs/tab-line/lib/cjs/index.d.js.map +1 -0
  2831. package/libs/tab-line/lib/cjs/index.js +14 -0
  2832. package/libs/tab-line/lib/cjs/index.js.map +1 -0
  2833. package/libs/tab-line/lib/es6/TabLine.js +257 -0
  2834. package/libs/tab-line/lib/es6/TabLine.js.map +1 -0
  2835. package/libs/tab-line/lib/es6/index.d.js +2 -0
  2836. package/libs/tab-line/lib/es6/index.d.js.map +1 -0
  2837. package/libs/tab-line/lib/es6/index.js +2 -0
  2838. package/libs/tab-line/lib/es6/index.js.map +1 -0
  2839. package/libs/tab-line/lib/types/index.d.ts +93 -0
  2840. package/libs/tab-panel/lib/cjs/TabPanel.js +154 -0
  2841. package/libs/tab-panel/lib/cjs/TabPanel.js.map +1 -0
  2842. package/libs/tab-panel/lib/cjs/index.d.js +2 -0
  2843. package/libs/tab-panel/lib/cjs/index.d.js.map +1 -0
  2844. package/libs/tab-panel/lib/cjs/index.js +14 -0
  2845. package/libs/tab-panel/lib/cjs/index.js.map +1 -0
  2846. package/libs/tab-panel/lib/es6/TabPanel.js +150 -0
  2847. package/libs/tab-panel/lib/es6/TabPanel.js.map +1 -0
  2848. package/libs/tab-panel/lib/es6/index.d.js +2 -0
  2849. package/libs/tab-panel/lib/es6/index.d.js.map +1 -0
  2850. package/libs/tab-panel/lib/es6/index.js +2 -0
  2851. package/libs/tab-panel/lib/es6/index.js.map +1 -0
  2852. package/libs/tab-panel/lib/types/index.d.ts +81 -0
  2853. package/libs/tag/lib/cjs/Tag.js +207 -0
  2854. package/libs/tag/lib/cjs/Tag.js.map +1 -0
  2855. package/libs/tag/lib/cjs/index.d.js +2 -0
  2856. package/libs/tag/lib/cjs/index.d.js.map +1 -0
  2857. package/libs/tag/lib/cjs/index.js +14 -0
  2858. package/libs/tag/lib/cjs/index.js.map +1 -0
  2859. package/libs/tag/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2860. package/libs/tag/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2861. package/libs/tag/lib/cjs/translations/de.json +3 -0
  2862. package/libs/tag/lib/cjs/translations/en.json +3 -0
  2863. package/libs/tag/lib/cjs/translations/es.json +3 -0
  2864. package/libs/tag/lib/cjs/translations/fr.json +3 -0
  2865. package/libs/tag/lib/cjs/translations/it.json +3 -0
  2866. package/libs/tag/lib/cjs/translations/ja.json +3 -0
  2867. package/libs/tag/lib/cjs/translations/ko.json +3 -0
  2868. package/libs/tag/lib/cjs/translations/nl.json +3 -0
  2869. package/libs/tag/lib/cjs/translations/pl.json +3 -0
  2870. package/libs/tag/lib/cjs/translations/pt.json +3 -0
  2871. package/libs/tag/lib/cjs/translations/sv.json +3 -0
  2872. package/libs/tag/lib/cjs/translations/tr.json +3 -0
  2873. package/libs/tag/lib/cjs/translations/vi.json +3 -0
  2874. package/libs/tag/lib/cjs/translations/zh.json +3 -0
  2875. package/libs/tag/lib/es6/Tag.js +204 -0
  2876. package/libs/tag/lib/es6/Tag.js.map +1 -0
  2877. package/libs/tag/lib/es6/index.d.js +2 -0
  2878. package/libs/tag/lib/es6/index.d.js.map +1 -0
  2879. package/libs/tag/lib/es6/index.js +2 -0
  2880. package/libs/tag/lib/es6/index.js.map +1 -0
  2881. package/libs/tag/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2882. package/libs/tag/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2883. package/libs/tag/lib/es6/translations/de.json +3 -0
  2884. package/libs/tag/lib/es6/translations/en.json +3 -0
  2885. package/libs/tag/lib/es6/translations/es.json +3 -0
  2886. package/libs/tag/lib/es6/translations/fr.json +3 -0
  2887. package/libs/tag/lib/es6/translations/it.json +3 -0
  2888. package/libs/tag/lib/es6/translations/ja.json +3 -0
  2889. package/libs/tag/lib/es6/translations/ko.json +3 -0
  2890. package/libs/tag/lib/es6/translations/nl.json +3 -0
  2891. package/libs/tag/lib/es6/translations/pl.json +3 -0
  2892. package/libs/tag/lib/es6/translations/pt.json +3 -0
  2893. package/libs/tag/lib/es6/translations/sv.json +3 -0
  2894. package/libs/tag/lib/es6/translations/tr.json +3 -0
  2895. package/libs/tag/lib/es6/translations/vi.json +3 -0
  2896. package/libs/tag/lib/es6/translations/zh.json +3 -0
  2897. package/libs/tag/lib/types/index.d.ts +88 -0
  2898. package/libs/textarea/lib/cjs/Textarea.js +151 -0
  2899. package/libs/textarea/lib/cjs/Textarea.js.map +1 -0
  2900. package/libs/textarea/lib/cjs/index.d.js +2 -0
  2901. package/libs/textarea/lib/cjs/index.d.js.map +1 -0
  2902. package/libs/textarea/lib/cjs/index.js +14 -0
  2903. package/libs/textarea/lib/cjs/index.js.map +1 -0
  2904. package/libs/textarea/lib/es6/Textarea.js +144 -0
  2905. package/libs/textarea/lib/es6/Textarea.js.map +1 -0
  2906. package/libs/textarea/lib/es6/index.d.js +2 -0
  2907. package/libs/textarea/lib/es6/index.d.js.map +1 -0
  2908. package/libs/textarea/lib/es6/index.js +2 -0
  2909. package/libs/textarea/lib/es6/index.js.map +1 -0
  2910. package/libs/textarea/lib/types/index.d.ts +45 -0
  2911. package/libs/time-picker/lib/cjs/PickerFormat.js +55 -0
  2912. package/libs/time-picker/lib/cjs/PickerFormat.js.map +1 -0
  2913. package/libs/time-picker/lib/cjs/PickerInput.js +306 -0
  2914. package/libs/time-picker/lib/cjs/PickerInput.js.map +1 -0
  2915. package/libs/time-picker/lib/cjs/TimePicker.js +338 -0
  2916. package/libs/time-picker/lib/cjs/TimePicker.js.map +1 -0
  2917. package/libs/time-picker/lib/cjs/index.d.js +2 -0
  2918. package/libs/time-picker/lib/cjs/index.d.js.map +1 -0
  2919. package/libs/time-picker/lib/cjs/index.js +26 -0
  2920. package/libs/time-picker/lib/cjs/index.js.map +1 -0
  2921. package/libs/time-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2922. package/libs/time-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2923. package/libs/time-picker/lib/cjs/translations/de.json +7 -0
  2924. package/libs/time-picker/lib/cjs/translations/en.json +7 -0
  2925. package/libs/time-picker/lib/cjs/translations/es.json +7 -0
  2926. package/libs/time-picker/lib/cjs/translations/fr.json +7 -0
  2927. package/libs/time-picker/lib/cjs/translations/it.json +7 -0
  2928. package/libs/time-picker/lib/cjs/translations/ja.json +7 -0
  2929. package/libs/time-picker/lib/cjs/translations/ko.json +7 -0
  2930. package/libs/time-picker/lib/cjs/translations/nl.json +7 -0
  2931. package/libs/time-picker/lib/cjs/translations/pl.json +7 -0
  2932. package/libs/time-picker/lib/cjs/translations/pt.json +7 -0
  2933. package/libs/time-picker/lib/cjs/translations/sv.json +7 -0
  2934. package/libs/time-picker/lib/cjs/translations/tr.json +7 -0
  2935. package/libs/time-picker/lib/cjs/translations/vi.json +7 -0
  2936. package/libs/time-picker/lib/cjs/translations/zh.json +7 -0
  2937. package/libs/time-picker/lib/es6/PickerFormat.js +48 -0
  2938. package/libs/time-picker/lib/es6/PickerFormat.js.map +1 -0
  2939. package/libs/time-picker/lib/es6/PickerInput.js +299 -0
  2940. package/libs/time-picker/lib/es6/PickerInput.js.map +1 -0
  2941. package/libs/time-picker/lib/es6/TimePicker.js +327 -0
  2942. package/libs/time-picker/lib/es6/TimePicker.js.map +1 -0
  2943. package/libs/time-picker/lib/es6/index.d.js +2 -0
  2944. package/libs/time-picker/lib/es6/index.d.js.map +1 -0
  2945. package/libs/time-picker/lib/es6/index.js +3 -0
  2946. package/libs/time-picker/lib/es6/index.js.map +1 -0
  2947. package/libs/time-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2948. package/libs/time-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2949. package/libs/time-picker/lib/es6/translations/de.json +7 -0
  2950. package/libs/time-picker/lib/es6/translations/en.json +7 -0
  2951. package/libs/time-picker/lib/es6/translations/es.json +7 -0
  2952. package/libs/time-picker/lib/es6/translations/fr.json +7 -0
  2953. package/libs/time-picker/lib/es6/translations/it.json +7 -0
  2954. package/libs/time-picker/lib/es6/translations/ja.json +7 -0
  2955. package/libs/time-picker/lib/es6/translations/ko.json +7 -0
  2956. package/libs/time-picker/lib/es6/translations/nl.json +7 -0
  2957. package/libs/time-picker/lib/es6/translations/pl.json +7 -0
  2958. package/libs/time-picker/lib/es6/translations/pt.json +7 -0
  2959. package/libs/time-picker/lib/es6/translations/sv.json +7 -0
  2960. package/libs/time-picker/lib/es6/translations/tr.json +7 -0
  2961. package/libs/time-picker/lib/es6/translations/vi.json +7 -0
  2962. package/libs/time-picker/lib/es6/translations/zh.json +7 -0
  2963. package/libs/time-picker/lib/types/index.d.ts +63 -0
  2964. package/libs/tooltip/lib/cjs/Tooltip.js +158 -0
  2965. package/libs/tooltip/lib/cjs/Tooltip.js.map +1 -0
  2966. package/libs/tooltip/lib/cjs/index.d.js +2 -0
  2967. package/libs/tooltip/lib/cjs/index.d.js.map +1 -0
  2968. package/libs/tooltip/lib/cjs/index.js +14 -0
  2969. package/libs/tooltip/lib/cjs/index.js.map +1 -0
  2970. package/libs/tooltip/lib/es6/Tooltip.js +153 -0
  2971. package/libs/tooltip/lib/es6/Tooltip.js.map +1 -0
  2972. package/libs/tooltip/lib/es6/index.d.js +2 -0
  2973. package/libs/tooltip/lib/es6/index.d.js.map +1 -0
  2974. package/libs/tooltip/lib/es6/index.js +2 -0
  2975. package/libs/tooltip/lib/es6/index.js.map +1 -0
  2976. package/libs/tooltip/lib/types/index.d.ts +29 -0
  2977. package/libs/typography/lib/cjs/Blockquote.js +35 -0
  2978. package/libs/typography/lib/cjs/Blockquote.js.map +1 -0
  2979. package/libs/typography/lib/cjs/Hint.js +86 -0
  2980. package/libs/typography/lib/cjs/Hint.js.map +1 -0
  2981. package/libs/typography/lib/cjs/List.js +81 -0
  2982. package/libs/typography/lib/cjs/List.js.map +1 -0
  2983. package/libs/typography/lib/cjs/Text.js +77 -0
  2984. package/libs/typography/lib/cjs/Text.js.map +1 -0
  2985. package/libs/typography/lib/cjs/index.d.js +2 -0
  2986. package/libs/typography/lib/cjs/index.d.js.map +1 -0
  2987. package/libs/typography/lib/cjs/index.js +35 -0
  2988. package/libs/typography/lib/cjs/index.js.map +1 -0
  2989. package/libs/typography/lib/es6/Blockquote.js +29 -0
  2990. package/libs/typography/lib/es6/Blockquote.js.map +1 -0
  2991. package/libs/typography/lib/es6/Hint.js +81 -0
  2992. package/libs/typography/lib/es6/Hint.js.map +1 -0
  2993. package/libs/typography/lib/es6/List.js +75 -0
  2994. package/libs/typography/lib/es6/List.js.map +1 -0
  2995. package/libs/typography/lib/es6/Text.js +71 -0
  2996. package/libs/typography/lib/es6/Text.js.map +1 -0
  2997. package/libs/typography/lib/es6/index.d.js +2 -0
  2998. package/libs/typography/lib/es6/index.d.js.map +1 -0
  2999. package/libs/typography/lib/es6/index.js +5 -0
  3000. package/libs/typography/lib/es6/index.js.map +1 -0
  3001. package/libs/typography/lib/types/index.d.ts +108 -0
  3002. package/libs/utils/lib/CSSinJS.d.ts +5 -0
  3003. package/libs/utils/lib/CSSinJS.js +36 -0
  3004. package/libs/utils/lib/CSSinJS.js.map +1 -0
  3005. package/libs/utils/lib/CSSinJS.mjs +28 -0
  3006. package/libs/utils/lib/CSSinJS.mjs.map +1 -0
  3007. package/libs/utils/lib/ScreenReaderOnly.d.ts +5 -0
  3008. package/libs/utils/lib/ScreenReaderOnly.js +29 -0
  3009. package/libs/utils/lib/ScreenReaderOnly.js.map +1 -0
  3010. package/libs/utils/lib/ScreenReaderOnly.mjs +21 -0
  3011. package/libs/utils/lib/ScreenReaderOnly.mjs.map +1 -0
  3012. package/libs/utils/lib/ThemeProvider.d.ts +13 -0
  3013. package/libs/utils/lib/ThemeProvider.js +74 -0
  3014. package/libs/utils/lib/ThemeProvider.js.map +1 -0
  3015. package/libs/utils/lib/ThemeProvider.mjs +63 -0
  3016. package/libs/utils/lib/ThemeProvider.mjs.map +1 -0
  3017. package/libs/utils/lib/addonText.d.ts +2 -0
  3018. package/libs/utils/lib/addonText.js +18 -0
  3019. package/libs/utils/lib/addonText.js.map +1 -0
  3020. package/libs/utils/lib/addonText.mjs +11 -0
  3021. package/libs/utils/lib/addonText.mjs.map +1 -0
  3022. package/libs/utils/lib/addonTextChildren.d.ts +3 -0
  3023. package/libs/utils/lib/addonTextChildren.js +47 -0
  3024. package/libs/utils/lib/addonTextChildren.js.map +1 -0
  3025. package/libs/utils/lib/addonTextChildren.mjs +38 -0
  3026. package/libs/utils/lib/addonTextChildren.mjs.map +1 -0
  3027. package/libs/utils/lib/assignProps.d.ts +13 -0
  3028. package/libs/utils/lib/assignProps.js +93 -0
  3029. package/libs/utils/lib/assignProps.js.map +1 -0
  3030. package/libs/utils/lib/assignProps.mjs +84 -0
  3031. package/libs/utils/lib/assignProps.mjs.map +1 -0
  3032. package/libs/utils/lib/canUseDOM.d.ts +1 -0
  3033. package/libs/utils/lib/canUseDOM.js +10 -0
  3034. package/libs/utils/lib/canUseDOM.js.map +1 -0
  3035. package/libs/utils/lib/canUseDOM.mjs +4 -0
  3036. package/libs/utils/lib/canUseDOM.mjs.map +1 -0
  3037. package/libs/utils/lib/capitalizeFirstLetter.d.ts +1 -0
  3038. package/libs/utils/lib/capitalizeFirstLetter.js +10 -0
  3039. package/libs/utils/lib/capitalizeFirstLetter.js.map +1 -0
  3040. package/libs/utils/lib/capitalizeFirstLetter.mjs +4 -0
  3041. package/libs/utils/lib/capitalizeFirstLetter.mjs.map +1 -0
  3042. package/libs/utils/lib/color.d.ts +6 -0
  3043. package/libs/utils/lib/color.js +370 -0
  3044. package/libs/utils/lib/color.js.map +1 -0
  3045. package/libs/utils/lib/color.mjs +357 -0
  3046. package/libs/utils/lib/color.mjs.map +1 -0
  3047. package/libs/utils/lib/compose.d.ts +1 -0
  3048. package/libs/utils/lib/compose.js +21 -0
  3049. package/libs/utils/lib/compose.js.map +1 -0
  3050. package/libs/utils/lib/compose.mjs +15 -0
  3051. package/libs/utils/lib/compose.mjs.map +1 -0
  3052. package/libs/utils/lib/createHoc.d.ts +3 -0
  3053. package/libs/utils/lib/createHoc.js +55 -0
  3054. package/libs/utils/lib/createHoc.js.map +1 -0
  3055. package/libs/utils/lib/createHoc.mjs +46 -0
  3056. package/libs/utils/lib/createHoc.mjs.map +1 -0
  3057. package/libs/utils/lib/createUUID.d.ts +1 -0
  3058. package/libs/utils/lib/createUUID.js +15 -0
  3059. package/libs/utils/lib/createUUID.js.map +1 -0
  3060. package/libs/utils/lib/createUUID.mjs +9 -0
  3061. package/libs/utils/lib/createUUID.mjs.map +1 -0
  3062. package/libs/utils/lib/cssToIntDefault.d.ts +8 -0
  3063. package/libs/utils/lib/cssToIntDefault.js +22 -0
  3064. package/libs/utils/lib/cssToIntDefault.js.map +1 -0
  3065. package/libs/utils/lib/cssToIntDefault.mjs +16 -0
  3066. package/libs/utils/lib/cssToIntDefault.mjs.map +1 -0
  3067. package/libs/utils/lib/enhances/WithAutoFocus.d.ts +14 -0
  3068. package/libs/utils/lib/enhances/WithAutoFocus.js +75 -0
  3069. package/libs/utils/lib/enhances/WithAutoFocus.js.map +1 -0
  3070. package/libs/utils/lib/enhances/WithAutoFocus.mjs +67 -0
  3071. package/libs/utils/lib/enhances/WithAutoFocus.mjs.map +1 -0
  3072. package/libs/utils/lib/enhances/WithCSS.d.ts +41 -0
  3073. package/libs/utils/lib/enhances/WithCSS.js +93 -0
  3074. package/libs/utils/lib/enhances/WithCSS.js.map +1 -0
  3075. package/libs/utils/lib/enhances/WithCSS.mjs +79 -0
  3076. package/libs/utils/lib/enhances/WithCSS.mjs.map +1 -0
  3077. package/libs/utils/lib/enhances/WithI18n.d.ts +43 -0
  3078. package/libs/utils/lib/enhances/WithI18n.js +85 -0
  3079. package/libs/utils/lib/enhances/WithI18n.js.map +1 -0
  3080. package/libs/utils/lib/enhances/WithI18n.mjs +73 -0
  3081. package/libs/utils/lib/enhances/WithI18n.mjs.map +1 -0
  3082. package/libs/utils/lib/enhances/WithKeyboardFocus.d.ts +45 -0
  3083. package/libs/utils/lib/enhances/WithKeyboardFocus.js +93 -0
  3084. package/libs/utils/lib/enhances/WithKeyboardFocus.js.map +1 -0
  3085. package/libs/utils/lib/enhances/WithKeyboardFocus.mjs +84 -0
  3086. package/libs/utils/lib/enhances/WithKeyboardFocus.mjs.map +1 -0
  3087. package/libs/utils/lib/enhances/WithRef.d.ts +3 -0
  3088. package/libs/utils/lib/enhances/WithRef.js +26 -0
  3089. package/libs/utils/lib/enhances/WithRef.js.map +1 -0
  3090. package/libs/utils/lib/enhances/WithRef.mjs +18 -0
  3091. package/libs/utils/lib/enhances/WithRef.mjs.map +1 -0
  3092. package/libs/utils/lib/enhances/a11yEnhance.d.ts +4 -0
  3093. package/libs/utils/lib/enhances/a11yEnhance.js +74 -0
  3094. package/libs/utils/lib/enhances/a11yEnhance.js.map +1 -0
  3095. package/libs/utils/lib/enhances/a11yEnhance.mjs +66 -0
  3096. package/libs/utils/lib/enhances/a11yEnhance.mjs.map +1 -0
  3097. package/libs/utils/lib/enhances/animatedSizeEnhance.d.ts +12 -0
  3098. package/libs/utils/lib/enhances/animatedSizeEnhance.js +98 -0
  3099. package/libs/utils/lib/enhances/animatedSizeEnhance.js.map +1 -0
  3100. package/libs/utils/lib/enhances/animatedSizeEnhance.mjs +90 -0
  3101. package/libs/utils/lib/enhances/animatedSizeEnhance.mjs.map +1 -0
  3102. package/libs/utils/lib/enhances/autoFocusEnhance.d.ts +10 -0
  3103. package/libs/utils/lib/enhances/autoFocusEnhance.js +46 -0
  3104. package/libs/utils/lib/enhances/autoFocusEnhance.js.map +1 -0
  3105. package/libs/utils/lib/enhances/autoFocusEnhance.mjs +38 -0
  3106. package/libs/utils/lib/enhances/autoFocusEnhance.mjs.map +1 -0
  3107. package/libs/utils/lib/enhances/contextEnhance.d.ts +3 -0
  3108. package/libs/utils/lib/enhances/contextEnhance.js +22 -0
  3109. package/libs/utils/lib/enhances/contextEnhance.js.map +1 -0
  3110. package/libs/utils/lib/enhances/contextEnhance.mjs +14 -0
  3111. package/libs/utils/lib/enhances/contextEnhance.mjs.map +1 -0
  3112. package/libs/utils/lib/enhances/i18nEnhance.d.ts +26 -0
  3113. package/libs/utils/lib/enhances/i18nEnhance.js +133 -0
  3114. package/libs/utils/lib/enhances/i18nEnhance.js.map +1 -0
  3115. package/libs/utils/lib/enhances/i18nEnhance.mjs +122 -0
  3116. package/libs/utils/lib/enhances/i18nEnhance.mjs.map +1 -0
  3117. package/libs/utils/lib/enhances/keyboardFocusEnhance.d.ts +26 -0
  3118. package/libs/utils/lib/enhances/keyboardFocusEnhance.js +114 -0
  3119. package/libs/utils/lib/enhances/keyboardFocusEnhance.js.map +1 -0
  3120. package/libs/utils/lib/enhances/keyboardFocusEnhance.mjs +105 -0
  3121. package/libs/utils/lib/enhances/keyboardFocusEnhance.mjs.map +1 -0
  3122. package/libs/utils/lib/enhances/resolveColorEnhance.d.ts +2 -0
  3123. package/libs/utils/lib/enhances/resolveColorEnhance.js +25 -0
  3124. package/libs/utils/lib/enhances/resolveColorEnhance.js.map +1 -0
  3125. package/libs/utils/lib/enhances/resolveColorEnhance.mjs +17 -0
  3126. package/libs/utils/lib/enhances/resolveColorEnhance.mjs.map +1 -0
  3127. package/libs/utils/lib/eventEmitter.d.ts +5 -0
  3128. package/libs/utils/lib/eventEmitter.js +49 -0
  3129. package/libs/utils/lib/eventEmitter.js.map +1 -0
  3130. package/libs/utils/lib/eventEmitter.mjs +42 -0
  3131. package/libs/utils/lib/eventEmitter.mjs.map +1 -0
  3132. package/libs/utils/lib/findComponent.d.ts +5 -0
  3133. package/libs/utils/lib/findComponent.js +67 -0
  3134. package/libs/utils/lib/findComponent.js.map +1 -0
  3135. package/libs/utils/lib/findComponent.mjs +56 -0
  3136. package/libs/utils/lib/findComponent.mjs.map +1 -0
  3137. package/libs/utils/lib/fire.d.ts +2 -0
  3138. package/libs/utils/lib/fire.js +23 -0
  3139. package/libs/utils/lib/fire.js.map +1 -0
  3140. package/libs/utils/lib/fire.mjs +15 -0
  3141. package/libs/utils/lib/fire.mjs.map +1 -0
  3142. package/libs/utils/lib/getDisplayName.d.ts +2 -0
  3143. package/libs/utils/lib/getDisplayName.js +10 -0
  3144. package/libs/utils/lib/getDisplayName.js.map +1 -0
  3145. package/libs/utils/lib/getDisplayName.mjs +4 -0
  3146. package/libs/utils/lib/getDisplayName.mjs.map +1 -0
  3147. package/libs/utils/lib/getOriginChildren.d.ts +2 -0
  3148. package/libs/utils/lib/getOriginChildren.js +20 -0
  3149. package/libs/utils/lib/getOriginChildren.js.map +1 -0
  3150. package/libs/utils/lib/getOriginChildren.mjs +11 -0
  3151. package/libs/utils/lib/getOriginChildren.mjs.map +1 -0
  3152. package/libs/utils/lib/getRandomInt.d.ts +1 -0
  3153. package/libs/utils/lib/getRandomInt.js +11 -0
  3154. package/libs/utils/lib/getRandomInt.js.map +1 -0
  3155. package/libs/utils/lib/getRandomInt.mjs +5 -0
  3156. package/libs/utils/lib/getRandomInt.mjs.map +1 -0
  3157. package/libs/utils/lib/getValue.d.ts +1 -0
  3158. package/libs/utils/lib/getValue.js +16 -0
  3159. package/libs/utils/lib/getValue.js.map +1 -0
  3160. package/libs/utils/lib/getValue.mjs +10 -0
  3161. package/libs/utils/lib/getValue.mjs.map +1 -0
  3162. package/libs/utils/lib/hasLabels.d.ts +7 -0
  3163. package/libs/utils/lib/hasLabels.js +47 -0
  3164. package/libs/utils/lib/hasLabels.js.map +1 -0
  3165. package/libs/utils/lib/hasLabels.mjs +39 -0
  3166. package/libs/utils/lib/hasLabels.mjs.map +1 -0
  3167. package/libs/utils/lib/if.d.ts +11 -0
  3168. package/libs/utils/lib/if.js +16 -0
  3169. package/libs/utils/lib/if.js.map +1 -0
  3170. package/libs/utils/lib/if.mjs +9 -0
  3171. package/libs/utils/lib/if.mjs.map +1 -0
  3172. package/libs/utils/lib/ifChildren.d.ts +8 -0
  3173. package/libs/utils/lib/ifChildren.js +17 -0
  3174. package/libs/utils/lib/ifChildren.js.map +1 -0
  3175. package/libs/utils/lib/ifChildren.mjs +10 -0
  3176. package/libs/utils/lib/ifChildren.mjs.map +1 -0
  3177. package/libs/utils/lib/index.d.ts +0 -0
  3178. package/libs/utils/lib/index.js +4 -0
  3179. package/libs/utils/lib/index.js.map +1 -0
  3180. package/libs/utils/lib/index.mjs +2 -0
  3181. package/libs/utils/lib/index.mjs.map +1 -0
  3182. package/libs/utils/lib/injectStyle.d.ts +2 -0
  3183. package/libs/utils/lib/injectStyle.js +49 -0
  3184. package/libs/utils/lib/injectStyle.js.map +1 -0
  3185. package/libs/utils/lib/injectStyle.mjs +41 -0
  3186. package/libs/utils/lib/injectStyle.mjs.map +1 -0
  3187. package/libs/utils/lib/inputProps.d.ts +2 -0
  3188. package/libs/utils/lib/inputProps.js +23 -0
  3189. package/libs/utils/lib/inputProps.js.map +1 -0
  3190. package/libs/utils/lib/inputProps.mjs +14 -0
  3191. package/libs/utils/lib/inputProps.mjs.map +1 -0
  3192. package/libs/utils/lib/isNode.d.ts +1 -0
  3193. package/libs/utils/lib/isNode.js +28 -0
  3194. package/libs/utils/lib/isNode.js.map +1 -0
  3195. package/libs/utils/lib/isNode.mjs +21 -0
  3196. package/libs/utils/lib/isNode.mjs.map +1 -0
  3197. package/libs/utils/lib/isPromise.d.ts +1 -0
  3198. package/libs/utils/lib/isPromise.js +10 -0
  3199. package/libs/utils/lib/isPromise.js.map +1 -0
  3200. package/libs/utils/lib/isPromise.mjs +4 -0
  3201. package/libs/utils/lib/isPromise.mjs.map +1 -0
  3202. package/libs/utils/lib/isRetina.d.ts +1 -0
  3203. package/libs/utils/lib/isRetina.js +15 -0
  3204. package/libs/utils/lib/isRetina.js.map +1 -0
  3205. package/libs/utils/lib/isRetina.mjs +9 -0
  3206. package/libs/utils/lib/isRetina.mjs.map +1 -0
  3207. package/libs/utils/lib/logger.d.ts +9 -0
  3208. package/libs/utils/lib/logger.js +40 -0
  3209. package/libs/utils/lib/logger.js.map +1 -0
  3210. package/libs/utils/lib/logger.mjs +32 -0
  3211. package/libs/utils/lib/logger.mjs.map +1 -0
  3212. package/libs/utils/lib/numericChecker.d.ts +5 -0
  3213. package/libs/utils/lib/numericChecker.js +33 -0
  3214. package/libs/utils/lib/numericChecker.js.map +1 -0
  3215. package/libs/utils/lib/numericChecker.mjs +27 -0
  3216. package/libs/utils/lib/numericChecker.mjs.map +1 -0
  3217. package/libs/utils/lib/ownerDocument.d.ts +1 -0
  3218. package/libs/utils/lib/ownerDocument.js +10 -0
  3219. package/libs/utils/lib/ownerDocument.js.map +1 -0
  3220. package/libs/utils/lib/ownerDocument.mjs +4 -0
  3221. package/libs/utils/lib/ownerDocument.mjs.map +1 -0
  3222. package/libs/utils/lib/pick.d.ts +1 -0
  3223. package/libs/utils/lib/pick.js +19 -0
  3224. package/libs/utils/lib/pick.js.map +1 -0
  3225. package/libs/utils/lib/pick.mjs +13 -0
  3226. package/libs/utils/lib/pick.mjs.map +1 -0
  3227. package/libs/utils/lib/propsForElement.d.ts +14 -0
  3228. package/libs/utils/lib/propsForElement.js +79 -0
  3229. package/libs/utils/lib/propsForElement.js.map +1 -0
  3230. package/libs/utils/lib/propsForElement.mjs +70 -0
  3231. package/libs/utils/lib/propsForElement.mjs.map +1 -0
  3232. package/libs/utils/lib/rafTrottle.d.ts +2 -0
  3233. package/libs/utils/lib/rafTrottle.js +33 -0
  3234. package/libs/utils/lib/rafTrottle.js.map +1 -0
  3235. package/libs/utils/lib/rafTrottle.mjs +26 -0
  3236. package/libs/utils/lib/rafTrottle.mjs.map +1 -0
  3237. package/libs/utils/lib/reactToText.d.ts +3 -0
  3238. package/libs/utils/lib/reactToText.js +28 -0
  3239. package/libs/utils/lib/reactToText.js.map +1 -0
  3240. package/libs/utils/lib/reactToText.mjs +21 -0
  3241. package/libs/utils/lib/reactToText.mjs.map +1 -0
  3242. package/libs/utils/lib/ref.d.ts +8 -0
  3243. package/libs/utils/lib/ref.js +94 -0
  3244. package/libs/utils/lib/ref.js.map +1 -0
  3245. package/libs/utils/lib/ref.mjs +82 -0
  3246. package/libs/utils/lib/ref.mjs.map +1 -0
  3247. package/libs/utils/lib/setRef.d.ts +2 -0
  3248. package/libs/utils/lib/setRef.js +10 -0
  3249. package/libs/utils/lib/setRef.js.map +1 -0
  3250. package/libs/utils/lib/setRef.mjs +3 -0
  3251. package/libs/utils/lib/setRef.mjs.map +1 -0
  3252. package/libs/utils/lib/syncScroll.d.ts +1 -0
  3253. package/libs/utils/lib/syncScroll.js +61 -0
  3254. package/libs/utils/lib/syncScroll.js.map +1 -0
  3255. package/libs/utils/lib/syncScroll.mjs +54 -0
  3256. package/libs/utils/lib/syncScroll.mjs.map +1 -0
  3257. package/libs/utils/lib/themes/auto.css +1422 -0
  3258. package/libs/utils/lib/themes/dark.css +701 -0
  3259. package/libs/utils/lib/themes/dark.json +363 -0
  3260. package/libs/utils/lib/themes/default.css +721 -0
  3261. package/libs/utils/lib/themes/default.json +367 -0
  3262. package/libs/utils/lib/themes/light.css +721 -0
  3263. package/libs/utils/lib/themes/light.json +367 -0
  3264. package/libs/utils/lib/uncontroll.d.ts +4 -0
  3265. package/libs/utils/lib/uncontroll.js +47 -0
  3266. package/libs/utils/lib/uncontroll.js.map +1 -0
  3267. package/libs/utils/lib/uncontroll.mjs +38 -0
  3268. package/libs/utils/lib/uncontroll.mjs.map +1 -0
  3269. package/libs/utils/lib/uniqueID.d.ts +12 -0
  3270. package/libs/utils/lib/uniqueID.js +43 -0
  3271. package/libs/utils/lib/uniqueID.js.map +1 -0
  3272. package/libs/utils/lib/uniqueID.mjs +33 -0
  3273. package/libs/utils/lib/uniqueID.mjs.map +1 -0
  3274. package/libs/utils/lib/use/useColorResolver.d.ts +1 -0
  3275. package/libs/utils/lib/use/useColorResolver.js +208 -0
  3276. package/libs/utils/lib/use/useColorResolver.js.map +1 -0
  3277. package/libs/utils/lib/use/useColorResolver.mjs +200 -0
  3278. package/libs/utils/lib/use/useColorResolver.mjs.map +1 -0
  3279. package/libs/utils/lib/use/useCss.d.ts +4 -0
  3280. package/libs/utils/lib/use/useCss.js +20 -0
  3281. package/libs/utils/lib/use/useCss.js.map +1 -0
  3282. package/libs/utils/lib/use/useCss.mjs +12 -0
  3283. package/libs/utils/lib/use/useCss.mjs.map +1 -0
  3284. package/libs/utils/lib/use/useEnhancedEffect.d.ts +3 -0
  3285. package/libs/utils/lib/use/useEnhancedEffect.js +13 -0
  3286. package/libs/utils/lib/use/useEnhancedEffect.js.map +1 -0
  3287. package/libs/utils/lib/use/useEnhancedEffect.mjs +5 -0
  3288. package/libs/utils/lib/use/useEnhancedEffect.mjs.map +1 -0
  3289. package/libs/utils/lib/use/useEventCallback.d.ts +4 -0
  3290. package/libs/utils/lib/use/useEventCallback.js +25 -0
  3291. package/libs/utils/lib/use/useEventCallback.js.map +1 -0
  3292. package/libs/utils/lib/use/useEventCallback.mjs +19 -0
  3293. package/libs/utils/lib/use/useEventCallback.mjs.map +1 -0
  3294. package/libs/utils/lib/use/useEventListener.d.ts +2 -0
  3295. package/libs/utils/lib/use/useEventListener.js +33 -0
  3296. package/libs/utils/lib/use/useEventListener.js.map +1 -0
  3297. package/libs/utils/lib/use/useEventListener.mjs +25 -0
  3298. package/libs/utils/lib/use/useEventListener.mjs.map +1 -0
  3299. package/libs/utils/lib/use/useFocusLock.d.ts +4 -0
  3300. package/libs/utils/lib/use/useFocusLock.js +293 -0
  3301. package/libs/utils/lib/use/useFocusLock.js.map +1 -0
  3302. package/libs/utils/lib/use/useFocusLock.mjs +282 -0
  3303. package/libs/utils/lib/use/useFocusLock.mjs.map +1 -0
  3304. package/libs/utils/lib/use/usePreventScroll.d.ts +2 -0
  3305. package/libs/utils/lib/use/usePreventScroll.js +78 -0
  3306. package/libs/utils/lib/use/usePreventScroll.js.map +1 -0
  3307. package/libs/utils/lib/use/usePreventScroll.mjs +70 -0
  3308. package/libs/utils/lib/use/usePreventScroll.mjs.map +1 -0
  3309. package/libs/utils/lib/useCssVariable.d.ts +8 -0
  3310. package/libs/utils/lib/useCssVariable.js +55 -0
  3311. package/libs/utils/lib/useCssVariable.js.map +1 -0
  3312. package/libs/utils/lib/useCssVariable.mjs +46 -0
  3313. package/libs/utils/lib/useCssVariable.mjs.map +1 -0
  3314. package/libs/widget-empty/lib/cjs/Error/index.js +49 -0
  3315. package/libs/widget-empty/lib/cjs/Error/index.js.map +1 -0
  3316. package/libs/widget-empty/lib/cjs/Error/translations/__intergalactic-dynamic-locales.js +41 -0
  3317. package/libs/widget-empty/lib/cjs/Error/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3318. package/libs/widget-empty/lib/cjs/Error/translations/de.json +4 -0
  3319. package/libs/widget-empty/lib/cjs/Error/translations/en.json +4 -0
  3320. package/libs/widget-empty/lib/cjs/Error/translations/es.json +4 -0
  3321. package/libs/widget-empty/lib/cjs/Error/translations/fr.json +4 -0
  3322. package/libs/widget-empty/lib/cjs/Error/translations/it.json +4 -0
  3323. package/libs/widget-empty/lib/cjs/Error/translations/ja.json +4 -0
  3324. package/libs/widget-empty/lib/cjs/Error/translations/ko.json +4 -0
  3325. package/libs/widget-empty/lib/cjs/Error/translations/nl.json +4 -0
  3326. package/libs/widget-empty/lib/cjs/Error/translations/pl.json +4 -0
  3327. package/libs/widget-empty/lib/cjs/Error/translations/pt.json +4 -0
  3328. package/libs/widget-empty/lib/cjs/Error/translations/ru.json +4 -0
  3329. package/libs/widget-empty/lib/cjs/Error/translations/sv.json +4 -0
  3330. package/libs/widget-empty/lib/cjs/Error/translations/tr.json +4 -0
  3331. package/libs/widget-empty/lib/cjs/Error/translations/vi.json +4 -0
  3332. package/libs/widget-empty/lib/cjs/Error/translations/zh.json +4 -0
  3333. package/libs/widget-empty/lib/cjs/NoData/index.js +51 -0
  3334. package/libs/widget-empty/lib/cjs/NoData/index.js.map +1 -0
  3335. package/libs/widget-empty/lib/cjs/NoData/translations/__intergalactic-dynamic-locales.js +41 -0
  3336. package/libs/widget-empty/lib/cjs/NoData/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3337. package/libs/widget-empty/lib/cjs/NoData/translations/de.json +4 -0
  3338. package/libs/widget-empty/lib/cjs/NoData/translations/en.json +4 -0
  3339. package/libs/widget-empty/lib/cjs/NoData/translations/es.json +4 -0
  3340. package/libs/widget-empty/lib/cjs/NoData/translations/fr.json +4 -0
  3341. package/libs/widget-empty/lib/cjs/NoData/translations/it.json +4 -0
  3342. package/libs/widget-empty/lib/cjs/NoData/translations/ja.json +4 -0
  3343. package/libs/widget-empty/lib/cjs/NoData/translations/ko.json +4 -0
  3344. package/libs/widget-empty/lib/cjs/NoData/translations/nl.json +4 -0
  3345. package/libs/widget-empty/lib/cjs/NoData/translations/pl.json +4 -0
  3346. package/libs/widget-empty/lib/cjs/NoData/translations/pt.json +4 -0
  3347. package/libs/widget-empty/lib/cjs/NoData/translations/ru.json +4 -0
  3348. package/libs/widget-empty/lib/cjs/NoData/translations/sv.json +4 -0
  3349. package/libs/widget-empty/lib/cjs/NoData/translations/tr.json +4 -0
  3350. package/libs/widget-empty/lib/cjs/NoData/translations/vi.json +4 -0
  3351. package/libs/widget-empty/lib/cjs/NoData/translations/zh.json +4 -0
  3352. package/libs/widget-empty/lib/cjs/WidgetEmpty.js +80 -0
  3353. package/libs/widget-empty/lib/cjs/WidgetEmpty.js.map +1 -0
  3354. package/libs/widget-empty/lib/cjs/index.d.js +2 -0
  3355. package/libs/widget-empty/lib/cjs/index.d.js.map +1 -0
  3356. package/libs/widget-empty/lib/cjs/index.js +44 -0
  3357. package/libs/widget-empty/lib/cjs/index.js.map +1 -0
  3358. package/libs/widget-empty/lib/es6/Error/index.js +41 -0
  3359. package/libs/widget-empty/lib/es6/Error/index.js.map +1 -0
  3360. package/libs/widget-empty/lib/es6/Error/translations/__intergalactic-dynamic-locales.js +33 -0
  3361. package/libs/widget-empty/lib/es6/Error/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3362. package/libs/widget-empty/lib/es6/Error/translations/de.json +4 -0
  3363. package/libs/widget-empty/lib/es6/Error/translations/en.json +4 -0
  3364. package/libs/widget-empty/lib/es6/Error/translations/es.json +4 -0
  3365. package/libs/widget-empty/lib/es6/Error/translations/fr.json +4 -0
  3366. package/libs/widget-empty/lib/es6/Error/translations/it.json +4 -0
  3367. package/libs/widget-empty/lib/es6/Error/translations/ja.json +4 -0
  3368. package/libs/widget-empty/lib/es6/Error/translations/ko.json +4 -0
  3369. package/libs/widget-empty/lib/es6/Error/translations/nl.json +4 -0
  3370. package/libs/widget-empty/lib/es6/Error/translations/pl.json +4 -0
  3371. package/libs/widget-empty/lib/es6/Error/translations/pt.json +4 -0
  3372. package/libs/widget-empty/lib/es6/Error/translations/ru.json +4 -0
  3373. package/libs/widget-empty/lib/es6/Error/translations/sv.json +4 -0
  3374. package/libs/widget-empty/lib/es6/Error/translations/tr.json +4 -0
  3375. package/libs/widget-empty/lib/es6/Error/translations/vi.json +4 -0
  3376. package/libs/widget-empty/lib/es6/Error/translations/zh.json +4 -0
  3377. package/libs/widget-empty/lib/es6/NoData/index.js +43 -0
  3378. package/libs/widget-empty/lib/es6/NoData/index.js.map +1 -0
  3379. package/libs/widget-empty/lib/es6/NoData/translations/__intergalactic-dynamic-locales.js +33 -0
  3380. package/libs/widget-empty/lib/es6/NoData/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3381. package/libs/widget-empty/lib/es6/NoData/translations/de.json +4 -0
  3382. package/libs/widget-empty/lib/es6/NoData/translations/en.json +4 -0
  3383. package/libs/widget-empty/lib/es6/NoData/translations/es.json +4 -0
  3384. package/libs/widget-empty/lib/es6/NoData/translations/fr.json +4 -0
  3385. package/libs/widget-empty/lib/es6/NoData/translations/it.json +4 -0
  3386. package/libs/widget-empty/lib/es6/NoData/translations/ja.json +4 -0
  3387. package/libs/widget-empty/lib/es6/NoData/translations/ko.json +4 -0
  3388. package/libs/widget-empty/lib/es6/NoData/translations/nl.json +4 -0
  3389. package/libs/widget-empty/lib/es6/NoData/translations/pl.json +4 -0
  3390. package/libs/widget-empty/lib/es6/NoData/translations/pt.json +4 -0
  3391. package/libs/widget-empty/lib/es6/NoData/translations/ru.json +4 -0
  3392. package/libs/widget-empty/lib/es6/NoData/translations/sv.json +4 -0
  3393. package/libs/widget-empty/lib/es6/NoData/translations/tr.json +4 -0
  3394. package/libs/widget-empty/lib/es6/NoData/translations/vi.json +4 -0
  3395. package/libs/widget-empty/lib/es6/NoData/translations/zh.json +4 -0
  3396. package/libs/widget-empty/lib/es6/WidgetEmpty.js +74 -0
  3397. package/libs/widget-empty/lib/es6/WidgetEmpty.js.map +1 -0
  3398. package/libs/widget-empty/lib/es6/index.d.js +2 -0
  3399. package/libs/widget-empty/lib/es6/index.d.js.map +1 -0
  3400. package/libs/widget-empty/lib/es6/index.js +5 -0
  3401. package/libs/widget-empty/lib/es6/index.js.map +1 -0
  3402. package/libs/widget-empty/lib/types/index.d.ts +44 -0
  3403. package/libs/wizard/lib/cjs/Wizard.js +178 -0
  3404. package/libs/wizard/lib/cjs/Wizard.js.map +1 -0
  3405. package/libs/wizard/lib/cjs/index.d.js +2 -0
  3406. package/libs/wizard/lib/cjs/index.d.js.map +1 -0
  3407. package/libs/wizard/lib/cjs/index.js +14 -0
  3408. package/libs/wizard/lib/cjs/index.js.map +1 -0
  3409. package/libs/wizard/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  3410. package/libs/wizard/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3411. package/libs/wizard/lib/cjs/translations/de.json +3 -0
  3412. package/libs/wizard/lib/cjs/translations/en.json +3 -0
  3413. package/libs/wizard/lib/cjs/translations/es.json +3 -0
  3414. package/libs/wizard/lib/cjs/translations/fr.json +3 -0
  3415. package/libs/wizard/lib/cjs/translations/it.json +3 -0
  3416. package/libs/wizard/lib/cjs/translations/ja.json +3 -0
  3417. package/libs/wizard/lib/cjs/translations/ko.json +3 -0
  3418. package/libs/wizard/lib/cjs/translations/nl.json +3 -0
  3419. package/libs/wizard/lib/cjs/translations/pl.json +3 -0
  3420. package/libs/wizard/lib/cjs/translations/pt.json +3 -0
  3421. package/libs/wizard/lib/cjs/translations/sv.json +3 -0
  3422. package/libs/wizard/lib/cjs/translations/tr.json +3 -0
  3423. package/libs/wizard/lib/cjs/translations/vi.json +3 -0
  3424. package/libs/wizard/lib/cjs/translations/zh.json +3 -0
  3425. package/libs/wizard/lib/es6/Wizard.js +174 -0
  3426. package/libs/wizard/lib/es6/Wizard.js.map +1 -0
  3427. package/libs/wizard/lib/es6/index.d.js +2 -0
  3428. package/libs/wizard/lib/es6/index.d.js.map +1 -0
  3429. package/libs/wizard/lib/es6/index.js +2 -0
  3430. package/libs/wizard/lib/es6/index.js.map +1 -0
  3431. package/libs/wizard/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  3432. package/libs/wizard/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3433. package/libs/wizard/lib/es6/translations/de.json +3 -0
  3434. package/libs/wizard/lib/es6/translations/en.json +3 -0
  3435. package/libs/wizard/lib/es6/translations/es.json +3 -0
  3436. package/libs/wizard/lib/es6/translations/fr.json +3 -0
  3437. package/libs/wizard/lib/es6/translations/it.json +3 -0
  3438. package/libs/wizard/lib/es6/translations/ja.json +3 -0
  3439. package/libs/wizard/lib/es6/translations/ko.json +3 -0
  3440. package/libs/wizard/lib/es6/translations/nl.json +3 -0
  3441. package/libs/wizard/lib/es6/translations/pl.json +3 -0
  3442. package/libs/wizard/lib/es6/translations/pt.json +3 -0
  3443. package/libs/wizard/lib/es6/translations/sv.json +3 -0
  3444. package/libs/wizard/lib/es6/translations/tr.json +3 -0
  3445. package/libs/wizard/lib/es6/translations/vi.json +3 -0
  3446. package/libs/wizard/lib/es6/translations/zh.json +3 -0
  3447. package/libs/wizard/lib/types/index.d.ts +80 -0
  3448. package/link/lib/cjs/Link.js +12 -12
  3449. package/link/lib/es6/Link.js +12 -12
  3450. package/mini-chart/lib/cjs/component/score/Donut.js +9 -9
  3451. package/mini-chart/lib/cjs/component/score/Line.js +17 -17
  3452. package/mini-chart/lib/cjs/component/trend/Bar.js +7 -7
  3453. package/mini-chart/lib/cjs/component/trend/Line.js +7 -7
  3454. package/mini-chart/lib/es6/component/score/Donut.js +9 -9
  3455. package/mini-chart/lib/es6/component/score/Line.js +17 -17
  3456. package/mini-chart/lib/es6/component/trend/Bar.js +7 -7
  3457. package/mini-chart/lib/es6/component/trend/Line.js +7 -7
  3458. package/modal/lib/cjs/Modal.js +9 -9
  3459. package/modal/lib/es6/Modal.js +9 -9
  3460. package/notice/lib/cjs/Notice.js +13 -13
  3461. package/notice/lib/es6/Notice.js +13 -13
  3462. package/notice-bubble/lib/cjs/NoticeBubble.js +12 -12
  3463. package/notice-bubble/lib/es6/NoticeBubble.js +12 -12
  3464. package/notice-global/lib/cjs/NoticeGlobal.js +11 -11
  3465. package/notice-global/lib/es6/NoticeGlobal.js +11 -11
  3466. package/package.json +2 -2
  3467. package/pagination/lib/cjs/Pagination.js +10 -10
  3468. package/pagination/lib/es6/Pagination.js +10 -10
  3469. package/pills/lib/cjs/Pills.js +13 -13
  3470. package/pills/lib/es6/Pills.js +13 -13
  3471. package/popper/lib/cjs/Popper.js +6 -6
  3472. package/popper/lib/es6/Popper.js +6 -6
  3473. package/product-head/lib/cjs/Info.js +4 -4
  3474. package/product-head/lib/cjs/ProductHead.js +5 -5
  3475. package/product-head/lib/cjs/Title.js +4 -4
  3476. package/product-head/lib/es6/Info.js +4 -4
  3477. package/product-head/lib/es6/ProductHead.js +5 -5
  3478. package/product-head/lib/es6/Title.js +4 -4
  3479. package/progress-bar/lib/cjs/ProgressBar.js +15 -15
  3480. package/progress-bar/lib/es6/ProgressBar.js +15 -15
  3481. package/radio/lib/cjs/Radio.js +16 -16
  3482. package/radio/lib/es6/Radio.js +16 -16
  3483. package/scroll-area/lib/cjs/ScrollArea.js +21 -21
  3484. package/scroll-area/lib/cjs/ScrollBar.js +6 -6
  3485. package/scroll-area/lib/es6/ScrollArea.js +21 -21
  3486. package/scroll-area/lib/es6/ScrollBar.js +6 -6
  3487. package/select/lib/cjs/InputSearch.js +6 -6
  3488. package/select/lib/cjs/Select.js +8 -8
  3489. package/select/lib/es6/InputSearch.js +6 -6
  3490. package/select/lib/es6/Select.js +8 -8
  3491. package/side-panel/lib/cjs/SidePanel.js +15 -15
  3492. package/side-panel/lib/es6/SidePanel.js +15 -15
  3493. package/skeleton/lib/cjs/Charts/Area.js +9 -9
  3494. package/skeleton/lib/cjs/Charts/Bar.js +9 -9
  3495. package/skeleton/lib/cjs/Charts/Bubble.js +9 -9
  3496. package/skeleton/lib/cjs/Charts/Donut.js +9 -9
  3497. package/skeleton/lib/cjs/Charts/Histogram.js +9 -9
  3498. package/skeleton/lib/cjs/Charts/Line.js +9 -9
  3499. package/skeleton/lib/cjs/Charts/RadialTree.js +9 -9
  3500. package/skeleton/lib/cjs/Charts/ScatterPlot.js +9 -9
  3501. package/skeleton/lib/cjs/Charts/Venn.js +9 -9
  3502. package/skeleton/lib/cjs/Skeleton.js +8 -8
  3503. package/skeleton/lib/es6/Charts/Area.js +9 -9
  3504. package/skeleton/lib/es6/Charts/Bar.js +9 -9
  3505. package/skeleton/lib/es6/Charts/Bubble.js +9 -9
  3506. package/skeleton/lib/es6/Charts/Donut.js +9 -9
  3507. package/skeleton/lib/es6/Charts/Histogram.js +9 -9
  3508. package/skeleton/lib/es6/Charts/Line.js +9 -9
  3509. package/skeleton/lib/es6/Charts/RadialTree.js +9 -9
  3510. package/skeleton/lib/es6/Charts/ScatterPlot.js +9 -9
  3511. package/skeleton/lib/es6/Charts/Venn.js +9 -9
  3512. package/skeleton/lib/es6/Skeleton.js +8 -8
  3513. package/slider/lib/cjs/Slider.js +8 -8
  3514. package/slider/lib/es6/Slider.js +8 -8
  3515. package/spin/lib/cjs/Spin.js +13 -13
  3516. package/spin/lib/es6/Spin.js +13 -13
  3517. package/spin-container/lib/cjs/SpinContainer.js +8 -8
  3518. package/spin-container/lib/es6/SpinContainer.js +8 -8
  3519. package/sticky/lib/cjs/Sticky.js +2 -2
  3520. package/sticky/lib/es6/Sticky.js +2 -2
  3521. package/switch/lib/cjs/Switch.js +21 -21
  3522. package/switch/lib/es6/Switch.js +21 -21
  3523. package/tab-line/lib/cjs/TabLine.js +13 -13
  3524. package/tab-line/lib/es6/TabLine.js +13 -13
  3525. package/tab-panel/lib/cjs/TabPanel.js +8 -8
  3526. package/tab-panel/lib/es6/TabPanel.js +8 -8
  3527. package/tag/lib/cjs/Tag.js +20 -20
  3528. package/tag/lib/es6/Tag.js +20 -20
  3529. package/textarea/lib/cjs/Textarea.js +8 -8
  3530. package/textarea/lib/es6/Textarea.js +8 -8
  3531. package/time-picker/lib/cjs/TimePicker.js +12 -12
  3532. package/time-picker/lib/es6/TimePicker.js +12 -12
  3533. package/tooltip/lib/cjs/Tooltip.js +9 -9
  3534. package/tooltip/lib/es6/Tooltip.js +9 -9
  3535. package/typography/lib/cjs/Blockquote.js +4 -4
  3536. package/typography/lib/cjs/Hint.js +7 -7
  3537. package/typography/lib/cjs/List.js +5 -5
  3538. package/typography/lib/cjs/Text.js +34 -34
  3539. package/typography/lib/es6/Blockquote.js +4 -4
  3540. package/typography/lib/es6/Hint.js +7 -7
  3541. package/typography/lib/es6/List.js +5 -5
  3542. package/typography/lib/es6/Text.js +34 -34
  3543. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.js +2 -2
  3544. package/utils/lib/components/invalid-state-pattern/InvalidStatePattern.mjs +2 -2
  3545. package/utils/lib/injectStyle.js +1 -1
  3546. package/utils/lib/injectStyle.mjs +1 -1
  3547. package/utils/lib/themes/auto.css +4 -0
  3548. package/utils/lib/themes/default.css +4 -0
  3549. package/utils/lib/themes/default.json +2 -0
  3550. package/utils/lib/themes/light.css +4 -0
  3551. package/utils/lib/themes/light.json +2 -0
  3552. package/widget-empty/lib/cjs/WidgetEmpty.js +5 -5
  3553. package/widget-empty/lib/es6/WidgetEmpty.js +5 -5
  3554. package/wizard/lib/cjs/Wizard.js +11 -11
  3555. package/wizard/lib/es6/Wizard.js +11 -11
@@ -0,0 +1 @@
1
+ {"version":3,"file":"insights.js","names":["makeBezier","getPropByPath","obj","path","String","split","i","length","_typeof","movingAverage","data","frame","result","Math","floor","ceil","startIndex","max","endIndex","min","part","slice","sum","reduce","item","value","push","extractDataInsights","hints","config","_config$dataType","_hints$axesTitle$vert","_ref","insights","dataType","dataRange","groupKeys","_toConsumableArray","groups","dataTitle","axesTitle","vertical","horizontal","entitiesCount","keysMap","Object","fromEntries","keys","Array","isArray","map","key","fields","horizontalAxes","size","verticalAxes","valueAxes","possibleGroupKeys","filter","allData","row","Set","_ref2","_hints$titles$getHori","_hints$titles$getHori2","_hints$titles","_ref3","_hints$titles$getHori3","_hints$titles$getHori4","_hints$titles2","firstRow","lastRow","possibleValueKeys","concat","valuesKeys","possibleLabelKeys","labelsKey","fromKey","toKey","from","titles","getHorizontalAxesTitle","call","to","_hints$axesTitle$vert2","label","_iterator","_createForOfIteratorHelper","_step","_loop","_config$movingAverage","_config$movingAverage2","_insights","valueKey","values","average","variance","pow","standardDeviation","sqrt","trendStrengths","frameSize","longMovingAverageSize","longSize","shortMovingAverageSize","shortSize","longMovingAverage","shortMovingAverage","table","_values$i","_longMovingAverage$i","_shortMovingAverage$i","NaN","toFixed","strengthsMap","growth","weak","medium","strong","reduction","recordTrend","_ref4","width","type","_hints$pointsDensity$","_hints$pointsDensity","_hints$pointsDensity$2","_hints$pointsDensity2","normalizedHeight","abs","pointsDensity","normalizedWidth","tang","trendStrength","trendTangens","strength","priority","change","dataKey","displayValue","generalTrend","valuesAxes","localTrends","_config$movingAverage3","notableDiff","lastSwitch","lastSwitchValue","shortWasAbove","_ref5","_hints$titles$getHori5","_hints$titles$getHori6","_hints$titles3","_ref6","_hints$titles$getHori7","_hints$titles$getHori8","_hints$titles4","shortIsAbove","diff","lastIndex","lastValue","apply","s","n","done","err","e","f","_ref7","_config$clustersGridS","_relativeSizeDistrivu","_insights2","guessedXKey","guessedYKey","guessedValueKey","guessedLabelKey","normalized","x","y","gridSize","clustersGridSize","grid","usedX","usedY","_iterator2","_step2","_step2$value","add","orderedX","sort","a","b","orderedY","distancesX","index","distancesY","avgDistanceX","avgDistanceY","belowAvgDistancesX","belowAvgDistancesY","betweenDistanceX","betweenDistanceY","avgDistance","Number","isNaN","takenY","takenX","_grid$gridX","_grid$gridX$gridY","_normalized$i","gridX","round","gridY","clusterId","members","clusters","_iterator3","parseInt","_step3","_iterator4","_step4","_clusters$grid$_x4$_y","_clusters$grid$_x4$_y2","pointHandled","_i4","_arr","xNeighbour","_i5","_arr2","_grid$xNeighbour","yNeighbour","undefined","clustersInsights","_hints$axesTitle$hori","_hints$axesTitle$vert3","_ref8","labels","_ref9","uniqueLabels","_ref10","_ref11","relativeSize","center","xLabel","yLabel","relativeSizeDistrivution","_defineProperty","Infinity","averageSize","cluster","smallerClusters","smallerSize","biggerClusters","biggerSize","normalizingSize","averageSizeNormalized","smallerSizeNormalized","biggerSizeNormalized","sizeMapBezier","weight","height","_i3","_clustersInsights","clustersInsight","mappedSize","_relativeSizeDistrivu2","sortedX","sortedY","_insights3","makeRowKey","join","allRowsIds","groupedValues","_groupedValues$key","groupName","rows","grouppingKeys","_fields","entries","_ref12","_group$groupName","_ref13","_slicedToArray","groupKey","group","_iterator5","_step5","_iterator6","_step6","_ref15","_hints$titles$valuesA","_hints$titles$getVert","_hints$titles5","field","getVerticalAxesTitle","averageValue","_ref14","_ref16","_hints$titles$valuesA2","_hints$titles$getValu","_hints$titles6","getValueAxesTitle","_insights4","_getPropByPath","fieldPath","startsWith","substring","_ref17","hasHighPriorityInsights","some","insight"],"sources":["../../../src/a11y/insights.ts"],"sourcesContent":["import { makeBezier } from './bezier';\nimport { DataStructureHints, DataSummarizationConfig } from './hints';\n\nexport type TrendNode = {\n type: 'trend';\n priority: number;\n change: {\n from: number;\n to: number;\n strength:\n | 'strong-reduction'\n | 'reduction'\n | 'weak-reduction'\n | 'static'\n | 'weak-growth'\n | 'growth'\n | 'strong-growth';\n };\n from: unknown;\n to: unknown;\n dataKey: string | number;\n label?: string;\n};\nexport type GeneralTrendNode = Omit<TrendNode, 'type'> & { type: 'general-trend' };\nexport type ComparisonNode = {\n type: 'comparison';\n label?: string;\n priority: number;\n values: {\n value: unknown;\n label: string;\n }[];\n};\n\ntype ClusterRelativeSize =\n | 'significantly-smaller'\n | 'smaller'\n | 'slightly-smaller'\n | 'average'\n | 'slightly-bigger'\n | 'bigger'\n | 'significantly-bigger';\nexport type ClusterNode = {\n type: 'cluster';\n priority: number;\n size: number;\n labels: unknown[];\n center: {\n x: number;\n xLabel: string | number;\n y: number;\n yLabel: string | number;\n };\n relativeSize: ClusterRelativeSize;\n};\nexport type Insight = TrendNode | GeneralTrendNode | ComparisonNode | ClusterNode;\n\nexport type SerializableDataType =\n | 'time-series'\n | 'points-cloud'\n | 'values-set'\n | 'grouped-values'\n | 'indexed-groups';\n\nexport type AnalyzedData = {\n insights: Insight[];\n dataType: SerializableDataType;\n dataRange: {\n from: string | number | Date;\n to: string | number | Date;\n label: string | number | null;\n }[];\n dataTitle: string | null;\n entitiesCount: number;\n};\n\nconst getPropByPath = (obj: any, path: number | string | string[]): unknown => {\n if (typeof path === 'number') path = String(path);\n if (typeof path === 'string') path = path.split('.');\n for (let i = 0; i < path.length; i++) {\n if (typeof obj !== 'object' || obj === null) return obj;\n obj = obj[path[i]];\n }\n return obj;\n};\n\nconst movingAverage = (data: number[], frame: number) => {\n const result: number[] = [];\n frame = Math.floor(frame) % 2 === data.length % 2 ? Math.floor(frame) : Math.ceil(frame);\n\n for (let i = 0; i < data.length; i++) {\n let startIndex = Math.max(0, i - Math.floor(frame / 2));\n let endIndex = Math.min(data.length, i + Math.ceil(frame / 2));\n startIndex = Math.min(startIndex, Math.max(0, endIndex - frame));\n endIndex = Math.max(endIndex, Math.min(data.length, startIndex + frame));\n const part = data.slice(startIndex, endIndex);\n const sum = part.reduce((sum, item) => sum + item, 0);\n const value = sum / part.length;\n result.push(value);\n }\n return result;\n};\n\nexport const extractDataInsights = (\n data: Record<string, unknown>[] | Record<string, unknown>,\n hints: DataStructureHints,\n config: DataSummarizationConfig,\n): AnalyzedData => {\n let insights: AnalyzedData['insights'] = [];\n let dataType: AnalyzedData['dataType'] | null = config.dataType ?? hints.dataType;\n const dataRange: AnalyzedData['dataRange'] = [];\n let groupKeys = [...hints.groups];\n const dataTitle: string | null = hints.axesTitle.vertical ?? hints.axesTitle.horizontal;\n let entitiesCount = 0;\n\n const keysMap = Object.fromEntries(\n Object.keys((Array.isArray(data) ? data[0] : data) ?? {}).map((key) => [key, true]),\n );\n\n if (!dataType) {\n if (\n ((keysMap['y'] || keysMap['y1'] || keysMap['y2']) &&\n keysMap['x'] &&\n (keysMap['value'] || keysMap['label'])) ||\n (hints.fields.horizontalAxes.size > 0 &&\n hints.fields.verticalAxes.size > 0 &&\n hints.fields.valueAxes.size > 0)\n ) {\n dataType = 'points-cloud';\n } else if (Array.isArray(data) && data.length > 6) {\n dataType = 'time-series';\n } else if (Array.isArray(data) && Object.keys(keysMap).length >= 3) {\n const possibleGroupKeys = Object.keys(keysMap)\n .filter((key) => typeof data[0][key] === 'string')\n .filter((key) => {\n const allData = data.map((row) => row[key]);\n return new Set(allData).size === allData.length;\n });\n if (possibleGroupKeys.length === 1) {\n groupKeys = possibleGroupKeys;\n dataType = 'grouped-values';\n } else {\n dataType = 'values-set';\n }\n } else {\n dataType = 'values-set';\n }\n }\n\n if (dataType === 'grouped-values' && groupKeys.length === 0) {\n dataType = 'values-set';\n }\n\n if (Array.isArray(data)) {\n if (dataType === 'time-series') {\n const firstRow = data[0];\n const lastRow = data[data.length - 1];\n const possibleValueKeys = ['y', 'value', ...hints.fields.verticalAxes];\n const valuesKeys = possibleValueKeys.filter((key) => keysMap[key]);\n\n const possibleLabelKeys = ['label', 'x', ...hints.fields.horizontalAxes];\n const labelsKey = possibleLabelKeys.filter((key) => keysMap[key])[0];\n\n entitiesCount = Object.keys(valuesKeys).length;\n\n const fromKey = firstRow[labelsKey];\n const toKey = lastRow[labelsKey];\n const from =\n hints.titles.getHorizontalAxesTitle?.(fromKey as string) ??\n hints.titles.horizontalAxes[fromKey as string] ??\n (fromKey as string);\n const to =\n hints.titles.getHorizontalAxesTitle?.(toKey as string) ??\n hints.titles.horizontalAxes[toKey as string] ??\n (toKey as string);\n\n if (entitiesCount > 0) {\n dataRange.push({ from, to, label: hints.axesTitle.vertical ?? labelsKey });\n }\n\n for (const valueKey of valuesKeys) {\n const values = (data as Record<string, number>[])\n .map((row) => row[valueKey])\n .filter((value) => typeof value !== 'symbol');\n const sum = values.reduce((sum, value) => sum + value, 0);\n const average = sum / values.length;\n const variance =\n (1 / values.length) *\n values.map((value) => (value - average) ** 2).reduce((sum, item) => sum + item, 0);\n const standardDeviation = Math.sqrt(variance);\n const trendStrengths = ['static', 'weak', 'medium', 'strong'] as const;\n\n const frameSize = Math.sqrt(values.length);\n const longMovingAverageSize = config.movingAverage.longSize ?? frameSize;\n const shortMovingAverageSize = config.movingAverage.shortSize ?? Math.sqrt(frameSize);\n const longMovingAverage = movingAverage(values, longMovingAverageSize);\n const shortMovingAverage =\n values.length < 8 ? values : movingAverage(values, shortMovingAverageSize);\n\n const table = [];\n for (const i in values) {\n table.push({\n value: (values[i] ?? NaN).toFixed(2),\n long: (longMovingAverage[i] ?? NaN).toFixed(2),\n short: (shortMovingAverage[i] ?? NaN).toFixed(2),\n });\n }\n\n const strengthsMap = {\n growth: {\n static: 'static',\n weak: 'weak-growth',\n medium: 'growth',\n strong: 'strong-growth',\n },\n reduction: {\n static: 'static',\n weak: 'weak-reduction',\n medium: 'reduction',\n strong: 'strong-reduction',\n },\n } as const;\n\n const recordTrend = ({\n value,\n width,\n label,\n type,\n }: {\n value: { from: number; to: number };\n width: number;\n label: { from: unknown; to: unknown; dataKey: string | number; displayValue?: string };\n type: 'general-trend' | 'trend';\n }): GeneralTrendNode | TrendNode | undefined => {\n for (let i = 0; i < trendStrengths.length; i++) {\n const normalizedHeight =\n Math.abs(value.from - value.to) / (hints.pointsDensity?.verticalAxes ?? 1);\n const normalizedWidth = width / (hints.pointsDensity?.horizontalAxes ?? 1);\n const tang = normalizedHeight / normalizedWidth;\n const trendStrength = trendStrengths[i];\n if (tang <= config.trendTangens[trendStrength] || i === trendStrengths.length - 1) {\n const strength =\n value.to > value.from\n ? strengthsMap.growth[trendStrength]\n : strengthsMap.reduction[trendStrength];\n\n return {\n type,\n priority: i,\n change: {\n from: value.from,\n to: value.to,\n strength,\n },\n from: label.from,\n to: label.to,\n dataKey: label.dataKey,\n label: label.displayValue,\n };\n }\n }\n };\n\n const generalTrend = recordTrend({\n type: 'general-trend',\n value: {\n from: shortMovingAverage[0],\n to: shortMovingAverage[shortMovingAverage.length - 1],\n },\n width: data.length,\n label: { from, to, dataKey: valueKey, displayValue: hints.titles.valuesAxes[valueKey] },\n })!;\n const localTrends: Insight[] = [];\n {\n const notableDiff = config.movingAverage.notableDiff ?? standardDeviation / 10;\n let lastSwitch = 0;\n let lastSwitchValue = shortMovingAverage[lastSwitch];\n let shortWasAbove = shortMovingAverage[0] > longMovingAverage[0];\n for (let i = 1; i < data.length; i++) {\n const shortIsAbove = shortMovingAverage[i] > longMovingAverage[i];\n const diff = Math.abs(shortMovingAverage[i] - longMovingAverage[i]);\n\n if (shortIsAbove === shortWasAbove) continue;\n if (diff < notableDiff) continue;\n if (i === 0 && lastSwitch === data.length - 1) continue;\n if (i === data.length - 1 && lastSwitch === 0) continue;\n i = Math.min(i, data.length - 1);\n\n const fromKey = data[lastSwitch][labelsKey];\n const toKey = data[i][labelsKey];\n const from =\n hints.titles.getHorizontalAxesTitle?.(fromKey as string) ??\n hints.titles.horizontalAxes[fromKey as string] ??\n fromKey;\n const to =\n hints.titles.getHorizontalAxesTitle?.(toKey as string) ??\n hints.titles.horizontalAxes[toKey as string] ??\n toKey;\n localTrends.push(\n recordTrend({\n type: 'trend',\n value: {\n from: lastSwitchValue,\n to: shortMovingAverage[i],\n },\n width: i - lastSwitch,\n label: {\n from,\n to,\n dataKey: valueKey,\n displayValue: hints.titles.valuesAxes[valueKey],\n },\n })!,\n );\n lastSwitch = i;\n lastSwitchValue = shortMovingAverage[lastSwitch];\n shortWasAbove = shortIsAbove;\n }\n\n if (lastSwitch !== 0) {\n const lastIndex = shortMovingAverage.length - 1;\n const lastValue = shortMovingAverage[lastIndex];\n if (Math.abs(lastSwitchValue - lastValue) > notableDiff) {\n localTrends.push(\n recordTrend({\n type: 'trend',\n value: {\n from: lastSwitchValue,\n to: lastValue,\n },\n width: lastIndex - lastSwitch,\n label: {\n from: data[lastSwitch][labelsKey],\n to: data[lastIndex][labelsKey],\n dataKey: valueKey,\n displayValue: hints.titles.valuesAxes[valueKey],\n },\n })!,\n );\n }\n }\n }\n insights.push(generalTrend);\n insights.push(...localTrends);\n }\n } else if (dataType === 'points-cloud') {\n const guessedXKey = [...hints.fields.horizontalAxes.values(), 'x'][0];\n const guessedYKey = [...hints.fields.verticalAxes.values(), 'y'][0];\n const guessedValueKey = [...hints.fields.valueAxes.values(), 'value'][0];\n const guessedLabelKey = keysMap['label'] ? 'label' : guessedValueKey;\n const normalized = data.map((row) => ({\n x: row[guessedXKey] as number,\n y: row[guessedYKey] as number,\n label: row[guessedLabelKey],\n value: row[guessedValueKey] as number,\n }));\n let gridSize =\n config.clustersGridSize ?? hints.grid.verticalAxes ?? hints.grid.horizontalAxes;\n if (!gridSize) {\n const usedX = new Set<number>();\n const usedY = new Set<number>();\n for (const { x, y } of normalized) {\n usedX.add(x);\n usedY.add(y);\n }\n const orderedX = [...usedX].sort((a, b) => a - b);\n const orderedY = [...usedY].sort((a, b) => a - b);\n const distancesX = orderedX.slice(0, -1).map((x, index) => orderedX[index + 1] - x);\n const distancesY = orderedY.slice(0, -1).map((y, index) => orderedY[index + 1] - y);\n const avgDistanceX = distancesX.reduce((sum, x) => sum + x, 0) / distancesX.length;\n const avgDistanceY = distancesY.reduce((sum, y) => sum + y, 0) / distancesY.length;\n const belowAvgDistancesX = distancesX.filter((x) => x < avgDistanceX);\n const belowAvgDistancesY = distancesY.filter((y) => y < avgDistanceY);\n const betweenDistanceX =\n belowAvgDistancesX.reduce((sum, x) => sum + x, 0) / belowAvgDistancesX.length;\n const betweenDistanceY =\n belowAvgDistancesY.reduce((sum, y) => sum + y, 0) / belowAvgDistancesY.length;\n let avgDistance = 0;\n if (!Number.isNaN(betweenDistanceX) && !Number.isNaN(betweenDistanceY)) {\n avgDistance = (betweenDistanceX + betweenDistanceY) / 2;\n } else if (!Number.isNaN(betweenDistanceX)) {\n avgDistance = betweenDistanceX;\n } else if (!Number.isNaN(betweenDistanceY)) {\n avgDistance = betweenDistanceY;\n } else {\n avgDistance = (avgDistanceX + avgDistanceY) / 2;\n }\n gridSize = Math.sqrt(Math.sqrt(avgDistance));\n }\n\n const grid: {\n [x: string]: { [y: string]: { clusterId: string; members: typeof normalized } };\n } = {};\n const takenY = new Set<number>();\n const takenX = new Set<number>();\n for (let i = 0; i < normalized.length; i++) {\n const { x, y } = normalized[i];\n const gridX = Math.round(x / gridSize!);\n const gridY = Math.round(y / gridSize!);\n takenY.add(y);\n takenX.add(x);\n grid[gridX] = grid[gridX] ?? {};\n grid[gridX][gridY] = grid[gridX][gridY] ?? { clusterId: `${gridX}_${gridY}`, members: [] };\n grid[gridX][gridY].members.push(normalized[i]);\n }\n const clusters: { [clusterId: string]: typeof normalized } = {};\n for (const x of Object.keys(grid).map((x) => parseInt(x, 10))) {\n for (const y of Object.keys(grid[x]).map((y) => parseInt(y, 10))) {\n let pointHandled = false;\n for (const xNeighbour of [x - 1, x, x + 1]) {\n for (const yNeighbour of [y - 1, y, y + 1]) {\n if (xNeighbour === undefined || yNeighbour === undefined) continue;\n if (xNeighbour === x && yNeighbour === y) continue;\n if (!grid[xNeighbour]?.[yNeighbour]) continue;\n pointHandled = true;\n grid[x][y].clusterId = grid[xNeighbour][yNeighbour].clusterId;\n break;\n }\n if (pointHandled) break;\n }\n clusters[grid[x][y].clusterId] = clusters[grid[x][y].clusterId] ?? [];\n clusters[grid[x][y].clusterId].push(...grid[x][y].members);\n }\n }\n const clustersInsights: ClusterNode[] = [];\n for (const clusterId in clusters) {\n const size = clusters[clusterId].reduce((sum, { value }) => sum + (value ?? 1), 0);\n const labels = [...clusters[clusterId]]\n .sort((a, b) => b.value - a.value)\n .map(({ label }) => label)\n .filter((label) => label !== undefined);\n const uniqueLabels = [...new Set(labels)];\n const x =\n clusters[clusterId].reduce((sum, { x }) => sum + x, 0) / clusters[clusterId].length;\n const y =\n clusters[clusterId].reduce((sum, { y }) => sum + y, 0) / clusters[clusterId].length;\n\n clustersInsights.push({\n type: 'cluster',\n priority: 1,\n size,\n labels: uniqueLabels,\n relativeSize: 'average',\n center: {\n x,\n y,\n xLabel: hints.axesTitle.horizontal ?? guessedXKey,\n yLabel: hints.axesTitle.vertical ?? guessedYKey,\n },\n });\n }\n entitiesCount = Object.keys(clusters).length;\n clustersInsights.sort((a, b) => b.size - a.size);\n\n const relativeSizeDistrivution = {\n ['significantly-bigger']: { max: Infinity, min: 0.85 },\n ['bigger']: { min: 0.7, max: 0.85 },\n ['slightly-bigger']: { min: 0.6, max: 0.7 },\n ['average']: { min: 0.4, max: 0.6 },\n ['slightly-smaller']: { max: 0.4, min: 0.3 },\n ['smaller']: { min: 0.15, max: 0.3 },\n ['significantly-smaller']: { min: -Infinity, max: 0.15 },\n } as { [key in ClusterRelativeSize]: { min: number; max: number } };\n const averageSize =\n clustersInsights.reduce((sum, cluster) => sum + cluster.size, 0) / clustersInsights.length;\n const smallerClusters = clustersInsights.filter((cluster) => cluster.size < averageSize);\n const smallerSize =\n smallerClusters.reduce((sum, cluster) => sum + cluster.size, 0) / smallerClusters.length;\n const biggerClusters = clustersInsights.filter((cluster) => cluster.size > averageSize);\n const biggerSize =\n biggerClusters.reduce((sum, cluster) => sum + cluster.size, 0) / biggerClusters.length;\n\n const normalizingSize = averageSize * 2;\n let averageSizeNormalized = averageSize / normalizingSize;\n let smallerSizeNormalized = smallerSize / normalizingSize;\n let biggerSizeNormalized = biggerSize / normalizingSize;\n\n smallerSizeNormalized = !Number.isNaN(smallerSizeNormalized) ? smallerSizeNormalized : 0.25;\n averageSizeNormalized = !Number.isNaN(averageSizeNormalized) ? averageSizeNormalized : 0.5;\n biggerSizeNormalized = !Number.isNaN(biggerSizeNormalized) ? biggerSizeNormalized : 0.75;\n\n const sizeMapBezier = makeBezier(\n [\n { x: 0, y: 0 },\n { x: 0.25, y: smallerSizeNormalized, weight: 10 },\n { x: 0.5, y: averageSizeNormalized },\n { x: 0.75, y: biggerSizeNormalized, weight: 10 },\n { x: 1, y: 1 },\n ],\n { width: 1, height: 1 },\n );\n\n for (const clustersInsight of clustersInsights) {\n const { size } = clustersInsight;\n const mappedSize = sizeMapBezier(size / normalizingSize);\n for (const relativeSize in relativeSizeDistrivution) {\n const { min, max } = relativeSizeDistrivution[relativeSize as ClusterRelativeSize];\n if (mappedSize > min && mappedSize <= max) {\n clustersInsight.relativeSize = relativeSize as ClusterRelativeSize;\n break;\n }\n }\n }\n\n insights.push(...clustersInsights);\n\n if (hints.axesTitle.horizontal) {\n const sortedX = [...takenX].sort((a, b) => a - b);\n dataRange.push({\n from: sortedX[0] as any,\n to: sortedX[sortedX.length - 1] as any,\n label: hints.axesTitle.horizontal,\n });\n }\n if (hints.axesTitle.vertical) {\n const sortedY = [...takenY].sort((a, b) => a - b);\n dataRange.push({\n from: sortedY[0] as any,\n to: sortedY[sortedY.length - 1] as any,\n label: hints.axesTitle.vertical,\n });\n }\n } else if (dataType === 'grouped-values') {\n const makeRowKey = (row: Record<string, unknown>) =>\n groupKeys.map((key, index) => `${index}-${getPropByPath(row, key)}`).join('-');\n const allRowsIds = data.map(makeRowKey);\n const groupedValues: {\n [groupId: string]: { groupName: string; rows: Record<string, unknown>[] };\n } = {};\n for (let i = 0; i < data.length; i++) {\n const row = data[i];\n const key = allRowsIds[i];\n groupedValues[key] = groupedValues[key] ?? {\n groupName: getPropByPath(row, groupKeys[0]) as string,\n rows: [],\n };\n groupedValues[key].rows.push(row);\n }\n\n let fields = [...hints.fields.values];\n const grouppingKeys = Object.fromEntries(groupKeys.map((key) => [key, true]));\n if (fields.length === 0) {\n fields.push(...Object.keys(keysMap));\n }\n fields = fields.filter((key) => !grouppingKeys[key]);\n const groups = Object.entries(groupedValues).map(([groupKey, group]) => {\n const values: { label: string; value: unknown }[] = [];\n for (const row of group.rows) {\n for (const field of fields) {\n values.push({\n label:\n hints.titles.valuesAxes[field] ??\n hints.titles.getVerticalAxesTitle?.(field) ??\n (field as string),\n value: getPropByPath(row, field),\n });\n }\n }\n\n values.sort((a, b) => {\n if (typeof a.value !== 'number' || typeof b.value !== 'number') return 0;\n return b.value - a.value;\n });\n const averageValue =\n values.reduce((sum, { value }) => sum + (value as number), 0) / values.length;\n return {\n label: group.groupName ?? groupKey,\n values,\n averageValue: !Number.isNaN(averageValue) ? averageValue : undefined,\n };\n });\n\n groups.sort((a, b) => {\n if (typeof a.averageValue !== 'number' || typeof b.averageValue !== 'number') return 0;\n return b.averageValue - a.averageValue;\n });\n entitiesCount = groups.length;\n insights.push(\n ...groups.map(\n (group) =>\n ({\n type: 'comparison',\n label: group.label,\n values: group.values,\n priority: 1,\n }) as ComparisonNode,\n ),\n );\n }\n }\n if (dataType === 'values-set') {\n const fields = [...hints.fields.values];\n if (fields.length === 0) {\n fields.push(...Object.keys(keysMap));\n }\n const values = fields.map((field) => ({\n label:\n hints.titles.valuesAxes[field] ??\n hints.titles.getValueAxesTitle?.(field) ??\n (field as string),\n value: getPropByPath(data, field),\n }));\n entitiesCount = values.length;\n values.sort((a, b) => {\n if (typeof a.value !== 'number' || typeof b.value !== 'number') return 0;\n return b.value - a.value;\n });\n insights.push({\n type: 'comparison',\n values,\n priority: 1,\n });\n }\n if (dataType === 'indexed-groups') {\n const groups = [...hints.groups].map((groupKey) => {\n const values = [...hints.fields.values]\n .filter((fieldPath) => String(fieldPath).startsWith(`${groupKey}.`))\n .map((fieldPath) => ({\n label: getPropByPath(\n hints.titles.valuesAxes,\n String(fieldPath).substring(String(groupKey).length + 1),\n ),\n value: getPropByPath(data, String(fieldPath)),\n }));\n\n values.sort((a, b) => {\n if (typeof a.value !== 'number' || typeof b.value !== 'number') return 0;\n return b.value - a.value;\n });\n const averageValue =\n values.reduce((sum, { value }) => sum + (value as number), 0) / values.length;\n return {\n label: getPropByPath(hints.titles.valuesAxes, String(groupKey)) ?? groupKey,\n values,\n averageValue: !Number.isNaN(averageValue) ? averageValue : undefined,\n };\n });\n\n groups.sort((a, b) => {\n if (typeof a.averageValue !== 'number' || typeof b.averageValue !== 'number') return 0;\n return b.averageValue - a.averageValue;\n });\n entitiesCount = groups.length;\n insights.push(\n ...groups.map(\n (group) =>\n ({\n type: 'comparison',\n label: group.label,\n values: group.values,\n priority: 1,\n }) as ComparisonNode,\n ),\n );\n }\n\n const hasHighPriorityInsights = insights.some((insight) => insight.priority > 0);\n if (hasHighPriorityInsights) {\n insights = insights.filter((insight) => insight.priority > 0);\n } else {\n insights = insights.slice(0, 1);\n }\n\n return { insights, dataType: dataType!, dataRange, dataTitle, entitiesCount };\n};\n"],"mappings":";;;;;AAAA,SAASA,UAAU,QAAQ,UAAU;AA4ErC,IAAMC,aAAa,GAAG,SAAhBA,aAAaA,CAAIC,GAAQ,EAAEC,IAAgC,EAAc;EAC7E,IAAI,OAAOA,IAAI,KAAK,QAAQ,EAAEA,IAAI,GAAGC,MAAM,CAACD,IAAI,CAAC;EACjD,IAAI,OAAOA,IAAI,KAAK,QAAQ,EAAEA,IAAI,GAAGA,IAAI,CAACE,KAAK,CAAC,GAAG,CAAC;EACpD,KAAK,IAAIC,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGH,IAAI,CAACI,MAAM,EAAED,CAAC,EAAE,EAAE;IACpC,IAAIE,OAAA,CAAON,GAAG,MAAK,QAAQ,IAAIA,GAAG,KAAK,IAAI,EAAE,OAAOA,GAAG;IACvDA,GAAG,GAAGA,GAAG,CAACC,IAAI,CAACG,CAAC,CAAC,CAAC;EACpB;EACA,OAAOJ,GAAG;AACZ,CAAC;AAED,IAAMO,aAAa,GAAG,SAAhBA,aAAaA,CAAIC,IAAc,EAAEC,KAAa,EAAK;EACvD,IAAMC,MAAgB,GAAG,EAAE;EAC3BD,KAAK,GAAGE,IAAI,CAACC,KAAK,CAACH,KAAK,CAAC,GAAG,CAAC,KAAKD,IAAI,CAACH,MAAM,GAAG,CAAC,GAAGM,IAAI,CAACC,KAAK,CAACH,KAAK,CAAC,GAAGE,IAAI,CAACE,IAAI,CAACJ,KAAK,CAAC;EAExF,KAAK,IAAIL,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGI,IAAI,CAACH,MAAM,EAAED,CAAC,EAAE,EAAE;IACpC,IAAIU,UAAU,GAAGH,IAAI,CAACI,GAAG,CAAC,CAAC,EAAEX,CAAC,GAAGO,IAAI,CAACC,KAAK,CAACH,KAAK,GAAG,CAAC,CAAC,CAAC;IACvD,IAAIO,QAAQ,GAAGL,IAAI,CAACM,GAAG,CAACT,IAAI,CAACH,MAAM,EAAED,CAAC,GAAGO,IAAI,CAACE,IAAI,CAACJ,KAAK,GAAG,CAAC,CAAC,CAAC;IAC9DK,UAAU,GAAGH,IAAI,CAACM,GAAG,CAACH,UAAU,EAAEH,IAAI,CAACI,GAAG,CAAC,CAAC,EAAEC,QAAQ,GAAGP,KAAK,CAAC,CAAC;IAChEO,QAAQ,GAAGL,IAAI,CAACI,GAAG,CAACC,QAAQ,EAAEL,IAAI,CAACM,GAAG,CAACT,IAAI,CAACH,MAAM,EAAES,UAAU,GAAGL,KAAK,CAAC,CAAC;IACxE,IAAMS,IAAI,GAAGV,IAAI,CAACW,KAAK,CAACL,UAAU,EAAEE,QAAQ,CAAC;IAC7C,IAAMI,GAAG,GAAGF,IAAI,CAACG,MAAM,CAAC,UAACD,GAAG,EAAEE,IAAI;MAAA,OAAKF,GAAG,GAAGE,IAAI;IAAA,GAAE,CAAC,CAAC;IACrD,IAAMC,KAAK,GAAGH,GAAG,GAAGF,IAAI,CAACb,MAAM;IAC/BK,MAAM,CAACc,IAAI,CAACD,KAAK,CAAC;EACpB;EACA,OAAOb,MAAM;AACf,CAAC;AAED,OAAO,IAAMe,mBAAmB,GAAG,SAAtBA,mBAAmBA,CAC9BjB,IAAyD,EACzDkB,KAAyB,EACzBC,MAA+B,EACd;EAAA,IAAAC,gBAAA,EAAAC,qBAAA,EAAAC,IAAA;EACjB,IAAIC,QAAkC,GAAG,EAAE;EAC3C,IAAIC,QAAyC,IAAAJ,gBAAA,GAAGD,MAAM,CAACK,QAAQ,cAAAJ,gBAAA,cAAAA,gBAAA,GAAIF,KAAK,CAACM,QAAQ;EACjF,IAAMC,SAAoC,GAAG,EAAE;EAC/C,IAAIC,SAAS,GAAAC,kBAAA,CAAOT,KAAK,CAACU,MAAM,CAAC;EACjC,IAAMC,SAAwB,IAAAR,qBAAA,GAAGH,KAAK,CAACY,SAAS,CAACC,QAAQ,cAAAV,qBAAA,cAAAA,qBAAA,GAAIH,KAAK,CAACY,SAAS,CAACE,UAAU;EACvF,IAAIC,aAAa,GAAG,CAAC;EAErB,IAAMC,OAAO,GAAGC,MAAM,CAACC,WAAW,CAChCD,MAAM,CAACE,IAAI,EAAAf,IAAA,GAAEgB,KAAK,CAACC,OAAO,CAACvC,IAAI,CAAC,GAAGA,IAAI,CAAC,CAAC,CAAC,GAAGA,IAAI,cAAAsB,IAAA,cAAAA,IAAA,GAAK,CAAC,CAAC,CAAC,CAACkB,GAAG,CAAC,UAACC,GAAG;IAAA,OAAK,CAACA,GAAG,EAAE,IAAI,CAAC;EAAA,EAAC,CACpF;EAED,IAAI,CAACjB,QAAQ,EAAE;IACb,IACG,CAACU,OAAO,CAAC,GAAG,CAAC,IAAIA,OAAO,CAAC,IAAI,CAAC,IAAIA,OAAO,CAAC,IAAI,CAAC,KAC9CA,OAAO,CAAC,GAAG,CAAC,KACXA,OAAO,CAAC,OAAO,CAAC,IAAIA,OAAO,CAAC,OAAO,CAAC,CAAC,IACvChB,KAAK,CAACwB,MAAM,CAACC,cAAc,CAACC,IAAI,GAAG,CAAC,IACnC1B,KAAK,CAACwB,MAAM,CAACG,YAAY,CAACD,IAAI,GAAG,CAAC,IAClC1B,KAAK,CAACwB,MAAM,CAACI,SAAS,CAACF,IAAI,GAAG,CAAE,EAClC;MACApB,QAAQ,GAAG,cAAc;IAC3B,CAAC,MAAM,IAAIc,KAAK,CAACC,OAAO,CAACvC,IAAI,CAAC,IAAIA,IAAI,CAACH,MAAM,GAAG,CAAC,EAAE;MACjD2B,QAAQ,GAAG,aAAa;IAC1B,CAAC,MAAM,IAAIc,KAAK,CAACC,OAAO,CAACvC,IAAI,CAAC,IAAImC,MAAM,CAACE,IAAI,CAACH,OAAO,CAAC,CAACrC,MAAM,IAAI,CAAC,EAAE;MAClE,IAAMkD,iBAAiB,GAAGZ,MAAM,CAACE,IAAI,CAACH,OAAO,CAAC,CAC3Cc,MAAM,CAAC,UAACP,GAAG;QAAA,OAAK,OAAOzC,IAAI,CAAC,CAAC,CAAC,CAACyC,GAAG,CAAC,KAAK,QAAQ;MAAA,EAAC,CACjDO,MAAM,CAAC,UAACP,GAAG,EAAK;QACf,IAAMQ,OAAO,GAAGjD,IAAI,CAACwC,GAAG,CAAC,UAACU,GAAG;UAAA,OAAKA,GAAG,CAACT,GAAG,CAAC;QAAA,EAAC;QAC3C,OAAO,IAAIU,GAAG,CAACF,OAAO,CAAC,CAACL,IAAI,KAAKK,OAAO,CAACpD,MAAM;MACjD,CAAC,CAAC;MACJ,IAAIkD,iBAAiB,CAAClD,MAAM,KAAK,CAAC,EAAE;QAClC6B,SAAS,GAAGqB,iBAAiB;QAC7BvB,QAAQ,GAAG,gBAAgB;MAC7B,CAAC,MAAM;QACLA,QAAQ,GAAG,YAAY;MACzB;IACF,CAAC,MAAM;MACLA,QAAQ,GAAG,YAAY;IACzB;EACF;EAEA,IAAIA,QAAQ,KAAK,gBAAgB,IAAIE,SAAS,CAAC7B,MAAM,KAAK,CAAC,EAAE;IAC3D2B,QAAQ,GAAG,YAAY;EACzB;EAEA,IAAIc,KAAK,CAACC,OAAO,CAACvC,IAAI,CAAC,EAAE;IACvB,IAAIwB,QAAQ,KAAK,aAAa,EAAE;MAAA,IAAA4B,KAAA,EAAAC,qBAAA,EAAAC,sBAAA,EAAAC,aAAA,EAAAC,KAAA,EAAAC,sBAAA,EAAAC,sBAAA,EAAAC,cAAA;MAC9B,IAAMC,QAAQ,GAAG5D,IAAI,CAAC,CAAC,CAAC;MACxB,IAAM6D,OAAO,GAAG7D,IAAI,CAACA,IAAI,CAACH,MAAM,GAAG,CAAC,CAAC;MACrC,IAAMiE,iBAAiB,IAAI,GAAG,EAAE,OAAO,EAAAC,MAAA,CAAApC,kBAAA,CAAKT,KAAK,CAACwB,MAAM,CAACG,YAAY,EAAC;MACtE,IAAMmB,UAAU,GAAGF,iBAAiB,CAACd,MAAM,CAAC,UAACP,GAAG;QAAA,OAAKP,OAAO,CAACO,GAAG,CAAC;MAAA,EAAC;MAElE,IAAMwB,iBAAiB,IAAI,OAAO,EAAE,GAAG,EAAAF,MAAA,CAAApC,kBAAA,CAAKT,KAAK,CAACwB,MAAM,CAACC,cAAc,EAAC;MACxE,IAAMuB,SAAS,GAAGD,iBAAiB,CAACjB,MAAM,CAAC,UAACP,GAAG;QAAA,OAAKP,OAAO,CAACO,GAAG,CAAC;MAAA,EAAC,CAAC,CAAC,CAAC;MAEpER,aAAa,GAAGE,MAAM,CAACE,IAAI,CAAC2B,UAAU,CAAC,CAACnE,MAAM;MAE9C,IAAMsE,OAAO,GAAGP,QAAQ,CAACM,SAAS,CAAC;MACnC,IAAME,KAAK,GAAGP,OAAO,CAACK,SAAS,CAAC;MAChC,IAAMG,IAAI,IAAAjB,KAAA,IAAAC,qBAAA,IAAAC,sBAAA,GACR,CAAAC,aAAA,GAAArC,KAAK,CAACoD,MAAM,EAACC,sBAAsB,cAAAjB,sBAAA,uBAAnCA,sBAAA,CAAAkB,IAAA,CAAAjB,aAAA,EAAsCY,OAAO,CAAW,cAAAd,qBAAA,cAAAA,qBAAA,GACxDnC,KAAK,CAACoD,MAAM,CAAC3B,cAAc,CAACwB,OAAO,CAAW,cAAAf,KAAA,cAAAA,KAAA,GAC7Ce,OAAkB;MACrB,IAAMM,EAAE,IAAAjB,KAAA,IAAAC,sBAAA,IAAAC,sBAAA,GACN,CAAAC,cAAA,GAAAzC,KAAK,CAACoD,MAAM,EAACC,sBAAsB,cAAAb,sBAAA,uBAAnCA,sBAAA,CAAAc,IAAA,CAAAb,cAAA,EAAsCS,KAAK,CAAW,cAAAX,sBAAA,cAAAA,sBAAA,GACtDvC,KAAK,CAACoD,MAAM,CAAC3B,cAAc,CAACyB,KAAK,CAAW,cAAAZ,KAAA,cAAAA,KAAA,GAC3CY,KAAgB;MAEnB,IAAInC,aAAa,GAAG,CAAC,EAAE;QAAA,IAAAyC,sBAAA;QACrBjD,SAAS,CAACT,IAAI,CAAC;UAAEqD,IAAI,EAAJA,IAAI;UAAEI,EAAE,EAAFA,EAAE;UAAEE,KAAK,GAAAD,sBAAA,GAAExD,KAAK,CAACY,SAAS,CAACC,QAAQ,cAAA2C,sBAAA,cAAAA,sBAAA,GAAIR;QAAU,CAAC,CAAC;MAC5E;MAAC,IAAAU,SAAA,GAAAC,0BAAA,CAEsBb,UAAU;QAAAc,KAAA;MAAA;QAAA,IAAAC,KAAA,YAAAA,MAAA,EAAE;UAAA,IAAAC,qBAAA,EAAAC,sBAAA,EAAAC,SAAA;UAAA,IAAxBC,QAAQ,GAAAL,KAAA,CAAA/D,KAAA;UACjB,IAAMqE,MAAM,GAAIpF,IAAI,CACjBwC,GAAG,CAAC,UAACU,GAAG;YAAA,OAAKA,GAAG,CAACiC,QAAQ,CAAC;UAAA,EAAC,CAC3BnC,MAAM,CAAC,UAACjC,KAAK;YAAA,OAAKjB,OAAA,CAAOiB,KAAK,MAAK,QAAQ;UAAA,EAAC;UAC/C,IAAMH,GAAG,GAAGwE,MAAM,CAACvE,MAAM,CAAC,UAACD,GAAG,EAAEG,KAAK;YAAA,OAAKH,GAAG,GAAGG,KAAK;UAAA,GAAE,CAAC,CAAC;UACzD,IAAMsE,OAAO,GAAGzE,GAAG,GAAGwE,MAAM,CAACvF,MAAM;UACnC,IAAMyF,QAAQ,GACX,CAAC,GAAGF,MAAM,CAACvF,MAAM,GAClBuF,MAAM,CAAC5C,GAAG,CAAC,UAACzB,KAAK;YAAA,OAAAZ,IAAA,CAAAoF,GAAA,CAAMxE,KAAK,GAAGsE,OAAO,EAAK,CAAC;UAAA,EAAC,CAACxE,MAAM,CAAC,UAACD,GAAG,EAAEE,IAAI;YAAA,OAAKF,GAAG,GAAGE,IAAI;UAAA,GAAE,CAAC,CAAC;UACpF,IAAM0E,iBAAiB,GAAGrF,IAAI,CAACsF,IAAI,CAACH,QAAQ,CAAC;UAC7C,IAAMI,cAAc,GAAG,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,QAAQ,CAAU;UAEtE,IAAMC,SAAS,GAAGxF,IAAI,CAACsF,IAAI,CAACL,MAAM,CAACvF,MAAM,CAAC;UAC1C,IAAM+F,qBAAqB,IAAAZ,qBAAA,GAAG7D,MAAM,CAACpB,aAAa,CAAC8F,QAAQ,cAAAb,qBAAA,cAAAA,qBAAA,GAAIW,SAAS;UACxE,IAAMG,sBAAsB,IAAAb,sBAAA,GAAG9D,MAAM,CAACpB,aAAa,CAACgG,SAAS,cAAAd,sBAAA,cAAAA,sBAAA,GAAI9E,IAAI,CAACsF,IAAI,CAACE,SAAS,CAAC;UACrF,IAAMK,iBAAiB,GAAGjG,aAAa,CAACqF,MAAM,EAAEQ,qBAAqB,CAAC;UACtE,IAAMK,kBAAkB,GACtBb,MAAM,CAACvF,MAAM,GAAG,CAAC,GAAGuF,MAAM,GAAGrF,aAAa,CAACqF,MAAM,EAAEU,sBAAsB,CAAC;UAE5E,IAAMI,KAAK,GAAG,EAAE;UAChB,KAAK,IAAMtG,CAAC,IAAIwF,MAAM,EAAE;YAAA,IAAAe,SAAA,EAAAC,oBAAA,EAAAC,qBAAA;YACtBH,KAAK,CAAClF,IAAI,CAAC;cACTD,KAAK,EAAE,EAAAoF,SAAA,GAACf,MAAM,CAACxF,CAAC,CAAC,cAAAuG,SAAA,cAAAA,SAAA,GAAIG,GAAG,EAAEC,OAAO,CAAC,CAAC,CAAC;cACpC,QAAM,EAAAH,oBAAA,GAACJ,iBAAiB,CAACpG,CAAC,CAAC,cAAAwG,oBAAA,cAAAA,oBAAA,GAAIE,GAAG,EAAEC,OAAO,CAAC,CAAC,CAAC;cAC9C,SAAO,EAAAF,qBAAA,GAACJ,kBAAkB,CAACrG,CAAC,CAAC,cAAAyG,qBAAA,cAAAA,qBAAA,GAAIC,GAAG,EAAEC,OAAO,CAAC,CAAC;YACjD,CAAC,CAAC;UACJ;UAEA,IAAMC,YAAY,GAAG;YACnBC,MAAM,EAAE;cACN,UAAQ,QAAQ;cAChBC,IAAI,EAAE,aAAa;cACnBC,MAAM,EAAE,QAAQ;cAChBC,MAAM,EAAE;YACV,CAAC;YACDC,SAAS,EAAE;cACT,UAAQ,QAAQ;cAChBH,IAAI,EAAE,gBAAgB;cACtBC,MAAM,EAAE,WAAW;cACnBC,MAAM,EAAE;YACV;UACF,CAAU;UAEV,IAAME,WAAW,GAAG,SAAdA,WAAWA,CAAAC,KAAA,EAU+B;YAAA,IAT9ChG,KAAK,GAAAgG,KAAA,CAALhG,KAAK;cACLiG,KAAK,GAAAD,KAAA,CAALC,KAAK;cACLrC,KAAK,GAAAoC,KAAA,CAALpC,KAAK;cACLsC,IAAI,GAAAF,KAAA,CAAJE,IAAI;YAOJ,KAAK,IAAIrH,EAAC,GAAG,CAAC,EAAEA,EAAC,GAAG8F,cAAc,CAAC7F,MAAM,EAAED,EAAC,EAAE,EAAE;cAAA,IAAAsH,qBAAA,EAAAC,oBAAA,EAAAC,sBAAA,EAAAC,qBAAA;cAC9C,IAAMC,gBAAgB,GACpBnH,IAAI,CAACoH,GAAG,CAACxG,KAAK,CAACsD,IAAI,GAAGtD,KAAK,CAAC0D,EAAE,CAAC,KAAAyC,qBAAA,IAAAC,oBAAA,GAAIjG,KAAK,CAACsG,aAAa,cAAAL,oBAAA,uBAAnBA,oBAAA,CAAqBtE,YAAY,cAAAqE,qBAAA,cAAAA,qBAAA,GAAI,CAAC,CAAC;cAC5E,IAAMO,eAAe,GAAGT,KAAK,KAAAI,sBAAA,IAAAC,qBAAA,GAAInG,KAAK,CAACsG,aAAa,cAAAH,qBAAA,uBAAnBA,qBAAA,CAAqB1E,cAAc,cAAAyE,sBAAA,cAAAA,sBAAA,GAAI,CAAC,CAAC;cAC1E,IAAMM,IAAI,GAAGJ,gBAAgB,GAAGG,eAAe;cAC/C,IAAME,aAAa,GAAGjC,cAAc,CAAC9F,EAAC,CAAC;cACvC,IAAI8H,IAAI,IAAIvG,MAAM,CAACyG,YAAY,CAACD,aAAa,CAAC,IAAI/H,EAAC,KAAK8F,cAAc,CAAC7F,MAAM,GAAG,CAAC,EAAE;gBACjF,IAAMgI,QAAQ,GACZ9G,KAAK,CAAC0D,EAAE,GAAG1D,KAAK,CAACsD,IAAI,GACjBmC,YAAY,CAACC,MAAM,CAACkB,aAAa,CAAC,GAClCnB,YAAY,CAACK,SAAS,CAACc,aAAa,CAAC;gBAE3C,OAAO;kBACLV,IAAI,EAAJA,IAAI;kBACJa,QAAQ,EAAElI,EAAC;kBACXmI,MAAM,EAAE;oBACN1D,IAAI,EAAEtD,KAAK,CAACsD,IAAI;oBAChBI,EAAE,EAAE1D,KAAK,CAAC0D,EAAE;oBACZoD,QAAQ,EAARA;kBACF,CAAC;kBACDxD,IAAI,EAAEM,KAAK,CAACN,IAAI;kBAChBI,EAAE,EAAEE,KAAK,CAACF,EAAE;kBACZuD,OAAO,EAAErD,KAAK,CAACqD,OAAO;kBACtBrD,KAAK,EAAEA,KAAK,CAACsD;gBACf,CAAC;cACH;YACF;UACF,CAAC;UAED,IAAMC,YAAY,GAAGpB,WAAW,CAAC;YAC/BG,IAAI,EAAE,eAAe;YACrBlG,KAAK,EAAE;cACLsD,IAAI,EAAE4B,kBAAkB,CAAC,CAAC,CAAC;cAC3BxB,EAAE,EAAEwB,kBAAkB,CAACA,kBAAkB,CAACpG,MAAM,GAAG,CAAC;YACtD,CAAC;YACDmH,KAAK,EAAEhH,IAAI,CAACH,MAAM;YAClB8E,KAAK,EAAE;cAAEN,IAAI,EAAJA,IAAI;cAAEI,EAAE,EAAFA,EAAE;cAAEuD,OAAO,EAAE7C,QAAQ;cAAE8C,YAAY,EAAE/G,KAAK,CAACoD,MAAM,CAAC6D,UAAU,CAAChD,QAAQ;YAAE;UACxF,CAAC,CAAE;UACH,IAAMiD,WAAsB,GAAG,EAAE;UACjC;YAAA,IAAAC,sBAAA;YACE,IAAMC,WAAW,IAAAD,sBAAA,GAAGlH,MAAM,CAACpB,aAAa,CAACuI,WAAW,cAAAD,sBAAA,cAAAA,sBAAA,GAAI7C,iBAAiB,GAAG,EAAE;YAC9E,IAAI+C,UAAU,GAAG,CAAC;YAClB,IAAIC,eAAe,GAAGvC,kBAAkB,CAACsC,UAAU,CAAC;YACpD,IAAIE,aAAa,GAAGxC,kBAAkB,CAAC,CAAC,CAAC,GAAGD,iBAAiB,CAAC,CAAC,CAAC;YAChE,KAAK,IAAIpG,GAAC,GAAG,CAAC,EAAEA,GAAC,GAAGI,IAAI,CAACH,MAAM,EAAED,GAAC,EAAE,EAAE;cAAA,IAAA8I,KAAA,EAAAC,sBAAA,EAAAC,sBAAA,EAAAC,cAAA,EAAAC,KAAA,EAAAC,sBAAA,EAAAC,sBAAA,EAAAC,cAAA;cACpC,IAAMC,YAAY,GAAGjD,kBAAkB,CAACrG,GAAC,CAAC,GAAGoG,iBAAiB,CAACpG,GAAC,CAAC;cACjE,IAAMuJ,IAAI,GAAGhJ,IAAI,CAACoH,GAAG,CAACtB,kBAAkB,CAACrG,GAAC,CAAC,GAAGoG,iBAAiB,CAACpG,GAAC,CAAC,CAAC;cAEnE,IAAIsJ,YAAY,KAAKT,aAAa,EAAE;cACpC,IAAIU,IAAI,GAAGb,WAAW,EAAE;cACxB,IAAI1I,GAAC,KAAK,CAAC,IAAI2I,UAAU,KAAKvI,IAAI,CAACH,MAAM,GAAG,CAAC,EAAE;cAC/C,IAAID,GAAC,KAAKI,IAAI,CAACH,MAAM,GAAG,CAAC,IAAI0I,UAAU,KAAK,CAAC,EAAE;cAC/C3I,GAAC,GAAGO,IAAI,CAACM,GAAG,CAACb,GAAC,EAAEI,IAAI,CAACH,MAAM,GAAG,CAAC,CAAC;cAEhC,IAAMsE,QAAO,GAAGnE,IAAI,CAACuI,UAAU,CAAC,CAACrE,SAAS,CAAC;cAC3C,IAAME,MAAK,GAAGpE,IAAI,CAACJ,GAAC,CAAC,CAACsE,SAAS,CAAC;cAChC,IAAMG,KAAI,IAAAqE,KAAA,IAAAC,sBAAA,IAAAC,sBAAA,GACR,CAAAC,cAAA,GAAA3H,KAAK,CAACoD,MAAM,EAACC,sBAAsB,cAAAqE,sBAAA,uBAAnCA,sBAAA,CAAApE,IAAA,CAAAqE,cAAA,EAAsC1E,QAAO,CAAW,cAAAwE,sBAAA,cAAAA,sBAAA,GACxDzH,KAAK,CAACoD,MAAM,CAAC3B,cAAc,CAACwB,QAAO,CAAW,cAAAuE,KAAA,cAAAA,KAAA,GAC9CvE,QAAO;cACT,IAAMM,GAAE,IAAAqE,KAAA,IAAAC,sBAAA,IAAAC,sBAAA,GACN,CAAAC,cAAA,GAAA/H,KAAK,CAACoD,MAAM,EAACC,sBAAsB,cAAAyE,sBAAA,uBAAnCA,sBAAA,CAAAxE,IAAA,CAAAyE,cAAA,EAAsC7E,MAAK,CAAW,cAAA2E,sBAAA,cAAAA,sBAAA,GACtD7H,KAAK,CAACoD,MAAM,CAAC3B,cAAc,CAACyB,MAAK,CAAW,cAAA0E,KAAA,cAAAA,KAAA,GAC5C1E,MAAK;cACPgE,WAAW,CAACpH,IAAI,CACd8F,WAAW,CAAC;gBACVG,IAAI,EAAE,OAAO;gBACblG,KAAK,EAAE;kBACLsD,IAAI,EAAEmE,eAAe;kBACrB/D,EAAE,EAAEwB,kBAAkB,CAACrG,GAAC;gBAC1B,CAAC;gBACDoH,KAAK,EAAEpH,GAAC,GAAG2I,UAAU;gBACrB5D,KAAK,EAAE;kBACLN,IAAI,EAAJA,KAAI;kBACJI,EAAE,EAAFA,GAAE;kBACFuD,OAAO,EAAE7C,QAAQ;kBACjB8C,YAAY,EAAE/G,KAAK,CAACoD,MAAM,CAAC6D,UAAU,CAAChD,QAAQ;gBAChD;cACF,CAAC,CAAC,CACH;cACDoD,UAAU,GAAG3I,GAAC;cACd4I,eAAe,GAAGvC,kBAAkB,CAACsC,UAAU,CAAC;cAChDE,aAAa,GAAGS,YAAY;YAC9B;YAEA,IAAIX,UAAU,KAAK,CAAC,EAAE;cACpB,IAAMa,SAAS,GAAGnD,kBAAkB,CAACpG,MAAM,GAAG,CAAC;cAC/C,IAAMwJ,SAAS,GAAGpD,kBAAkB,CAACmD,SAAS,CAAC;cAC/C,IAAIjJ,IAAI,CAACoH,GAAG,CAACiB,eAAe,GAAGa,SAAS,CAAC,GAAGf,WAAW,EAAE;gBACvDF,WAAW,CAACpH,IAAI,CACd8F,WAAW,CAAC;kBACVG,IAAI,EAAE,OAAO;kBACblG,KAAK,EAAE;oBACLsD,IAAI,EAAEmE,eAAe;oBACrB/D,EAAE,EAAE4E;kBACN,CAAC;kBACDrC,KAAK,EAAEoC,SAAS,GAAGb,UAAU;kBAC7B5D,KAAK,EAAE;oBACLN,IAAI,EAAErE,IAAI,CAACuI,UAAU,CAAC,CAACrE,SAAS,CAAC;oBACjCO,EAAE,EAAEzE,IAAI,CAACoJ,SAAS,CAAC,CAAClF,SAAS,CAAC;oBAC9B8D,OAAO,EAAE7C,QAAQ;oBACjB8C,YAAY,EAAE/G,KAAK,CAACoD,MAAM,CAAC6D,UAAU,CAAChD,QAAQ;kBAChD;gBACF,CAAC,CAAC,CACH;cACH;YACF;UACF;UACA5D,QAAQ,CAACP,IAAI,CAACkH,YAAY,CAAC;UAC3B,CAAAhD,SAAA,GAAA3D,QAAQ,EAACP,IAAI,CAAAsI,KAAA,CAAApE,SAAA,EAAIkD,WAAW,CAAC;QAC/B,CAAC;QApKD,KAAAxD,SAAA,CAAA2E,CAAA,MAAAzE,KAAA,GAAAF,SAAA,CAAA4E,CAAA,IAAAC,IAAA;UAAA1E,KAAA;QAAA;MAoKC,SAAA2E,GAAA;QAAA9E,SAAA,CAAA+E,CAAA,CAAAD,GAAA;MAAA;QAAA9E,SAAA,CAAAgF,CAAA;MAAA;IACH,CAAC,MAAM,IAAIpI,QAAQ,KAAK,cAAc,EAAE;MAAA,IAAAqI,KAAA,EAAAC,qBAAA,EAAAC,qBAAA,EAAAC,UAAA;MACtC,IAAMC,WAAW,GAAG,GAAAlG,MAAA,CAAApC,kBAAA,CAAIT,KAAK,CAACwB,MAAM,CAACC,cAAc,CAACyC,MAAM,EAAE,IAAE,GAAG,GAAE,CAAC,CAAC;MACrE,IAAM8E,WAAW,GAAG,GAAAnG,MAAA,CAAApC,kBAAA,CAAIT,KAAK,CAACwB,MAAM,CAACG,YAAY,CAACuC,MAAM,EAAE,IAAE,GAAG,GAAE,CAAC,CAAC;MACnE,IAAM+E,eAAe,GAAG,GAAApG,MAAA,CAAApC,kBAAA,CAAIT,KAAK,CAACwB,MAAM,CAACI,SAAS,CAACsC,MAAM,EAAE,IAAE,OAAO,GAAE,CAAC,CAAC;MACxE,IAAMgF,eAAe,GAAGlI,OAAO,CAAC,OAAO,CAAC,GAAG,OAAO,GAAGiI,eAAe;MACpE,IAAME,UAAU,GAAGrK,IAAI,CAACwC,GAAG,CAAC,UAACU,GAAG;QAAA,OAAM;UACpCoH,CAAC,EAAEpH,GAAG,CAAC+G,WAAW,CAAW;UAC7BM,CAAC,EAAErH,GAAG,CAACgH,WAAW,CAAW;UAC7BvF,KAAK,EAAEzB,GAAG,CAACkH,eAAe,CAAC;UAC3BrJ,KAAK,EAAEmC,GAAG,CAACiH,eAAe;QAC5B,CAAC;MAAA,CAAC,CAAC;MACH,IAAIK,QAAQ,IAAAX,KAAA,IAAAC,qBAAA,GACV3I,MAAM,CAACsJ,gBAAgB,cAAAX,qBAAA,cAAAA,qBAAA,GAAI5I,KAAK,CAACwJ,IAAI,CAAC7H,YAAY,cAAAgH,KAAA,cAAAA,KAAA,GAAI3I,KAAK,CAACwJ,IAAI,CAAC/H,cAAc;MACjF,IAAI,CAAC6H,QAAQ,EAAE;QACb,IAAMG,KAAK,GAAG,IAAIxH,GAAG,EAAU;QAC/B,IAAMyH,KAAK,GAAG,IAAIzH,GAAG,EAAU;QAAC,IAAA0H,UAAA,GAAAhG,0BAAA,CACTwF,UAAU;UAAAS,MAAA;QAAA;UAAjC,KAAAD,UAAA,CAAAtB,CAAA,MAAAuB,MAAA,GAAAD,UAAA,CAAArB,CAAA,IAAAC,IAAA,GAAmC;YAAA,IAAAsB,YAAA,GAAAD,MAAA,CAAA/J,KAAA;cAAtBuJ,EAAC,GAAAS,YAAA,CAADT,CAAC;cAAEC,EAAC,GAAAQ,YAAA,CAADR,CAAC;YACfI,KAAK,CAACK,GAAG,CAACV,EAAC,CAAC;YACZM,KAAK,CAACI,GAAG,CAACT,EAAC,CAAC;UACd;QAAC,SAAAb,GAAA;UAAAmB,UAAA,CAAAlB,CAAA,CAAAD,GAAA;QAAA;UAAAmB,UAAA,CAAAjB,CAAA;QAAA;QACD,IAAMqB,QAAQ,GAAGtJ,kBAAA,CAAIgJ,KAAK,EAAEO,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC;UAAA,OAAKD,CAAC,GAAGC,CAAC;QAAA,EAAC;QACjD,IAAMC,QAAQ,GAAG1J,kBAAA,CAAIiJ,KAAK,EAAEM,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC;UAAA,OAAKD,CAAC,GAAGC,CAAC;QAAA,EAAC;QACjD,IAAME,UAAU,GAAGL,QAAQ,CAACtK,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC6B,GAAG,CAAC,UAAC8H,CAAC,EAAEiB,KAAK;UAAA,OAAKN,QAAQ,CAACM,KAAK,GAAG,CAAC,CAAC,GAAGjB,CAAC;QAAA,EAAC;QACnF,IAAMkB,UAAU,GAAGH,QAAQ,CAAC1K,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC6B,GAAG,CAAC,UAAC+H,CAAC,EAAEgB,KAAK;UAAA,OAAKF,QAAQ,CAACE,KAAK,GAAG,CAAC,CAAC,GAAGhB,CAAC;QAAA,EAAC;QACnF,IAAMkB,YAAY,GAAGH,UAAU,CAACzK,MAAM,CAAC,UAACD,GAAG,EAAE0J,CAAC;UAAA,OAAK1J,GAAG,GAAG0J,CAAC;QAAA,GAAE,CAAC,CAAC,GAAGgB,UAAU,CAACzL,MAAM;QAClF,IAAM6L,YAAY,GAAGF,UAAU,CAAC3K,MAAM,CAAC,UAACD,GAAG,EAAE2J,CAAC;UAAA,OAAK3J,GAAG,GAAG2J,CAAC;QAAA,GAAE,CAAC,CAAC,GAAGiB,UAAU,CAAC3L,MAAM;QAClF,IAAM8L,kBAAkB,GAAGL,UAAU,CAACtI,MAAM,CAAC,UAACsH,CAAC;UAAA,OAAKA,CAAC,GAAGmB,YAAY;QAAA,EAAC;QACrE,IAAMG,kBAAkB,GAAGJ,UAAU,CAACxI,MAAM,CAAC,UAACuH,CAAC;UAAA,OAAKA,CAAC,GAAGmB,YAAY;QAAA,EAAC;QACrE,IAAMG,gBAAgB,GACpBF,kBAAkB,CAAC9K,MAAM,CAAC,UAACD,GAAG,EAAE0J,CAAC;UAAA,OAAK1J,GAAG,GAAG0J,CAAC;QAAA,GAAE,CAAC,CAAC,GAAGqB,kBAAkB,CAAC9L,MAAM;QAC/E,IAAMiM,gBAAgB,GACpBF,kBAAkB,CAAC/K,MAAM,CAAC,UAACD,GAAG,EAAE2J,CAAC;UAAA,OAAK3J,GAAG,GAAG2J,CAAC;QAAA,GAAE,CAAC,CAAC,GAAGqB,kBAAkB,CAAC/L,MAAM;QAC/E,IAAIkM,WAAW,GAAG,CAAC;QACnB,IAAI,CAACC,MAAM,CAACC,KAAK,CAACJ,gBAAgB,CAAC,IAAI,CAACG,MAAM,CAACC,KAAK,CAACH,gBAAgB,CAAC,EAAE;UACtEC,WAAW,GAAG,CAACF,gBAAgB,GAAGC,gBAAgB,IAAI,CAAC;QACzD,CAAC,MAAM,IAAI,CAACE,MAAM,CAACC,KAAK,CAACJ,gBAAgB,CAAC,EAAE;UAC1CE,WAAW,GAAGF,gBAAgB;QAChC,CAAC,MAAM,IAAI,CAACG,MAAM,CAACC,KAAK,CAACH,gBAAgB,CAAC,EAAE;UAC1CC,WAAW,GAAGD,gBAAgB;QAChC,CAAC,MAAM;UACLC,WAAW,GAAG,CAACN,YAAY,GAAGC,YAAY,IAAI,CAAC;QACjD;QACAlB,QAAQ,GAAGrK,IAAI,CAACsF,IAAI,CAACtF,IAAI,CAACsF,IAAI,CAACsG,WAAW,CAAC,CAAC;MAC9C;MAEA,IAAMrB,IAEL,GAAG,CAAC,CAAC;MACN,IAAMwB,MAAM,GAAG,IAAI/I,GAAG,EAAU;MAChC,IAAMgJ,MAAM,GAAG,IAAIhJ,GAAG,EAAU;MAChC,KAAK,IAAIvD,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGyK,UAAU,CAACxK,MAAM,EAAED,CAAC,EAAE,EAAE;QAAA,IAAAwM,WAAA,EAAAC,iBAAA;QAC1C,IAAAC,aAAA,GAAiBjC,UAAU,CAACzK,CAAC,CAAC;UAAtB0K,GAAC,GAAAgC,aAAA,CAADhC,CAAC;UAAEC,GAAC,GAAA+B,aAAA,CAAD/B,CAAC;QACZ,IAAMgC,KAAK,GAAGpM,IAAI,CAACqM,KAAK,CAAClC,GAAC,GAAGE,QAAS,CAAC;QACvC,IAAMiC,KAAK,GAAGtM,IAAI,CAACqM,KAAK,CAACjC,GAAC,GAAGC,QAAS,CAAC;QACvC0B,MAAM,CAAClB,GAAG,CAACT,GAAC,CAAC;QACb4B,MAAM,CAACnB,GAAG,CAACV,GAAC,CAAC;QACbI,IAAI,CAAC6B,KAAK,CAAC,IAAAH,WAAA,GAAG1B,IAAI,CAAC6B,KAAK,CAAC,cAAAH,WAAA,cAAAA,WAAA,GAAI,CAAC,CAAC;QAC/B1B,IAAI,CAAC6B,KAAK,CAAC,CAACE,KAAK,CAAC,IAAAJ,iBAAA,GAAG3B,IAAI,CAAC6B,KAAK,CAAC,CAACE,KAAK,CAAC,cAAAJ,iBAAA,cAAAA,iBAAA,GAAI;UAAEK,SAAS,KAAA3I,MAAA,CAAKwI,KAAK,OAAAxI,MAAA,CAAI0I,KAAK,CAAE;UAAEE,OAAO,EAAE;QAAG,CAAC;QAC1FjC,IAAI,CAAC6B,KAAK,CAAC,CAACE,KAAK,CAAC,CAACE,OAAO,CAAC3L,IAAI,CAACqJ,UAAU,CAACzK,CAAC,CAAC,CAAC;MAChD;MACA,IAAMgN,QAAoD,GAAG,CAAC,CAAC;MAAC,IAAAC,UAAA,GAAAhI,0BAAA,CAChD1C,MAAM,CAACE,IAAI,CAACqI,IAAI,CAAC,CAAClI,GAAG,CAAC,UAAC8H,CAAC;UAAA,OAAKwC,QAAQ,CAACxC,CAAC,EAAE,EAAE,CAAC;QAAA,EAAC;QAAAyC,MAAA;MAAA;QAA7D,KAAAF,UAAA,CAAAtD,CAAA,MAAAwD,MAAA,GAAAF,UAAA,CAAArD,CAAA,IAAAC,IAAA,GAA+D;UAAA,IAApDa,GAAC,GAAAyC,MAAA,CAAAhM,KAAA;UAAA,IAAAiM,UAAA,GAAAnI,0BAAA,CACM1C,MAAM,CAACE,IAAI,CAACqI,IAAI,CAACJ,GAAC,CAAC,CAAC,CAAC9H,GAAG,CAAC,UAAC+H,CAAC;cAAA,OAAKuC,QAAQ,CAACvC,CAAC,EAAE,EAAE,CAAC;YAAA,EAAC;YAAA0C,MAAA;UAAA;YAAhE,KAAAD,UAAA,CAAAzD,CAAA,MAAA0D,MAAA,GAAAD,UAAA,CAAAxD,CAAA,IAAAC,IAAA,GAAkE;cAAA,IAAAyD,qBAAA,EAAAC,sBAAA;cAAA,IAAvD5C,GAAC,GAAA0C,MAAA,CAAAlM,KAAA;cACV,IAAIqM,YAAY,GAAG,KAAK;cACxB,SAAAC,GAAA,MAAAC,IAAA,GAAyB,CAAChD,GAAC,GAAG,CAAC,EAAEA,GAAC,EAAEA,GAAC,GAAG,CAAC,CAAC,EAAA+C,GAAA,GAAAC,IAAA,CAAAzN,MAAA,EAAAwN,GAAA,IAAE;gBAAvC,IAAME,UAAU,GAAAD,IAAA,CAAAD,GAAA;gBACnB,SAAAG,GAAA,MAAAC,KAAA,GAAyB,CAAClD,GAAC,GAAG,CAAC,EAAEA,GAAC,EAAEA,GAAC,GAAG,CAAC,CAAC,EAAAiD,GAAA,GAAAC,KAAA,CAAA5N,MAAA,EAAA2N,GAAA,IAAE;kBAAA,IAAAE,gBAAA;kBAAvC,IAAMC,UAAU,GAAAF,KAAA,CAAAD,GAAA;kBACnB,IAAID,UAAU,KAAKK,SAAS,IAAID,UAAU,KAAKC,SAAS,EAAE;kBAC1D,IAAIL,UAAU,KAAKjD,GAAC,IAAIqD,UAAU,KAAKpD,GAAC,EAAE;kBAC1C,IAAI,GAAAmD,gBAAA,GAAChD,IAAI,CAAC6C,UAAU,CAAC,cAAAG,gBAAA,eAAhBA,gBAAA,CAAmBC,UAAU,CAAC,GAAE;kBACrCP,YAAY,GAAG,IAAI;kBACnB1C,IAAI,CAACJ,GAAC,CAAC,CAACC,GAAC,CAAC,CAACmC,SAAS,GAAGhC,IAAI,CAAC6C,UAAU,CAAC,CAACI,UAAU,CAAC,CAACjB,SAAS;kBAC7D;gBACF;gBACA,IAAIU,YAAY,EAAE;cACpB;cACAR,QAAQ,CAAClC,IAAI,CAACJ,GAAC,CAAC,CAACC,GAAC,CAAC,CAACmC,SAAS,CAAC,IAAAQ,qBAAA,GAAGN,QAAQ,CAAClC,IAAI,CAACJ,GAAC,CAAC,CAACC,GAAC,CAAC,CAACmC,SAAS,CAAC,cAAAQ,qBAAA,cAAAA,qBAAA,GAAI,EAAE;cACrE,CAAAC,sBAAA,GAAAP,QAAQ,CAAClC,IAAI,CAACJ,GAAC,CAAC,CAACC,GAAC,CAAC,CAACmC,SAAS,CAAC,EAAC1L,IAAI,CAAAsI,KAAA,CAAA6D,sBAAA,EAAAxL,kBAAA,CAAI+I,IAAI,CAACJ,GAAC,CAAC,CAACC,GAAC,CAAC,CAACoC,OAAO,EAAC;YAC5D;UAAC,SAAAjD,GAAA;YAAAsD,UAAA,CAAArD,CAAA,CAAAD,GAAA;UAAA;YAAAsD,UAAA,CAAApD,CAAA;UAAA;QACH;MAAC,SAAAF,GAAA;QAAAmD,UAAA,CAAAlD,CAAA,CAAAD,GAAA;MAAA;QAAAmD,UAAA,CAAAjD,CAAA;MAAA;MACD,IAAMiE,gBAA+B,GAAG,EAAE;MAC1C,KAAK,IAAMnB,UAAS,IAAIE,QAAQ,EAAE;QAAA,IAAAkB,qBAAA,EAAAC,sBAAA;QAChC,IAAMnL,IAAI,GAAGgK,QAAQ,CAACF,UAAS,CAAC,CAAC7L,MAAM,CAAC,UAACD,GAAG,EAAAoN,KAAA;UAAA,IAAIjN,KAAK,GAAAiN,KAAA,CAALjN,KAAK;UAAA,OAAOH,GAAG,IAAIG,KAAK,aAALA,KAAK,cAALA,KAAK,GAAI,CAAC,CAAC;QAAA,GAAE,CAAC,CAAC;QAClF,IAAMkN,MAAM,GAAGtM,kBAAA,CAAIiL,QAAQ,CAACF,UAAS,CAAC,EACnCxB,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC;UAAA,OAAKA,CAAC,CAACrK,KAAK,GAAGoK,CAAC,CAACpK,KAAK;QAAA,EAAC,CACjCyB,GAAG,CAAC,UAAA0L,KAAA;UAAA,IAAGvJ,KAAK,GAAAuJ,KAAA,CAALvJ,KAAK;UAAA,OAAOA,KAAK;QAAA,EAAC,CACzB3B,MAAM,CAAC,UAAC2B,KAAK;UAAA,OAAKA,KAAK,KAAKiJ,SAAS;QAAA,EAAC;QACzC,IAAMO,YAAY,GAAAxM,kBAAA,CAAO,IAAIwB,GAAG,CAAC8K,MAAM,CAAC,CAAC;QACzC,IAAM3D,GAAC,GACLsC,QAAQ,CAACF,UAAS,CAAC,CAAC7L,MAAM,CAAC,UAACD,GAAG,EAAAwN,MAAA;UAAA,IAAI9D,CAAC,GAAA8D,MAAA,CAAD9D,CAAC;UAAA,OAAO1J,GAAG,GAAG0J,CAAC;QAAA,GAAE,CAAC,CAAC,GAAGsC,QAAQ,CAACF,UAAS,CAAC,CAAC7M,MAAM;QACrF,IAAM0K,GAAC,GACLqC,QAAQ,CAACF,UAAS,CAAC,CAAC7L,MAAM,CAAC,UAACD,GAAG,EAAAyN,MAAA;UAAA,IAAI9D,CAAC,GAAA8D,MAAA,CAAD9D,CAAC;UAAA,OAAO3J,GAAG,GAAG2J,CAAC;QAAA,GAAE,CAAC,CAAC,GAAGqC,QAAQ,CAACF,UAAS,CAAC,CAAC7M,MAAM;QAErFgO,gBAAgB,CAAC7M,IAAI,CAAC;UACpBiG,IAAI,EAAE,SAAS;UACfa,QAAQ,EAAE,CAAC;UACXlF,IAAI,EAAJA,IAAI;UACJqL,MAAM,EAAEE,YAAY;UACpBG,YAAY,EAAE,SAAS;UACvBC,MAAM,EAAE;YACNjE,CAAC,EAADA,GAAC;YACDC,CAAC,EAADA,GAAC;YACDiE,MAAM,GAAAV,qBAAA,GAAE5M,KAAK,CAACY,SAAS,CAACE,UAAU,cAAA8L,qBAAA,cAAAA,qBAAA,GAAI7D,WAAW;YACjDwE,MAAM,GAAAV,sBAAA,GAAE7M,KAAK,CAACY,SAAS,CAACC,QAAQ,cAAAgM,sBAAA,cAAAA,sBAAA,GAAI7D;UACtC;QACF,CAAC,CAAC;MACJ;MACAjI,aAAa,GAAGE,MAAM,CAACE,IAAI,CAACuK,QAAQ,CAAC,CAAC/M,MAAM;MAC5CgO,gBAAgB,CAAC3C,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC;QAAA,OAAKA,CAAC,CAACxI,IAAI,GAAGuI,CAAC,CAACvI,IAAI;MAAA,EAAC;MAEhD,IAAM8L,wBAAwB,IAAA3E,qBAAA,OAAA4E,eAAA,CAAA5E,qBAAA,EAC3B,sBAAsB,EAAG;QAAExJ,GAAG,EAAEqO,QAAQ;QAAEnO,GAAG,EAAE;MAAK,CAAC,GAAAkO,eAAA,CAAA5E,qBAAA,EACrD,QAAQ,EAAG;QAAEtJ,GAAG,EAAE,GAAG;QAAEF,GAAG,EAAE;MAAK,CAAC,GAAAoO,eAAA,CAAA5E,qBAAA,EAClC,iBAAiB,EAAG;QAAEtJ,GAAG,EAAE,GAAG;QAAEF,GAAG,EAAE;MAAI,CAAC,GAAAoO,eAAA,CAAA5E,qBAAA,EAC1C,SAAS,EAAG;QAAEtJ,GAAG,EAAE,GAAG;QAAEF,GAAG,EAAE;MAAI,CAAC,GAAAoO,eAAA,CAAA5E,qBAAA,EAClC,kBAAkB,EAAG;QAAExJ,GAAG,EAAE,GAAG;QAAEE,GAAG,EAAE;MAAI,CAAC,GAAAkO,eAAA,CAAA5E,qBAAA,EAC3C,SAAS,EAAG;QAAEtJ,GAAG,EAAE,IAAI;QAAEF,GAAG,EAAE;MAAI,CAAC,GAAAoO,eAAA,CAAA5E,qBAAA,EACnC,uBAAuB,EAAG;QAAEtJ,GAAG,EAAE,CAACmO,QAAQ;QAAErO,GAAG,EAAE;MAAK,CAAC,GAAAwJ,qBAAA,CACS;MACnE,IAAM8E,WAAW,GACfhB,gBAAgB,CAAChN,MAAM,CAAC,UAACD,GAAG,EAAEkO,OAAO;QAAA,OAAKlO,GAAG,GAAGkO,OAAO,CAAClM,IAAI;MAAA,GAAE,CAAC,CAAC,GAAGiL,gBAAgB,CAAChO,MAAM;MAC5F,IAAMkP,eAAe,GAAGlB,gBAAgB,CAAC7K,MAAM,CAAC,UAAC8L,OAAO;QAAA,OAAKA,OAAO,CAAClM,IAAI,GAAGiM,WAAW;MAAA,EAAC;MACxF,IAAMG,WAAW,GACfD,eAAe,CAAClO,MAAM,CAAC,UAACD,GAAG,EAAEkO,OAAO;QAAA,OAAKlO,GAAG,GAAGkO,OAAO,CAAClM,IAAI;MAAA,GAAE,CAAC,CAAC,GAAGmM,eAAe,CAAClP,MAAM;MAC1F,IAAMoP,cAAc,GAAGpB,gBAAgB,CAAC7K,MAAM,CAAC,UAAC8L,OAAO;QAAA,OAAKA,OAAO,CAAClM,IAAI,GAAGiM,WAAW;MAAA,EAAC;MACvF,IAAMK,UAAU,GACdD,cAAc,CAACpO,MAAM,CAAC,UAACD,GAAG,EAAEkO,OAAO;QAAA,OAAKlO,GAAG,GAAGkO,OAAO,CAAClM,IAAI;MAAA,GAAE,CAAC,CAAC,GAAGqM,cAAc,CAACpP,MAAM;MAExF,IAAMsP,eAAe,GAAGN,WAAW,GAAG,CAAC;MACvC,IAAIO,qBAAqB,GAAGP,WAAW,GAAGM,eAAe;MACzD,IAAIE,qBAAqB,GAAGL,WAAW,GAAGG,eAAe;MACzD,IAAIG,oBAAoB,GAAGJ,UAAU,GAAGC,eAAe;MAEvDE,qBAAqB,GAAG,CAACrD,MAAM,CAACC,KAAK,CAACoD,qBAAqB,CAAC,GAAGA,qBAAqB,GAAG,IAAI;MAC3FD,qBAAqB,GAAG,CAACpD,MAAM,CAACC,KAAK,CAACmD,qBAAqB,CAAC,GAAGA,qBAAqB,GAAG,GAAG;MAC1FE,oBAAoB,GAAG,CAACtD,MAAM,CAACC,KAAK,CAACqD,oBAAoB,CAAC,GAAGA,oBAAoB,GAAG,IAAI;MAExF,IAAMC,aAAa,GAAGjQ,UAAU,CAC9B,CACE;QAAEgL,CAAC,EAAE,CAAC;QAAEC,CAAC,EAAE;MAAE,CAAC,EACd;QAAED,CAAC,EAAE,IAAI;QAAEC,CAAC,EAAE8E,qBAAqB;QAAEG,MAAM,EAAE;MAAG,CAAC,EACjD;QAAElF,CAAC,EAAE,GAAG;QAAEC,CAAC,EAAE6E;MAAsB,CAAC,EACpC;QAAE9E,CAAC,EAAE,IAAI;QAAEC,CAAC,EAAE+E,oBAAoB;QAAEE,MAAM,EAAE;MAAG,CAAC,EAChD;QAAElF,CAAC,EAAE,CAAC;QAAEC,CAAC,EAAE;MAAE,CAAC,CACf,EACD;QAAEvD,KAAK,EAAE,CAAC;QAAEyI,MAAM,EAAE;MAAE,CAAC,CACxB;MAED,SAAAC,GAAA,MAAAC,iBAAA,GAA8B9B,gBAAgB,EAAA6B,GAAA,GAAAC,iBAAA,CAAA9P,MAAA,EAAA6P,GAAA,IAAE;QAA3C,IAAME,eAAe,GAAAD,iBAAA,CAAAD,GAAA;QACxB,IAAQ9M,KAAI,GAAKgN,eAAe,CAAxBhN,IAAI;QACZ,IAAMiN,UAAU,GAAGN,aAAa,CAAC3M,KAAI,GAAGuM,eAAe,CAAC;QACxD,KAAK,IAAMb,YAAY,IAAII,wBAAwB,EAAE;UACnD,IAAAoB,sBAAA,GAAqBpB,wBAAwB,CAACJ,YAAY,CAAwB;YAA1E7N,GAAG,GAAAqP,sBAAA,CAAHrP,GAAG;YAAEF,GAAG,GAAAuP,sBAAA,CAAHvP,GAAG;UAChB,IAAIsP,UAAU,GAAGpP,GAAG,IAAIoP,UAAU,IAAItP,GAAG,EAAE;YACzCqP,eAAe,CAACtB,YAAY,GAAGA,YAAmC;YAClE;UACF;QACF;MACF;MAEA,CAAAtE,UAAA,GAAAzI,QAAQ,EAACP,IAAI,CAAAsI,KAAA,CAAAU,UAAA,EAAI6D,gBAAgB,CAAC;MAElC,IAAI3M,KAAK,CAACY,SAAS,CAACE,UAAU,EAAE;QAC9B,IAAM+N,OAAO,GAAGpO,kBAAA,CAAIwK,MAAM,EAAEjB,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC;UAAA,OAAKD,CAAC,GAAGC,CAAC;QAAA,EAAC;QACjD3J,SAAS,CAACT,IAAI,CAAC;UACbqD,IAAI,EAAE0L,OAAO,CAAC,CAAC,CAAQ;UACvBtL,EAAE,EAAEsL,OAAO,CAACA,OAAO,CAAClQ,MAAM,GAAG,CAAC,CAAQ;UACtC8E,KAAK,EAAEzD,KAAK,CAACY,SAAS,CAACE;QACzB,CAAC,CAAC;MACJ;MACA,IAAId,KAAK,CAACY,SAAS,CAACC,QAAQ,EAAE;QAC5B,IAAMiO,OAAO,GAAGrO,kBAAA,CAAIuK,MAAM,EAAEhB,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC;UAAA,OAAKD,CAAC,GAAGC,CAAC;QAAA,EAAC;QACjD3J,SAAS,CAACT,IAAI,CAAC;UACbqD,IAAI,EAAE2L,OAAO,CAAC,CAAC,CAAQ;UACvBvL,EAAE,EAAEuL,OAAO,CAACA,OAAO,CAACnQ,MAAM,GAAG,CAAC,CAAQ;UACtC8E,KAAK,EAAEzD,KAAK,CAACY,SAAS,CAACC;QACzB,CAAC,CAAC;MACJ;IACF,CAAC,MAAM,IAAIP,QAAQ,KAAK,gBAAgB,EAAE;MAAA,IAAAyO,UAAA;MACxC,IAAMC,UAAU,GAAG,SAAbA,UAAUA,CAAIhN,GAA4B;QAAA,OAC9CxB,SAAS,CAACc,GAAG,CAAC,UAACC,GAAG,EAAE8I,KAAK;UAAA,UAAAxH,MAAA,CAAQwH,KAAK,OAAAxH,MAAA,CAAIxE,aAAa,CAAC2D,GAAG,EAAET,GAAG,CAAC;QAAA,CAAE,CAAC,CAAC0N,IAAI,CAAC,GAAG,CAAC;MAAA;MAChF,IAAMC,UAAU,GAAGpQ,IAAI,CAACwC,GAAG,CAAC0N,UAAU,CAAC;MACvC,IAAMG,aAEL,GAAG,CAAC,CAAC;MACN,KAAK,IAAIzQ,GAAC,GAAG,CAAC,EAAEA,GAAC,GAAGI,IAAI,CAACH,MAAM,EAAED,GAAC,EAAE,EAAE;QAAA,IAAA0Q,kBAAA;QACpC,IAAMpN,GAAG,GAAGlD,IAAI,CAACJ,GAAC,CAAC;QACnB,IAAM6C,GAAG,GAAG2N,UAAU,CAACxQ,GAAC,CAAC;QACzByQ,aAAa,CAAC5N,GAAG,CAAC,IAAA6N,kBAAA,GAAGD,aAAa,CAAC5N,GAAG,CAAC,cAAA6N,kBAAA,cAAAA,kBAAA,GAAI;UACzCC,SAAS,EAAEhR,aAAa,CAAC2D,GAAG,EAAExB,SAAS,CAAC,CAAC,CAAC,CAAW;UACrD8O,IAAI,EAAE;QACR,CAAC;QACDH,aAAa,CAAC5N,GAAG,CAAC,CAAC+N,IAAI,CAACxP,IAAI,CAACkC,GAAG,CAAC;MACnC;MAEA,IAAIR,MAAM,GAAAf,kBAAA,CAAOT,KAAK,CAACwB,MAAM,CAAC0C,MAAM,CAAC;MACrC,IAAMqL,aAAa,GAAGtO,MAAM,CAACC,WAAW,CAACV,SAAS,CAACc,GAAG,CAAC,UAACC,GAAG;QAAA,OAAK,CAACA,GAAG,EAAE,IAAI,CAAC;MAAA,EAAC,CAAC;MAC7E,IAAIC,MAAM,CAAC7C,MAAM,KAAK,CAAC,EAAE;QAAA,IAAA6Q,OAAA;QACvB,CAAAA,OAAA,GAAAhO,MAAM,EAAC1B,IAAI,CAAAsI,KAAA,CAAAoH,OAAA,EAAA/O,kBAAA,CAAIQ,MAAM,CAACE,IAAI,CAACH,OAAO,CAAC,EAAC;MACtC;MACAQ,MAAM,GAAGA,MAAM,CAACM,MAAM,CAAC,UAACP,GAAG;QAAA,OAAK,CAACgO,aAAa,CAAChO,GAAG,CAAC;MAAA,EAAC;MACpD,IAAMb,MAAM,GAAGO,MAAM,CAACwO,OAAO,CAACN,aAAa,CAAC,CAAC7N,GAAG,CAAC,UAAAoO,MAAA,EAAuB;QAAA,IAAAC,gBAAA;QAAA,IAAAC,MAAA,GAAAC,cAAA,CAAAH,MAAA;UAArBI,QAAQ,GAAAF,MAAA;UAAEG,KAAK,GAAAH,MAAA;QAChE,IAAM1L,MAA2C,GAAG,EAAE;QAAC,IAAA8L,UAAA,GAAArM,0BAAA,CACrCoM,KAAK,CAACT,IAAI;UAAAW,MAAA;QAAA;UAA5B,KAAAD,UAAA,CAAA3H,CAAA,MAAA4H,MAAA,GAAAD,UAAA,CAAA1H,CAAA,IAAAC,IAAA,GAA8B;YAAA,IAAnBvG,IAAG,GAAAiO,MAAA,CAAApQ,KAAA;YAAA,IAAAqQ,UAAA,GAAAvM,0BAAA,CACQnC,MAAM;cAAA2O,MAAA;YAAA;cAA1B,KAAAD,UAAA,CAAA7H,CAAA,MAAA8H,MAAA,GAAAD,UAAA,CAAA5H,CAAA,IAAAC,IAAA,GAA4B;gBAAA,IAAA6H,MAAA,EAAAC,qBAAA,EAAAC,qBAAA,EAAAC,cAAA;gBAAA,IAAjBC,KAAK,GAAAL,MAAA,CAAAtQ,KAAA;gBACdqE,MAAM,CAACpE,IAAI,CAAC;kBACV2D,KAAK,GAAA2M,MAAA,IAAAC,qBAAA,GACHrQ,KAAK,CAACoD,MAAM,CAAC6D,UAAU,CAACuJ,KAAK,CAAC,cAAAH,qBAAA,cAAAA,qBAAA,IAAAC,qBAAA,GAC9B,CAAAC,cAAA,GAAAvQ,KAAK,CAACoD,MAAM,EAACqN,oBAAoB,cAAAH,qBAAA,uBAAjCA,qBAAA,CAAAhN,IAAA,CAAAiN,cAAA,EAAoCC,KAAK,CAAC,cAAAJ,MAAA,cAAAA,MAAA,GACzCI,KAAgB;kBACnB3Q,KAAK,EAAExB,aAAa,CAAC2D,IAAG,EAAEwO,KAAK;gBACjC,CAAC,CAAC;cACJ;YAAC,SAAAhI,GAAA;cAAA0H,UAAA,CAAAzH,CAAA,CAAAD,GAAA;YAAA;cAAA0H,UAAA,CAAAxH,CAAA;YAAA;UACH;QAAC,SAAAF,GAAA;UAAAwH,UAAA,CAAAvH,CAAA,CAAAD,GAAA;QAAA;UAAAwH,UAAA,CAAAtH,CAAA;QAAA;QAEDxE,MAAM,CAAC8F,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC,EAAK;UACpB,IAAI,OAAOD,CAAC,CAACpK,KAAK,KAAK,QAAQ,IAAI,OAAOqK,CAAC,CAACrK,KAAK,KAAK,QAAQ,EAAE,OAAO,CAAC;UACxE,OAAOqK,CAAC,CAACrK,KAAK,GAAGoK,CAAC,CAACpK,KAAK;QAC1B,CAAC,CAAC;QACF,IAAM6Q,YAAY,GAChBxM,MAAM,CAACvE,MAAM,CAAC,UAACD,GAAG,EAAAiR,MAAA;UAAA,IAAI9Q,KAAK,GAAA8Q,MAAA,CAAL9Q,KAAK;UAAA,OAAOH,GAAG,GAAIG,KAAgB;QAAA,GAAE,CAAC,CAAC,GAAGqE,MAAM,CAACvF,MAAM;QAC/E,OAAO;UACL8E,KAAK,GAAAkM,gBAAA,GAAEI,KAAK,CAACV,SAAS,cAAAM,gBAAA,cAAAA,gBAAA,GAAIG,QAAQ;UAClC5L,MAAM,EAANA,MAAM;UACNwM,YAAY,EAAE,CAAC5F,MAAM,CAACC,KAAK,CAAC2F,YAAY,CAAC,GAAGA,YAAY,GAAGhE;QAC7D,CAAC;MACH,CAAC,CAAC;MAEFhM,MAAM,CAACsJ,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC,EAAK;QACpB,IAAI,OAAOD,CAAC,CAACyG,YAAY,KAAK,QAAQ,IAAI,OAAOxG,CAAC,CAACwG,YAAY,KAAK,QAAQ,EAAE,OAAO,CAAC;QACtF,OAAOxG,CAAC,CAACwG,YAAY,GAAGzG,CAAC,CAACyG,YAAY;MACxC,CAAC,CAAC;MACF3P,aAAa,GAAGL,MAAM,CAAC/B,MAAM;MAC7B,CAAAoQ,UAAA,GAAA1O,QAAQ,EAACP,IAAI,CAAAsI,KAAA,CAAA2G,UAAA,EAAAtO,kBAAA,CACRC,MAAM,CAACY,GAAG,CACX,UAACyO,KAAK;QAAA,OACH;UACChK,IAAI,EAAE,YAAY;UAClBtC,KAAK,EAAEsM,KAAK,CAACtM,KAAK;UAClBS,MAAM,EAAE6L,KAAK,CAAC7L,MAAM;UACpB0C,QAAQ,EAAE;QACZ,CAAC;MAAA,CAAmB,CACvB,EACF;IACH;EACF;EACA,IAAItG,QAAQ,KAAK,YAAY,EAAE;IAC7B,IAAMkB,QAAM,GAAAf,kBAAA,CAAOT,KAAK,CAACwB,MAAM,CAAC0C,MAAM,CAAC;IACvC,IAAI1C,QAAM,CAAC7C,MAAM,KAAK,CAAC,EAAE;MACvB6C,QAAM,CAAC1B,IAAI,CAAAsI,KAAA,CAAX5G,QAAM,EAAAf,kBAAA,CAASQ,MAAM,CAACE,IAAI,CAACH,OAAO,CAAC,EAAC;IACtC;IACA,IAAMkD,MAAM,GAAG1C,QAAM,CAACF,GAAG,CAAC,UAACkP,KAAK;MAAA,IAAAI,MAAA,EAAAC,sBAAA,EAAAC,qBAAA,EAAAC,cAAA;MAAA,OAAM;QACpCtN,KAAK,GAAAmN,MAAA,IAAAC,sBAAA,GACH7Q,KAAK,CAACoD,MAAM,CAAC6D,UAAU,CAACuJ,KAAK,CAAC,cAAAK,sBAAA,cAAAA,sBAAA,IAAAC,qBAAA,GAC9B,CAAAC,cAAA,GAAA/Q,KAAK,CAACoD,MAAM,EAAC4N,iBAAiB,cAAAF,qBAAA,uBAA9BA,qBAAA,CAAAxN,IAAA,CAAAyN,cAAA,EAAiCP,KAAK,CAAC,cAAAI,MAAA,cAAAA,MAAA,GACtCJ,KAAgB;QACnB3Q,KAAK,EAAExB,aAAa,CAACS,IAAI,EAAE0R,KAAK;MAClC,CAAC;IAAA,CAAC,CAAC;IACHzP,aAAa,GAAGmD,MAAM,CAACvF,MAAM;IAC7BuF,MAAM,CAAC8F,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC,EAAK;MACpB,IAAI,OAAOD,CAAC,CAACpK,KAAK,KAAK,QAAQ,IAAI,OAAOqK,CAAC,CAACrK,KAAK,KAAK,QAAQ,EAAE,OAAO,CAAC;MACxE,OAAOqK,CAAC,CAACrK,KAAK,GAAGoK,CAAC,CAACpK,KAAK;IAC1B,CAAC,CAAC;IACFQ,QAAQ,CAACP,IAAI,CAAC;MACZiG,IAAI,EAAE,YAAY;MAClB7B,MAAM,EAANA,MAAM;MACN0C,QAAQ,EAAE;IACZ,CAAC,CAAC;EACJ;EACA,IAAItG,QAAQ,KAAK,gBAAgB,EAAE;IAAA,IAAA2Q,UAAA;IACjC,IAAMvQ,OAAM,GAAGD,kBAAA,CAAIT,KAAK,CAACU,MAAM,EAAEY,GAAG,CAAC,UAACwO,QAAQ,EAAK;MAAA,IAAAoB,cAAA;MACjD,IAAMhN,MAAM,GAAGzD,kBAAA,CAAIT,KAAK,CAACwB,MAAM,CAAC0C,MAAM,EACnCpC,MAAM,CAAC,UAACqP,SAAS;QAAA,OAAK3S,MAAM,CAAC2S,SAAS,CAAC,CAACC,UAAU,IAAAvO,MAAA,CAAIiN,QAAQ,OAAI;MAAA,EAAC,CACnExO,GAAG,CAAC,UAAC6P,SAAS;QAAA,OAAM;UACnB1N,KAAK,EAAEpF,aAAa,CAClB2B,KAAK,CAACoD,MAAM,CAAC6D,UAAU,EACvBzI,MAAM,CAAC2S,SAAS,CAAC,CAACE,SAAS,CAAC7S,MAAM,CAACsR,QAAQ,CAAC,CAACnR,MAAM,GAAG,CAAC,CAAC,CACzD;UACDkB,KAAK,EAAExB,aAAa,CAACS,IAAI,EAAEN,MAAM,CAAC2S,SAAS,CAAC;QAC9C,CAAC;MAAA,CAAC,CAAC;MAELjN,MAAM,CAAC8F,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC,EAAK;QACpB,IAAI,OAAOD,CAAC,CAACpK,KAAK,KAAK,QAAQ,IAAI,OAAOqK,CAAC,CAACrK,KAAK,KAAK,QAAQ,EAAE,OAAO,CAAC;QACxE,OAAOqK,CAAC,CAACrK,KAAK,GAAGoK,CAAC,CAACpK,KAAK;MAC1B,CAAC,CAAC;MACF,IAAM6Q,YAAY,GAChBxM,MAAM,CAACvE,MAAM,CAAC,UAACD,GAAG,EAAA4R,MAAA;QAAA,IAAIzR,KAAK,GAAAyR,MAAA,CAALzR,KAAK;QAAA,OAAOH,GAAG,GAAIG,KAAgB;MAAA,GAAE,CAAC,CAAC,GAAGqE,MAAM,CAACvF,MAAM;MAC/E,OAAO;QACL8E,KAAK,GAAAyN,cAAA,GAAE7S,aAAa,CAAC2B,KAAK,CAACoD,MAAM,CAAC6D,UAAU,EAAEzI,MAAM,CAACsR,QAAQ,CAAC,CAAC,cAAAoB,cAAA,cAAAA,cAAA,GAAIpB,QAAQ;QAC3E5L,MAAM,EAANA,MAAM;QACNwM,YAAY,EAAE,CAAC5F,MAAM,CAACC,KAAK,CAAC2F,YAAY,CAAC,GAAGA,YAAY,GAAGhE;MAC7D,CAAC;IACH,CAAC,CAAC;IAEFhM,OAAM,CAACsJ,IAAI,CAAC,UAACC,CAAC,EAAEC,CAAC,EAAK;MACpB,IAAI,OAAOD,CAAC,CAACyG,YAAY,KAAK,QAAQ,IAAI,OAAOxG,CAAC,CAACwG,YAAY,KAAK,QAAQ,EAAE,OAAO,CAAC;MACtF,OAAOxG,CAAC,CAACwG,YAAY,GAAGzG,CAAC,CAACyG,YAAY;IACxC,CAAC,CAAC;IACF3P,aAAa,GAAGL,OAAM,CAAC/B,MAAM;IAC7B,CAAAsS,UAAA,GAAA5Q,QAAQ,EAACP,IAAI,CAAAsI,KAAA,CAAA6I,UAAA,EAAAxQ,kBAAA,CACRC,OAAM,CAACY,GAAG,CACX,UAACyO,KAAK;MAAA,OACH;QACChK,IAAI,EAAE,YAAY;QAClBtC,KAAK,EAAEsM,KAAK,CAACtM,KAAK;QAClBS,MAAM,EAAE6L,KAAK,CAAC7L,MAAM;QACpB0C,QAAQ,EAAE;MACZ,CAAC;IAAA,CAAmB,CACvB,EACF;EACH;EAEA,IAAM2K,uBAAuB,GAAGlR,QAAQ,CAACmR,IAAI,CAAC,UAACC,OAAO;IAAA,OAAKA,OAAO,CAAC7K,QAAQ,GAAG,CAAC;EAAA,EAAC;EAChF,IAAI2K,uBAAuB,EAAE;IAC3BlR,QAAQ,GAAGA,QAAQ,CAACyB,MAAM,CAAC,UAAC2P,OAAO;MAAA,OAAKA,OAAO,CAAC7K,QAAQ,GAAG,CAAC;IAAA,EAAC;EAC/D,CAAC,MAAM;IACLvG,QAAQ,GAAGA,QAAQ,CAACZ,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC;EACjC;EAEA,OAAO;IAAEY,QAAQ,EAARA,QAAQ;IAAEC,QAAQ,EAAEA,QAAS;IAAEC,SAAS,EAATA,SAAS;IAAEI,SAAS,EAATA,SAAS;IAAEI,aAAa,EAAbA;EAAc,CAAC;AAC/E,CAAC"}
@@ -0,0 +1,15 @@
1
+ import { createIntl, createIntlCache } from '@formatjs/intl';
2
+ import { normalizeLocale } from './locale';
3
+ var messagesCache = createIntlCache();
4
+ var intlCache = {};
5
+ export var getIntl = function getIntl(locale, translations, availableLocales) {
6
+ var _normalizeLocale;
7
+ locale = (_normalizeLocale = normalizeLocale(locale, availableLocales)) !== null && _normalizeLocale !== void 0 ? _normalizeLocale : 'en';
8
+ intlCache[locale] = createIntl({
9
+ locale: locale,
10
+ defaultLocale: 'en',
11
+ messages: translations || {}
12
+ }, messagesCache);
13
+ return intlCache[locale];
14
+ };
15
+ //# sourceMappingURL=intl.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"intl.js","names":["createIntl","createIntlCache","normalizeLocale","messagesCache","intlCache","getIntl","locale","translations","availableLocales","_normalizeLocale","defaultLocale","messages"],"sources":["../../../src/a11y/intl.ts"],"sourcesContent":["import { createIntl, createIntlCache, IntlShape } from '@formatjs/intl';\nimport { normalizeLocale } from './locale';\nimport type { localizedMessages as localizedMessagesTypeBase } from './translations/view/__intergalactic-dynamic-locales';\n\nexport type Intl = IntlShape<typeof localizedMessagesTypeBase['en']>;\nconst messagesCache = createIntlCache();\nconst intlCache: { [locale: string]: ReturnType<typeof createIntl> } = {};\nexport const getIntl = (\n locale: string,\n translations: { [messageId: string]: string },\n availableLocales: { [localeId: string]: any },\n) => {\n locale = normalizeLocale(locale, availableLocales) ?? 'en';\n intlCache[locale] = createIntl(\n {\n locale: locale,\n defaultLocale: 'en',\n messages: translations || {},\n },\n messagesCache,\n );\n return intlCache[locale] as Intl;\n};\n"],"mappings":"AAAA,SAASA,UAAU,EAAEC,eAAe,QAAmB,gBAAgB;AACvE,SAASC,eAAe,QAAQ,UAAU;AAI1C,IAAMC,aAAa,GAAGF,eAAe,EAAE;AACvC,IAAMG,SAA8D,GAAG,CAAC,CAAC;AACzE,OAAO,IAAMC,OAAO,GAAG,SAAVA,OAAOA,CAClBC,MAAc,EACdC,YAA6C,EAC7CC,gBAA6C,EAC1C;EAAA,IAAAC,gBAAA;EACHH,MAAM,IAAAG,gBAAA,GAAGP,eAAe,CAACI,MAAM,EAAEE,gBAAgB,CAAC,cAAAC,gBAAA,cAAAA,gBAAA,GAAI,IAAI;EAC1DL,SAAS,CAACE,MAAM,CAAC,GAAGN,UAAU,CAC5B;IACEM,MAAM,EAAEA,MAAM;IACdI,aAAa,EAAE,IAAI;IACnBC,QAAQ,EAAEJ,YAAY,IAAI,CAAC;EAC7B,CAAC,EACDJ,aAAa,CACd;EACD,OAAOC,SAAS,CAACE,MAAM,CAAC;AAC1B,CAAC"}
@@ -0,0 +1,41 @@
1
+ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
2
+ export var normalizeLocale = function normalizeLocale(providedLocale) {
3
+ var _ref, _providedLocale, _globalThis$navigator;
4
+ var translations = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
5
+ var translationNames = {};
6
+ for (var _locale in translations) {
7
+ translationNames[_locale.toLowerCase()] = _locale;
8
+ }
9
+ providedLocale = (_ref = (_providedLocale = providedLocale) !== null && _providedLocale !== void 0 ? _providedLocale : isAvailableLocale(globalThis === null || globalThis === void 0 ? void 0 : (_globalThis$navigator = globalThis.navigator) === null || _globalThis$navigator === void 0 ? void 0 : _globalThis$navigator.language, translations)) !== null && _ref !== void 0 ? _ref : 'en';
10
+ var locale = providedLocale.toLowerCase();
11
+ if (locale.includes('-') && !translations[locale]) {
12
+ var _locale$split = locale.split('-'),
13
+ _locale$split2 = _slicedToArray(_locale$split, 1),
14
+ localeBase = _locale$split2[0];
15
+ if (translations[localeBase]) {
16
+ locale = localeBase;
17
+ }
18
+ }
19
+ locale = translationNames[locale] ? translationNames[locale] : locale;
20
+ if (!translations[locale]) {
21
+ var availableLocales = Object.keys(translations).join(', ');
22
+ if (process.env.NODE_ENV !== 'production') {
23
+ console.error("[Intergalactic @semcore/d3-charts a11y module]: No locale \"".concat(providedLocale, "\" available. Available locales: ").concat(availableLocales));
24
+ }
25
+ return null;
26
+ }
27
+ return locale;
28
+ };
29
+ var isAvailableLocale = function isAvailableLocale(locale, translations) {
30
+ if (typeof locale !== 'string') {
31
+ return undefined;
32
+ }
33
+ var _locale$split3 = locale.split('-'),
34
+ _locale$split4 = _slicedToArray(_locale$split3, 1),
35
+ localeBase = _locale$split4[0];
36
+ if (!translations[localeBase]) {
37
+ return undefined;
38
+ }
39
+ return localeBase;
40
+ };
41
+ //# sourceMappingURL=locale.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"locale.js","names":["normalizeLocale","providedLocale","_ref","_providedLocale","_globalThis$navigator","translations","arguments","length","undefined","translationNames","locale","toLowerCase","isAvailableLocale","globalThis","navigator","language","includes","_locale$split","split","_locale$split2","_slicedToArray","localeBase","availableLocales","Object","keys","join","process","env","NODE_ENV","console","error","concat","_locale$split3","_locale$split4"],"sources":["../../../src/a11y/locale.ts"],"sourcesContent":["export const normalizeLocale = (\n providedLocale: string,\n translations: { [locale: string]: {} } = {},\n) => {\n const translationNames: { [lowercasedName: string]: string } = {};\n for (const locale in translations) {\n translationNames[locale.toLowerCase()] = locale;\n }\n providedLocale =\n providedLocale ?? isAvailableLocale(globalThis?.navigator?.language, translations) ?? 'en';\n let locale = providedLocale.toLowerCase();\n if (locale.includes('-') && !translations[locale]) {\n const [localeBase] = locale.split('-');\n if (translations[localeBase]) {\n locale = localeBase;\n }\n }\n locale = translationNames[locale] ? translationNames[locale] : locale;\n if (!translations[locale]) {\n const availableLocales = Object.keys(translations).join(', ');\n if (process.env.NODE_ENV !== 'production') {\n console.error(\n `[Intergalactic @semcore/d3-charts a11y module]: No locale \"${providedLocale}\" available. Available locales: ${availableLocales}`,\n );\n }\n return null;\n }\n return locale;\n};\n\nconst isAvailableLocale = (locale: string, translations: { [locale: string]: {} }) => {\n if (typeof locale !== 'string') {\n return undefined;\n }\n const [localeBase] = locale.split('-');\n if (!translations[localeBase]) {\n return undefined;\n }\n return localeBase;\n};\n"],"mappings":";AAAA,OAAO,IAAMA,eAAe,GAAG,SAAlBA,eAAeA,CAC1BC,cAAsB,EAEnB;EAAA,IAAAC,IAAA,EAAAC,eAAA,EAAAC,qBAAA;EAAA,IADHC,YAAsC,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,CAAC,CAAC;EAE3C,IAAMG,gBAAsD,GAAG,CAAC,CAAC;EACjE,KAAK,IAAMC,OAAM,IAAIL,YAAY,EAAE;IACjCI,gBAAgB,CAACC,OAAM,CAACC,WAAW,EAAE,CAAC,GAAGD,OAAM;EACjD;EACAT,cAAc,IAAAC,IAAA,IAAAC,eAAA,GACZF,cAAc,cAAAE,eAAA,cAAAA,eAAA,GAAIS,iBAAiB,CAACC,UAAU,aAAVA,UAAU,wBAAAT,qBAAA,GAAVS,UAAU,CAAEC,SAAS,cAAAV,qBAAA,uBAArBA,qBAAA,CAAuBW,QAAQ,EAAEV,YAAY,CAAC,cAAAH,IAAA,cAAAA,IAAA,GAAI,IAAI;EAC5F,IAAIQ,MAAM,GAAGT,cAAc,CAACU,WAAW,EAAE;EACzC,IAAID,MAAM,CAACM,QAAQ,CAAC,GAAG,CAAC,IAAI,CAACX,YAAY,CAACK,MAAM,CAAC,EAAE;IACjD,IAAAO,aAAA,GAAqBP,MAAM,CAACQ,KAAK,CAAC,GAAG,CAAC;MAAAC,cAAA,GAAAC,cAAA,CAAAH,aAAA;MAA/BI,UAAU,GAAAF,cAAA;IACjB,IAAId,YAAY,CAACgB,UAAU,CAAC,EAAE;MAC5BX,MAAM,GAAGW,UAAU;IACrB;EACF;EACAX,MAAM,GAAGD,gBAAgB,CAACC,MAAM,CAAC,GAAGD,gBAAgB,CAACC,MAAM,CAAC,GAAGA,MAAM;EACrE,IAAI,CAACL,YAAY,CAACK,MAAM,CAAC,EAAE;IACzB,IAAMY,gBAAgB,GAAGC,MAAM,CAACC,IAAI,CAACnB,YAAY,CAAC,CAACoB,IAAI,CAAC,IAAI,CAAC;IAC7D,IAAIC,OAAO,CAACC,GAAG,CAACC,QAAQ,KAAK,YAAY,EAAE;MACzCC,OAAO,CAACC,KAAK,gEAAAC,MAAA,CACmD9B,cAAc,uCAAA8B,MAAA,CAAmCT,gBAAgB,EAChI;IACH;IACA,OAAO,IAAI;EACb;EACA,OAAOZ,MAAM;AACf,CAAC;AAED,IAAME,iBAAiB,GAAG,SAApBA,iBAAiBA,CAAIF,MAAc,EAAEL,YAAsC,EAAK;EACpF,IAAI,OAAOK,MAAM,KAAK,QAAQ,EAAE;IAC9B,OAAOF,SAAS;EAClB;EACA,IAAAwB,cAAA,GAAqBtB,MAAM,CAACQ,KAAK,CAAC,GAAG,CAAC;IAAAe,cAAA,GAAAb,cAAA,CAAAY,cAAA;IAA/BX,UAAU,GAAAY,cAAA;EACjB,IAAI,CAAC5B,YAAY,CAACgB,UAAU,CAAC,EAAE;IAC7B,OAAOb,SAAS;EAClB;EACA,OAAOa,UAAU;AACnB,CAAC"}
@@ -0,0 +1,372 @@
1
+ import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
2
+ import _slicedToArray from "@babel/runtime/helpers/slicedToArray";
3
+ import _createForOfIteratorHelper from "@babel/runtime/helpers/createForOfIteratorHelper";
4
+ import _typeof from "@babel/runtime/helpers/typeof";
5
+ import { getIntl } from './intl';
6
+ var formatLimitedSizeList = function formatLimitedSizeList(items, intl) {
7
+ var maxFinalStringLength = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : 100;
8
+ var includeEllipsis = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : true;
9
+ var limit = items.length;
10
+ var stringifyList = function stringifyList() {
11
+ var cutItems = items.slice(0, limit);
12
+ if (items.length > limit && includeEllipsis) {
13
+ cutItems.push(intl.formatMessage({
14
+ id: 'ellipsis'
15
+ }, {
16
+ leftCount: limit - items.length
17
+ }));
18
+ }
19
+ return intl.formatList(cutItems);
20
+ };
21
+ var formattedList = stringifyList();
22
+ if (formattedList.length <= maxFinalStringLength) {
23
+ return formattedList;
24
+ }
25
+ var overflowRatio = formattedList.length / maxFinalStringLength;
26
+ limit = Math.floor(limit / overflowRatio);
27
+ if (limit === 0) {
28
+ limit = 1;
29
+ return stringifyList();
30
+ }
31
+ formattedList = stringifyList();
32
+ var maxIncreaseAttempts = 4;
33
+ for (var i = 0; i < maxIncreaseAttempts; i++) {
34
+ limit++;
35
+ var newLimitFormattedList = stringifyList();
36
+ if (newLimitFormattedList.length > maxFinalStringLength) {
37
+ return formattedList;
38
+ }
39
+ formattedList = newLimitFormattedList;
40
+ }
41
+ return formattedList;
42
+ };
43
+ var isReactComponent = function isReactComponent(obj) {
44
+ return _typeof(obj) === 'object' && obj && 'displayName' in obj && typeof obj.displayName === 'string';
45
+ };
46
+ var guessNumberAsTimestampMinDate = new Date('1975').getTime();
47
+ export var formatValue = function formatValue(intl, value) {
48
+ var _ref = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {},
49
+ siblingsTimeMark = _ref.siblingsTimeMark,
50
+ maxListSymbols = _ref.maxListSymbols,
51
+ datesWithTime = _ref.datesWithTime;
52
+ if (typeof value === 'number') {
53
+ if (value >= guessNumberAsTimestampMinDate) {
54
+ return formatValue(intl, new Date(value), {
55
+ siblingsTimeMark: siblingsTimeMark,
56
+ maxListSymbols: maxListSymbols,
57
+ datesWithTime: datesWithTime
58
+ });
59
+ }
60
+ return intl.formatNumber(value);
61
+ }
62
+ if (value instanceof Date) {
63
+ if (datesWithTime || siblingsTimeMark && siblingsTimeMark instanceof Date && Math.abs(value.getTime() - siblingsTimeMark.getTime()) < 1000 * 60 * 60 * 24 * 5) {
64
+ return intl.formatDate(value, {
65
+ dateStyle: 'medium',
66
+ timeStyle: 'medium'
67
+ });
68
+ }
69
+ return intl.formatDate(value, {
70
+ dateStyle: 'medium'
71
+ });
72
+ }
73
+ if (Array.isArray(value)) {
74
+ var formattedValues = value.map(function (subValue) {
75
+ return formatValue(intl, subValue, {
76
+ siblingsTimeMark: siblingsTimeMark,
77
+ maxListSymbols: maxListSymbols,
78
+ datesWithTime: datesWithTime
79
+ });
80
+ });
81
+ return formatLimitedSizeList(formattedValues, intl, maxListSymbols);
82
+ }
83
+ if (isReactComponent(value)) {
84
+ return String(value.displayName);
85
+ }
86
+ if (value === undefined || value === null) {
87
+ return intl.formatMessage({
88
+ id: 'data-not-available'
89
+ });
90
+ }
91
+ return String(value);
92
+ };
93
+ var formatValuesList = function formatValuesList(values, _ref2) {
94
+ var intl = _ref2.intl,
95
+ limit = _ref2.limit,
96
+ datesWithTime = _ref2.datesWithTime,
97
+ maxListSymbols = _ref2.maxListSymbols;
98
+ var result = values.slice(0, limit).map(function (_ref3) {
99
+ var rawValue = _ref3.value,
100
+ label = _ref3.label;
101
+ if (rawValue === undefined) return label;
102
+ var value = formatValue(intl, rawValue, {
103
+ datesWithTime: datesWithTime,
104
+ maxListSymbols: maxListSymbols
105
+ });
106
+ if (String(value) === String(label)) return value;
107
+ return intl.formatMessage({
108
+ id: 'value-labeled'
109
+ }, {
110
+ label: label,
111
+ value: value
112
+ });
113
+ });
114
+ if (values.length > limit) {
115
+ result.push(intl.formatMessage({
116
+ id: 'ellipsis'
117
+ }, {
118
+ leftCount: limit - values.values.length
119
+ }));
120
+ }
121
+ return intl.formatList(result);
122
+ };
123
+ export var serialize = function serialize(_ref4, _ref5, _ref6) {
124
+ var insights = _ref4.insights,
125
+ dataType = _ref4.dataType,
126
+ dataRange = _ref4.dataRange,
127
+ dataTitle = _ref4.dataTitle,
128
+ entitiesCount = _ref4.entitiesCount;
129
+ var datesWithTime = _ref5.datesWithTime,
130
+ maxListSymbols = _ref5.maxListSymbols,
131
+ clustersLimit = _ref5.clustersLimit,
132
+ valuesLimit = _ref5.valuesLimit,
133
+ groupsLimit = _ref5.groupsLimit;
134
+ var locale = _ref6.locale,
135
+ translations = _ref6.translations,
136
+ availableLocales = _ref6.availableLocales;
137
+ if (insights.length === 0) return null;
138
+ var intl = getIntl(locale, translations, availableLocales);
139
+ var dataRangeSummary = intl.formatList(dataRange.map(function (range) {
140
+ var from = formatValue(intl, range.from, {
141
+ siblingsTimeMark: range.to,
142
+ datesWithTime: datesWithTime,
143
+ maxListSymbols: maxListSymbols
144
+ });
145
+ var to = formatValue(intl, range.to, {
146
+ siblingsTimeMark: range.from,
147
+ datesWithTime: datesWithTime,
148
+ maxListSymbols: maxListSymbols
149
+ });
150
+ return intl.formatMessage({
151
+ id: range.label ? 'additional-axe' : 'additional-axe-no-label'
152
+ }, {
153
+ from: from,
154
+ to: to,
155
+ label: range.label
156
+ });
157
+ }));
158
+ if (dataType === 'time-series') {
159
+ var trendsInsights = insights;
160
+ var trendsByDataKey = {};
161
+ var _iterator = _createForOfIteratorHelper(trendsInsights),
162
+ _step;
163
+ try {
164
+ for (_iterator.s(); !(_step = _iterator.n()).done;) {
165
+ var _trendsByDataKey$insi;
166
+ var insight = _step.value;
167
+ trendsByDataKey[insight.dataKey] = (_trendsByDataKey$insi = trendsByDataKey[insight.dataKey]) !== null && _trendsByDataKey$insi !== void 0 ? _trendsByDataKey$insi : [];
168
+ trendsByDataKey[insight.dataKey].push(insight);
169
+ }
170
+ } catch (err) {
171
+ _iterator.e(err);
172
+ } finally {
173
+ _iterator.f();
174
+ }
175
+ var entities = intl.formatMessage({
176
+ id: 'entity-type-time-series'
177
+ }, {
178
+ count: entitiesCount
179
+ });
180
+ var entitiesList = Object.entries(trendsByDataKey).map(function (_ref7) {
181
+ var _primaryTrend$label;
182
+ var _ref8 = _slicedToArray(_ref7, 2),
183
+ dataKey = _ref8[0],
184
+ insights = _ref8[1];
185
+ var generalTrend = insights.find(function (insight) {
186
+ return insight.type === 'general-trend';
187
+ });
188
+ var localTrends = insights.filter(function (insight) {
189
+ return insight !== generalTrend;
190
+ });
191
+ var primaryTrend = generalTrend !== null && generalTrend !== void 0 ? generalTrend : localTrends[0];
192
+ var secondaryTrends = insights.filter(function (insight) {
193
+ return insight !== primaryTrend;
194
+ });
195
+ var mainSummary = intl.formatMessage({
196
+ id: 'time-series-general-trend'
197
+ }, {
198
+ dataKey: entitiesCount !== 1 ? (_primaryTrend$label = primaryTrend.label) !== null && _primaryTrend$label !== void 0 ? _primaryTrend$label : dataKey : '',
199
+ trend: intl.formatMessage({
200
+ id: "trend-".concat(primaryTrend.change.strength)
201
+ }),
202
+ from: intl.formatNumber(primaryTrend.change.from),
203
+ to: intl.formatNumber(primaryTrend.change.to)
204
+ });
205
+ var secondarylSummaries = secondaryTrends.map(function (trend) {
206
+ return intl.formatMessage({
207
+ id: 'time-series-local-trend'
208
+ }, {
209
+ trend: intl.formatMessage({
210
+ id: "trend-".concat(trend.change.strength)
211
+ }),
212
+ from: formatValue(intl, trend.from, {
213
+ siblingsTimeMark: trend.to,
214
+ datesWithTime: datesWithTime,
215
+ maxListSymbols: maxListSymbols
216
+ }),
217
+ to: formatValue(intl, trend.to, {
218
+ siblingsTimeMark: trend.from,
219
+ datesWithTime: datesWithTime,
220
+ maxListSymbols: maxListSymbols
221
+ })
222
+ });
223
+ });
224
+ if (secondarylSummaries.length === 0) {
225
+ return mainSummary;
226
+ }
227
+ return intl.formatMessage({
228
+ id: 'time-series-detailed-trend'
229
+ }, {
230
+ general: mainSummary,
231
+ locals: formatLimitedSizeList(secondarylSummaries, intl, 400, false)
232
+ });
233
+ });
234
+ var summary = intl.formatMessage({
235
+ id: dataTitle ? 'chart-summary' : 'chart-summary-no-label'
236
+ }, {
237
+ entities: entities,
238
+ entitiesList: intl.formatList(entitiesList),
239
+ label: dataTitle
240
+ });
241
+ if (dataRangeSummary.length > 0) {
242
+ return "".concat(summary, "\n").concat(dataRangeSummary);
243
+ }
244
+ return summary;
245
+ } else if (dataType === 'points-cloud') {
246
+ var clustersInsights = insights;
247
+ var biggestClusters = clustersInsights.slice(0, clustersLimit);
248
+ var maxSize = clustersInsights[0].size;
249
+ var minSize = clustersInsights[clustersInsights.length - 1].size;
250
+ var _entities = maxSize === minSize ? intl.formatMessage({
251
+ id: 'entity-type-clusters-single-size'
252
+ }, {
253
+ count: entitiesCount,
254
+ size: maxSize
255
+ }) : intl.formatMessage({
256
+ id: 'entity-type-clusters-multiple-size'
257
+ }, {
258
+ count: entitiesCount,
259
+ maxSize: maxSize,
260
+ minSize: minSize
261
+ });
262
+ var _entitiesList = biggestClusters.map(function (clusterInsight) {
263
+ var labels = formatLimitedSizeList(clusterInsight.labels, intl, maxListSymbols);
264
+ var anonymous = clusterInsight.labels.length === 0 || labels === String(clusterInsight.size);
265
+ return intl.formatMessage({
266
+ id: anonymous ? 'entity-type-clusters-label-anonymous' : 'entity-type-clusters-label'
267
+ }, {
268
+ relativeSize: intl.formatMessage({
269
+ id: "relative-size-".concat(clusterInsight.relativeSize)
270
+ }),
271
+ labels: labels,
272
+ size: clusterInsight.size,
273
+ x: intl.formatNumber(clusterInsight.center.x),
274
+ xLabel: clusterInsight.center.xLabel,
275
+ y: intl.formatNumber(clusterInsight.center.y),
276
+ yLabel: clusterInsight.center.yLabel
277
+ });
278
+ });
279
+ if (insights.length > clustersLimit) {
280
+ _entitiesList.push(intl.formatMessage({
281
+ id: 'ellipsis'
282
+ }, {
283
+ leftCount: insights.length - clustersLimit
284
+ }));
285
+ }
286
+ var _summary = intl.formatMessage({
287
+ id: dataTitle ? 'chart-summary' : 'chart-summary-no-label'
288
+ }, {
289
+ entities: _entities,
290
+ entitiesList: intl.formatList(_entitiesList),
291
+ label: dataTitle
292
+ });
293
+ if (dataRangeSummary.length > 0) {
294
+ return "".concat(_summary, "\n").concat(dataRangeSummary);
295
+ }
296
+ return _summary;
297
+ } else if (dataType === 'values-set') {
298
+ var _ref9 = insights,
299
+ _ref10 = _slicedToArray(_ref9, 1),
300
+ valuesInsight = _ref10[0];
301
+ var _entities2 = intl.formatMessage({
302
+ id: 'entity-type-values'
303
+ }, {
304
+ count: entitiesCount
305
+ });
306
+ var _entitiesList2 = formatValuesList(valuesInsight.values, {
307
+ intl: intl,
308
+ limit: valuesLimit,
309
+ datesWithTime: datesWithTime,
310
+ maxListSymbols: maxListSymbols
311
+ });
312
+ return intl.formatMessage({
313
+ id: dataTitle ? 'chart-summary' : 'chart-summary-no-label'
314
+ }, {
315
+ entities: _entities2,
316
+ entitiesList: _entitiesList2,
317
+ label: dataTitle
318
+ });
319
+ } else if (dataType === 'grouped-values' || dataType === 'indexed-groups') {
320
+ var groupInsights = insights;
321
+ var valueCounts = groupInsights.map(function (group) {
322
+ return group.values.length;
323
+ });
324
+ var minValuesCount = Math.min.apply(Math, _toConsumableArray(valueCounts));
325
+ var maxValuesCount = Math.max.apply(Math, _toConsumableArray(valueCounts));
326
+ var _entities3 = minValuesCount === maxValuesCount ? intl.formatMessage({
327
+ id: 'entity-type-grouped-values-single-size'
328
+ }, {
329
+ groupsCount: groupInsights.length,
330
+ valuesCount: valueCounts[0]
331
+ }) : intl.formatMessage({
332
+ id: 'entity-type-grouped-values-multiple-size'
333
+ }, {
334
+ groupsCount: groupInsights.length,
335
+ minValuesCount: minValuesCount,
336
+ maxValuesCount: maxValuesCount
337
+ });
338
+ var _entitiesList3 = groupInsights.slice(0, groupsLimit).map(function (_ref11) {
339
+ var label = _ref11.label,
340
+ values = _ref11.values;
341
+ var formattedValues = formatValuesList(values, {
342
+ intl: intl,
343
+ limit: valuesLimit,
344
+ datesWithTime: datesWithTime,
345
+ maxListSymbols: maxListSymbols
346
+ });
347
+ return intl.formatMessage({
348
+ id: 'values-group'
349
+ }, {
350
+ label: label,
351
+ values: formattedValues
352
+ });
353
+ });
354
+ if (groupInsights.values.length > groupsLimit) {
355
+ _entitiesList3.push(intl.formatMessage({
356
+ id: 'ellipsis'
357
+ }, {
358
+ leftCount: groupInsights.values.length - groupsLimit
359
+ }));
360
+ }
361
+ var sumamry = intl.formatMessage({
362
+ id: dataTitle ? 'chart-summary' : 'chart-summary-no-label'
363
+ }, {
364
+ entities: _entities3,
365
+ entitiesList: intl.formatList(_entitiesList3),
366
+ label: dataTitle
367
+ });
368
+ return sumamry;
369
+ }
370
+ return null;
371
+ };
372
+ //# sourceMappingURL=serialize.js.map