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":"RadialTree.js","names":["_core","require","_react","_interopRequireDefault","_d3Transition","_uniqueID","_assignProps","_getOriginChildren","_canUseDOM","_createElement","_utils","_excluded","style","sstyled","insert","baseAngle","Math","PI","RadialTreeBase","_Component","_inherits2","_super","_createSuper2","props","_this","_classCallCheck2","call","_defineProperty2","_assertThisInitialized2","handleRadianClick","bind","_createClass2","key","value","uncontrolledProps","activeKey","runAppearAnimation","_window$matchMedia","_this$asProps","asProps","duration","uid","canUseDOM","preferReduceMotion","window","matchMedia","matches","circlesAnimation","transition","selection","selectAll","concat","interrupt","iconsAnimation","linesAnimation","labelsAnimation","circlesNodes","nodes","iconsNodes","linesNodes","labelsNodes","length","attrs","map","node","_lineNode$x","_lineNode$x$baseVal","_lineNode$y","_lineNode$y$baseVal","radianIndex","parseInt","dataset","lineNode","from","cx","x1","baseVal","cy","y1","to","attr","_","index","_attrs$index$from","_attrs$index$from2","_attrs$index$to","_attrs$index$to2","_node$width","_node$width$baseVal","_node$height","_node$height$baseVal","_lineNode$x2","_lineNode$x2$baseVal","_lineNode$y2","_lineNode$y2$baseVal","width","height","x","y","_attrs$index$from3","_attrs$index$from4","_attrs$index$to3","_attrs$index$to4","_node$x","_node$x$baseVal","_node$y","_node$y$baseVal","x2","y2","_attrs2$index$from","_attrs2$index$from2","_attrs2$index$to","_attrs2$index$to2","componentDidUpdate","prevProps","$rootProps","data","componentDidMount","_this2","event","newKey","handlers","computeTextWidth","_this$asProps2","textSize","widths","_ref9","label","measureText","max","apply","_toConsumableArray2","getTitleProps","_this$asProps3","size","_size","_slicedToArray2","center","getRadianProps","_this$asProps4","restRootProps","_objectWithoutProperties2","textWidth","_objectSpread2","radiansCount","onRadianClick","render","_ref","SRadialTree","Element","Children","dataHintsHandler","establishDataType","styles","createElement","cn","Component","uniqueIDEnhancement","angleOffset","centralMargin","labelMargin","iconColor","capSize","iconSize","defaultActiveKey","RadialTreeRadian","_Component2","_super2","_this3","renderRadian","getInteractiveAreaProps","_ref11","_$rootProps$data","_this$computeRadianPo","computeRadianPosition","xStart","yStart","xLabelCenter","yLabelCenter","strokeWidth","getLineProps","_ref12","_$rootProps$data2","_color","_ref13","_this$computeRadianPo2","xEnd","yEnd","_this$asProps5","transparent","resolveColor","color","stroke","getCapProps","_ref14","_$rootProps$data3","_color2","_ref15","_this$computeRadianPo3","_this$asProps6","getIconProps","_ref16","_$rootProps$data4","_iconColor","_iconSize","_icon","_ref17","_this$computeRadianPo4","isActive","_this$asProps7","icon","getLabelProps","_ref18","_$rootProps$data5","_color3","_ref20","_this$computeRadianPo5","labelAngle","isHorizontal","_this$asProps8","_ref19","angle","getRadianKey","_data$key","_data$capSize","_this$asProps9","_size2","baseCapSize","minDemSize","min","topAngle","xCenter","yCenter","start","cos","sin","end","labelCenter","_ref2","_this$asProps10","SRadian","children","getOriginChildren","_child","mergedProps","assignProps","describeValueEntity","InteractiveArea","RadialTree","Radian","_ref3","_this4","SRadianList","_ref21","_ref4","SInteractiveArea","Line","_ref22","_ref5","SLine","Cap","_ref23","_ref6","SCap","radius","Icon","_ref24","_ref7","SIcon","tag","Label","_ref25","SLabel","lines","String","split","linesCount","SLabelLine","angleDegs","toFixed","transformOrigin","transform","join","sstyles","sLabelStyles","textAnchor","dominantBaseline","className","lineText","lineIndex","Title","_ref26","_ref8","STitle","setTitle","_default","exports"],"sources":["../../src/RadialTree.tsx"],"sourcesContent":["import React from 'react';\nimport { transition } from 'd3-transition';\nimport { Component, sstyled, ReturnEl, UnknownProperties, Intergalactic } from '@semcore/core';\nimport uniqueIDEnhancement from '@semcore/utils/lib/uniqueID';\nimport assignProps from '@semcore/utils/lib/assignProps';\nimport getOriginChildren from '@semcore/utils/lib/getOriginChildren';\nimport canUseDOM from '@semcore/utils/lib/canUseDOM';\nimport createElement from './createElement';\nimport { measureText } from './utils';\nimport { DataHintsHandler } from './a11y/hints';\n\nimport style from './style/radial-tree.shadow.css';\n\nconst baseAngle = -Math.PI / 2; // The top vertical line\n\ntype RadianData = {\n /**\n * Text label on the end of radian.\n */\n label: string;\n /**\n * Radian key. Radian, which `key` is equal to `activeKey` is displayed as active.\n */\n key: string;\n /**\n * Size of the cap (filled circle on the end of the radian).\n * @default 16\n */\n capSize?: number;\n /**\n * Icon, that displayed in the cap of the active radian (usage example `icon: UserM`).\n */\n icon?: React.FC;\n /**\n * Color of radian's line, cap and label.\n * @default #008FF8\n */\n color?: string;\n /**\n * Color of icon.\n * @default #fff\n */\n iconColor?: string;\n /**\n * Size of icon.\n * @default 16\n */\n iconSize?: number;\n};\n\n/** @deprecated */\nexport interface IRadialTreeProps extends RadialTreeProps, UnknownProperties {}\nexport type RadialTreeProps = {\n /**\n * List of radians. `{ label: string; key: string; capSize?: number; icon?: React.FC; color?: string; iconColor?: string; iconSize?: number; }`\n */\n data?: RadianData[];\n /**\n * Angel (in rads) that rotates chart. 0 means that first radian is exactly on top vertical line.\n * @default 0\n */\n angleOffset?: number;\n /**\n * Duration of appear and update animation.\n * @default 300\n */\n duration?: number;\n /**\n * Gap between the chart center and radians start point.\n * @default 50\n */\n centralMargin?: number;\n /**\n * Gap around text label.\n * @default 2\n */\n labelMargin?: number;\n /**\n * Color of all radian's line, cap and label.\n * @default #008FF8\n */\n color?: string;\n /**\n * Size of the cap (filled circle on the end of the radian).\n * @default 16\n */\n capSize?: number;\n /**\n * Icon, that displayed in the cap of the active radian (usage example `icon: UserM`).\n */\n icon?: React.FC;\n /**\n * Color of icon.\n * @default #fff\n */\n iconColor?: string;\n /**\n * Size of icon.\n * @default 16\n */\n iconSize?: number;\n /**\n * Text size in radians' labels. 1.5x is used as default text size of center text.\n * @default 14\n */\n textSize?: number;\n /**\n * Used to define the active radian in controlled way. Active radian is highligted with inreased cap size.\n */\n activeKey?: string | null;\n onActiveKeyChange?: (activeKey: string | null) => void;\n /**\n * Default value for `activeKey` property.\n */\n defaultActiveKey?: string | null;\n /** Enables element transparency */\n transparent?: boolean;\n};\n\ntype RootAsProps = IRadialTreeProps & {\n uid: string;\n styles: React.CSSProperties;\n activeKey: string | null;\n Children: React.FC;\n size: [width: number, height: number];\n data: RadianData[];\n duration: number;\n textSize: number;\n capSize: number;\n centralMargin: number;\n labelMargin: number;\n angleOffset: number;\n transparent: boolean;\n $rootProps: RootAsProps;\n dataHintsHandler: DataHintsHandler;\n};\n\nclass RadialTreeBase extends Component<RootAsProps> {\n static displayName = 'RadialTree';\n static style = style;\n static enhance = [uniqueIDEnhancement()];\n\n static defaultProps: Partial<IRadialTreeProps> = {\n angleOffset: 0,\n duration: 300,\n centralMargin: 50,\n labelMargin: 5,\n iconColor: '#fff',\n capSize: 8,\n iconSize: 8,\n textSize: 14,\n defaultActiveKey: null,\n };\n\n Element!: React.FC<{ children?: React.ReactNode; render: string }>;\n\n constructor(props: any) {\n super(props);\n this.handleRadianClick = this.handleRadianClick.bind(this);\n }\n\n uncontrolledProps() {\n return {\n activeKey: null,\n };\n }\n\n runAppearAnimation() {\n const { duration, uid } = this.asProps;\n if (!canUseDOM()) return;\n const preferReduceMotion = window.matchMedia('(prefers-reduced-motion: reduce)')?.matches;\n\n /** using `!(>)` instead of `<=` to get true on NaN and non numbers stuff */\n if (!(duration > 0)) return;\n if (preferReduceMotion) return;\n\n const circlesAnimation = transition()\n .selection()\n .selectAll(`[data-radial-animation=${uid}-cap-circle]`)\n .interrupt();\n const iconsAnimation = transition()\n .selection()\n .selectAll(`[data-radial-animation=${uid}-cap-icon]`)\n .interrupt();\n const linesAnimation = transition()\n .selection()\n .selectAll(`[data-radial-animation=${uid}-line]`)\n .interrupt();\n const labelsAnimation = transition()\n .selection()\n .selectAll(`[data-radial-animation=${uid}-label]`)\n .interrupt();\n const circlesNodes = circlesAnimation.nodes() as SVGCircleElement[];\n const iconsNodes = iconsAnimation.nodes() as SVGRectElement[];\n const linesNodes = linesAnimation.nodes() as SVGLineElement[];\n const labelsNodes = linesAnimation.nodes() as SVGTextElement[];\n\n if (circlesNodes.length > 0) {\n const attrs = circlesNodes.map((node) => {\n const radianIndex = parseInt(node.dataset.radianIndex!, 10);\n const lineNode = linesNodes[radianIndex];\n return {\n from: {\n cx: lineNode.x1?.baseVal?.value,\n cy: lineNode.y1?.baseVal?.value,\n },\n to: {\n cx: node.dataset['cx'],\n cy: node.dataset['cy'],\n },\n };\n });\n\n circlesAnimation\n .attr('opacity', 0)\n .attr('cx', (_, index) => attrs[index].from?.cx)\n .attr('cy', (_, index) => attrs[index].from?.cy)\n .transition()\n .duration(duration)\n .attr('opacity', 1)\n .attr('cx', (_, index) => attrs[index].to?.cx!)\n .attr('cy', (_, index) => attrs[index].to?.cy!);\n }\n if (iconsNodes.length > 0) {\n const attrs = iconsNodes.map((node) => {\n const width = node.width?.baseVal?.value;\n const height = node.height?.baseVal?.value;\n const radianIndex = parseInt(node.dataset.radianIndex!, 10);\n const lineNode = linesNodes[radianIndex];\n return {\n from: {\n x: lineNode.x1?.baseVal?.value - width / 2,\n y: lineNode.y1?.baseVal?.value - height / 2,\n },\n to: {\n x: node.dataset['x'],\n y: node.dataset['y'],\n },\n };\n });\n\n iconsAnimation\n .attr('opacity', 0)\n .attr('x', (_, index) => attrs[index].from?.x!)\n .attr('y', (_, index) => attrs[index].from?.y!)\n .transition()\n .duration(duration)\n .attr('opacity', 1)\n .attr('x', (_, index) => attrs[index].to?.x!)\n .attr('y', (_, index) => attrs[index].to?.y!);\n }\n if (linesNodes.length > 0) {\n const attrs = linesNodes.map((node) => {\n return {\n from: {\n x2: node.x1?.baseVal?.value,\n y2: node.y1?.baseVal?.value,\n },\n to: {\n x2: node.dataset['x2'],\n y2: node.dataset['y2'],\n },\n };\n });\n\n linesAnimation\n .attr('opacity', 0)\n .attr('x2', (_, index) => attrs[index].from?.x2!)\n .attr('y2', (_, index) => attrs[index].from?.y2!)\n .transition()\n .duration(duration)\n .attr('opacity', 1)\n .attr('x2', (_, index) => attrs[index].to?.x2!)\n .attr('y2', (_, index) => attrs[index].to?.y2!);\n }\n if (labelsNodes.length > 0) {\n labelsAnimation.attr('opacity', 0);\n labelsAnimation.transition().duration(duration).attr('opacity', 1);\n }\n }\n\n componentDidUpdate(prevProps: RootAsProps) {\n if (prevProps.$rootProps.data !== this.asProps.data) {\n this.runAppearAnimation();\n }\n }\n\n componentDidMount() {\n this.runAppearAnimation();\n }\n\n handleRadianClick(key: string) {\n return (event: React.MouseEvent) => {\n const newKey = key !== this.asProps.activeKey ? key : null;\n this.handlers.activeKey(newKey, event);\n };\n }\n\n computeTextWidth() {\n const { data, textSize } = this.asProps;\n const widths = data.map(({ label }) => measureText(label, textSize));\n\n return Math.max(...widths);\n }\n\n getTitleProps() {\n const { uid, size, textSize } = this.asProps;\n\n const [width, height] = size;\n const center = [width / 2, height / 2];\n const [x, y] = center;\n return {\n x,\n y,\n textSize: textSize * 1.5,\n ['data-radial-animation']: `${uid}-label`,\n } as IRadialTreeTitleProps;\n }\n\n getRadianProps() {\n const { data, ...restRootProps } = this.asProps;\n const textWidth = this.computeTextWidth();\n\n return {\n ...restRootProps,\n radiansCount: data.length,\n data,\n textWidth,\n onRadianClick: this.handleRadianClick,\n } as IRadialTreeRadianProps;\n }\n\n render() {\n const SRadialTree = this.Element;\n const { Children } = this.asProps;\n this.asProps.dataHintsHandler.establishDataType('values-set');\n\n return sstyled(this.asProps.styles)(\n <SRadialTree render='g'>\n <Children />\n </SRadialTree>,\n );\n }\n}\n\n/** @deprecated */\nexport interface IRadialTreeRadianProps extends RadialTreeRadianProps, UnknownProperties {}\nexport type RadialTreeRadianProps = RadialTreeProps & {\n radiansCount?: number;\n textWidth?: number;\n onRadianClick?: (key: string) => (event: React.MouseEvent) => void;\n};\n\ntype RadianAsProps = RootAsProps & {\n radiansCount: number;\n textWidth: number;\n onRadianClick: (key: string) => (event: React.MouseEvent) => void;\n};\n\nclass RadialTreeRadian extends Component<RadianAsProps> {\n static displayName = 'RadialTreeRadian';\n static style = style;\n\n static defaultProps: Partial<IRadialTreeRadianProps> = {\n centralMargin: 50,\n labelMargin: 2,\n iconColor: '#fff',\n capSize: 16,\n iconSize: 16,\n textSize: 14,\n };\n Element!: React.FC<{ render: string }>;\n\n constructor(props: any) {\n super(props);\n this.renderRadian = this.renderRadian.bind(this);\n }\n\n getInteractiveAreaProps({ $rootProps }: { $rootProps: IRadialTreeProps }, index: number) {\n const data = $rootProps.data?.[index];\n const { xStart, yStart, xLabelCenter, yLabelCenter, capSize } = this.computeRadianPosition(\n data!,\n index,\n );\n\n return {\n x1: xStart,\n y1: yStart,\n x2: xLabelCenter,\n y2: yLabelCenter,\n strokeWidth: capSize * 3,\n } as IRadialTreeRadianInteractiveAreaProps;\n }\n\n getLineProps({ $rootProps }: { $rootProps: IRadialTreeProps }, index: number) {\n const data = $rootProps.data?.[index];\n const { xStart, yStart, xEnd, yEnd } = this.computeRadianPosition(data!, index);\n const { uid, transparent, resolveColor } = this.asProps;\n const color = data!.color ?? this.asProps.color;\n\n return {\n x1: xStart,\n y1: yStart,\n x2: xEnd,\n y2: yEnd,\n stroke: color,\n resolveColor,\n transparent,\n ['data-x1']: xStart,\n ['data-y1']: yStart,\n ['data-x2']: xEnd,\n ['data-y2']: yEnd,\n ['data-radial-animation']: `${uid}-line`,\n ['data-radian-index']: index,\n } as IRadialTreeRadianLineProps;\n }\n\n getCapProps({ $rootProps }: { $rootProps: IRadialTreeProps }, index: number) {\n const data = $rootProps.data?.[index];\n const { xEnd, yEnd, capSize } = this.computeRadianPosition(data!, index);\n const { uid, transparent, resolveColor } = this.asProps;\n const color = data!.color ?? this.asProps.color;\n\n return {\n x: xEnd,\n y: yEnd,\n ['data-cx']: xEnd,\n ['data-cy']: yEnd,\n radius: capSize,\n color,\n resolveColor,\n transparent,\n ['data-radial-animation']: `${uid}-cap-circle`,\n ['data-radian-index']: index,\n } as IRadialTreeRadianCapProps;\n }\n\n getIconProps({ $rootProps }: { $rootProps: IRadialTreeProps }, index: number) {\n const data = $rootProps.data?.[index];\n const { xEnd, yEnd, isActive } = this.computeRadianPosition(data!, index);\n const { uid, resolveColor } = this.asProps;\n const iconColor = data!.iconColor ?? this.asProps.iconColor;\n const iconSize = data!.iconSize ?? this.asProps.iconSize;\n const icon = data!.icon ?? this.asProps.icon;\n const x = xEnd - iconSize! / 2;\n const y = yEnd - iconSize! / 2;\n return {\n x,\n y,\n ['data-x']: x,\n ['data-y']: y,\n iconSize,\n color: iconColor ?? '#fff',\n resolveColor,\n ['data-radial-animation']: `${uid}-cap-icon`,\n ['data-radian-index']: index,\n icon,\n tag: icon,\n isActive,\n } as IRadialTreeRadianIconProps;\n }\n\n getLabelProps({ $rootProps }: { $rootProps: IRadialTreeProps }, index: number) {\n const data = $rootProps.data?.[index];\n const { xLabelCenter, yLabelCenter, labelAngle, isHorizontal } = this.computeRadianPosition(\n data!,\n index,\n );\n const { uid, textSize, transparent, resolveColor } = this.asProps;\n const { label } = data!;\n const color = data!.color ?? this.asProps.color;\n\n return {\n x: xLabelCenter,\n y: yLabelCenter,\n angle: labelAngle,\n ['data-radial-animation']: `${uid}-label`,\n ['data-radian-index']: index,\n label,\n color,\n resolveColor,\n isHorizontal,\n textSize,\n transparent,\n } as IRadialTreeRadianLabelProps;\n }\n\n getRadianKey(data: RadianData, index: number) {\n return data.key ?? `radian-${index}`;\n }\n\n computeRadianPosition(data: RadianData, index: number) {\n const { centralMargin, labelMargin, angleOffset, activeKey, size, radiansCount, textWidth } =\n this.asProps;\n const [width, height] = size;\n const key = this.getRadianKey(data, index);\n const isActive = activeKey === key;\n const baseCapSize = data.capSize ?? this.asProps.capSize;\n const capSize = baseCapSize * (isActive ? 1 : 0.5);\n\n const minDemSize = Math.min(width, height) / 2;\n const length = Math.max(\n minDemSize - textWidth - baseCapSize - centralMargin - labelMargin * 2,\n 10,\n );\n\n const angle = baseAngle + angleOffset + (index / radiansCount) * (Math.PI * 2);\n const isHorizontal =\n (angle - baseAngle > (1 / 6) * Math.PI && angle - baseAngle < (5 / 6) * Math.PI) ||\n (angle - baseAngle > (7 / 6) * Math.PI && angle - baseAngle < (11 / 6) * Math.PI);\n const topAngle = -Math.PI / 2;\n const labelAngle = ((angle - topAngle) % Math.PI) + topAngle;\n\n const center = [width / 2, height / 2];\n const [xCenter, yCenter] = center;\n const start = [\n xCenter + Math.cos(angle) * centralMargin,\n yCenter + Math.sin(angle) * centralMargin,\n ];\n const end = [\n xCenter + Math.cos(angle) * (centralMargin + length),\n yCenter + Math.sin(angle) * (centralMargin + length),\n ];\n const [xStart, yStart] = start;\n const [xEnd, yEnd] = end;\n\n const labelCenter = [\n xCenter +\n Math.cos(angle) * (centralMargin + length + baseCapSize + textWidth / 2 + labelMargin),\n yCenter +\n Math.sin(angle) * (centralMargin + length + baseCapSize + textWidth / 2 + labelMargin),\n ];\n const [xLabelCenter, yLabelCenter] = labelCenter;\n\n return {\n xStart,\n yStart,\n xEnd,\n yEnd,\n xLabelCenter,\n yLabelCenter,\n labelAngle,\n isHorizontal,\n capSize,\n isActive,\n };\n }\n\n renderRadian(data: RadianData, index: number) {\n const { styles, Children, onRadianClick } = this.asProps;\n const key = this.getRadianKey(data, index);\n const SRadian = 'g';\n\n let children = getOriginChildren(Children);\n\n if (typeof children === 'function') {\n const _child = this.asProps.children;\n const mergedProps = assignProps(children(this.asProps), this.asProps as any);\n children = mergedProps.children;\n mergedProps.children = _child;\n }\n\n this.asProps.dataHintsHandler.describeValueEntity(`${index}.${data.label}`, data.label);\n\n // hidden from publicly typed export\n const InteractiveArea = (RadialTree.Radian as any).InteractiveArea;\n\n return sstyled(styles)(\n <SRadian aria-hidden key={key} onClick={onRadianClick(key)}>\n <InteractiveArea />\n {children}\n </SRadian>,\n );\n }\n\n render() {\n const { data } = this.asProps;\n const SRadianList = 'g';\n\n return sstyled(this.asProps.styles)(\n <SRadianList>{data.map((data, index) => this.renderRadian(data, index))}</SRadianList>,\n );\n }\n}\n\n/** @deprecated */\nexport interface IRadialTreeRadianInteractiveAreaProps\n extends RadialTreeRadianInteractiveAreaProps {}\nexport type RadialTreeRadianInteractiveAreaProps = {\n x1?: number;\n y1?: number;\n x2?: number;\n y2?: number;\n strokeWidth?: number;\n};\n\ntype RadialTreeRadianInteractiveAreaAsProps = IRadialTreeRadianInteractiveAreaProps & {\n Element: React.FC<{ render: string } & React.SVGProps<any>>;\n styles: React.CSSProperties;\n};\nconst InteractiveArea: React.FC<RadialTreeRadianInteractiveAreaAsProps> = ({\n Element: SInteractiveArea,\n styles,\n}) => {\n return sstyled(styles)(\n <SInteractiveArea stroke='transparent' render='line' />,\n ) as React.ReactElement;\n};\n\n/** @deprecated */\nexport interface IRadialTreeRadianLineProps extends RadialTreeRadianLineProps, UnknownProperties {}\nexport type RadialTreeRadianLineProps = {\n x1?: number;\n y1?: number;\n x2?: number;\n y2?: number;\n stroke?: string;\n transparent?: boolean;\n ['data-radial-animation']?: `${string}-line`;\n ['data-radian-index']?: number;\n};\n\ntype RadialTreeRadianLineAsProps = IRadialTreeRadianLineProps & {\n Element: React.FC<{ render: string; transparent: boolean } & React.SVGProps<any>>;\n styles: React.CSSProperties;\n resolveColor: (color?: string) => string;\n};\nconst Line: React.FC<RadialTreeRadianLineAsProps> = ({\n Element: SLine,\n styles,\n stroke,\n resolveColor,\n transparent,\n}) => {\n return sstyled(styles)(\n <SLine render='line' stroke={resolveColor(stroke)} transparent={transparent!} />,\n ) as React.ReactElement;\n};\n\n/** @deprecated */\nexport interface IRadialTreeRadianCapProps extends RadialTreeRadianCapProps, UnknownProperties {}\nexport type RadialTreeRadianCapProps = {\n x?: number;\n y?: number;\n radius?: number;\n color?: string;\n transparent?: boolean;\n ['data-radial-animation']?: `${string}-cap-circle`;\n ['data-radian-index']?: number;\n};\n\ntype RadialTreeRadianCapAsProps = IRadialTreeRadianCapProps & {\n Element: React.FC<{ render: string; transparent: boolean } & React.SVGProps<any>>;\n styles: React.CSSProperties;\n resolveColor: (color?: string) => string;\n};\nconst Cap: React.FC<RadialTreeRadianCapAsProps> = ({\n Element: SCap,\n styles,\n x,\n y,\n radius,\n color,\n resolveColor,\n transparent,\n}) => {\n return sstyled(styles)(\n <SCap\n render='circle'\n cx={x}\n cy={y}\n r={radius}\n fill={resolveColor(color)}\n transparent={transparent!}\n />,\n ) as React.ReactElement;\n};\n\n/** @deprecated */\nexport interface IRadialTreeRadianIconProps extends RadialTreeRadianIconProps, UnknownProperties {}\nexport type RadialTreeRadianIconProps = {\n x?: number;\n y?: number;\n iconSize?: number;\n color?: string;\n ['data-radial-animation']?: `${string}-cap-icon`;\n ['data-radian-index']?: number;\n isActive?: boolean;\n transparent?: boolean;\n};\n\ntype RadialTreeRadianIconAsProps = IRadialTreeRadianIconProps & {\n Element: React.FC<{ render: string | React.FC; transparent: boolean } & React.SVGProps<any>>;\n x: number;\n y: number;\n iconSize: number;\n styles: React.CSSProperties;\n tag?: React.FC;\n};\nconst Icon: React.FC<RadialTreeRadianIconAsProps> = ({\n Element: SIcon,\n styles,\n isActive,\n tag,\n x,\n y,\n iconSize,\n transparent,\n}) => {\n if (!(isActive && tag)) return null;\n const width = iconSize;\n const height = iconSize;\n return sstyled(styles)(\n <SIcon x={x} y={y} width={width} height={height} render={tag} transparent={transparent!} />,\n ) as React.ReactElement;\n};\n\n/** @deprecated */\nexport interface IRadialTreeRadianLabelProps\n extends RadialTreeRadianLabelProps,\n UnknownProperties {}\nexport type RadialTreeRadianLabelProps = {\n x?: number;\n y?: number;\n color?: string;\n textSize?: number;\n ['data-radial-animation']?: `${string}-label`;\n ['data-radian-index']?: number;\n label?: string;\n isHorizontal?: boolean;\n angle?: number;\n transparent?: boolean;\n};\n\ntype RadialTreeRadianLabelAsProps = IRadialTreeRadianLabelProps & {\n Element: React.FC<{ render: string } & React.SVGProps<any>>;\n Children: React.FC;\n styles: React.CSSProperties;\n x: number;\n y: number;\n angle: number;\n textSize: number;\n resolveColor: (color?: string) => string;\n};\nconst Label: React.FC<RadialTreeRadianLabelAsProps> = ({\n Element: SLabel,\n Children,\n styles,\n label,\n color,\n resolveColor,\n isHorizontal,\n x,\n y,\n textSize,\n angle,\n transparent,\n}) => {\n const lines = String(label).split('\\n');\n const linesCount = lines.length;\n const SLabelLine = 'tspan';\n\n const angleDegs = ((angle / Math.PI) * 180).toFixed(2);\n const transformOrigin = [x.toFixed(2), y.toFixed(2)];\n const transform = `rotate(${[angleDegs, ...transformOrigin].join(', ')})`;\n\n const sstyles = sstyled(styles);\n const sLabelStyles = sstyles.cn('SLabel', {\n color: resolveColor(color),\n 'text-cursor': isHorizontal ? 'text' : 'vertical-text',\n transparent,\n });\n\n return (\n <SLabel\n aria-hidden\n render='text'\n textAnchor='middle'\n dominantBaseline='central'\n className={sLabelStyles.className}\n style={sLabelStyles.style}\n x={x.toFixed(2)}\n y={y.toFixed(2)}\n transform={transform}\n >\n {lines.map((lineText, lineIndex) => (\n <SLabelLine\n x={x}\n y={y + (lineIndex - (linesCount - 1) / 2) * textSize}\n key={`#${lineIndex}-${lineText}`}\n >\n {lineText}\n </SLabelLine>\n ))}\n <Children />\n </SLabel>\n ) as React.ReactElement;\n};\n\nconst Radian = createElement(RadialTreeRadian, {\n InteractiveArea,\n Line,\n Cap,\n Icon,\n Label,\n});\n\n/** @deprecated */\nexport interface IRadialTreeTitleProps extends RadialTreeTitleProps, UnknownProperties {}\nexport type RadialTreeTitleProps = {\n x?: number;\n y?: number;\n textSize?: number;\n ['data-radial-animation']?: `${string}-label`;\n color?: string;\n};\n\ntype RadialTreeTitleAsProps = IRadialTreeTitleProps & {\n Element: React.FC<{ render: string } & React.SVGProps<any>>;\n Children: React.FC;\n children: React.ReactNode;\n styles: React.CSSProperties;\n dataHintsHandler: DataHintsHandler;\n resolveColor: (color?: string) => string;\n};\nconst Title: React.FC<RadialTreeTitleAsProps> = ({\n Element: STitle,\n Children,\n children,\n styles,\n textSize,\n color,\n resolveColor,\n x,\n y,\n dataHintsHandler,\n}) => {\n if (typeof children === 'string') {\n dataHintsHandler.setTitle('vertical', children);\n }\n return sstyled(styles)(\n <STitle\n aria-hidden\n render='text'\n textAnchor='middle'\n dominantBaseline='central'\n fontSize={textSize}\n fill={resolveColor(color)}\n x={x}\n y={y}\n >\n <Children />\n </STitle>,\n ) as React.ReactElement;\n};\n\ntype IntergalacticD3Component<BaseTag extends Intergalactic.Tag, Props, Context = {}> = (<\n Tag extends Intergalactic.Tag = Intergalactic.Tag,\n>(\n props: Intergalactic.InternalTypings.PropsRenderingResultComponentProps<Tag, Props, Context>,\n) => Intergalactic.InternalTypings.ComponentRenderingResults) &\n Intergalactic.InternalTypings.ComponentAdditive<BaseTag>;\n\nconst RadialTree = createElement(RadialTreeBase, { Title, Radian }) as IntergalacticD3Component<\n 'g',\n RadialTreeProps\n> & {\n Title: IntergalacticD3Component<'text', RadialTreeTitleProps>;\n Radian: IntergalacticD3Component<'g', RadialTreeRadianProps> & {\n Line: IntergalacticD3Component<'line', RadialTreeRadianLineProps>;\n Cap: IntergalacticD3Component<'circle', RadialTreeRadianCapProps>;\n Icon: IntergalacticD3Component<'g', RadialTreeRadianIconProps>;\n Label: IntergalacticD3Component<'text', RadialTreeRadianLabelProps>;\n };\n};\n\nexport default RadialTree;\n"],"mappings":"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"}
@@ -0,0 +1,239 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = void 0;
8
+ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
9
+ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
10
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
11
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
12
+ var _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper"));
13
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
14
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
15
+ var _core = require("@semcore/core");
16
+ var _react = _interopRequireDefault(require("react"));
17
+ var _createElement = _interopRequireDefault(require("./createElement"));
18
+ var _utils = require("./utils");
19
+ /*__reshadow-styles__:"./style/reference-line.shadow.css"*/
20
+ var style = ( /*__reshadow_css_start__*/_core.sstyled.insert( /*__inner_css_start__*/".___SReferenceLine_1ixcy_gg_{fill:none;stroke:var(--intergalactic-chart-grid-x-axis, #c4c7cf)}.___STitle_1ixcy_gg_{font-size:var(--intergalactic-fs-100, 12px);fill:var(--intergalactic-chart-grid-text-label, #6c6e79);transform-origin:var(--transform-origin_1ixcy)}.___STitle_1ixcy_gg_._position_top_1ixcy_gg_{text-anchor:middle}.___STitle_1ixcy_gg_._position_bottom_1ixcy_gg_{text-anchor:middle;alignment-baseline:hanging}.___STitle_1ixcy_gg_._position_left_1ixcy_gg_,.___STitle_1ixcy_gg_._position_right_1ixcy_gg_{transform:rotate(-90deg);text-anchor:middle;alignment-baseline:middle}.___SBackground_1ixcy_gg_{fill:var(--intergalactic-chart-grid-period-bg, rgba(196, 199, 207, 0.2))}" /*__inner_css_end__*/, "1ixcy_gg_") /*__reshadow_css_end__*/, {
21
+ "__SReferenceLine": "___SReferenceLine_1ixcy_gg_",
22
+ "__STitle": "___STitle_1ixcy_gg_",
23
+ "--transform-origin": "--transform-origin_1ixcy",
24
+ "_position_top": "_position_top_1ixcy_gg_",
25
+ "_position_bottom": "_position_bottom_1ixcy_gg_",
26
+ "_position_right": "_position_right_1ixcy_gg_",
27
+ "_position_left": "_position_left_1ixcy_gg_",
28
+ "__SBackground": "___SBackground_1ixcy_gg_"
29
+ });
30
+ var side2direction = {
31
+ left: 'vertical',
32
+ right: 'vertical',
33
+ top: 'horizontal',
34
+ bottom: 'horizontal'
35
+ };
36
+ var lineDirection2props = {
37
+ vertical: function vertical(_ref4, value) {
38
+ var _ref5 = (0, _slicedToArray2["default"])(_ref4, 2),
39
+ xScale = _ref5[0],
40
+ yScale = _ref5[1];
41
+ var yRange = yScale.range();
42
+ var x = (0, _utils.scaleOfBandwidth)(xScale, value);
43
+ return {
44
+ x1: x,
45
+ x2: x,
46
+ y1: yRange[0],
47
+ y2: yRange[1]
48
+ };
49
+ },
50
+ horizontal: function horizontal(_ref6, value) {
51
+ var _ref7 = (0, _slicedToArray2["default"])(_ref6, 2),
52
+ xScale = _ref7[0],
53
+ yScale = _ref7[1];
54
+ var xRange = xScale.range();
55
+ var y = (0, _utils.scaleOfBandwidth)(yScale, value);
56
+ return {
57
+ x1: xRange[0],
58
+ x2: xRange[1],
59
+ y1: y,
60
+ y2: y
61
+ };
62
+ }
63
+ };
64
+ var rectDirection2props = {
65
+ vertical: function vertical(_ref8, value) {
66
+ var _ref9 = (0, _slicedToArray2["default"])(_ref8, 2),
67
+ xScale = _ref9[0],
68
+ yScale = _ref9[1];
69
+ var yRange = yScale.range();
70
+ var x = (0, _utils.scaleOfBandwidth)(xScale, value);
71
+ return {
72
+ x: x,
73
+ y: yRange[1],
74
+ width: 100,
75
+ height: yRange[0] - yRange[1]
76
+ };
77
+ },
78
+ horizontal: function horizontal(_ref10, value) {
79
+ var _ref11 = (0, _slicedToArray2["default"])(_ref10, 2),
80
+ xScale = _ref11[0],
81
+ yScale = _ref11[1];
82
+ var xRange = xScale.range();
83
+ var y = (0, _utils.scaleOfBandwidth)(yScale, value);
84
+ return {
85
+ x: xRange[0],
86
+ y: y,
87
+ width: xRange[1] - xRange[0],
88
+ height: 100
89
+ };
90
+ }
91
+ };
92
+ var titleOffset = 10;
93
+ var titleSideToProps = {
94
+ left: function left(_ref12, value) {
95
+ var _ref13 = (0, _slicedToArray2["default"])(_ref12, 2),
96
+ xScale = _ref13[0],
97
+ yScale = _ref13[1];
98
+ var yRange = yScale.range();
99
+ var x = (0, _utils.scaleOfBandwidth)(xScale, value);
100
+ return {
101
+ x: x - titleOffset,
102
+ y: (yRange[0] + yRange[1]) / 2
103
+ };
104
+ },
105
+ right: function right(_ref14, value) {
106
+ var _ref15 = (0, _slicedToArray2["default"])(_ref14, 2),
107
+ xScale = _ref15[0],
108
+ yScale = _ref15[1];
109
+ var yRange = yScale.range();
110
+ var x = (0, _utils.scaleOfBandwidth)(xScale, value);
111
+ return {
112
+ x: x + titleOffset,
113
+ y: (yRange[0] + yRange[1]) / 2
114
+ };
115
+ },
116
+ top: function top(_ref16, value) {
117
+ var _ref17 = (0, _slicedToArray2["default"])(_ref16, 2),
118
+ xScale = _ref17[0],
119
+ yScale = _ref17[1];
120
+ var xRange = xScale.range();
121
+ var y = (0, _utils.scaleOfBandwidth)(yScale, value);
122
+ return {
123
+ x: (xRange[1] + xRange[0]) / 2,
124
+ y: y - titleOffset
125
+ };
126
+ },
127
+ bottom: function bottom(_ref18, value) {
128
+ var _ref19 = (0, _slicedToArray2["default"])(_ref18, 2),
129
+ xScale = _ref19[0],
130
+ yScale = _ref19[1];
131
+ var xRange = xScale.range();
132
+ var y = (0, _utils.scaleOfBandwidth)(yScale, value);
133
+ return {
134
+ x: (xRange[1] + xRange[0]) / 2,
135
+ y: y + titleOffset
136
+ };
137
+ }
138
+ };
139
+ var ReferenceLineRoot = /*#__PURE__*/function (_Component) {
140
+ (0, _inherits2["default"])(ReferenceLineRoot, _Component);
141
+ var _super = (0, _createSuper2["default"])(ReferenceLineRoot);
142
+ function ReferenceLineRoot() {
143
+ (0, _classCallCheck2["default"])(this, ReferenceLineRoot);
144
+ return _super.apply(this, arguments);
145
+ }
146
+ (0, _createClass2["default"])(ReferenceLineRoot, [{
147
+ key: "getTitleProps",
148
+ value: function getTitleProps() {
149
+ var _this$asProps = this.asProps,
150
+ position = _this$asProps.position,
151
+ value = _this$asProps.value;
152
+ return {
153
+ position: position,
154
+ value: value
155
+ };
156
+ }
157
+ }, {
158
+ key: "getBackgroundProps",
159
+ value: function getBackgroundProps() {
160
+ var _this$asProps2 = this.asProps,
161
+ position = _this$asProps2.position,
162
+ value = _this$asProps2.value;
163
+ return {
164
+ position: position,
165
+ value: value
166
+ };
167
+ }
168
+ }, {
169
+ key: "render",
170
+ value: function render() {
171
+ var _ref;
172
+ var SReferenceLine = this.Element;
173
+ var _this$asProps3 = this.asProps,
174
+ title = _this$asProps3.title,
175
+ scale = _this$asProps3.scale,
176
+ position = _this$asProps3.position,
177
+ value = _this$asProps3.value,
178
+ color = _this$asProps3.color,
179
+ resolveColor = _this$asProps3.resolveColor,
180
+ styles = _this$asProps3.styles;
181
+ var positionProps = lineDirection2props[side2direction[position]];
182
+ return _ref = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(_react["default"].Fragment, null, /*#__PURE__*/_react["default"].createElement(SReferenceLine, _ref.cn("SReferenceLine", (0, _objectSpread2["default"])({
183
+ "render": 'line',
184
+ "__excludeProps": ['data', 'scale', 'format', 'value', 'color'],
185
+ "stroke": resolveColor(color)
186
+ }, positionProps(scale, value)))), title && /*#__PURE__*/_react["default"].createElement(ReferenceLine.Title, null, title));
187
+ }
188
+ }]);
189
+ return ReferenceLineRoot;
190
+ }(_core.Component);
191
+ (0, _defineProperty2["default"])(ReferenceLineRoot, "displayName", 'ReferenceLine');
192
+ (0, _defineProperty2["default"])(ReferenceLineRoot, "style", style);
193
+ (0, _defineProperty2["default"])(ReferenceLineRoot, "defaultProps", {
194
+ position: 'left'
195
+ });
196
+ function Title(props) {
197
+ var _ref2;
198
+ var STitle = props.Element,
199
+ styles = props.styles,
200
+ scale = props.scale,
201
+ position = props.position,
202
+ value = props.value;
203
+ var _titleSideToProps$pos = titleSideToProps[position](scale, value),
204
+ x = _titleSideToProps$pos.x,
205
+ y = _titleSideToProps$pos.y;
206
+ var sstyles = (0, _core.sstyled)(styles);
207
+ var sTitleStyles = sstyles.cn('STitle', {
208
+ 'transform-origin': "".concat(x.toFixed(2), "px ").concat(y.toFixed(2), "px")
209
+ });
210
+ return _ref2 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(STitle, _ref2.cn("STitle", {
211
+ "render": 'text',
212
+ "childrenPosition": 'inside',
213
+ "className": sTitleStyles.className,
214
+ "style": sTitleStyles.style,
215
+ "position": position,
216
+ "x": x,
217
+ "y": y
218
+ }));
219
+ }
220
+ function Background(props) {
221
+ var _ref3;
222
+ var SBackground = props.Element,
223
+ styles = props.styles,
224
+ scale = props.scale,
225
+ position = props.position,
226
+ value = props.value;
227
+ var positionProps = rectDirection2props[side2direction[position]];
228
+ return _ref3 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(SBackground, _ref3.cn("SBackground", (0, _objectSpread2["default"])({
229
+ "render": 'rect',
230
+ "childrenPosition": 'inside'
231
+ }, positionProps(scale, value))));
232
+ }
233
+ var ReferenceLine = (0, _createElement["default"])(ReferenceLineRoot, {
234
+ Title: Title,
235
+ Background: Background
236
+ });
237
+ var _default = ReferenceLine;
238
+ exports["default"] = _default;
239
+ //# sourceMappingURL=ReferenceLine.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ReferenceLine.js","names":["_core","require","_react","_interopRequireDefault","_createElement","_utils","style","sstyled","insert","side2direction","left","right","top","bottom","lineDirection2props","vertical","_ref4","value","_ref5","_slicedToArray2","xScale","yScale","yRange","range","x","scaleOfBandwidth","x1","x2","y1","y2","horizontal","_ref6","_ref7","xRange","y","rectDirection2props","_ref8","_ref9","width","height","_ref10","_ref11","titleOffset","titleSideToProps","_ref12","_ref13","_ref14","_ref15","_ref16","_ref17","_ref18","_ref19","ReferenceLineRoot","_Component","_inherits2","_super","_createSuper2","_classCallCheck2","apply","arguments","_createClass2","key","getTitleProps","_this$asProps","asProps","position","getBackgroundProps","_this$asProps2","render","_ref","SReferenceLine","Element","_this$asProps3","title","scale","color","resolveColor","styles","positionProps","createElement","Fragment","cn","_objectSpread2","ReferenceLine","Title","Component","_defineProperty2","props","_ref2","STitle","_titleSideToProps$pos","sstyles","sTitleStyles","concat","toFixed","className","Background","_ref3","SBackground","_default","exports"],"sources":["../../src/ReferenceLine.jsx"],"sourcesContent":["import React from 'react';\nimport { Component, sstyled } from '@semcore/core';\nimport createElement from './createElement';\nimport { scaleOfBandwidth } from './utils';\n\nimport style from './style/reference-line.shadow.css';\n\nconst side2direction = {\n left: 'vertical',\n right: 'vertical',\n top: 'horizontal',\n bottom: 'horizontal',\n};\n\nconst lineDirection2props = {\n vertical: ([xScale, yScale], value) => {\n const yRange = yScale.range();\n const x = scaleOfBandwidth(xScale, value);\n return {\n x1: x,\n x2: x,\n y1: yRange[0],\n y2: yRange[1],\n };\n },\n horizontal: ([xScale, yScale], value) => {\n const xRange = xScale.range();\n const y = scaleOfBandwidth(yScale, value);\n return {\n x1: xRange[0],\n x2: xRange[1],\n y1: y,\n y2: y,\n };\n },\n};\n\nconst rectDirection2props = {\n vertical: ([xScale, yScale], value) => {\n const yRange = yScale.range();\n const x = scaleOfBandwidth(xScale, value);\n return {\n x: x,\n y: yRange[1],\n width: 100,\n height: yRange[0] - yRange[1],\n };\n },\n horizontal: ([xScale, yScale], value) => {\n const xRange = xScale.range();\n const y = scaleOfBandwidth(yScale, value);\n return {\n x: xRange[0],\n y: y,\n width: xRange[1] - xRange[0],\n height: 100,\n };\n },\n};\n\nconst titleOffset = 10;\nconst titleSideToProps = {\n left: ([xScale, yScale], value) => {\n const yRange = yScale.range();\n const x = scaleOfBandwidth(xScale, value);\n return {\n x: x - titleOffset,\n y: (yRange[0] + yRange[1]) / 2,\n };\n },\n right: ([xScale, yScale], value) => {\n const yRange = yScale.range();\n const x = scaleOfBandwidth(xScale, value);\n return {\n x: x + titleOffset,\n y: (yRange[0] + yRange[1]) / 2,\n };\n },\n top: ([xScale, yScale], value) => {\n const xRange = xScale.range();\n const y = scaleOfBandwidth(yScale, value);\n return {\n x: (xRange[1] + xRange[0]) / 2,\n y: y - titleOffset,\n };\n },\n bottom: ([xScale, yScale], value) => {\n const xRange = xScale.range();\n const y = scaleOfBandwidth(yScale, value);\n return {\n x: (xRange[1] + xRange[0]) / 2,\n y: y + titleOffset,\n };\n },\n};\n\nclass ReferenceLineRoot extends Component {\n static displayName = 'ReferenceLine';\n static style = style;\n static defaultProps = {\n position: 'left',\n };\n\n getTitleProps() {\n const { position, value } = this.asProps;\n return { position, value };\n }\n\n getBackgroundProps() {\n const { position, value } = this.asProps;\n return { position, value };\n }\n\n render() {\n const SReferenceLine = this.Element;\n const { title, scale, position, value, color, resolveColor, styles } = this.asProps;\n const positionProps = lineDirection2props[side2direction[position]];\n\n return sstyled(styles)(\n <>\n <SReferenceLine\n render='line'\n __excludeProps={['data', 'scale', 'format', 'value', 'color']}\n stroke={resolveColor(color)}\n {...positionProps(scale, value)}\n />\n {title && <ReferenceLine.Title>{title}</ReferenceLine.Title>}\n </>,\n );\n }\n}\n\nfunction Title(props) {\n const { Element: STitle, styles, scale, position, value } = props;\n const { x, y } = titleSideToProps[position](scale, value);\n\n const sstyles = sstyled(styles);\n const sTitleStyles = sstyles.cn('STitle', {\n 'transform-origin': `${x.toFixed(2)}px ${y.toFixed(2)}px`,\n });\n\n return sstyled(styles)(\n <STitle\n render='text'\n childrenPosition='inside'\n className={sTitleStyles.className}\n style={sTitleStyles.style}\n position={position}\n x={x}\n y={y}\n />,\n );\n}\n\nfunction Background(props) {\n const { Element: SBackground, styles, scale, position, value } = props;\n const positionProps = rectDirection2props[side2direction[position]];\n\n return sstyled(styles)(\n <SBackground render='rect' childrenPosition='inside' {...positionProps(scale, value)} />,\n );\n}\n\nconst ReferenceLine = createElement(ReferenceLineRoot, {\n Title,\n Background,\n});\n\nexport default ReferenceLine;\n"],"mappings":"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"}
@@ -0,0 +1,116 @@
1
+ "use strict";
2
+
3
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports["default"] = void 0;
9
+ var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
10
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
11
+ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
12
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
13
+ var _assertThisInitialized2 = _interopRequireDefault(require("@babel/runtime/helpers/assertThisInitialized"));
14
+ var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
15
+ var _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper"));
16
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
17
+ var _core = _interopRequireWildcard(require("@semcore/core"));
18
+ var _react = _interopRequireDefault(require("react"));
19
+ var _flexBox = require("@semcore/flex-box");
20
+ var _rafTrottle = _interopRequireDefault(require("@semcore/utils/lib/rafTrottle"));
21
+ var _fire = _interopRequireDefault(require("@semcore/utils/lib/fire"));
22
+ var _getOriginChildren = _interopRequireDefault(require("@semcore/utils/lib/getOriginChildren"));
23
+ var _canUseDOM = _interopRequireDefault(require("@semcore/utils/lib/canUseDOM"));
24
+ var ResponsiveContainerRoot = /*#__PURE__*/function (_Component) {
25
+ (0, _inherits2["default"])(ResponsiveContainerRoot, _Component);
26
+ var _super = (0, _createSuper2["default"])(ResponsiveContainerRoot);
27
+ function ResponsiveContainerRoot(props) {
28
+ var _this;
29
+ (0, _classCallCheck2["default"])(this, ResponsiveContainerRoot);
30
+ _this = _super.call(this, props);
31
+ (0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "containerRef", /*#__PURE__*/_react["default"].createRef());
32
+ (0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "size", [0, 0]);
33
+ (0, _defineProperty2["default"])((0, _assertThisInitialized2["default"])(_this), "handleResize", (0, _rafTrottle["default"])(function (entries) {
34
+ var _this$asProps = _this.asProps,
35
+ Children = _this$asProps.Children,
36
+ aspect = _this$asProps.aspect;
37
+ if (!_this.$container) return;
38
+ var _this$$container = _this.$container,
39
+ width = _this$$container.clientWidth,
40
+ height = _this$$container.clientHeight;
41
+ if (aspect) {
42
+ var style = window.getComputedStyle(_this.$container);
43
+ var minHeight = Number.parseInt(style.getPropertyValue('min-height'));
44
+ var maxHeight = Number.parseInt(style.getPropertyValue('max-height'));
45
+ height = width * aspect;
46
+ if (height < minHeight) {
47
+ height = minHeight;
48
+ }
49
+ if (height > maxHeight) {
50
+ height = maxHeight;
51
+ }
52
+ }
53
+ if (_this.size[0] === width && _this.size[1] === height) return;
54
+ _this.size = [width, height];
55
+ (0, _fire["default"])((0, _assertThisInitialized2["default"])(_this), 'onResize', _this.size, entries);
56
+ if (typeof (0, _getOriginChildren["default"])(Children) === 'function') {
57
+ _this.forceUpdate();
58
+ }
59
+ }));
60
+ if ((0, _canUseDOM["default"])()) {
61
+ _this.observer = new ResizeObserver(_this.handleResize);
62
+ }
63
+ return _this;
64
+ }
65
+ (0, _createClass2["default"])(ResponsiveContainerRoot, [{
66
+ key: "$container",
67
+ get: function get() {
68
+ return this.containerRef.current;
69
+ }
70
+ }, {
71
+ key: "setContext",
72
+ value: function setContext() {
73
+ var _this$size = (0, _slicedToArray2["default"])(this.size, 2),
74
+ width = _this$size[0],
75
+ height = _this$size[1];
76
+ return {
77
+ width: width,
78
+ height: height
79
+ };
80
+ }
81
+ }, {
82
+ key: "componentDidMount",
83
+ value: function componentDidMount() {
84
+ if (this.$container) {
85
+ var _this$observer;
86
+ // TODO: may be we can increase perfomance here? (by lsroman)
87
+ (_this$observer = this.observer) === null || _this$observer === void 0 ? void 0 : _this$observer.observe(this.$container);
88
+ }
89
+ }
90
+
91
+ // TODO component did update ref?
92
+ }, {
93
+ key: "componentWillUnmount",
94
+ value: function componentWillUnmount() {
95
+ var _this$observer2;
96
+ (_this$observer2 = this.observer) === null || _this$observer2 === void 0 ? void 0 : _this$observer2.disconnect();
97
+ }
98
+ }, {
99
+ key: "render",
100
+ value: function render() {
101
+ var _ref = this.asProps,
102
+ _ref2;
103
+ var SResponsiveContainer = _flexBox.Box;
104
+ var styles = this.asProps.styles;
105
+ return _ref2 = (0, _core.sstyled)(styles), /*#__PURE__*/_react["default"].createElement(SResponsiveContainer, _ref2.cn("SResponsiveContainer", (0, _objectSpread2["default"])({}, (0, _core.assignProps)({
106
+ "ref": this.containerRef
107
+ }, _ref))));
108
+ }
109
+ }]);
110
+ return ResponsiveContainerRoot;
111
+ }(_core.Component);
112
+ (0, _defineProperty2["default"])(ResponsiveContainerRoot, "displayName", 'ResponsiveContainer');
113
+ var ResponsiveContainer = (0, _core["default"])(ResponsiveContainerRoot);
114
+ var _default = ResponsiveContainer;
115
+ exports["default"] = _default;
116
+ //# sourceMappingURL=ResponsiveContainer.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ResponsiveContainer.js","names":["_core","_interopRequireWildcard","require","_react","_interopRequireDefault","_flexBox","_rafTrottle","_fire","_getOriginChildren","_canUseDOM","ResponsiveContainerRoot","_Component","_inherits2","_super","_createSuper2","props","_this","_classCallCheck2","call","_defineProperty2","_assertThisInitialized2","React","createRef","trottle","entries","_this$asProps","asProps","Children","aspect","$container","_this$$container","width","clientWidth","height","clientHeight","style","window","getComputedStyle","minHeight","Number","parseInt","getPropertyValue","maxHeight","size","fire","getOriginChildren","forceUpdate","canUseDOM","observer","ResizeObserver","handleResize","_createClass2","key","get","containerRef","current","value","setContext","_this$size","_slicedToArray2","componentDidMount","_this$observer","observe","componentWillUnmount","_this$observer2","disconnect","render","_ref","_ref2","SResponsiveContainer","Box","styles","sstyled","createElement","cn","_objectSpread2","assignProps","Component","ResponsiveContainer","createComponent","_default","exports"],"sources":["../../src/ResponsiveContainer.jsx"],"sourcesContent":["import React from 'react';\nimport createComponent, { Component, Root, sstyled } from '@semcore/core';\nimport { Box } from '@semcore/flex-box';\nimport trottle from '@semcore/utils/lib/rafTrottle';\nimport fire from '@semcore/utils/lib/fire';\nimport getOriginChildren from '@semcore/utils/lib/getOriginChildren';\nimport canUseDOM from '@semcore/utils/lib/canUseDOM';\n\nclass ResponsiveContainerRoot extends Component {\n static displayName = 'ResponsiveContainer';\n\n containerRef = React.createRef();\n size = [0, 0];\n\n constructor(props) {\n super(props);\n if (canUseDOM()) {\n this.observer = new ResizeObserver(this.handleResize);\n }\n }\n\n get $container() {\n return this.containerRef.current;\n }\n\n handleResize = trottle((entries) => {\n const { Children, aspect } = this.asProps;\n\n if (!this.$container) return;\n\n let { clientWidth: width, clientHeight: height } = this.$container;\n\n if (aspect) {\n const style = window.getComputedStyle(this.$container);\n const minHeight = Number.parseInt(style.getPropertyValue('min-height'));\n const maxHeight = Number.parseInt(style.getPropertyValue('max-height'));\n height = width * aspect;\n\n if (height < minHeight) {\n height = minHeight;\n }\n if (height > maxHeight) {\n height = maxHeight;\n }\n }\n\n if (this.size[0] === width && this.size[1] === height) return;\n\n this.size = [width, height];\n\n fire(this, 'onResize', this.size, entries);\n\n if (typeof getOriginChildren(Children) === 'function') {\n this.forceUpdate();\n }\n });\n\n setContext() {\n const [width, height] = this.size;\n return {\n width,\n height,\n };\n }\n\n componentDidMount() {\n if (this.$container) {\n // TODO: may be we can increase perfomance here? (by lsroman)\n this.observer?.observe(this.$container);\n }\n }\n\n // TODO component did update ref?\n\n componentWillUnmount() {\n this.observer?.disconnect();\n }\n\n render() {\n const SResponsiveContainer = Root;\n const { styles } = this.asProps;\n return sstyled(styles)(<SResponsiveContainer render={Box} ref={this.containerRef} />);\n }\n}\n\nconst ResponsiveContainer = createComponent(ResponsiveContainerRoot);\n\nexport default ResponsiveContainer;\n"],"mappings":"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"}