intergalactic 15.87.0-prerelease.3 → 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 (3194) hide show
  1. package/core/Component.d.ts +152 -0
  2. package/core/enhancement/Children.d.ts +6 -0
  3. package/core/enhancement/Root.d.ts +6 -0
  4. package/core/enhancement/bindHandler.d.ts +5 -0
  5. package/core/enhancement/dataName.d.ts +4 -0
  6. package/core/enhancement/enhance.d.ts +5 -0
  7. package/core/enhancement/functionDefaultProps.d.ts +8 -0
  8. package/core/enhancement/hoistProps.d.ts +10 -0
  9. package/core/enhancement/i18n.d.ts +4 -0
  10. package/core/enhancement/inheritedName.d.ts +8 -0
  11. package/core/enhancement/staticChildren.d.ts +13 -0
  12. package/core/enhancement/style.d.ts +9 -0
  13. package/core/enhancement/uncontrolledProps.d.ts +7 -0
  14. package/core/lib/cjs/Component.js +58 -0
  15. package/core/lib/cjs/Component.js.map +1 -0
  16. package/core/lib/cjs/enhancement/Children.js +121 -0
  17. package/core/lib/cjs/enhancement/Children.js.map +1 -0
  18. package/core/lib/cjs/enhancement/Root.js +78 -0
  19. package/core/lib/cjs/enhancement/Root.js.map +1 -0
  20. package/core/lib/cjs/enhancement/bindHandler.js +54 -0
  21. package/core/lib/cjs/enhancement/bindHandler.js.map +1 -0
  22. package/core/lib/cjs/enhancement/dataName.js +20 -0
  23. package/core/lib/cjs/enhancement/dataName.js.map +1 -0
  24. package/core/lib/cjs/enhancement/enhance.js +22 -0
  25. package/core/lib/cjs/enhancement/enhance.js.map +1 -0
  26. package/core/lib/cjs/enhancement/functionDefaultProps.js +36 -0
  27. package/core/lib/cjs/enhancement/functionDefaultProps.js.map +1 -0
  28. package/core/lib/cjs/enhancement/hoistProps.js +102 -0
  29. package/core/lib/cjs/enhancement/hoistProps.js.map +1 -0
  30. package/core/lib/cjs/enhancement/i18n.js +28 -0
  31. package/core/lib/cjs/enhancement/i18n.js.map +1 -0
  32. package/core/lib/cjs/enhancement/inheritedName.js +24 -0
  33. package/core/lib/cjs/enhancement/inheritedName.js.map +1 -0
  34. package/core/lib/cjs/enhancement/staticChildren.js +141 -0
  35. package/core/lib/cjs/enhancement/staticChildren.js.map +1 -0
  36. package/core/lib/cjs/enhancement/style.js +60 -0
  37. package/core/lib/cjs/enhancement/style.js.map +1 -0
  38. package/core/lib/cjs/enhancement/uncontrolledProps.js +135 -0
  39. package/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -0
  40. package/core/lib/cjs/register.js +37 -0
  41. package/core/lib/cjs/register.js.map +1 -0
  42. package/core/lib/cjs/reshadow.d.js +2 -0
  43. package/core/lib/cjs/reshadow.d.js.map +1 -0
  44. package/core/lib/cjs/styled/index.js +54 -0
  45. package/core/lib/cjs/styled/index.js.map +1 -0
  46. package/core/lib/cjs/styled/sstyled.js +150 -0
  47. package/core/lib/cjs/styled/sstyled.js.map +1 -0
  48. package/core/lib/es6/Component.js +50 -0
  49. package/core/lib/es6/Component.js.map +1 -0
  50. package/core/lib/es6/enhancement/Children.js +112 -0
  51. package/core/lib/es6/enhancement/Children.js.map +1 -0
  52. package/core/lib/es6/enhancement/Root.js +72 -0
  53. package/core/lib/es6/enhancement/Root.js.map +1 -0
  54. package/core/lib/es6/enhancement/bindHandler.js +47 -0
  55. package/core/lib/es6/enhancement/bindHandler.js.map +1 -0
  56. package/core/lib/es6/enhancement/dataName.js +12 -0
  57. package/core/lib/es6/enhancement/dataName.js.map +1 -0
  58. package/core/lib/es6/enhancement/enhance.js +15 -0
  59. package/core/lib/es6/enhancement/enhance.js.map +1 -0
  60. package/core/lib/es6/enhancement/functionDefaultProps.js +29 -0
  61. package/core/lib/es6/enhancement/functionDefaultProps.js.map +1 -0
  62. package/core/lib/es6/enhancement/hoistProps.js +90 -0
  63. package/core/lib/es6/enhancement/hoistProps.js.map +1 -0
  64. package/core/lib/es6/enhancement/i18n.js +21 -0
  65. package/core/lib/es6/enhancement/i18n.js.map +1 -0
  66. package/core/lib/es6/enhancement/inheritedName.js +15 -0
  67. package/core/lib/es6/enhancement/inheritedName.js.map +1 -0
  68. package/core/lib/es6/enhancement/staticChildren.js +126 -0
  69. package/core/lib/es6/enhancement/staticChildren.js.map +1 -0
  70. package/core/lib/es6/enhancement/style.js +52 -0
  71. package/core/lib/es6/enhancement/style.js.map +1 -0
  72. package/core/lib/es6/enhancement/uncontrolledProps.js +125 -0
  73. package/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -0
  74. package/core/lib/es6/register.js +29 -0
  75. package/core/lib/es6/register.js.map +1 -0
  76. package/core/lib/es6/reshadow.d.js +2 -0
  77. package/core/lib/es6/reshadow.d.js.map +1 -0
  78. package/core/lib/es6/styled/index.js +10 -0
  79. package/core/lib/es6/styled/index.js.map +1 -0
  80. package/core/lib/es6/styled/sstyled.js +143 -0
  81. package/core/lib/es6/styled/sstyled.js.map +1 -0
  82. package/core/lib/types/Component.d.ts +152 -0
  83. package/core/lib/types/enhancement/Children.d.ts +6 -0
  84. package/core/lib/types/enhancement/Root.d.ts +6 -0
  85. package/core/lib/types/enhancement/bindHandler.d.ts +5 -0
  86. package/core/lib/types/enhancement/dataName.d.ts +4 -0
  87. package/core/lib/types/enhancement/enhance.d.ts +5 -0
  88. package/core/lib/types/enhancement/functionDefaultProps.d.ts +8 -0
  89. package/core/lib/types/enhancement/hoistProps.d.ts +10 -0
  90. package/core/lib/types/enhancement/i18n.d.ts +4 -0
  91. package/core/lib/types/enhancement/inheritedName.d.ts +8 -0
  92. package/core/lib/types/enhancement/staticChildren.d.ts +13 -0
  93. package/core/lib/types/enhancement/style.d.ts +9 -0
  94. package/core/lib/types/enhancement/uncontrolledProps.d.ts +7 -0
  95. package/core/lib/types/register.d.ts +8 -0
  96. package/core/lib/types/styled/index.d.ts +14 -0
  97. package/core/lib/types/styled/sstyled.d.ts +17 -0
  98. package/core/register.d.ts +8 -0
  99. package/core/styled/index.d.ts +14 -0
  100. package/core/styled/sstyled.d.ts +17 -0
  101. package/d3-chart/lib/cjs/ClipPath.js +94 -0
  102. package/d3-chart/lib/cjs/ClipPath.js.map +1 -0
  103. package/d3-chart/lib/es6/ClipPath.js +85 -0
  104. package/d3-chart/lib/es6/ClipPath.js.map +1 -0
  105. package/flags/lib/sprites/sprite@1x.png +0 -0
  106. package/flags/lib/sprites/sprite@2x.png +0 -0
  107. package/libs/accordion/lib/cjs/Accordion.js +229 -0
  108. package/libs/accordion/lib/cjs/Accordion.js.map +1 -0
  109. package/libs/accordion/lib/cjs/index.d.js +2 -0
  110. package/libs/accordion/lib/cjs/index.d.js.map +1 -0
  111. package/libs/accordion/lib/cjs/index.js +26 -0
  112. package/libs/accordion/lib/cjs/index.js.map +1 -0
  113. package/libs/accordion/lib/es6/Accordion.js +223 -0
  114. package/libs/accordion/lib/es6/Accordion.js.map +1 -0
  115. package/libs/accordion/lib/es6/index.d.js +2 -0
  116. package/libs/accordion/lib/es6/index.d.js.map +1 -0
  117. package/libs/accordion/lib/es6/index.js +3 -0
  118. package/libs/accordion/lib/es6/index.js.map +1 -0
  119. package/libs/accordion/lib/types/index.d.ts +95 -0
  120. package/libs/animation/lib/cjs/Animation.js +165 -0
  121. package/libs/animation/lib/cjs/Animation.js.map +1 -0
  122. package/libs/animation/lib/cjs/Collapse.js +103 -0
  123. package/libs/animation/lib/cjs/Collapse.js.map +1 -0
  124. package/libs/animation/lib/cjs/FadeInOut.js +53 -0
  125. package/libs/animation/lib/cjs/FadeInOut.js.map +1 -0
  126. package/libs/animation/lib/cjs/Scale.js +80 -0
  127. package/libs/animation/lib/cjs/Scale.js.map +1 -0
  128. package/libs/animation/lib/cjs/Slide.js +53 -0
  129. package/libs/animation/lib/cjs/Slide.js.map +1 -0
  130. package/libs/animation/lib/cjs/Transform.js +60 -0
  131. package/libs/animation/lib/cjs/Transform.js.map +1 -0
  132. package/libs/animation/lib/cjs/index.d.js +2 -0
  133. package/libs/animation/lib/cjs/index.d.js.map +1 -0
  134. package/libs/animation/lib/cjs/index.js +56 -0
  135. package/libs/animation/lib/cjs/index.js.map +1 -0
  136. package/libs/animation/lib/es6/Animation.js +157 -0
  137. package/libs/animation/lib/es6/Animation.js.map +1 -0
  138. package/libs/animation/lib/es6/Collapse.js +96 -0
  139. package/libs/animation/lib/es6/Collapse.js.map +1 -0
  140. package/libs/animation/lib/es6/FadeInOut.js +46 -0
  141. package/libs/animation/lib/es6/FadeInOut.js.map +1 -0
  142. package/libs/animation/lib/es6/Scale.js +73 -0
  143. package/libs/animation/lib/es6/Scale.js.map +1 -0
  144. package/libs/animation/lib/es6/Slide.js +46 -0
  145. package/libs/animation/lib/es6/Slide.js.map +1 -0
  146. package/libs/animation/lib/es6/Transform.js +53 -0
  147. package/libs/animation/lib/es6/Transform.js.map +1 -0
  148. package/libs/animation/lib/es6/index.d.js +2 -0
  149. package/libs/animation/lib/es6/index.d.js.map +1 -0
  150. package/libs/animation/lib/es6/index.js +7 -0
  151. package/libs/animation/lib/es6/index.js.map +1 -0
  152. package/libs/animation/lib/types/index.d.ts +103 -0
  153. package/libs/badge/lib/cjs/Badge.js +63 -0
  154. package/libs/badge/lib/cjs/Badge.js.map +1 -0
  155. package/libs/badge/lib/cjs/index.d.js +2 -0
  156. package/libs/badge/lib/cjs/index.d.js.map +1 -0
  157. package/libs/badge/lib/cjs/index.js +14 -0
  158. package/libs/badge/lib/cjs/index.js.map +1 -0
  159. package/libs/badge/lib/es6/Badge.js +56 -0
  160. package/libs/badge/lib/es6/Badge.js.map +1 -0
  161. package/libs/badge/lib/es6/index.d.js +2 -0
  162. package/libs/badge/lib/es6/index.d.js.map +1 -0
  163. package/libs/badge/lib/es6/index.js +2 -0
  164. package/libs/badge/lib/es6/index.js.map +1 -0
  165. package/libs/badge/lib/types/index.d.ts +20 -0
  166. package/libs/base-trigger/lib/cjs/BaseTrigger.js +128 -0
  167. package/libs/base-trigger/lib/cjs/BaseTrigger.js.map +1 -0
  168. package/libs/base-trigger/lib/cjs/ButtonTrigger.js +73 -0
  169. package/libs/base-trigger/lib/cjs/ButtonTrigger.js.map +1 -0
  170. package/libs/base-trigger/lib/cjs/FilterTrigger.js +159 -0
  171. package/libs/base-trigger/lib/cjs/FilterTrigger.js.map +1 -0
  172. package/libs/base-trigger/lib/cjs/LinkTrigger.js +113 -0
  173. package/libs/base-trigger/lib/cjs/LinkTrigger.js.map +1 -0
  174. package/libs/base-trigger/lib/cjs/index.d.js +2 -0
  175. package/libs/base-trigger/lib/cjs/index.d.js.map +1 -0
  176. package/libs/base-trigger/lib/cjs/index.js +35 -0
  177. package/libs/base-trigger/lib/cjs/index.js.map +1 -0
  178. package/libs/base-trigger/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  179. package/libs/base-trigger/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  180. package/libs/base-trigger/lib/cjs/translations/de.json +4 -0
  181. package/libs/base-trigger/lib/cjs/translations/en.json +4 -0
  182. package/libs/base-trigger/lib/cjs/translations/es.json +4 -0
  183. package/libs/base-trigger/lib/cjs/translations/fr.json +4 -0
  184. package/libs/base-trigger/lib/cjs/translations/it.json +4 -0
  185. package/libs/base-trigger/lib/cjs/translations/ja.json +4 -0
  186. package/libs/base-trigger/lib/cjs/translations/ko.json +4 -0
  187. package/libs/base-trigger/lib/cjs/translations/nl.json +4 -0
  188. package/libs/base-trigger/lib/cjs/translations/pl.json +4 -0
  189. package/libs/base-trigger/lib/cjs/translations/pt.json +4 -0
  190. package/libs/base-trigger/lib/cjs/translations/sv.json +4 -0
  191. package/libs/base-trigger/lib/cjs/translations/tr.json +4 -0
  192. package/libs/base-trigger/lib/cjs/translations/vi.json +4 -0
  193. package/libs/base-trigger/lib/cjs/translations/zh.json +4 -0
  194. package/libs/base-trigger/lib/es6/BaseTrigger.js +123 -0
  195. package/libs/base-trigger/lib/es6/BaseTrigger.js.map +1 -0
  196. package/libs/base-trigger/lib/es6/ButtonTrigger.js +66 -0
  197. package/libs/base-trigger/lib/es6/ButtonTrigger.js.map +1 -0
  198. package/libs/base-trigger/lib/es6/FilterTrigger.js +153 -0
  199. package/libs/base-trigger/lib/es6/FilterTrigger.js.map +1 -0
  200. package/libs/base-trigger/lib/es6/LinkTrigger.js +108 -0
  201. package/libs/base-trigger/lib/es6/LinkTrigger.js.map +1 -0
  202. package/libs/base-trigger/lib/es6/index.d.js +2 -0
  203. package/libs/base-trigger/lib/es6/index.d.js.map +1 -0
  204. package/libs/base-trigger/lib/es6/index.js +5 -0
  205. package/libs/base-trigger/lib/es6/index.js.map +1 -0
  206. package/libs/base-trigger/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  207. package/libs/base-trigger/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  208. package/libs/base-trigger/lib/es6/translations/de.json +4 -0
  209. package/libs/base-trigger/lib/es6/translations/en.json +4 -0
  210. package/libs/base-trigger/lib/es6/translations/es.json +4 -0
  211. package/libs/base-trigger/lib/es6/translations/fr.json +4 -0
  212. package/libs/base-trigger/lib/es6/translations/it.json +4 -0
  213. package/libs/base-trigger/lib/es6/translations/ja.json +4 -0
  214. package/libs/base-trigger/lib/es6/translations/ko.json +4 -0
  215. package/libs/base-trigger/lib/es6/translations/nl.json +4 -0
  216. package/libs/base-trigger/lib/es6/translations/pl.json +4 -0
  217. package/libs/base-trigger/lib/es6/translations/pt.json +4 -0
  218. package/libs/base-trigger/lib/es6/translations/sv.json +4 -0
  219. package/libs/base-trigger/lib/es6/translations/tr.json +4 -0
  220. package/libs/base-trigger/lib/es6/translations/vi.json +4 -0
  221. package/libs/base-trigger/lib/es6/translations/zh.json +4 -0
  222. package/libs/base-trigger/lib/types/index.d.ts +95 -0
  223. package/libs/breadcrumbs/lib/cjs/Breadcrumbs.js +116 -0
  224. package/libs/breadcrumbs/lib/cjs/Breadcrumbs.js.map +1 -0
  225. package/libs/breadcrumbs/lib/cjs/index.d.js +2 -0
  226. package/libs/breadcrumbs/lib/cjs/index.d.js.map +1 -0
  227. package/libs/breadcrumbs/lib/cjs/index.js +14 -0
  228. package/libs/breadcrumbs/lib/cjs/index.js.map +1 -0
  229. package/libs/breadcrumbs/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  230. package/libs/breadcrumbs/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  231. package/libs/breadcrumbs/lib/cjs/translations/de.json +3 -0
  232. package/libs/breadcrumbs/lib/cjs/translations/en.json +3 -0
  233. package/libs/breadcrumbs/lib/cjs/translations/es.json +3 -0
  234. package/libs/breadcrumbs/lib/cjs/translations/fr.json +3 -0
  235. package/libs/breadcrumbs/lib/cjs/translations/it.json +3 -0
  236. package/libs/breadcrumbs/lib/cjs/translations/ja.json +3 -0
  237. package/libs/breadcrumbs/lib/cjs/translations/ko.json +3 -0
  238. package/libs/breadcrumbs/lib/cjs/translations/nl.json +3 -0
  239. package/libs/breadcrumbs/lib/cjs/translations/pl.json +3 -0
  240. package/libs/breadcrumbs/lib/cjs/translations/pt.json +3 -0
  241. package/libs/breadcrumbs/lib/cjs/translations/sv.json +3 -0
  242. package/libs/breadcrumbs/lib/cjs/translations/tr.json +3 -0
  243. package/libs/breadcrumbs/lib/cjs/translations/vi.json +3 -0
  244. package/libs/breadcrumbs/lib/cjs/translations/zh.json +3 -0
  245. package/libs/breadcrumbs/lib/es6/Breadcrumbs.js +110 -0
  246. package/libs/breadcrumbs/lib/es6/Breadcrumbs.js.map +1 -0
  247. package/libs/breadcrumbs/lib/es6/index.d.js +2 -0
  248. package/libs/breadcrumbs/lib/es6/index.d.js.map +1 -0
  249. package/libs/breadcrumbs/lib/es6/index.js +2 -0
  250. package/libs/breadcrumbs/lib/es6/index.js.map +1 -0
  251. package/libs/breadcrumbs/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  252. package/libs/breadcrumbs/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  253. package/libs/breadcrumbs/lib/es6/translations/de.json +3 -0
  254. package/libs/breadcrumbs/lib/es6/translations/en.json +3 -0
  255. package/libs/breadcrumbs/lib/es6/translations/es.json +3 -0
  256. package/libs/breadcrumbs/lib/es6/translations/fr.json +3 -0
  257. package/libs/breadcrumbs/lib/es6/translations/it.json +3 -0
  258. package/libs/breadcrumbs/lib/es6/translations/ja.json +3 -0
  259. package/libs/breadcrumbs/lib/es6/translations/ko.json +3 -0
  260. package/libs/breadcrumbs/lib/es6/translations/nl.json +3 -0
  261. package/libs/breadcrumbs/lib/es6/translations/pl.json +3 -0
  262. package/libs/breadcrumbs/lib/es6/translations/pt.json +3 -0
  263. package/libs/breadcrumbs/lib/es6/translations/sv.json +3 -0
  264. package/libs/breadcrumbs/lib/es6/translations/tr.json +3 -0
  265. package/libs/breadcrumbs/lib/es6/translations/vi.json +3 -0
  266. package/libs/breadcrumbs/lib/es6/translations/zh.json +3 -0
  267. package/libs/breadcrumbs/lib/types/index.d.ts +34 -0
  268. package/libs/breakpoints/lib/cjs/Breakpoints.js +99 -0
  269. package/libs/breakpoints/lib/cjs/Breakpoints.js.map +1 -0
  270. package/libs/breakpoints/lib/cjs/index.d.js +2 -0
  271. package/libs/breakpoints/lib/cjs/index.d.js.map +1 -0
  272. package/libs/breakpoints/lib/cjs/index.js +26 -0
  273. package/libs/breakpoints/lib/cjs/index.js.map +1 -0
  274. package/libs/breakpoints/lib/es6/Breakpoints.js +88 -0
  275. package/libs/breakpoints/lib/es6/Breakpoints.js.map +1 -0
  276. package/libs/breakpoints/lib/es6/index.d.js +2 -0
  277. package/libs/breakpoints/lib/es6/index.d.js.map +1 -0
  278. package/libs/breakpoints/lib/es6/index.js +3 -0
  279. package/libs/breakpoints/lib/es6/index.js.map +1 -0
  280. package/libs/breakpoints/lib/types/index.d.ts +46 -0
  281. package/libs/button/lib/cjs/Button.js +178 -0
  282. package/libs/button/lib/cjs/Button.js.map +1 -0
  283. package/libs/button/lib/cjs/SpinButton.js +42 -0
  284. package/libs/button/lib/cjs/SpinButton.js.map +1 -0
  285. package/libs/button/lib/cjs/index.d.js +2 -0
  286. package/libs/button/lib/cjs/index.d.js.map +1 -0
  287. package/libs/button/lib/cjs/index.js +26 -0
  288. package/libs/button/lib/cjs/index.js.map +1 -0
  289. package/libs/button/lib/es6/Button.js +172 -0
  290. package/libs/button/lib/es6/Button.js.map +1 -0
  291. package/libs/button/lib/es6/SpinButton.js +32 -0
  292. package/libs/button/lib/es6/SpinButton.js.map +1 -0
  293. package/libs/button/lib/es6/index.d.js +2 -0
  294. package/libs/button/lib/es6/index.d.js.map +1 -0
  295. package/libs/button/lib/es6/index.js +3 -0
  296. package/libs/button/lib/es6/index.js.map +1 -0
  297. package/libs/button/lib/types/index.d.ts +62 -0
  298. package/libs/card/lib/cjs/Card.js +102 -0
  299. package/libs/card/lib/cjs/Card.js.map +1 -0
  300. package/libs/card/lib/cjs/index.d.js +2 -0
  301. package/libs/card/lib/cjs/index.d.js.map +1 -0
  302. package/libs/card/lib/cjs/index.js +14 -0
  303. package/libs/card/lib/cjs/index.js.map +1 -0
  304. package/libs/card/lib/es6/Card.js +99 -0
  305. package/libs/card/lib/es6/Card.js.map +1 -0
  306. package/libs/card/lib/es6/index.d.js +2 -0
  307. package/libs/card/lib/es6/index.d.js.map +1 -0
  308. package/libs/card/lib/es6/index.js +2 -0
  309. package/libs/card/lib/es6/index.js.map +1 -0
  310. package/libs/card/lib/types/index.d.ts +22 -0
  311. package/libs/carousel/lib/cjs/Carousel.js +692 -0
  312. package/libs/carousel/lib/cjs/Carousel.js.map +1 -0
  313. package/libs/carousel/lib/cjs/Carousel.types.js +2 -0
  314. package/libs/carousel/lib/cjs/Carousel.types.js.map +1 -0
  315. package/libs/carousel/lib/cjs/index.js +14 -0
  316. package/libs/carousel/lib/cjs/index.js.map +1 -0
  317. package/libs/carousel/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  318. package/libs/carousel/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  319. package/libs/carousel/lib/cjs/translations/de.json +4 -0
  320. package/libs/carousel/lib/cjs/translations/en.json +4 -0
  321. package/libs/carousel/lib/cjs/translations/es.json +4 -0
  322. package/libs/carousel/lib/cjs/translations/fr.json +4 -0
  323. package/libs/carousel/lib/cjs/translations/it.json +4 -0
  324. package/libs/carousel/lib/cjs/translations/ja.json +4 -0
  325. package/libs/carousel/lib/cjs/translations/ko.json +4 -0
  326. package/libs/carousel/lib/cjs/translations/nl.json +4 -0
  327. package/libs/carousel/lib/cjs/translations/pl.json +4 -0
  328. package/libs/carousel/lib/cjs/translations/pt.json +4 -0
  329. package/libs/carousel/lib/cjs/translations/sv.json +4 -0
  330. package/libs/carousel/lib/cjs/translations/tr.json +4 -0
  331. package/libs/carousel/lib/cjs/translations/vi.json +4 -0
  332. package/libs/carousel/lib/cjs/translations/zh.json +4 -0
  333. package/libs/carousel/lib/es6/Carousel.js +693 -0
  334. package/libs/carousel/lib/es6/Carousel.js.map +1 -0
  335. package/libs/carousel/lib/es6/Carousel.types.js +2 -0
  336. package/libs/carousel/lib/es6/Carousel.types.js.map +1 -0
  337. package/libs/carousel/lib/es6/index.js +2 -0
  338. package/libs/carousel/lib/es6/index.js.map +1 -0
  339. package/libs/carousel/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  340. package/libs/carousel/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  341. package/libs/carousel/lib/es6/translations/de.json +4 -0
  342. package/libs/carousel/lib/es6/translations/en.json +4 -0
  343. package/libs/carousel/lib/es6/translations/es.json +4 -0
  344. package/libs/carousel/lib/es6/translations/fr.json +4 -0
  345. package/libs/carousel/lib/es6/translations/it.json +4 -0
  346. package/libs/carousel/lib/es6/translations/ja.json +4 -0
  347. package/libs/carousel/lib/es6/translations/ko.json +4 -0
  348. package/libs/carousel/lib/es6/translations/nl.json +4 -0
  349. package/libs/carousel/lib/es6/translations/pl.json +4 -0
  350. package/libs/carousel/lib/es6/translations/pt.json +4 -0
  351. package/libs/carousel/lib/es6/translations/sv.json +4 -0
  352. package/libs/carousel/lib/es6/translations/tr.json +4 -0
  353. package/libs/carousel/lib/es6/translations/vi.json +4 -0
  354. package/libs/carousel/lib/es6/translations/zh.json +4 -0
  355. package/libs/checkbox/lib/cjs/Checkbox.js +298 -0
  356. package/libs/checkbox/lib/cjs/Checkbox.js.map +1 -0
  357. package/libs/checkbox/lib/cjs/index.d.js +2 -0
  358. package/libs/checkbox/lib/cjs/index.d.js.map +1 -0
  359. package/libs/checkbox/lib/cjs/index.js +26 -0
  360. package/libs/checkbox/lib/cjs/index.js.map +1 -0
  361. package/libs/checkbox/lib/es6/Checkbox.js +289 -0
  362. package/libs/checkbox/lib/es6/Checkbox.js.map +1 -0
  363. package/libs/checkbox/lib/es6/index.d.js +2 -0
  364. package/libs/checkbox/lib/es6/index.d.js.map +1 -0
  365. package/libs/checkbox/lib/es6/index.js +3 -0
  366. package/libs/checkbox/lib/es6/index.js.map +1 -0
  367. package/libs/checkbox/lib/types/index.d.ts +106 -0
  368. package/libs/color-picker/lib/cjs/ColorPicker.js +250 -0
  369. package/libs/color-picker/lib/cjs/ColorPicker.js.map +1 -0
  370. package/libs/color-picker/lib/cjs/PaletteManager.js +166 -0
  371. package/libs/color-picker/lib/cjs/PaletteManager.js.map +1 -0
  372. package/libs/color-picker/lib/cjs/components/InputColor.js +190 -0
  373. package/libs/color-picker/lib/cjs/components/InputColor.js.map +1 -0
  374. package/libs/color-picker/lib/cjs/components/Item.js +61 -0
  375. package/libs/color-picker/lib/cjs/components/Item.js.map +1 -0
  376. package/libs/color-picker/lib/cjs/components/colors.js +59 -0
  377. package/libs/color-picker/lib/cjs/components/colors.js.map +1 -0
  378. package/libs/color-picker/lib/cjs/components/index.js +40 -0
  379. package/libs/color-picker/lib/cjs/components/index.js.map +1 -0
  380. package/libs/color-picker/lib/cjs/index.d.js +2 -0
  381. package/libs/color-picker/lib/cjs/index.d.js.map +1 -0
  382. package/libs/color-picker/lib/cjs/index.js +26 -0
  383. package/libs/color-picker/lib/cjs/index.js.map +1 -0
  384. package/libs/color-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  385. package/libs/color-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  386. package/libs/color-picker/lib/cjs/translations/de.json +13 -0
  387. package/libs/color-picker/lib/cjs/translations/en.json +13 -0
  388. package/libs/color-picker/lib/cjs/translations/es.json +13 -0
  389. package/libs/color-picker/lib/cjs/translations/fr.json +13 -0
  390. package/libs/color-picker/lib/cjs/translations/it.json +13 -0
  391. package/libs/color-picker/lib/cjs/translations/ja.json +13 -0
  392. package/libs/color-picker/lib/cjs/translations/ko.json +13 -0
  393. package/libs/color-picker/lib/cjs/translations/nl.json +13 -0
  394. package/libs/color-picker/lib/cjs/translations/pl.json +13 -0
  395. package/libs/color-picker/lib/cjs/translations/pt.json +13 -0
  396. package/libs/color-picker/lib/cjs/translations/sv.json +13 -0
  397. package/libs/color-picker/lib/cjs/translations/tr.json +13 -0
  398. package/libs/color-picker/lib/cjs/translations/vi.json +13 -0
  399. package/libs/color-picker/lib/cjs/translations/zh.json +13 -0
  400. package/libs/color-picker/lib/es6/ColorPicker.js +242 -0
  401. package/libs/color-picker/lib/es6/ColorPicker.js.map +1 -0
  402. package/libs/color-picker/lib/es6/PaletteManager.js +159 -0
  403. package/libs/color-picker/lib/es6/PaletteManager.js.map +1 -0
  404. package/libs/color-picker/lib/es6/components/InputColor.js +183 -0
  405. package/libs/color-picker/lib/es6/components/InputColor.js.map +1 -0
  406. package/libs/color-picker/lib/es6/components/Item.js +55 -0
  407. package/libs/color-picker/lib/es6/components/Item.js.map +1 -0
  408. package/libs/color-picker/lib/es6/components/colors.js +52 -0
  409. package/libs/color-picker/lib/es6/components/colors.js.map +1 -0
  410. package/libs/color-picker/lib/es6/components/index.js +4 -0
  411. package/libs/color-picker/lib/es6/components/index.js.map +1 -0
  412. package/libs/color-picker/lib/es6/index.d.js +2 -0
  413. package/libs/color-picker/lib/es6/index.d.js.map +1 -0
  414. package/libs/color-picker/lib/es6/index.js +3 -0
  415. package/libs/color-picker/lib/es6/index.js.map +1 -0
  416. package/libs/color-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  417. package/libs/color-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  418. package/libs/color-picker/lib/es6/translations/de.json +13 -0
  419. package/libs/color-picker/lib/es6/translations/en.json +13 -0
  420. package/libs/color-picker/lib/es6/translations/es.json +13 -0
  421. package/libs/color-picker/lib/es6/translations/fr.json +13 -0
  422. package/libs/color-picker/lib/es6/translations/it.json +13 -0
  423. package/libs/color-picker/lib/es6/translations/ja.json +13 -0
  424. package/libs/color-picker/lib/es6/translations/ko.json +13 -0
  425. package/libs/color-picker/lib/es6/translations/nl.json +13 -0
  426. package/libs/color-picker/lib/es6/translations/pl.json +13 -0
  427. package/libs/color-picker/lib/es6/translations/pt.json +13 -0
  428. package/libs/color-picker/lib/es6/translations/sv.json +13 -0
  429. package/libs/color-picker/lib/es6/translations/tr.json +13 -0
  430. package/libs/color-picker/lib/es6/translations/vi.json +13 -0
  431. package/libs/color-picker/lib/es6/translations/zh.json +13 -0
  432. package/libs/color-picker/lib/types/ColorPicker.d.ts +28 -0
  433. package/libs/color-picker/lib/types/PaletteManager.d.ts +253 -0
  434. package/libs/color-picker/lib/types/components/InputColor.d.ts +3 -0
  435. package/libs/color-picker/lib/types/components/Item.d.ts +18 -0
  436. package/libs/color-picker/lib/types/components/colors.d.ts +15 -0
  437. package/libs/color-picker/lib/types/components/index.d.ts +3 -0
  438. package/libs/color-picker/lib/types/translations/__intergalactic-dynamic-locales.d.ts +184 -0
  439. package/libs/core/lib/cjs/Component.js +54 -0
  440. package/libs/core/lib/cjs/Component.js.map +1 -0
  441. package/libs/core/lib/cjs/enhancement/Children.js +121 -0
  442. package/libs/core/lib/cjs/enhancement/Children.js.map +1 -0
  443. package/libs/core/lib/cjs/enhancement/Root.js +78 -0
  444. package/libs/core/lib/cjs/enhancement/Root.js.map +1 -0
  445. package/libs/core/lib/cjs/enhancement/bindHandler.js +54 -0
  446. package/libs/core/lib/cjs/enhancement/bindHandler.js.map +1 -0
  447. package/libs/core/lib/cjs/enhancement/dataName.js +20 -0
  448. package/libs/core/lib/cjs/enhancement/dataName.js.map +1 -0
  449. package/libs/core/lib/cjs/enhancement/enhance.js +22 -0
  450. package/libs/core/lib/cjs/enhancement/enhance.js.map +1 -0
  451. package/libs/core/lib/cjs/enhancement/functionDefaultProps.js +36 -0
  452. package/libs/core/lib/cjs/enhancement/functionDefaultProps.js.map +1 -0
  453. package/libs/core/lib/cjs/enhancement/hoistProps.js +102 -0
  454. package/libs/core/lib/cjs/enhancement/hoistProps.js.map +1 -0
  455. package/libs/core/lib/cjs/enhancement/i18n.js +28 -0
  456. package/libs/core/lib/cjs/enhancement/i18n.js.map +1 -0
  457. package/libs/core/lib/cjs/enhancement/inheritedName.js +24 -0
  458. package/libs/core/lib/cjs/enhancement/inheritedName.js.map +1 -0
  459. package/libs/core/lib/cjs/enhancement/staticChildren.js +141 -0
  460. package/libs/core/lib/cjs/enhancement/staticChildren.js.map +1 -0
  461. package/libs/core/lib/cjs/enhancement/style.js +60 -0
  462. package/libs/core/lib/cjs/enhancement/style.js.map +1 -0
  463. package/libs/core/lib/cjs/enhancement/uncontrolledProps.js +135 -0
  464. package/libs/core/lib/cjs/enhancement/uncontrolledProps.js.map +1 -0
  465. package/libs/core/lib/cjs/index.js +443 -0
  466. package/libs/core/lib/cjs/index.js.map +1 -0
  467. package/libs/core/lib/cjs/register.js +37 -0
  468. package/libs/core/lib/cjs/register.js.map +1 -0
  469. package/libs/core/lib/cjs/reshadow.d.js +2 -0
  470. package/libs/core/lib/cjs/reshadow.d.js.map +1 -0
  471. package/libs/core/lib/cjs/styled/index.js +54 -0
  472. package/libs/core/lib/cjs/styled/index.js.map +1 -0
  473. package/libs/core/lib/cjs/styled/sstyled.js +150 -0
  474. package/libs/core/lib/cjs/styled/sstyled.js.map +1 -0
  475. package/libs/core/lib/es6/Component.js +47 -0
  476. package/libs/core/lib/es6/Component.js.map +1 -0
  477. package/libs/core/lib/es6/enhancement/Children.js +112 -0
  478. package/libs/core/lib/es6/enhancement/Children.js.map +1 -0
  479. package/libs/core/lib/es6/enhancement/Root.js +72 -0
  480. package/libs/core/lib/es6/enhancement/Root.js.map +1 -0
  481. package/libs/core/lib/es6/enhancement/bindHandler.js +47 -0
  482. package/libs/core/lib/es6/enhancement/bindHandler.js.map +1 -0
  483. package/libs/core/lib/es6/enhancement/dataName.js +12 -0
  484. package/libs/core/lib/es6/enhancement/dataName.js.map +1 -0
  485. package/libs/core/lib/es6/enhancement/enhance.js +15 -0
  486. package/libs/core/lib/es6/enhancement/enhance.js.map +1 -0
  487. package/libs/core/lib/es6/enhancement/functionDefaultProps.js +29 -0
  488. package/libs/core/lib/es6/enhancement/functionDefaultProps.js.map +1 -0
  489. package/libs/core/lib/es6/enhancement/hoistProps.js +90 -0
  490. package/libs/core/lib/es6/enhancement/hoistProps.js.map +1 -0
  491. package/libs/core/lib/es6/enhancement/i18n.js +21 -0
  492. package/libs/core/lib/es6/enhancement/i18n.js.map +1 -0
  493. package/libs/core/lib/es6/enhancement/inheritedName.js +15 -0
  494. package/libs/core/lib/es6/enhancement/inheritedName.js.map +1 -0
  495. package/libs/core/lib/es6/enhancement/staticChildren.js +126 -0
  496. package/libs/core/lib/es6/enhancement/staticChildren.js.map +1 -0
  497. package/libs/core/lib/es6/enhancement/style.js +52 -0
  498. package/libs/core/lib/es6/enhancement/style.js.map +1 -0
  499. package/libs/core/lib/es6/enhancement/uncontrolledProps.js +125 -0
  500. package/libs/core/lib/es6/enhancement/uncontrolledProps.js.map +1 -0
  501. package/libs/core/lib/es6/index.js +357 -0
  502. package/libs/core/lib/es6/index.js.map +1 -0
  503. package/libs/core/lib/es6/register.js +29 -0
  504. package/libs/core/lib/es6/register.js.map +1 -0
  505. package/libs/core/lib/es6/reshadow.d.js +2 -0
  506. package/libs/core/lib/es6/reshadow.d.js.map +1 -0
  507. package/libs/core/lib/es6/styled/index.js +10 -0
  508. package/libs/core/lib/es6/styled/index.js.map +1 -0
  509. package/libs/core/lib/es6/styled/sstyled.js +143 -0
  510. package/libs/core/lib/es6/styled/sstyled.js.map +1 -0
  511. package/libs/core/lib/types/Component.d.ts +139 -0
  512. package/libs/core/lib/types/enhancement/Children.d.ts +6 -0
  513. package/libs/core/lib/types/enhancement/Root.d.ts +6 -0
  514. package/libs/core/lib/types/enhancement/bindHandler.d.ts +5 -0
  515. package/libs/core/lib/types/enhancement/dataName.d.ts +4 -0
  516. package/libs/core/lib/types/enhancement/enhance.d.ts +5 -0
  517. package/libs/core/lib/types/enhancement/functionDefaultProps.d.ts +8 -0
  518. package/libs/core/lib/types/enhancement/hoistProps.d.ts +10 -0
  519. package/libs/core/lib/types/enhancement/i18n.d.ts +4 -0
  520. package/libs/core/lib/types/enhancement/inheritedName.d.ts +8 -0
  521. package/libs/core/lib/types/enhancement/staticChildren.d.ts +13 -0
  522. package/libs/core/lib/types/enhancement/style.d.ts +9 -0
  523. package/libs/core/lib/types/enhancement/uncontrolledProps.d.ts +7 -0
  524. package/libs/core/lib/types/index.d.ts +41 -0
  525. package/libs/core/lib/types/register.d.ts +8 -0
  526. package/libs/core/lib/types/styled/index.d.ts +14 -0
  527. package/libs/core/lib/types/styled/sstyled.d.ts +17 -0
  528. package/libs/counter/lib/cjs/AnimatedNumber.js +76 -0
  529. package/libs/counter/lib/cjs/AnimatedNumber.js.map +1 -0
  530. package/libs/counter/lib/cjs/Counter.js +79 -0
  531. package/libs/counter/lib/cjs/Counter.js.map +1 -0
  532. package/libs/counter/lib/cjs/index.d.js +2 -0
  533. package/libs/counter/lib/cjs/index.d.js.map +1 -0
  534. package/libs/counter/lib/cjs/index.js +20 -0
  535. package/libs/counter/lib/cjs/index.js.map +1 -0
  536. package/libs/counter/lib/es6/AnimatedNumber.js +68 -0
  537. package/libs/counter/lib/es6/AnimatedNumber.js.map +1 -0
  538. package/libs/counter/lib/es6/Counter.js +60 -0
  539. package/libs/counter/lib/es6/Counter.js.map +1 -0
  540. package/libs/counter/lib/es6/index.d.js +2 -0
  541. package/libs/counter/lib/es6/index.d.js.map +1 -0
  542. package/libs/counter/lib/es6/index.js +2 -0
  543. package/libs/counter/lib/es6/index.js.map +1 -0
  544. package/libs/counter/lib/types/index.d.ts +32 -0
  545. package/libs/d3-chart/lib/cjs/Area.js +236 -0
  546. package/libs/d3-chart/lib/cjs/Area.js.map +1 -0
  547. package/libs/d3-chart/lib/cjs/Axis.js +468 -0
  548. package/libs/d3-chart/lib/cjs/Axis.js.map +1 -0
  549. package/libs/d3-chart/lib/cjs/Bar.js +221 -0
  550. package/libs/d3-chart/lib/cjs/Bar.js.map +1 -0
  551. package/libs/d3-chart/lib/cjs/Bubble.js +235 -0
  552. package/libs/d3-chart/lib/cjs/Bubble.js.map +1 -0
  553. package/libs/d3-chart/lib/cjs/ClipPath.js +94 -0
  554. package/libs/d3-chart/lib/cjs/ClipPath.js.map +1 -0
  555. package/libs/d3-chart/lib/cjs/Donut.js +490 -0
  556. package/libs/d3-chart/lib/cjs/Donut.js.map +1 -0
  557. package/libs/d3-chart/lib/cjs/Dots.js +116 -0
  558. package/libs/d3-chart/lib/cjs/Dots.js.map +1 -0
  559. package/libs/d3-chart/lib/cjs/GroupBar.js +111 -0
  560. package/libs/d3-chart/lib/cjs/GroupBar.js.map +1 -0
  561. package/libs/d3-chart/lib/cjs/HorizontalBar.js +200 -0
  562. package/libs/d3-chart/lib/cjs/HorizontalBar.js.map +1 -0
  563. package/libs/d3-chart/lib/cjs/Hover.js +252 -0
  564. package/libs/d3-chart/lib/cjs/Hover.js.map +1 -0
  565. package/libs/d3-chart/lib/cjs/Line.js +231 -0
  566. package/libs/d3-chart/lib/cjs/Line.js.map +1 -0
  567. package/libs/d3-chart/lib/cjs/Plot.js +155 -0
  568. package/libs/d3-chart/lib/cjs/Plot.js.map +1 -0
  569. package/libs/d3-chart/lib/cjs/Radar.js +817 -0
  570. package/libs/d3-chart/lib/cjs/Radar.js.map +1 -0
  571. package/libs/d3-chart/lib/cjs/RadialTree.js +663 -0
  572. package/libs/d3-chart/lib/cjs/RadialTree.js.map +1 -0
  573. package/libs/d3-chart/lib/cjs/ReferenceLine.js +239 -0
  574. package/libs/d3-chart/lib/cjs/ReferenceLine.js.map +1 -0
  575. package/libs/d3-chart/lib/cjs/ResponsiveContainer.js +116 -0
  576. package/libs/d3-chart/lib/cjs/ResponsiveContainer.js.map +1 -0
  577. package/libs/d3-chart/lib/cjs/ScatterPlot.js +205 -0
  578. package/libs/d3-chart/lib/cjs/ScatterPlot.js.map +1 -0
  579. package/libs/d3-chart/lib/cjs/StackBar.js +197 -0
  580. package/libs/d3-chart/lib/cjs/StackBar.js.map +1 -0
  581. package/libs/d3-chart/lib/cjs/StackedArea.js +94 -0
  582. package/libs/d3-chart/lib/cjs/StackedArea.js.map +1 -0
  583. package/libs/d3-chart/lib/cjs/Tooltip.js +233 -0
  584. package/libs/d3-chart/lib/cjs/Tooltip.js.map +1 -0
  585. package/libs/d3-chart/lib/cjs/Venn.js +240 -0
  586. package/libs/d3-chart/lib/cjs/Venn.js.map +1 -0
  587. package/libs/d3-chart/lib/cjs/a11y/PlotA11yModule.js +133 -0
  588. package/libs/d3-chart/lib/cjs/a11y/PlotA11yModule.js.map +1 -0
  589. package/libs/d3-chart/lib/cjs/a11y/PlotA11yView.js +229 -0
  590. package/libs/d3-chart/lib/cjs/a11y/PlotA11yView.js.map +1 -0
  591. package/libs/d3-chart/lib/cjs/a11y/bezier.js +37 -0
  592. package/libs/d3-chart/lib/cjs/a11y/bezier.js.map +1 -0
  593. package/libs/d3-chart/lib/cjs/a11y/focus.js +45 -0
  594. package/libs/d3-chart/lib/cjs/a11y/focus.js.map +1 -0
  595. package/libs/d3-chart/lib/cjs/a11y/hints.js +128 -0
  596. package/libs/d3-chart/lib/cjs/a11y/hints.js.map +1 -0
  597. package/libs/d3-chart/lib/cjs/a11y/insights.js +722 -0
  598. package/libs/d3-chart/lib/cjs/a11y/insights.js.map +1 -0
  599. package/libs/d3-chart/lib/cjs/a11y/intl.js +22 -0
  600. package/libs/d3-chart/lib/cjs/a11y/intl.js.map +1 -0
  601. package/libs/d3-chart/lib/cjs/a11y/locale.js +49 -0
  602. package/libs/d3-chart/lib/cjs/a11y/locale.js.map +1 -0
  603. package/libs/d3-chart/lib/cjs/a11y/serialize.js +381 -0
  604. package/libs/d3-chart/lib/cjs/a11y/serialize.js.map +1 -0
  605. package/libs/d3-chart/lib/cjs/a11y/summarize.js +19 -0
  606. package/libs/d3-chart/lib/cjs/a11y/summarize.js.map +1 -0
  607. package/libs/d3-chart/lib/cjs/a11y/translations/module/__intergalactic-dynamic-locales.js +39 -0
  608. package/libs/d3-chart/lib/cjs/a11y/translations/module/__intergalactic-dynamic-locales.js.map +1 -0
  609. package/libs/d3-chart/lib/cjs/a11y/translations/module/de.json +5 -0
  610. package/libs/d3-chart/lib/cjs/a11y/translations/module/en.json +5 -0
  611. package/libs/d3-chart/lib/cjs/a11y/translations/module/es.json +5 -0
  612. package/libs/d3-chart/lib/cjs/a11y/translations/module/fr.json +5 -0
  613. package/libs/d3-chart/lib/cjs/a11y/translations/module/it.json +5 -0
  614. package/libs/d3-chart/lib/cjs/a11y/translations/module/ja.json +5 -0
  615. package/libs/d3-chart/lib/cjs/a11y/translations/module/ko.json +5 -0
  616. package/libs/d3-chart/lib/cjs/a11y/translations/module/nl.json +5 -0
  617. package/libs/d3-chart/lib/cjs/a11y/translations/module/pl.json +5 -0
  618. package/libs/d3-chart/lib/cjs/a11y/translations/module/pt.json +5 -0
  619. package/libs/d3-chart/lib/cjs/a11y/translations/module/sv.json +5 -0
  620. package/libs/d3-chart/lib/cjs/a11y/translations/module/tr.json +5 -0
  621. package/libs/d3-chart/lib/cjs/a11y/translations/module/vi.json +5 -0
  622. package/libs/d3-chart/lib/cjs/a11y/translations/module/zh.json +5 -0
  623. package/libs/d3-chart/lib/cjs/a11y/translations/view/__intergalactic-dynamic-locales.js +39 -0
  624. package/libs/d3-chart/lib/cjs/a11y/translations/view/__intergalactic-dynamic-locales.js.map +1 -0
  625. package/libs/d3-chart/lib/cjs/a11y/translations/view/de.json +43 -0
  626. package/libs/d3-chart/lib/cjs/a11y/translations/view/en.csv +42 -0
  627. package/libs/d3-chart/lib/cjs/a11y/translations/view/en.json +43 -0
  628. package/libs/d3-chart/lib/cjs/a11y/translations/view/es.json +43 -0
  629. package/libs/d3-chart/lib/cjs/a11y/translations/view/fr.json +43 -0
  630. package/libs/d3-chart/lib/cjs/a11y/translations/view/it.json +43 -0
  631. package/libs/d3-chart/lib/cjs/a11y/translations/view/ja.json +43 -0
  632. package/libs/d3-chart/lib/cjs/a11y/translations/view/ko.json +43 -0
  633. package/libs/d3-chart/lib/cjs/a11y/translations/view/nl.json +43 -0
  634. package/libs/d3-chart/lib/cjs/a11y/translations/view/pl.json +43 -0
  635. package/libs/d3-chart/lib/cjs/a11y/translations/view/pt.json +43 -0
  636. package/libs/d3-chart/lib/cjs/a11y/translations/view/sv.json +43 -0
  637. package/libs/d3-chart/lib/cjs/a11y/translations/view/tr.json +43 -0
  638. package/libs/d3-chart/lib/cjs/a11y/translations/view/vi.json +43 -0
  639. package/libs/d3-chart/lib/cjs/a11y/translations/view/zh.json +43 -0
  640. package/libs/d3-chart/lib/cjs/color.js +133 -0
  641. package/libs/d3-chart/lib/cjs/color.js.map +1 -0
  642. package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.js +420 -0
  643. package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.js.map +1 -0
  644. package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js +2 -0
  645. package/libs/d3-chart/lib/cjs/component/Chart/AbstractChart.type.js.map +1 -0
  646. package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.js +160 -0
  647. package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.js.map +1 -0
  648. package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.type.js +2 -0
  649. package/libs/d3-chart/lib/cjs/component/Chart/AreaChart.type.js.map +1 -0
  650. package/libs/d3-chart/lib/cjs/component/Chart/BarChart.js +253 -0
  651. package/libs/d3-chart/lib/cjs/component/Chart/BarChart.js.map +1 -0
  652. package/libs/d3-chart/lib/cjs/component/Chart/BarChart.type.js +2 -0
  653. package/libs/d3-chart/lib/cjs/component/Chart/BarChart.type.js.map +1 -0
  654. package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.js +145 -0
  655. package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.js.map +1 -0
  656. package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.type.js +2 -0
  657. package/libs/d3-chart/lib/cjs/component/Chart/BubbleChart.type.js.map +1 -0
  658. package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.js +117 -0
  659. package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.js.map +1 -0
  660. package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.type.js +2 -0
  661. package/libs/d3-chart/lib/cjs/component/Chart/DonutChart.type.js.map +1 -0
  662. package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.js +189 -0
  663. package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.js.map +1 -0
  664. package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.type.js +2 -0
  665. package/libs/d3-chart/lib/cjs/component/Chart/HistogramChart.type.js.map +1 -0
  666. package/libs/d3-chart/lib/cjs/component/Chart/LineChart.js +147 -0
  667. package/libs/d3-chart/lib/cjs/component/Chart/LineChart.js.map +1 -0
  668. package/libs/d3-chart/lib/cjs/component/Chart/LineChart.type.js +2 -0
  669. package/libs/d3-chart/lib/cjs/component/Chart/LineChart.type.js.map +1 -0
  670. package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.js +121 -0
  671. package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.js.map +1 -0
  672. package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.type.js +2 -0
  673. package/libs/d3-chart/lib/cjs/component/Chart/RadarChart.type.js.map +1 -0
  674. package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.js +159 -0
  675. package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.js.map +1 -0
  676. package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.type.js +2 -0
  677. package/libs/d3-chart/lib/cjs/component/Chart/ScatterPlotChart.type.js.map +1 -0
  678. package/libs/d3-chart/lib/cjs/component/Chart/VennChart.js +144 -0
  679. package/libs/d3-chart/lib/cjs/component/Chart/VennChart.js.map +1 -0
  680. package/libs/d3-chart/lib/cjs/component/Chart/VennChart.type.js +2 -0
  681. package/libs/d3-chart/lib/cjs/component/Chart/VennChart.type.js.map +1 -0
  682. package/libs/d3-chart/lib/cjs/component/Chart/index.js +28 -0
  683. package/libs/d3-chart/lib/cjs/component/Chart/index.js.map +1 -0
  684. package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js +108 -0
  685. package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.js.map +1 -0
  686. package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js +2 -0
  687. package/libs/d3-chart/lib/cjs/component/ChartLegend/BaseLegend.type.js.map +1 -0
  688. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js +93 -0
  689. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.js.map +1 -0
  690. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.type.js +2 -0
  691. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendFlex/LegendFlex.type.js.map +1 -0
  692. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js +233 -0
  693. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.js.map +1 -0
  694. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js +13 -0
  695. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -0
  696. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js +99 -0
  697. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.js.map +1 -0
  698. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.type.js +2 -0
  699. package/libs/d3-chart/lib/cjs/component/ChartLegend/LegendTable/LegendTable.type.js.map +1 -0
  700. package/libs/d3-chart/lib/cjs/component/ChartLegend/index.js +23 -0
  701. package/libs/d3-chart/lib/cjs/component/ChartLegend/index.js.map +1 -0
  702. package/libs/d3-chart/lib/cjs/createElement.d.js +2 -0
  703. package/libs/d3-chart/lib/cjs/createElement.d.js.map +1 -0
  704. package/libs/d3-chart/lib/cjs/createElement.js +128 -0
  705. package/libs/d3-chart/lib/cjs/createElement.js.map +1 -0
  706. package/libs/d3-chart/lib/cjs/index.js +206 -0
  707. package/libs/d3-chart/lib/cjs/index.js.map +1 -0
  708. package/libs/d3-chart/lib/cjs/style/var.css +125 -0
  709. package/libs/d3-chart/lib/cjs/translations/__intergalactic-dynamic-locales.js +37 -0
  710. package/libs/d3-chart/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  711. package/libs/d3-chart/lib/cjs/translations/de.json +3 -0
  712. package/libs/d3-chart/lib/cjs/translations/en.json +3 -0
  713. package/libs/d3-chart/lib/cjs/translations/es.json +3 -0
  714. package/libs/d3-chart/lib/cjs/translations/fr.json +3 -0
  715. package/libs/d3-chart/lib/cjs/translations/it.json +3 -0
  716. package/libs/d3-chart/lib/cjs/translations/ja.json +3 -0
  717. package/libs/d3-chart/lib/cjs/translations/ko.json +3 -0
  718. package/libs/d3-chart/lib/cjs/translations/nl.json +3 -0
  719. package/libs/d3-chart/lib/cjs/translations/pl.json +3 -0
  720. package/libs/d3-chart/lib/cjs/translations/pt.json +3 -0
  721. package/libs/d3-chart/lib/cjs/translations/sv.json +3 -0
  722. package/libs/d3-chart/lib/cjs/translations/tr.json +3 -0
  723. package/libs/d3-chart/lib/cjs/translations/vi.json +3 -0
  724. package/libs/d3-chart/lib/cjs/translations/zh.json +3 -0
  725. package/libs/d3-chart/lib/cjs/types/Area.d.js +2 -0
  726. package/libs/d3-chart/lib/cjs/types/Area.d.js.map +1 -0
  727. package/libs/d3-chart/lib/cjs/types/Axis.d.js +2 -0
  728. package/libs/d3-chart/lib/cjs/types/Axis.d.js.map +1 -0
  729. package/libs/d3-chart/lib/cjs/types/Bar.d.js +2 -0
  730. package/libs/d3-chart/lib/cjs/types/Bar.d.js.map +1 -0
  731. package/libs/d3-chart/lib/cjs/types/Bubble.d.js +2 -0
  732. package/libs/d3-chart/lib/cjs/types/Bubble.d.js.map +1 -0
  733. package/libs/d3-chart/lib/cjs/types/ClipPath.d.js +2 -0
  734. package/libs/d3-chart/lib/cjs/types/ClipPath.d.js.map +1 -0
  735. package/libs/d3-chart/lib/cjs/types/Donut.d.js +2 -0
  736. package/libs/d3-chart/lib/cjs/types/Donut.d.js.map +1 -0
  737. package/libs/d3-chart/lib/cjs/types/GroupBar.d.js +2 -0
  738. package/libs/d3-chart/lib/cjs/types/GroupBar.d.js.map +1 -0
  739. package/libs/d3-chart/lib/cjs/types/HorizontalBar.d.js +2 -0
  740. package/libs/d3-chart/lib/cjs/types/HorizontalBar.d.js.map +1 -0
  741. package/libs/d3-chart/lib/cjs/types/Hover.d.js +2 -0
  742. package/libs/d3-chart/lib/cjs/types/Hover.d.js.map +1 -0
  743. package/libs/d3-chart/lib/cjs/types/Line.d.js +2 -0
  744. package/libs/d3-chart/lib/cjs/types/Line.d.js.map +1 -0
  745. package/libs/d3-chart/lib/cjs/types/Plot.d.js +2 -0
  746. package/libs/d3-chart/lib/cjs/types/Plot.d.js.map +1 -0
  747. package/libs/d3-chart/lib/cjs/types/Radar.d.js +2 -0
  748. package/libs/d3-chart/lib/cjs/types/Radar.d.js.map +1 -0
  749. package/libs/d3-chart/lib/cjs/types/ReferenceLine.d.js +2 -0
  750. package/libs/d3-chart/lib/cjs/types/ReferenceLine.d.js.map +1 -0
  751. package/libs/d3-chart/lib/cjs/types/ResponsiveContainer.d.js +2 -0
  752. package/libs/d3-chart/lib/cjs/types/ResponsiveContainer.d.js.map +1 -0
  753. package/libs/d3-chart/lib/cjs/types/ScatterPlot.d.js +2 -0
  754. package/libs/d3-chart/lib/cjs/types/ScatterPlot.d.js.map +1 -0
  755. package/libs/d3-chart/lib/cjs/types/StackBar.d.js +2 -0
  756. package/libs/d3-chart/lib/cjs/types/StackBar.d.js.map +1 -0
  757. package/libs/d3-chart/lib/cjs/types/StackedArea.d.js +2 -0
  758. package/libs/d3-chart/lib/cjs/types/StackedArea.d.js.map +1 -0
  759. package/libs/d3-chart/lib/cjs/types/Tooltip.d.js +2 -0
  760. package/libs/d3-chart/lib/cjs/types/Tooltip.d.js.map +1 -0
  761. package/libs/d3-chart/lib/cjs/types/Venn.d.js +2 -0
  762. package/libs/d3-chart/lib/cjs/types/Venn.d.js.map +1 -0
  763. package/libs/d3-chart/lib/cjs/types/context.d.js +2 -0
  764. package/libs/d3-chart/lib/cjs/types/context.d.js.map +1 -0
  765. package/libs/d3-chart/lib/cjs/types/index.d.js +544 -0
  766. package/libs/d3-chart/lib/cjs/types/index.d.js.map +1 -0
  767. package/libs/d3-chart/lib/cjs/utils.js +211 -0
  768. package/libs/d3-chart/lib/cjs/utils.js.map +1 -0
  769. package/libs/d3-chart/lib/es6/Area.js +229 -0
  770. package/libs/d3-chart/lib/es6/Area.js.map +1 -0
  771. package/libs/d3-chart/lib/es6/Axis.js +461 -0
  772. package/libs/d3-chart/lib/es6/Axis.js.map +1 -0
  773. package/libs/d3-chart/lib/es6/Bar.js +213 -0
  774. package/libs/d3-chart/lib/es6/Bar.js.map +1 -0
  775. package/libs/d3-chart/lib/es6/Bubble.js +229 -0
  776. package/libs/d3-chart/lib/es6/Bubble.js.map +1 -0
  777. package/libs/d3-chart/lib/es6/ClipPath.js +85 -0
  778. package/libs/d3-chart/lib/es6/ClipPath.js.map +1 -0
  779. package/libs/d3-chart/lib/es6/Donut.js +484 -0
  780. package/libs/d3-chart/lib/es6/Donut.js.map +1 -0
  781. package/libs/d3-chart/lib/es6/Dots.js +109 -0
  782. package/libs/d3-chart/lib/es6/Dots.js.map +1 -0
  783. package/libs/d3-chart/lib/es6/GroupBar.js +103 -0
  784. package/libs/d3-chart/lib/es6/GroupBar.js.map +1 -0
  785. package/libs/d3-chart/lib/es6/HorizontalBar.js +192 -0
  786. package/libs/d3-chart/lib/es6/HorizontalBar.js.map +1 -0
  787. package/libs/d3-chart/lib/es6/Hover.js +247 -0
  788. package/libs/d3-chart/lib/es6/Hover.js.map +1 -0
  789. package/libs/d3-chart/lib/es6/Line.js +223 -0
  790. package/libs/d3-chart/lib/es6/Line.js.map +1 -0
  791. package/libs/d3-chart/lib/es6/Plot.js +148 -0
  792. package/libs/d3-chart/lib/es6/Plot.js.map +1 -0
  793. package/libs/d3-chart/lib/es6/Radar.js +809 -0
  794. package/libs/d3-chart/lib/es6/Radar.js.map +1 -0
  795. package/libs/d3-chart/lib/es6/RadialTree.js +656 -0
  796. package/libs/d3-chart/lib/es6/RadialTree.js.map +1 -0
  797. package/libs/d3-chart/lib/es6/ReferenceLine.js +232 -0
  798. package/libs/d3-chart/lib/es6/ReferenceLine.js.map +1 -0
  799. package/libs/d3-chart/lib/es6/ResponsiveContainer.js +108 -0
  800. package/libs/d3-chart/lib/es6/ResponsiveContainer.js.map +1 -0
  801. package/libs/d3-chart/lib/es6/ScatterPlot.js +199 -0
  802. package/libs/d3-chart/lib/es6/ScatterPlot.js.map +1 -0
  803. package/libs/d3-chart/lib/es6/StackBar.js +188 -0
  804. package/libs/d3-chart/lib/es6/StackBar.js.map +1 -0
  805. package/libs/d3-chart/lib/es6/StackedArea.js +86 -0
  806. package/libs/d3-chart/lib/es6/StackedArea.js.map +1 -0
  807. package/libs/d3-chart/lib/es6/Tooltip.js +230 -0
  808. package/libs/d3-chart/lib/es6/Tooltip.js.map +1 -0
  809. package/libs/d3-chart/lib/es6/Venn.js +234 -0
  810. package/libs/d3-chart/lib/es6/Venn.js.map +1 -0
  811. package/libs/d3-chart/lib/es6/a11y/PlotA11yModule.js +126 -0
  812. package/libs/d3-chart/lib/es6/a11y/PlotA11yModule.js.map +1 -0
  813. package/libs/d3-chart/lib/es6/a11y/PlotA11yView.js +223 -0
  814. package/libs/d3-chart/lib/es6/a11y/PlotA11yView.js.map +1 -0
  815. package/libs/d3-chart/lib/es6/a11y/bezier.js +30 -0
  816. package/libs/d3-chart/lib/es6/a11y/bezier.js.map +1 -0
  817. package/libs/d3-chart/lib/es6/a11y/focus.js +38 -0
  818. package/libs/d3-chart/lib/es6/a11y/focus.js.map +1 -0
  819. package/libs/d3-chart/lib/es6/a11y/hints.js +118 -0
  820. package/libs/d3-chart/lib/es6/a11y/hints.js.map +1 -0
  821. package/libs/d3-chart/lib/es6/a11y/insights.js +714 -0
  822. package/libs/d3-chart/lib/es6/a11y/insights.js.map +1 -0
  823. package/libs/d3-chart/lib/es6/a11y/intl.js +15 -0
  824. package/libs/d3-chart/lib/es6/a11y/intl.js.map +1 -0
  825. package/libs/d3-chart/lib/es6/a11y/locale.js +41 -0
  826. package/libs/d3-chart/lib/es6/a11y/locale.js.map +1 -0
  827. package/libs/d3-chart/lib/es6/a11y/serialize.js +372 -0
  828. package/libs/d3-chart/lib/es6/a11y/serialize.js.map +1 -0
  829. package/libs/d3-chart/lib/es6/a11y/summarize.js +12 -0
  830. package/libs/d3-chart/lib/es6/a11y/summarize.js.map +1 -0
  831. package/libs/d3-chart/lib/es6/a11y/translations/module/__intergalactic-dynamic-locales.js +31 -0
  832. package/libs/d3-chart/lib/es6/a11y/translations/module/__intergalactic-dynamic-locales.js.map +1 -0
  833. package/libs/d3-chart/lib/es6/a11y/translations/module/de.json +5 -0
  834. package/libs/d3-chart/lib/es6/a11y/translations/module/en.json +5 -0
  835. package/libs/d3-chart/lib/es6/a11y/translations/module/es.json +5 -0
  836. package/libs/d3-chart/lib/es6/a11y/translations/module/fr.json +5 -0
  837. package/libs/d3-chart/lib/es6/a11y/translations/module/it.json +5 -0
  838. package/libs/d3-chart/lib/es6/a11y/translations/module/ja.json +5 -0
  839. package/libs/d3-chart/lib/es6/a11y/translations/module/ko.json +5 -0
  840. package/libs/d3-chart/lib/es6/a11y/translations/module/nl.json +5 -0
  841. package/libs/d3-chart/lib/es6/a11y/translations/module/pl.json +5 -0
  842. package/libs/d3-chart/lib/es6/a11y/translations/module/pt.json +5 -0
  843. package/libs/d3-chart/lib/es6/a11y/translations/module/sv.json +5 -0
  844. package/libs/d3-chart/lib/es6/a11y/translations/module/tr.json +5 -0
  845. package/libs/d3-chart/lib/es6/a11y/translations/module/vi.json +5 -0
  846. package/libs/d3-chart/lib/es6/a11y/translations/module/zh.json +5 -0
  847. package/libs/d3-chart/lib/es6/a11y/translations/view/__intergalactic-dynamic-locales.js +31 -0
  848. package/libs/d3-chart/lib/es6/a11y/translations/view/__intergalactic-dynamic-locales.js.map +1 -0
  849. package/libs/d3-chart/lib/es6/a11y/translations/view/de.json +43 -0
  850. package/libs/d3-chart/lib/es6/a11y/translations/view/en.csv +42 -0
  851. package/libs/d3-chart/lib/es6/a11y/translations/view/en.json +43 -0
  852. package/libs/d3-chart/lib/es6/a11y/translations/view/es.json +43 -0
  853. package/libs/d3-chart/lib/es6/a11y/translations/view/fr.json +43 -0
  854. package/libs/d3-chart/lib/es6/a11y/translations/view/it.json +43 -0
  855. package/libs/d3-chart/lib/es6/a11y/translations/view/ja.json +43 -0
  856. package/libs/d3-chart/lib/es6/a11y/translations/view/ko.json +43 -0
  857. package/libs/d3-chart/lib/es6/a11y/translations/view/nl.json +43 -0
  858. package/libs/d3-chart/lib/es6/a11y/translations/view/pl.json +43 -0
  859. package/libs/d3-chart/lib/es6/a11y/translations/view/pt.json +43 -0
  860. package/libs/d3-chart/lib/es6/a11y/translations/view/sv.json +43 -0
  861. package/libs/d3-chart/lib/es6/a11y/translations/view/tr.json +43 -0
  862. package/libs/d3-chart/lib/es6/a11y/translations/view/vi.json +43 -0
  863. package/libs/d3-chart/lib/es6/a11y/translations/view/zh.json +43 -0
  864. package/libs/d3-chart/lib/es6/color.js +127 -0
  865. package/libs/d3-chart/lib/es6/color.js.map +1 -0
  866. package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.js +412 -0
  867. package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.js.map +1 -0
  868. package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.type.js +2 -0
  869. package/libs/d3-chart/lib/es6/component/Chart/AbstractChart.type.js.map +1 -0
  870. package/libs/d3-chart/lib/es6/component/Chart/AreaChart.js +152 -0
  871. package/libs/d3-chart/lib/es6/component/Chart/AreaChart.js.map +1 -0
  872. package/libs/d3-chart/lib/es6/component/Chart/AreaChart.type.js +2 -0
  873. package/libs/d3-chart/lib/es6/component/Chart/AreaChart.type.js.map +1 -0
  874. package/libs/d3-chart/lib/es6/component/Chart/BarChart.js +245 -0
  875. package/libs/d3-chart/lib/es6/component/Chart/BarChart.js.map +1 -0
  876. package/libs/d3-chart/lib/es6/component/Chart/BarChart.type.js +2 -0
  877. package/libs/d3-chart/lib/es6/component/Chart/BarChart.type.js.map +1 -0
  878. package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.js +137 -0
  879. package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.js.map +1 -0
  880. package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.type.js +2 -0
  881. package/libs/d3-chart/lib/es6/component/Chart/BubbleChart.type.js.map +1 -0
  882. package/libs/d3-chart/lib/es6/component/Chart/DonutChart.js +109 -0
  883. package/libs/d3-chart/lib/es6/component/Chart/DonutChart.js.map +1 -0
  884. package/libs/d3-chart/lib/es6/component/Chart/DonutChart.type.js +2 -0
  885. package/libs/d3-chart/lib/es6/component/Chart/DonutChart.type.js.map +1 -0
  886. package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.js +181 -0
  887. package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.js.map +1 -0
  888. package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.type.js +2 -0
  889. package/libs/d3-chart/lib/es6/component/Chart/HistogramChart.type.js.map +1 -0
  890. package/libs/d3-chart/lib/es6/component/Chart/LineChart.js +139 -0
  891. package/libs/d3-chart/lib/es6/component/Chart/LineChart.js.map +1 -0
  892. package/libs/d3-chart/lib/es6/component/Chart/LineChart.type.js +2 -0
  893. package/libs/d3-chart/lib/es6/component/Chart/LineChart.type.js.map +1 -0
  894. package/libs/d3-chart/lib/es6/component/Chart/RadarChart.js +113 -0
  895. package/libs/d3-chart/lib/es6/component/Chart/RadarChart.js.map +1 -0
  896. package/libs/d3-chart/lib/es6/component/Chart/RadarChart.type.js +2 -0
  897. package/libs/d3-chart/lib/es6/component/Chart/RadarChart.type.js.map +1 -0
  898. package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.js +151 -0
  899. package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.js.map +1 -0
  900. package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.type.js +2 -0
  901. package/libs/d3-chart/lib/es6/component/Chart/ScatterPlotChart.type.js.map +1 -0
  902. package/libs/d3-chart/lib/es6/component/Chart/VennChart.js +136 -0
  903. package/libs/d3-chart/lib/es6/component/Chart/VennChart.js.map +1 -0
  904. package/libs/d3-chart/lib/es6/component/Chart/VennChart.type.js +2 -0
  905. package/libs/d3-chart/lib/es6/component/Chart/VennChart.type.js.map +1 -0
  906. package/libs/d3-chart/lib/es6/component/Chart/index.js +21 -0
  907. package/libs/d3-chart/lib/es6/component/Chart/index.js.map +1 -0
  908. package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js +100 -0
  909. package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.js.map +1 -0
  910. package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js +2 -0
  911. package/libs/d3-chart/lib/es6/component/ChartLegend/BaseLegend.type.js.map +1 -0
  912. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js +86 -0
  913. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.js.map +1 -0
  914. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.type.js +2 -0
  915. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendFlex/LegendFlex.type.js.map +1 -0
  916. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js +231 -0
  917. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.js.map +1 -0
  918. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js +6 -0
  919. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendItem/LegendItem.type.js.map +1 -0
  920. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js +93 -0
  921. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.js.map +1 -0
  922. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.type.js +2 -0
  923. package/libs/d3-chart/lib/es6/component/ChartLegend/LegendTable/LegendTable.type.js.map +1 -0
  924. package/libs/d3-chart/lib/es6/component/ChartLegend/index.js +5 -0
  925. package/libs/d3-chart/lib/es6/component/ChartLegend/index.js.map +1 -0
  926. package/libs/d3-chart/lib/es6/createElement.d.js +2 -0
  927. package/libs/d3-chart/lib/es6/createElement.d.js.map +1 -0
  928. package/libs/d3-chart/lib/es6/createElement.js +119 -0
  929. package/libs/d3-chart/lib/es6/createElement.js.map +1 -0
  930. package/libs/d3-chart/lib/es6/index.js +25 -0
  931. package/libs/d3-chart/lib/es6/index.js.map +1 -0
  932. package/libs/d3-chart/lib/es6/style/var.css +125 -0
  933. package/libs/d3-chart/lib/es6/translations/__intergalactic-dynamic-locales.js +29 -0
  934. package/libs/d3-chart/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  935. package/libs/d3-chart/lib/es6/translations/de.json +3 -0
  936. package/libs/d3-chart/lib/es6/translations/en.json +3 -0
  937. package/libs/d3-chart/lib/es6/translations/es.json +3 -0
  938. package/libs/d3-chart/lib/es6/translations/fr.json +3 -0
  939. package/libs/d3-chart/lib/es6/translations/it.json +3 -0
  940. package/libs/d3-chart/lib/es6/translations/ja.json +3 -0
  941. package/libs/d3-chart/lib/es6/translations/ko.json +3 -0
  942. package/libs/d3-chart/lib/es6/translations/nl.json +3 -0
  943. package/libs/d3-chart/lib/es6/translations/pl.json +3 -0
  944. package/libs/d3-chart/lib/es6/translations/pt.json +3 -0
  945. package/libs/d3-chart/lib/es6/translations/sv.json +3 -0
  946. package/libs/d3-chart/lib/es6/translations/tr.json +3 -0
  947. package/libs/d3-chart/lib/es6/translations/vi.json +3 -0
  948. package/libs/d3-chart/lib/es6/translations/zh.json +3 -0
  949. package/libs/d3-chart/lib/es6/types/Area.d.js +2 -0
  950. package/libs/d3-chart/lib/es6/types/Area.d.js.map +1 -0
  951. package/libs/d3-chart/lib/es6/types/Axis.d.js +2 -0
  952. package/libs/d3-chart/lib/es6/types/Axis.d.js.map +1 -0
  953. package/libs/d3-chart/lib/es6/types/Bar.d.js +2 -0
  954. package/libs/d3-chart/lib/es6/types/Bar.d.js.map +1 -0
  955. package/libs/d3-chart/lib/es6/types/Bubble.d.js +2 -0
  956. package/libs/d3-chart/lib/es6/types/Bubble.d.js.map +1 -0
  957. package/libs/d3-chart/lib/es6/types/ClipPath.d.js +2 -0
  958. package/libs/d3-chart/lib/es6/types/ClipPath.d.js.map +1 -0
  959. package/libs/d3-chart/lib/es6/types/Donut.d.js +2 -0
  960. package/libs/d3-chart/lib/es6/types/Donut.d.js.map +1 -0
  961. package/libs/d3-chart/lib/es6/types/GroupBar.d.js +2 -0
  962. package/libs/d3-chart/lib/es6/types/GroupBar.d.js.map +1 -0
  963. package/libs/d3-chart/lib/es6/types/HorizontalBar.d.js +2 -0
  964. package/libs/d3-chart/lib/es6/types/HorizontalBar.d.js.map +1 -0
  965. package/libs/d3-chart/lib/es6/types/Hover.d.js +2 -0
  966. package/libs/d3-chart/lib/es6/types/Hover.d.js.map +1 -0
  967. package/libs/d3-chart/lib/es6/types/Line.d.js +2 -0
  968. package/libs/d3-chart/lib/es6/types/Line.d.js.map +1 -0
  969. package/libs/d3-chart/lib/es6/types/Plot.d.js +2 -0
  970. package/libs/d3-chart/lib/es6/types/Plot.d.js.map +1 -0
  971. package/libs/d3-chart/lib/es6/types/Radar.d.js +2 -0
  972. package/libs/d3-chart/lib/es6/types/Radar.d.js.map +1 -0
  973. package/libs/d3-chart/lib/es6/types/ReferenceLine.d.js +2 -0
  974. package/libs/d3-chart/lib/es6/types/ReferenceLine.d.js.map +1 -0
  975. package/libs/d3-chart/lib/es6/types/ResponsiveContainer.d.js +2 -0
  976. package/libs/d3-chart/lib/es6/types/ResponsiveContainer.d.js.map +1 -0
  977. package/libs/d3-chart/lib/es6/types/ScatterPlot.d.js +2 -0
  978. package/libs/d3-chart/lib/es6/types/ScatterPlot.d.js.map +1 -0
  979. package/libs/d3-chart/lib/es6/types/StackBar.d.js +2 -0
  980. package/libs/d3-chart/lib/es6/types/StackBar.d.js.map +1 -0
  981. package/libs/d3-chart/lib/es6/types/StackedArea.d.js +2 -0
  982. package/libs/d3-chart/lib/es6/types/StackedArea.d.js.map +1 -0
  983. package/libs/d3-chart/lib/es6/types/Tooltip.d.js +2 -0
  984. package/libs/d3-chart/lib/es6/types/Tooltip.d.js.map +1 -0
  985. package/libs/d3-chart/lib/es6/types/Venn.d.js +2 -0
  986. package/libs/d3-chart/lib/es6/types/Venn.d.js.map +1 -0
  987. package/libs/d3-chart/lib/es6/types/context.d.js +2 -0
  988. package/libs/d3-chart/lib/es6/types/context.d.js.map +1 -0
  989. package/libs/d3-chart/lib/es6/types/index.d.js +75 -0
  990. package/libs/d3-chart/lib/es6/types/index.d.js.map +1 -0
  991. package/libs/d3-chart/lib/es6/utils.js +189 -0
  992. package/libs/d3-chart/lib/es6/utils.js.map +1 -0
  993. package/libs/d3-chart/lib/types/Area.d.ts +61 -0
  994. package/libs/d3-chart/lib/types/Axis.d.ts +90 -0
  995. package/libs/d3-chart/lib/types/Bar.d.ts +80 -0
  996. package/libs/d3-chart/lib/types/Bubble.d.ts +53 -0
  997. package/libs/d3-chart/lib/types/ClipPath.d.ts +24 -0
  998. package/libs/d3-chart/lib/types/Donut.d.ts +67 -0
  999. package/libs/d3-chart/lib/types/GroupBar.d.ts +29 -0
  1000. package/libs/d3-chart/lib/types/HorizontalBar.d.ts +35 -0
  1001. package/libs/d3-chart/lib/types/Hover.d.ts +45 -0
  1002. package/libs/d3-chart/lib/types/Line.d.ts +83 -0
  1003. package/libs/d3-chart/lib/types/Plot.d.ts +118 -0
  1004. package/libs/d3-chart/lib/types/Radar.d.ts +145 -0
  1005. package/libs/d3-chart/lib/types/RadialTree.d.ts +240 -0
  1006. package/libs/d3-chart/lib/types/ReferenceLine.d.ts +45 -0
  1007. package/libs/d3-chart/lib/types/ResponsiveContainer.d.ts +29 -0
  1008. package/libs/d3-chart/lib/types/ScatterPlot.d.ts +46 -0
  1009. package/libs/d3-chart/lib/types/StackBar.d.ts +37 -0
  1010. package/libs/d3-chart/lib/types/StackedArea.d.ts +31 -0
  1011. package/libs/d3-chart/lib/types/Tooltip.d.ts +66 -0
  1012. package/libs/d3-chart/lib/types/Venn.d.ts +68 -0
  1013. package/libs/d3-chart/lib/types/a11y/PlotA11yModule.d.ts +12 -0
  1014. package/libs/d3-chart/lib/types/a11y/PlotA11yView.d.ts +3 -0
  1015. package/libs/d3-chart/lib/types/a11y/bezier.d.ts +8 -0
  1016. package/libs/d3-chart/lib/types/a11y/focus.d.ts +5 -0
  1017. package/libs/d3-chart/lib/types/a11y/hints.d.ts +79 -0
  1018. package/libs/d3-chart/lib/types/a11y/insights.d.ts +55 -0
  1019. package/libs/d3-chart/lib/types/a11y/intl.d.ts +8 -0
  1020. package/libs/d3-chart/lib/types/a11y/locale.d.ts +3 -0
  1021. package/libs/d3-chart/lib/types/a11y/serialize.d.ts +17 -0
  1022. package/libs/d3-chart/lib/types/a11y/summarize.d.ts +6 -0
  1023. package/libs/d3-chart/lib/types/a11y/translations/module/__intergalactic-dynamic-locales.d.ts +72 -0
  1024. package/libs/d3-chart/lib/types/a11y/translations/view/__intergalactic-dynamic-locales.d.ts +604 -0
  1025. package/libs/d3-chart/lib/types/component/Chart/AbstractChart.d.ts +50 -0
  1026. package/libs/d3-chart/lib/types/component/Chart/AbstractChart.type.d.ts +161 -0
  1027. package/libs/d3-chart/lib/types/component/Chart/AreaChart.d.ts +2 -0
  1028. package/libs/d3-chart/lib/types/component/Chart/AreaChart.type.d.ts +16 -0
  1029. package/libs/d3-chart/lib/types/component/Chart/BarChart.d.ts +2 -0
  1030. package/libs/d3-chart/lib/types/component/Chart/BarChart.type.d.ts +19 -0
  1031. package/libs/d3-chart/lib/types/component/Chart/BubbleChart.d.ts +2 -0
  1032. package/libs/d3-chart/lib/types/component/Chart/BubbleChart.type.d.ts +17 -0
  1033. package/libs/d3-chart/lib/types/component/Chart/DonutChart.d.ts +2 -0
  1034. package/libs/d3-chart/lib/types/component/Chart/DonutChart.type.d.ts +15 -0
  1035. package/libs/d3-chart/lib/types/component/Chart/HistogramChart.d.ts +2 -0
  1036. package/libs/d3-chart/lib/types/component/Chart/HistogramChart.type.d.ts +11 -0
  1037. package/libs/d3-chart/lib/types/component/Chart/LineChart.d.ts +2 -0
  1038. package/libs/d3-chart/lib/types/component/Chart/LineChart.type.d.ts +24 -0
  1039. package/libs/d3-chart/lib/types/component/Chart/RadarChart.d.ts +2 -0
  1040. package/libs/d3-chart/lib/types/component/Chart/RadarChart.type.d.ts +14 -0
  1041. package/libs/d3-chart/lib/types/component/Chart/ScatterPlotChart.d.ts +2 -0
  1042. package/libs/d3-chart/lib/types/component/Chart/ScatterPlotChart.type.d.ts +13 -0
  1043. package/libs/d3-chart/lib/types/component/Chart/VennChart.d.ts +2 -0
  1044. package/libs/d3-chart/lib/types/component/Chart/VennChart.type.d.ts +11 -0
  1045. package/libs/d3-chart/lib/types/component/Chart/index.d.ts +12 -0
  1046. package/libs/d3-chart/lib/types/component/ChartLegend/BaseLegend.d.ts +14 -0
  1047. package/libs/d3-chart/lib/types/component/ChartLegend/BaseLegend.type.d.ts +27 -0
  1048. package/libs/d3-chart/lib/types/component/ChartLegend/LegendFlex/LegendFlex.d.ts +2 -0
  1049. package/libs/d3-chart/lib/types/component/ChartLegend/LegendFlex/LegendFlex.type.d.ts +38 -0
  1050. package/libs/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.d.ts +2 -0
  1051. package/libs/d3-chart/lib/types/component/ChartLegend/LegendItem/LegendItem.type.d.ts +67 -0
  1052. package/libs/d3-chart/lib/types/component/ChartLegend/LegendTable/LegendTable.d.ts +2 -0
  1053. package/libs/d3-chart/lib/types/component/ChartLegend/LegendTable/LegendTable.type.d.ts +21 -0
  1054. package/libs/d3-chart/lib/types/component/ChartLegend/index.d.ts +4 -0
  1055. package/libs/d3-chart/lib/types/context.d.ts +18 -0
  1056. package/libs/d3-chart/lib/types/createElement.d.ts +2 -0
  1057. package/libs/d3-chart/lib/types/index.d.ts +94 -0
  1058. package/libs/d3-chart/lib/types/translations/__intergalactic-dynamic-locales.d.ts +41 -0
  1059. package/libs/d3-chart/lib/types/utils.d.ts +32 -0
  1060. package/libs/data-table/lib/cjs/Body.js +386 -0
  1061. package/libs/data-table/lib/cjs/Body.js.map +1 -0
  1062. package/libs/data-table/lib/cjs/DataTable.js +429 -0
  1063. package/libs/data-table/lib/cjs/DataTable.js.map +1 -0
  1064. package/libs/data-table/lib/cjs/Head.js +189 -0
  1065. package/libs/data-table/lib/cjs/Head.js.map +1 -0
  1066. package/libs/data-table/lib/cjs/index.js +26 -0
  1067. package/libs/data-table/lib/cjs/index.js.map +1 -0
  1068. package/libs/data-table/lib/cjs/types.js +4 -0
  1069. package/libs/data-table/lib/cjs/types.js.map +1 -0
  1070. package/libs/data-table/lib/cjs/utils.js +57 -0
  1071. package/libs/data-table/lib/cjs/utils.js.map +1 -0
  1072. package/libs/data-table/lib/es6/Body.js +379 -0
  1073. package/libs/data-table/lib/es6/Body.js.map +1 -0
  1074. package/libs/data-table/lib/es6/DataTable.js +422 -0
  1075. package/libs/data-table/lib/es6/DataTable.js.map +1 -0
  1076. package/libs/data-table/lib/es6/Head.js +183 -0
  1077. package/libs/data-table/lib/es6/Head.js.map +1 -0
  1078. package/libs/data-table/lib/es6/index.js +3 -0
  1079. package/libs/data-table/lib/es6/index.js.map +1 -0
  1080. package/libs/data-table/lib/es6/types.js +2 -0
  1081. package/libs/data-table/lib/es6/types.js.map +1 -0
  1082. package/libs/data-table/lib/es6/utils.js +48 -0
  1083. package/libs/data-table/lib/es6/utils.js.map +1 -0
  1084. package/libs/data-table/lib/types/Body.d.ts +46 -0
  1085. package/libs/data-table/lib/types/DataTable.d.ts +157 -0
  1086. package/libs/data-table/lib/types/Head.d.ts +25 -0
  1087. package/libs/data-table/lib/types/index.d.ts +2 -0
  1088. package/libs/data-table/lib/types/types.d.ts +71 -0
  1089. package/libs/data-table/lib/types/utils.d.ts +4 -0
  1090. package/libs/date-picker/lib/cjs/DatePicker.js +183 -0
  1091. package/libs/date-picker/lib/cjs/DatePicker.js.map +1 -0
  1092. package/libs/date-picker/lib/cjs/DateRangeComparator.js +188 -0
  1093. package/libs/date-picker/lib/cjs/DateRangeComparator.js.map +1 -0
  1094. package/libs/date-picker/lib/cjs/DateRangePicker.js +133 -0
  1095. package/libs/date-picker/lib/cjs/DateRangePicker.js.map +1 -0
  1096. package/libs/date-picker/lib/cjs/MonthDateRangeComparator.js +223 -0
  1097. package/libs/date-picker/lib/cjs/MonthDateRangeComparator.js.map +1 -0
  1098. package/libs/date-picker/lib/cjs/MonthPicker.js +122 -0
  1099. package/libs/date-picker/lib/cjs/MonthPicker.js.map +1 -0
  1100. package/libs/date-picker/lib/cjs/MonthRangePicker.js +147 -0
  1101. package/libs/date-picker/lib/cjs/MonthRangePicker.js.map +1 -0
  1102. package/libs/date-picker/lib/cjs/components/ButtonTrigger.js +32 -0
  1103. package/libs/date-picker/lib/cjs/components/ButtonTrigger.js.map +1 -0
  1104. package/libs/date-picker/lib/cjs/components/Calendar.js +413 -0
  1105. package/libs/date-picker/lib/cjs/components/Calendar.js.map +1 -0
  1106. package/libs/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js +584 -0
  1107. package/libs/date-picker/lib/cjs/components/DateRangeComparatorAbstract.js.map +1 -0
  1108. package/libs/date-picker/lib/cjs/components/InputTrigger.js +665 -0
  1109. package/libs/date-picker/lib/cjs/components/InputTrigger.js.map +1 -0
  1110. package/libs/date-picker/lib/cjs/components/PickerAbstract.js +250 -0
  1111. package/libs/date-picker/lib/cjs/components/PickerAbstract.js.map +1 -0
  1112. package/libs/date-picker/lib/cjs/components/RangePickerAbstract.js +406 -0
  1113. package/libs/date-picker/lib/cjs/components/RangePickerAbstract.js.map +1 -0
  1114. package/libs/date-picker/lib/cjs/components/index.js +175 -0
  1115. package/libs/date-picker/lib/cjs/components/index.js.map +1 -0
  1116. package/libs/date-picker/lib/cjs/index.d.js +2 -0
  1117. package/libs/date-picker/lib/cjs/index.d.js.map +1 -0
  1118. package/libs/date-picker/lib/cjs/index.js +53 -0
  1119. package/libs/date-picker/lib/cjs/index.js.map +1 -0
  1120. package/libs/date-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +41 -0
  1121. package/libs/date-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1122. package/libs/date-picker/lib/cjs/translations/de.json +16 -0
  1123. package/libs/date-picker/lib/cjs/translations/en.json +17 -0
  1124. package/libs/date-picker/lib/cjs/translations/es.json +16 -0
  1125. package/libs/date-picker/lib/cjs/translations/fr.json +16 -0
  1126. package/libs/date-picker/lib/cjs/translations/it.json +16 -0
  1127. package/libs/date-picker/lib/cjs/translations/ja.json +16 -0
  1128. package/libs/date-picker/lib/cjs/translations/ko.json +16 -0
  1129. package/libs/date-picker/lib/cjs/translations/nl.json +16 -0
  1130. package/libs/date-picker/lib/cjs/translations/pl.json +16 -0
  1131. package/libs/date-picker/lib/cjs/translations/pt.json +16 -0
  1132. package/libs/date-picker/lib/cjs/translations/ru.json +13 -0
  1133. package/libs/date-picker/lib/cjs/translations/sv.json +16 -0
  1134. package/libs/date-picker/lib/cjs/translations/tr.json +16 -0
  1135. package/libs/date-picker/lib/cjs/translations/vi.json +16 -0
  1136. package/libs/date-picker/lib/cjs/translations/zh.json +16 -0
  1137. package/libs/date-picker/lib/cjs/utils/cronTabScheduler.js +98 -0
  1138. package/libs/date-picker/lib/cjs/utils/cronTabScheduler.js.map +1 -0
  1139. package/libs/date-picker/lib/cjs/utils/formatDate.js +22 -0
  1140. package/libs/date-picker/lib/cjs/utils/formatDate.js.map +1 -0
  1141. package/libs/date-picker/lib/cjs/utils/includesDate.js +26 -0
  1142. package/libs/date-picker/lib/cjs/utils/includesDate.js.map +1 -0
  1143. package/libs/date-picker/lib/cjs/utils/shortDateRangeFormat.js +69 -0
  1144. package/libs/date-picker/lib/cjs/utils/shortDateRangeFormat.js.map +1 -0
  1145. package/libs/date-picker/lib/es6/DatePicker.js +174 -0
  1146. package/libs/date-picker/lib/es6/DatePicker.js.map +1 -0
  1147. package/libs/date-picker/lib/es6/DateRangeComparator.js +180 -0
  1148. package/libs/date-picker/lib/es6/DateRangeComparator.js.map +1 -0
  1149. package/libs/date-picker/lib/es6/DateRangePicker.js +124 -0
  1150. package/libs/date-picker/lib/es6/DateRangePicker.js.map +1 -0
  1151. package/libs/date-picker/lib/es6/MonthDateRangeComparator.js +215 -0
  1152. package/libs/date-picker/lib/es6/MonthDateRangeComparator.js.map +1 -0
  1153. package/libs/date-picker/lib/es6/MonthPicker.js +114 -0
  1154. package/libs/date-picker/lib/es6/MonthPicker.js.map +1 -0
  1155. package/libs/date-picker/lib/es6/MonthRangePicker.js +138 -0
  1156. package/libs/date-picker/lib/es6/MonthRangePicker.js.map +1 -0
  1157. package/libs/date-picker/lib/es6/components/ButtonTrigger.js +24 -0
  1158. package/libs/date-picker/lib/es6/components/ButtonTrigger.js.map +1 -0
  1159. package/libs/date-picker/lib/es6/components/Calendar.js +407 -0
  1160. package/libs/date-picker/lib/es6/components/Calendar.js.map +1 -0
  1161. package/libs/date-picker/lib/es6/components/DateRangeComparatorAbstract.js +574 -0
  1162. package/libs/date-picker/lib/es6/components/DateRangeComparatorAbstract.js.map +1 -0
  1163. package/libs/date-picker/lib/es6/components/InputTrigger.js +664 -0
  1164. package/libs/date-picker/lib/es6/components/InputTrigger.js.map +1 -0
  1165. package/libs/date-picker/lib/es6/components/PickerAbstract.js +244 -0
  1166. package/libs/date-picker/lib/es6/components/PickerAbstract.js.map +1 -0
  1167. package/libs/date-picker/lib/es6/components/RangePickerAbstract.js +401 -0
  1168. package/libs/date-picker/lib/es6/components/RangePickerAbstract.js.map +1 -0
  1169. package/libs/date-picker/lib/es6/components/index.js +168 -0
  1170. package/libs/date-picker/lib/es6/components/index.js.map +1 -0
  1171. package/libs/date-picker/lib/es6/index.d.js +2 -0
  1172. package/libs/date-picker/lib/es6/index.d.js.map +1 -0
  1173. package/libs/date-picker/lib/es6/index.js +6 -0
  1174. package/libs/date-picker/lib/es6/index.js.map +1 -0
  1175. package/libs/date-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +33 -0
  1176. package/libs/date-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1177. package/libs/date-picker/lib/es6/translations/de.json +16 -0
  1178. package/libs/date-picker/lib/es6/translations/en.json +17 -0
  1179. package/libs/date-picker/lib/es6/translations/es.json +16 -0
  1180. package/libs/date-picker/lib/es6/translations/fr.json +16 -0
  1181. package/libs/date-picker/lib/es6/translations/it.json +16 -0
  1182. package/libs/date-picker/lib/es6/translations/ja.json +16 -0
  1183. package/libs/date-picker/lib/es6/translations/ko.json +16 -0
  1184. package/libs/date-picker/lib/es6/translations/nl.json +16 -0
  1185. package/libs/date-picker/lib/es6/translations/pl.json +16 -0
  1186. package/libs/date-picker/lib/es6/translations/pt.json +16 -0
  1187. package/libs/date-picker/lib/es6/translations/ru.json +13 -0
  1188. package/libs/date-picker/lib/es6/translations/sv.json +16 -0
  1189. package/libs/date-picker/lib/es6/translations/tr.json +16 -0
  1190. package/libs/date-picker/lib/es6/translations/vi.json +16 -0
  1191. package/libs/date-picker/lib/es6/translations/zh.json +16 -0
  1192. package/libs/date-picker/lib/es6/utils/cronTabScheduler.js +90 -0
  1193. package/libs/date-picker/lib/es6/utils/cronTabScheduler.js.map +1 -0
  1194. package/libs/date-picker/lib/es6/utils/formatDate.js +14 -0
  1195. package/libs/date-picker/lib/es6/utils/formatDate.js.map +1 -0
  1196. package/libs/date-picker/lib/es6/utils/includesDate.js +18 -0
  1197. package/libs/date-picker/lib/es6/utils/includesDate.js.map +1 -0
  1198. package/libs/date-picker/lib/es6/utils/shortDateRangeFormat.js +62 -0
  1199. package/libs/date-picker/lib/es6/utils/shortDateRangeFormat.js.map +1 -0
  1200. package/libs/date-picker/lib/types/index.d.ts +470 -0
  1201. package/libs/divider/lib/cjs/Divider.js +59 -0
  1202. package/libs/divider/lib/cjs/Divider.js.map +1 -0
  1203. package/libs/divider/lib/cjs/index.d.js +2 -0
  1204. package/libs/divider/lib/cjs/index.d.js.map +1 -0
  1205. package/libs/divider/lib/cjs/index.js +14 -0
  1206. package/libs/divider/lib/cjs/index.js.map +1 -0
  1207. package/libs/divider/lib/es6/Divider.js +52 -0
  1208. package/libs/divider/lib/es6/Divider.js.map +1 -0
  1209. package/libs/divider/lib/es6/index.d.js +2 -0
  1210. package/libs/divider/lib/es6/index.d.js.map +1 -0
  1211. package/libs/divider/lib/es6/index.js +2 -0
  1212. package/libs/divider/lib/es6/index.js.map +1 -0
  1213. package/libs/divider/lib/types/index.d.ts +25 -0
  1214. package/libs/dot/lib/cjs/Dot.js +107 -0
  1215. package/libs/dot/lib/cjs/Dot.js.map +1 -0
  1216. package/libs/dot/lib/cjs/index.d.js +2 -0
  1217. package/libs/dot/lib/cjs/index.d.js.map +1 -0
  1218. package/libs/dot/lib/cjs/index.js +14 -0
  1219. package/libs/dot/lib/cjs/index.js.map +1 -0
  1220. package/libs/dot/lib/es6/Dot.js +100 -0
  1221. package/libs/dot/lib/es6/Dot.js.map +1 -0
  1222. package/libs/dot/lib/es6/index.d.js +2 -0
  1223. package/libs/dot/lib/es6/index.d.js.map +1 -0
  1224. package/libs/dot/lib/es6/index.js +2 -0
  1225. package/libs/dot/lib/es6/index.js.map +1 -0
  1226. package/libs/dot/lib/types/index.d.ts +23 -0
  1227. package/libs/drag-and-drop/lib/cjs/DragAndDrop.js +410 -0
  1228. package/libs/drag-and-drop/lib/cjs/DragAndDrop.js.map +1 -0
  1229. package/libs/drag-and-drop/lib/cjs/index.d.js +2 -0
  1230. package/libs/drag-and-drop/lib/cjs/index.d.js.map +1 -0
  1231. package/libs/drag-and-drop/lib/cjs/index.js +14 -0
  1232. package/libs/drag-and-drop/lib/cjs/index.js.map +1 -0
  1233. package/libs/drag-and-drop/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1234. package/libs/drag-and-drop/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1235. package/libs/drag-and-drop/lib/cjs/translations/de.json +6 -0
  1236. package/libs/drag-and-drop/lib/cjs/translations/en.json +6 -0
  1237. package/libs/drag-and-drop/lib/cjs/translations/es.json +6 -0
  1238. package/libs/drag-and-drop/lib/cjs/translations/fr.json +6 -0
  1239. package/libs/drag-and-drop/lib/cjs/translations/it.json +6 -0
  1240. package/libs/drag-and-drop/lib/cjs/translations/ja.json +6 -0
  1241. package/libs/drag-and-drop/lib/cjs/translations/ko.json +6 -0
  1242. package/libs/drag-and-drop/lib/cjs/translations/nl.json +6 -0
  1243. package/libs/drag-and-drop/lib/cjs/translations/pl.json +6 -0
  1244. package/libs/drag-and-drop/lib/cjs/translations/pt.json +6 -0
  1245. package/libs/drag-and-drop/lib/cjs/translations/sv.json +6 -0
  1246. package/libs/drag-and-drop/lib/cjs/translations/tr.json +6 -0
  1247. package/libs/drag-and-drop/lib/cjs/translations/vi.json +6 -0
  1248. package/libs/drag-and-drop/lib/cjs/translations/zh.json +6 -0
  1249. package/libs/drag-and-drop/lib/es6/DragAndDrop.js +405 -0
  1250. package/libs/drag-and-drop/lib/es6/DragAndDrop.js.map +1 -0
  1251. package/libs/drag-and-drop/lib/es6/index.d.js +2 -0
  1252. package/libs/drag-and-drop/lib/es6/index.d.js.map +1 -0
  1253. package/libs/drag-and-drop/lib/es6/index.js +2 -0
  1254. package/libs/drag-and-drop/lib/es6/index.js.map +1 -0
  1255. package/libs/drag-and-drop/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1256. package/libs/drag-and-drop/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1257. package/libs/drag-and-drop/lib/es6/translations/de.json +6 -0
  1258. package/libs/drag-and-drop/lib/es6/translations/en.json +6 -0
  1259. package/libs/drag-and-drop/lib/es6/translations/es.json +6 -0
  1260. package/libs/drag-and-drop/lib/es6/translations/fr.json +6 -0
  1261. package/libs/drag-and-drop/lib/es6/translations/it.json +6 -0
  1262. package/libs/drag-and-drop/lib/es6/translations/ja.json +6 -0
  1263. package/libs/drag-and-drop/lib/es6/translations/ko.json +6 -0
  1264. package/libs/drag-and-drop/lib/es6/translations/nl.json +6 -0
  1265. package/libs/drag-and-drop/lib/es6/translations/pl.json +6 -0
  1266. package/libs/drag-and-drop/lib/es6/translations/pt.json +6 -0
  1267. package/libs/drag-and-drop/lib/es6/translations/sv.json +6 -0
  1268. package/libs/drag-and-drop/lib/es6/translations/tr.json +6 -0
  1269. package/libs/drag-and-drop/lib/es6/translations/vi.json +6 -0
  1270. package/libs/drag-and-drop/lib/es6/translations/zh.json +6 -0
  1271. package/libs/drag-and-drop/lib/types/index.d.ts +62 -0
  1272. package/libs/dropdown/lib/cjs/Dropdown.js +177 -0
  1273. package/libs/dropdown/lib/cjs/Dropdown.js.map +1 -0
  1274. package/libs/dropdown/lib/cjs/index.d.js +2 -0
  1275. package/libs/dropdown/lib/cjs/index.d.js.map +1 -0
  1276. package/libs/dropdown/lib/cjs/index.js +14 -0
  1277. package/libs/dropdown/lib/cjs/index.js.map +1 -0
  1278. package/libs/dropdown/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1279. package/libs/dropdown/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1280. package/libs/dropdown/lib/cjs/translations/de.json +3 -0
  1281. package/libs/dropdown/lib/cjs/translations/en.json +3 -0
  1282. package/libs/dropdown/lib/cjs/translations/es.json +3 -0
  1283. package/libs/dropdown/lib/cjs/translations/fr.json +3 -0
  1284. package/libs/dropdown/lib/cjs/translations/it.json +3 -0
  1285. package/libs/dropdown/lib/cjs/translations/ja.json +3 -0
  1286. package/libs/dropdown/lib/cjs/translations/ko.json +3 -0
  1287. package/libs/dropdown/lib/cjs/translations/nl.json +3 -0
  1288. package/libs/dropdown/lib/cjs/translations/pl.json +3 -0
  1289. package/libs/dropdown/lib/cjs/translations/pt.json +3 -0
  1290. package/libs/dropdown/lib/cjs/translations/sv.json +3 -0
  1291. package/libs/dropdown/lib/cjs/translations/tr.json +3 -0
  1292. package/libs/dropdown/lib/cjs/translations/vi.json +3 -0
  1293. package/libs/dropdown/lib/cjs/translations/zh.json +3 -0
  1294. package/libs/dropdown/lib/es6/Dropdown.js +170 -0
  1295. package/libs/dropdown/lib/es6/Dropdown.js.map +1 -0
  1296. package/libs/dropdown/lib/es6/index.d.js +2 -0
  1297. package/libs/dropdown/lib/es6/index.d.js.map +1 -0
  1298. package/libs/dropdown/lib/es6/index.js +2 -0
  1299. package/libs/dropdown/lib/es6/index.js.map +1 -0
  1300. package/libs/dropdown/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1301. package/libs/dropdown/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1302. package/libs/dropdown/lib/es6/translations/de.json +3 -0
  1303. package/libs/dropdown/lib/es6/translations/en.json +3 -0
  1304. package/libs/dropdown/lib/es6/translations/es.json +3 -0
  1305. package/libs/dropdown/lib/es6/translations/fr.json +3 -0
  1306. package/libs/dropdown/lib/es6/translations/it.json +3 -0
  1307. package/libs/dropdown/lib/es6/translations/ja.json +3 -0
  1308. package/libs/dropdown/lib/es6/translations/ko.json +3 -0
  1309. package/libs/dropdown/lib/es6/translations/nl.json +3 -0
  1310. package/libs/dropdown/lib/es6/translations/pl.json +3 -0
  1311. package/libs/dropdown/lib/es6/translations/pt.json +3 -0
  1312. package/libs/dropdown/lib/es6/translations/sv.json +3 -0
  1313. package/libs/dropdown/lib/es6/translations/tr.json +3 -0
  1314. package/libs/dropdown/lib/es6/translations/vi.json +3 -0
  1315. package/libs/dropdown/lib/es6/translations/zh.json +3 -0
  1316. package/libs/dropdown/lib/types/index.d.ts +43 -0
  1317. package/libs/dropdown-menu/lib/cjs/DropdownMenu.js +372 -0
  1318. package/libs/dropdown-menu/lib/cjs/DropdownMenu.js.map +1 -0
  1319. package/libs/dropdown-menu/lib/cjs/index.d.js +2 -0
  1320. package/libs/dropdown-menu/lib/cjs/index.d.js.map +1 -0
  1321. package/libs/dropdown-menu/lib/cjs/index.js +14 -0
  1322. package/libs/dropdown-menu/lib/cjs/index.js.map +1 -0
  1323. package/libs/dropdown-menu/lib/cjs/styleScrollArea.js +23 -0
  1324. package/libs/dropdown-menu/lib/cjs/styleScrollArea.js.map +1 -0
  1325. package/libs/dropdown-menu/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1326. package/libs/dropdown-menu/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1327. package/libs/dropdown-menu/lib/cjs/translations/de.json +3 -0
  1328. package/libs/dropdown-menu/lib/cjs/translations/en.json +3 -0
  1329. package/libs/dropdown-menu/lib/cjs/translations/es.json +3 -0
  1330. package/libs/dropdown-menu/lib/cjs/translations/fr.json +3 -0
  1331. package/libs/dropdown-menu/lib/cjs/translations/it.json +3 -0
  1332. package/libs/dropdown-menu/lib/cjs/translations/ja.json +3 -0
  1333. package/libs/dropdown-menu/lib/cjs/translations/ko.json +3 -0
  1334. package/libs/dropdown-menu/lib/cjs/translations/nl.json +3 -0
  1335. package/libs/dropdown-menu/lib/cjs/translations/pl.json +3 -0
  1336. package/libs/dropdown-menu/lib/cjs/translations/pt.json +3 -0
  1337. package/libs/dropdown-menu/lib/cjs/translations/sv.json +3 -0
  1338. package/libs/dropdown-menu/lib/cjs/translations/tr.json +3 -0
  1339. package/libs/dropdown-menu/lib/cjs/translations/vi.json +3 -0
  1340. package/libs/dropdown-menu/lib/cjs/translations/zh.json +3 -0
  1341. package/libs/dropdown-menu/lib/es6/DropdownMenu.js +370 -0
  1342. package/libs/dropdown-menu/lib/es6/DropdownMenu.js.map +1 -0
  1343. package/libs/dropdown-menu/lib/es6/index.d.js +2 -0
  1344. package/libs/dropdown-menu/lib/es6/index.d.js.map +1 -0
  1345. package/libs/dropdown-menu/lib/es6/index.js +2 -0
  1346. package/libs/dropdown-menu/lib/es6/index.js.map +1 -0
  1347. package/libs/dropdown-menu/lib/es6/styleScrollArea.js +16 -0
  1348. package/libs/dropdown-menu/lib/es6/styleScrollArea.js.map +1 -0
  1349. package/libs/dropdown-menu/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1350. package/libs/dropdown-menu/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1351. package/libs/dropdown-menu/lib/es6/translations/de.json +3 -0
  1352. package/libs/dropdown-menu/lib/es6/translations/en.json +3 -0
  1353. package/libs/dropdown-menu/lib/es6/translations/es.json +3 -0
  1354. package/libs/dropdown-menu/lib/es6/translations/fr.json +3 -0
  1355. package/libs/dropdown-menu/lib/es6/translations/it.json +3 -0
  1356. package/libs/dropdown-menu/lib/es6/translations/ja.json +3 -0
  1357. package/libs/dropdown-menu/lib/es6/translations/ko.json +3 -0
  1358. package/libs/dropdown-menu/lib/es6/translations/nl.json +3 -0
  1359. package/libs/dropdown-menu/lib/es6/translations/pl.json +3 -0
  1360. package/libs/dropdown-menu/lib/es6/translations/pt.json +3 -0
  1361. package/libs/dropdown-menu/lib/es6/translations/sv.json +3 -0
  1362. package/libs/dropdown-menu/lib/es6/translations/tr.json +3 -0
  1363. package/libs/dropdown-menu/lib/es6/translations/vi.json +3 -0
  1364. package/libs/dropdown-menu/lib/es6/translations/zh.json +3 -0
  1365. package/libs/dropdown-menu/lib/types/index.d.ts +151 -0
  1366. package/libs/ellipsis/lib/cjs/Ellipsis.js +290 -0
  1367. package/libs/ellipsis/lib/cjs/Ellipsis.js.map +1 -0
  1368. package/libs/ellipsis/lib/cjs/index.d.js +2 -0
  1369. package/libs/ellipsis/lib/cjs/index.d.js.map +1 -0
  1370. package/libs/ellipsis/lib/cjs/index.js +21 -0
  1371. package/libs/ellipsis/lib/cjs/index.js.map +1 -0
  1372. package/libs/ellipsis/lib/cjs/useResizeObserver.js +45 -0
  1373. package/libs/ellipsis/lib/cjs/useResizeObserver.js.map +1 -0
  1374. package/libs/ellipsis/lib/es6/Ellipsis.js +284 -0
  1375. package/libs/ellipsis/lib/es6/Ellipsis.js.map +1 -0
  1376. package/libs/ellipsis/lib/es6/index.d.js +2 -0
  1377. package/libs/ellipsis/lib/es6/index.d.js.map +1 -0
  1378. package/libs/ellipsis/lib/es6/index.js +3 -0
  1379. package/libs/ellipsis/lib/es6/index.js.map +1 -0
  1380. package/libs/ellipsis/lib/es6/useResizeObserver.js +37 -0
  1381. package/libs/ellipsis/lib/es6/useResizeObserver.js.map +1 -0
  1382. package/libs/ellipsis/lib/types/index.d.ts +50 -0
  1383. package/libs/email/lib/badge/index.css +1 -0
  1384. package/libs/email/lib/button/index.css +1 -0
  1385. package/libs/email/lib/core/base.css +1 -0
  1386. package/libs/email/lib/core/index.css +1 -0
  1387. package/libs/email/lib/core/var.css +47 -0
  1388. package/libs/email/lib/divider/index.css +1 -0
  1389. package/libs/email/lib/grid/index.css +1 -0
  1390. package/libs/email/lib/notice/index.css +1 -0
  1391. package/libs/email/lib/summary/index.css +1 -0
  1392. package/libs/email/lib/table/index.css +1 -0
  1393. package/libs/email/lib/typography/index.css +1 -0
  1394. package/libs/errors/lib/cjs/AccessDenied/index.js +63 -0
  1395. package/libs/errors/lib/cjs/AccessDenied/index.js.map +1 -0
  1396. package/libs/errors/lib/cjs/AccessDenied/translations/__intergalactic-dynamic-locales.js +41 -0
  1397. package/libs/errors/lib/cjs/AccessDenied/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1398. package/libs/errors/lib/cjs/AccessDenied/translations/de.json +5 -0
  1399. package/libs/errors/lib/cjs/AccessDenied/translations/en.json +5 -0
  1400. package/libs/errors/lib/cjs/AccessDenied/translations/es.json +5 -0
  1401. package/libs/errors/lib/cjs/AccessDenied/translations/fr.json +5 -0
  1402. package/libs/errors/lib/cjs/AccessDenied/translations/it.json +5 -0
  1403. package/libs/errors/lib/cjs/AccessDenied/translations/ja.json +5 -0
  1404. package/libs/errors/lib/cjs/AccessDenied/translations/ko.json +5 -0
  1405. package/libs/errors/lib/cjs/AccessDenied/translations/nl.json +5 -0
  1406. package/libs/errors/lib/cjs/AccessDenied/translations/pl.json +5 -0
  1407. package/libs/errors/lib/cjs/AccessDenied/translations/pt.json +5 -0
  1408. package/libs/errors/lib/cjs/AccessDenied/translations/ru.json +5 -0
  1409. package/libs/errors/lib/cjs/AccessDenied/translations/sv.json +5 -0
  1410. package/libs/errors/lib/cjs/AccessDenied/translations/tr.json +5 -0
  1411. package/libs/errors/lib/cjs/AccessDenied/translations/vi.json +5 -0
  1412. package/libs/errors/lib/cjs/AccessDenied/translations/zh.json +5 -0
  1413. package/libs/errors/lib/cjs/Error.js +97 -0
  1414. package/libs/errors/lib/cjs/Error.js.map +1 -0
  1415. package/libs/errors/lib/cjs/Maintenance/index.js +62 -0
  1416. package/libs/errors/lib/cjs/Maintenance/index.js.map +1 -0
  1417. package/libs/errors/lib/cjs/Maintenance/translations/__intergalactic-dynamic-locales.js +41 -0
  1418. package/libs/errors/lib/cjs/Maintenance/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1419. package/libs/errors/lib/cjs/Maintenance/translations/de.json +5 -0
  1420. package/libs/errors/lib/cjs/Maintenance/translations/en.json +5 -0
  1421. package/libs/errors/lib/cjs/Maintenance/translations/es.json +5 -0
  1422. package/libs/errors/lib/cjs/Maintenance/translations/fr.json +5 -0
  1423. package/libs/errors/lib/cjs/Maintenance/translations/it.json +5 -0
  1424. package/libs/errors/lib/cjs/Maintenance/translations/ja.json +5 -0
  1425. package/libs/errors/lib/cjs/Maintenance/translations/ko.json +5 -0
  1426. package/libs/errors/lib/cjs/Maintenance/translations/nl.json +5 -0
  1427. package/libs/errors/lib/cjs/Maintenance/translations/pl.json +5 -0
  1428. package/libs/errors/lib/cjs/Maintenance/translations/pt.json +5 -0
  1429. package/libs/errors/lib/cjs/Maintenance/translations/ru.json +5 -0
  1430. package/libs/errors/lib/cjs/Maintenance/translations/sv.json +5 -0
  1431. package/libs/errors/lib/cjs/Maintenance/translations/tr.json +5 -0
  1432. package/libs/errors/lib/cjs/Maintenance/translations/vi.json +5 -0
  1433. package/libs/errors/lib/cjs/Maintenance/translations/zh.json +5 -0
  1434. package/libs/errors/lib/cjs/PageError/index.js +73 -0
  1435. package/libs/errors/lib/cjs/PageError/index.js.map +1 -0
  1436. package/libs/errors/lib/cjs/PageError/translations/__intergalactic-dynamic-locales.js +41 -0
  1437. package/libs/errors/lib/cjs/PageError/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1438. package/libs/errors/lib/cjs/PageError/translations/de.json +5 -0
  1439. package/libs/errors/lib/cjs/PageError/translations/en.json +5 -0
  1440. package/libs/errors/lib/cjs/PageError/translations/es.json +5 -0
  1441. package/libs/errors/lib/cjs/PageError/translations/fr.json +5 -0
  1442. package/libs/errors/lib/cjs/PageError/translations/it.json +5 -0
  1443. package/libs/errors/lib/cjs/PageError/translations/ja.json +5 -0
  1444. package/libs/errors/lib/cjs/PageError/translations/ko.json +5 -0
  1445. package/libs/errors/lib/cjs/PageError/translations/nl.json +5 -0
  1446. package/libs/errors/lib/cjs/PageError/translations/pl.json +5 -0
  1447. package/libs/errors/lib/cjs/PageError/translations/pt.json +5 -0
  1448. package/libs/errors/lib/cjs/PageError/translations/ru.json +5 -0
  1449. package/libs/errors/lib/cjs/PageError/translations/sv.json +5 -0
  1450. package/libs/errors/lib/cjs/PageError/translations/tr.json +5 -0
  1451. package/libs/errors/lib/cjs/PageError/translations/vi.json +5 -0
  1452. package/libs/errors/lib/cjs/PageError/translations/zh.json +5 -0
  1453. package/libs/errors/lib/cjs/PageNotFound/index.js +61 -0
  1454. package/libs/errors/lib/cjs/PageNotFound/index.js.map +1 -0
  1455. package/libs/errors/lib/cjs/PageNotFound/translations/__intergalactic-dynamic-locales.js +41 -0
  1456. package/libs/errors/lib/cjs/PageNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1457. package/libs/errors/lib/cjs/PageNotFound/translations/de.json +5 -0
  1458. package/libs/errors/lib/cjs/PageNotFound/translations/en.json +5 -0
  1459. package/libs/errors/lib/cjs/PageNotFound/translations/es.json +5 -0
  1460. package/libs/errors/lib/cjs/PageNotFound/translations/fr.json +5 -0
  1461. package/libs/errors/lib/cjs/PageNotFound/translations/it.json +5 -0
  1462. package/libs/errors/lib/cjs/PageNotFound/translations/ja.json +5 -0
  1463. package/libs/errors/lib/cjs/PageNotFound/translations/ko.json +5 -0
  1464. package/libs/errors/lib/cjs/PageNotFound/translations/nl.json +5 -0
  1465. package/libs/errors/lib/cjs/PageNotFound/translations/pl.json +5 -0
  1466. package/libs/errors/lib/cjs/PageNotFound/translations/pt.json +5 -0
  1467. package/libs/errors/lib/cjs/PageNotFound/translations/ru.json +5 -0
  1468. package/libs/errors/lib/cjs/PageNotFound/translations/sv.json +5 -0
  1469. package/libs/errors/lib/cjs/PageNotFound/translations/tr.json +5 -0
  1470. package/libs/errors/lib/cjs/PageNotFound/translations/vi.json +5 -0
  1471. package/libs/errors/lib/cjs/PageNotFound/translations/zh.json +5 -0
  1472. package/libs/errors/lib/cjs/ProjectNotFound/index.js +80 -0
  1473. package/libs/errors/lib/cjs/ProjectNotFound/index.js.map +1 -0
  1474. package/libs/errors/lib/cjs/ProjectNotFound/translations/__intergalactic-dynamic-locales.js +41 -0
  1475. package/libs/errors/lib/cjs/ProjectNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1476. package/libs/errors/lib/cjs/ProjectNotFound/translations/de.json +6 -0
  1477. package/libs/errors/lib/cjs/ProjectNotFound/translations/en.json +6 -0
  1478. package/libs/errors/lib/cjs/ProjectNotFound/translations/es.json +6 -0
  1479. package/libs/errors/lib/cjs/ProjectNotFound/translations/fr.json +6 -0
  1480. package/libs/errors/lib/cjs/ProjectNotFound/translations/it.json +6 -0
  1481. package/libs/errors/lib/cjs/ProjectNotFound/translations/ja.json +6 -0
  1482. package/libs/errors/lib/cjs/ProjectNotFound/translations/ko.json +6 -0
  1483. package/libs/errors/lib/cjs/ProjectNotFound/translations/nl.json +6 -0
  1484. package/libs/errors/lib/cjs/ProjectNotFound/translations/pl.json +6 -0
  1485. package/libs/errors/lib/cjs/ProjectNotFound/translations/pt.json +6 -0
  1486. package/libs/errors/lib/cjs/ProjectNotFound/translations/ru.json +6 -0
  1487. package/libs/errors/lib/cjs/ProjectNotFound/translations/sv.json +6 -0
  1488. package/libs/errors/lib/cjs/ProjectNotFound/translations/tr.json +6 -0
  1489. package/libs/errors/lib/cjs/ProjectNotFound/translations/vi.json +6 -0
  1490. package/libs/errors/lib/cjs/ProjectNotFound/translations/zh.json +6 -0
  1491. package/libs/errors/lib/cjs/index.d.js +16 -0
  1492. package/libs/errors/lib/cjs/index.d.js.map +1 -0
  1493. package/libs/errors/lib/cjs/index.js +68 -0
  1494. package/libs/errors/lib/cjs/index.js.map +1 -0
  1495. package/libs/errors/lib/es6/AccessDenied/index.js +55 -0
  1496. package/libs/errors/lib/es6/AccessDenied/index.js.map +1 -0
  1497. package/libs/errors/lib/es6/AccessDenied/translations/__intergalactic-dynamic-locales.js +33 -0
  1498. package/libs/errors/lib/es6/AccessDenied/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1499. package/libs/errors/lib/es6/AccessDenied/translations/de.json +5 -0
  1500. package/libs/errors/lib/es6/AccessDenied/translations/en.json +5 -0
  1501. package/libs/errors/lib/es6/AccessDenied/translations/es.json +5 -0
  1502. package/libs/errors/lib/es6/AccessDenied/translations/fr.json +5 -0
  1503. package/libs/errors/lib/es6/AccessDenied/translations/it.json +5 -0
  1504. package/libs/errors/lib/es6/AccessDenied/translations/ja.json +5 -0
  1505. package/libs/errors/lib/es6/AccessDenied/translations/ko.json +5 -0
  1506. package/libs/errors/lib/es6/AccessDenied/translations/nl.json +5 -0
  1507. package/libs/errors/lib/es6/AccessDenied/translations/pl.json +5 -0
  1508. package/libs/errors/lib/es6/AccessDenied/translations/pt.json +5 -0
  1509. package/libs/errors/lib/es6/AccessDenied/translations/ru.json +5 -0
  1510. package/libs/errors/lib/es6/AccessDenied/translations/sv.json +5 -0
  1511. package/libs/errors/lib/es6/AccessDenied/translations/tr.json +5 -0
  1512. package/libs/errors/lib/es6/AccessDenied/translations/vi.json +5 -0
  1513. package/libs/errors/lib/es6/AccessDenied/translations/zh.json +5 -0
  1514. package/libs/errors/lib/es6/Error.js +92 -0
  1515. package/libs/errors/lib/es6/Error.js.map +1 -0
  1516. package/libs/errors/lib/es6/Maintenance/index.js +54 -0
  1517. package/libs/errors/lib/es6/Maintenance/index.js.map +1 -0
  1518. package/libs/errors/lib/es6/Maintenance/translations/__intergalactic-dynamic-locales.js +33 -0
  1519. package/libs/errors/lib/es6/Maintenance/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1520. package/libs/errors/lib/es6/Maintenance/translations/de.json +5 -0
  1521. package/libs/errors/lib/es6/Maintenance/translations/en.json +5 -0
  1522. package/libs/errors/lib/es6/Maintenance/translations/es.json +5 -0
  1523. package/libs/errors/lib/es6/Maintenance/translations/fr.json +5 -0
  1524. package/libs/errors/lib/es6/Maintenance/translations/it.json +5 -0
  1525. package/libs/errors/lib/es6/Maintenance/translations/ja.json +5 -0
  1526. package/libs/errors/lib/es6/Maintenance/translations/ko.json +5 -0
  1527. package/libs/errors/lib/es6/Maintenance/translations/nl.json +5 -0
  1528. package/libs/errors/lib/es6/Maintenance/translations/pl.json +5 -0
  1529. package/libs/errors/lib/es6/Maintenance/translations/pt.json +5 -0
  1530. package/libs/errors/lib/es6/Maintenance/translations/ru.json +5 -0
  1531. package/libs/errors/lib/es6/Maintenance/translations/sv.json +5 -0
  1532. package/libs/errors/lib/es6/Maintenance/translations/tr.json +5 -0
  1533. package/libs/errors/lib/es6/Maintenance/translations/vi.json +5 -0
  1534. package/libs/errors/lib/es6/Maintenance/translations/zh.json +5 -0
  1535. package/libs/errors/lib/es6/PageError/index.js +64 -0
  1536. package/libs/errors/lib/es6/PageError/index.js.map +1 -0
  1537. package/libs/errors/lib/es6/PageError/translations/__intergalactic-dynamic-locales.js +33 -0
  1538. package/libs/errors/lib/es6/PageError/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1539. package/libs/errors/lib/es6/PageError/translations/de.json +5 -0
  1540. package/libs/errors/lib/es6/PageError/translations/en.json +5 -0
  1541. package/libs/errors/lib/es6/PageError/translations/es.json +5 -0
  1542. package/libs/errors/lib/es6/PageError/translations/fr.json +5 -0
  1543. package/libs/errors/lib/es6/PageError/translations/it.json +5 -0
  1544. package/libs/errors/lib/es6/PageError/translations/ja.json +5 -0
  1545. package/libs/errors/lib/es6/PageError/translations/ko.json +5 -0
  1546. package/libs/errors/lib/es6/PageError/translations/nl.json +5 -0
  1547. package/libs/errors/lib/es6/PageError/translations/pl.json +5 -0
  1548. package/libs/errors/lib/es6/PageError/translations/pt.json +5 -0
  1549. package/libs/errors/lib/es6/PageError/translations/ru.json +5 -0
  1550. package/libs/errors/lib/es6/PageError/translations/sv.json +5 -0
  1551. package/libs/errors/lib/es6/PageError/translations/tr.json +5 -0
  1552. package/libs/errors/lib/es6/PageError/translations/vi.json +5 -0
  1553. package/libs/errors/lib/es6/PageError/translations/zh.json +5 -0
  1554. package/libs/errors/lib/es6/PageNotFound/index.js +53 -0
  1555. package/libs/errors/lib/es6/PageNotFound/index.js.map +1 -0
  1556. package/libs/errors/lib/es6/PageNotFound/translations/__intergalactic-dynamic-locales.js +33 -0
  1557. package/libs/errors/lib/es6/PageNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1558. package/libs/errors/lib/es6/PageNotFound/translations/de.json +5 -0
  1559. package/libs/errors/lib/es6/PageNotFound/translations/en.json +5 -0
  1560. package/libs/errors/lib/es6/PageNotFound/translations/es.json +5 -0
  1561. package/libs/errors/lib/es6/PageNotFound/translations/fr.json +5 -0
  1562. package/libs/errors/lib/es6/PageNotFound/translations/it.json +5 -0
  1563. package/libs/errors/lib/es6/PageNotFound/translations/ja.json +5 -0
  1564. package/libs/errors/lib/es6/PageNotFound/translations/ko.json +5 -0
  1565. package/libs/errors/lib/es6/PageNotFound/translations/nl.json +5 -0
  1566. package/libs/errors/lib/es6/PageNotFound/translations/pl.json +5 -0
  1567. package/libs/errors/lib/es6/PageNotFound/translations/pt.json +5 -0
  1568. package/libs/errors/lib/es6/PageNotFound/translations/ru.json +5 -0
  1569. package/libs/errors/lib/es6/PageNotFound/translations/sv.json +5 -0
  1570. package/libs/errors/lib/es6/PageNotFound/translations/tr.json +5 -0
  1571. package/libs/errors/lib/es6/PageNotFound/translations/vi.json +5 -0
  1572. package/libs/errors/lib/es6/PageNotFound/translations/zh.json +5 -0
  1573. package/libs/errors/lib/es6/ProjectNotFound/index.js +72 -0
  1574. package/libs/errors/lib/es6/ProjectNotFound/index.js.map +1 -0
  1575. package/libs/errors/lib/es6/ProjectNotFound/translations/__intergalactic-dynamic-locales.js +33 -0
  1576. package/libs/errors/lib/es6/ProjectNotFound/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1577. package/libs/errors/lib/es6/ProjectNotFound/translations/de.json +6 -0
  1578. package/libs/errors/lib/es6/ProjectNotFound/translations/en.json +6 -0
  1579. package/libs/errors/lib/es6/ProjectNotFound/translations/es.json +6 -0
  1580. package/libs/errors/lib/es6/ProjectNotFound/translations/fr.json +6 -0
  1581. package/libs/errors/lib/es6/ProjectNotFound/translations/it.json +6 -0
  1582. package/libs/errors/lib/es6/ProjectNotFound/translations/ja.json +6 -0
  1583. package/libs/errors/lib/es6/ProjectNotFound/translations/ko.json +6 -0
  1584. package/libs/errors/lib/es6/ProjectNotFound/translations/nl.json +6 -0
  1585. package/libs/errors/lib/es6/ProjectNotFound/translations/pl.json +6 -0
  1586. package/libs/errors/lib/es6/ProjectNotFound/translations/pt.json +6 -0
  1587. package/libs/errors/lib/es6/ProjectNotFound/translations/ru.json +6 -0
  1588. package/libs/errors/lib/es6/ProjectNotFound/translations/sv.json +6 -0
  1589. package/libs/errors/lib/es6/ProjectNotFound/translations/tr.json +6 -0
  1590. package/libs/errors/lib/es6/ProjectNotFound/translations/vi.json +6 -0
  1591. package/libs/errors/lib/es6/ProjectNotFound/translations/zh.json +6 -0
  1592. package/libs/errors/lib/es6/index.d.js +16 -0
  1593. package/libs/errors/lib/es6/index.d.js.map +1 -0
  1594. package/libs/errors/lib/es6/index.js +8 -0
  1595. package/libs/errors/lib/es6/index.js.map +1 -0
  1596. package/libs/errors/lib/types/index.d.ts +120 -0
  1597. package/libs/feature-popover/lib/cjs/FeaturePopover.js +202 -0
  1598. package/libs/feature-popover/lib/cjs/FeaturePopover.js.map +1 -0
  1599. package/libs/feature-popover/lib/cjs/index.d.js +2 -0
  1600. package/libs/feature-popover/lib/cjs/index.d.js.map +1 -0
  1601. package/libs/feature-popover/lib/cjs/index.js +14 -0
  1602. package/libs/feature-popover/lib/cjs/index.js.map +1 -0
  1603. package/libs/feature-popover/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1604. package/libs/feature-popover/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1605. package/libs/feature-popover/lib/cjs/translations/de.json +3 -0
  1606. package/libs/feature-popover/lib/cjs/translations/en.json +3 -0
  1607. package/libs/feature-popover/lib/cjs/translations/es.json +3 -0
  1608. package/libs/feature-popover/lib/cjs/translations/fr.json +3 -0
  1609. package/libs/feature-popover/lib/cjs/translations/it.json +3 -0
  1610. package/libs/feature-popover/lib/cjs/translations/ja.json +3 -0
  1611. package/libs/feature-popover/lib/cjs/translations/ko.json +3 -0
  1612. package/libs/feature-popover/lib/cjs/translations/nl.json +3 -0
  1613. package/libs/feature-popover/lib/cjs/translations/pl.json +3 -0
  1614. package/libs/feature-popover/lib/cjs/translations/pt.json +3 -0
  1615. package/libs/feature-popover/lib/cjs/translations/sv.json +3 -0
  1616. package/libs/feature-popover/lib/cjs/translations/tr.json +3 -0
  1617. package/libs/feature-popover/lib/cjs/translations/vi.json +3 -0
  1618. package/libs/feature-popover/lib/cjs/translations/zh.json +3 -0
  1619. package/libs/feature-popover/lib/es6/FeaturePopover.js +197 -0
  1620. package/libs/feature-popover/lib/es6/FeaturePopover.js.map +1 -0
  1621. package/libs/feature-popover/lib/es6/index.d.js +2 -0
  1622. package/libs/feature-popover/lib/es6/index.d.js.map +1 -0
  1623. package/libs/feature-popover/lib/es6/index.js +2 -0
  1624. package/libs/feature-popover/lib/es6/index.js.map +1 -0
  1625. package/libs/feature-popover/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1626. package/libs/feature-popover/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1627. package/libs/feature-popover/lib/es6/translations/de.json +3 -0
  1628. package/libs/feature-popover/lib/es6/translations/en.json +3 -0
  1629. package/libs/feature-popover/lib/es6/translations/es.json +3 -0
  1630. package/libs/feature-popover/lib/es6/translations/fr.json +3 -0
  1631. package/libs/feature-popover/lib/es6/translations/it.json +3 -0
  1632. package/libs/feature-popover/lib/es6/translations/ja.json +3 -0
  1633. package/libs/feature-popover/lib/es6/translations/ko.json +3 -0
  1634. package/libs/feature-popover/lib/es6/translations/nl.json +3 -0
  1635. package/libs/feature-popover/lib/es6/translations/pl.json +3 -0
  1636. package/libs/feature-popover/lib/es6/translations/pt.json +3 -0
  1637. package/libs/feature-popover/lib/es6/translations/sv.json +3 -0
  1638. package/libs/feature-popover/lib/es6/translations/tr.json +3 -0
  1639. package/libs/feature-popover/lib/es6/translations/vi.json +3 -0
  1640. package/libs/feature-popover/lib/es6/translations/zh.json +3 -0
  1641. package/libs/feature-popover/lib/types/index.d.ts +33 -0
  1642. package/libs/feedback-form/lib/cjs/FeedbackForm.js +216 -0
  1643. package/libs/feedback-form/lib/cjs/FeedbackForm.js.map +1 -0
  1644. package/libs/feedback-form/lib/cjs/index.d.js +2 -0
  1645. package/libs/feedback-form/lib/cjs/index.d.js.map +1 -0
  1646. package/libs/feedback-form/lib/cjs/index.js +14 -0
  1647. package/libs/feedback-form/lib/cjs/index.js.map +1 -0
  1648. package/libs/feedback-form/lib/es6/FeedbackForm.js +213 -0
  1649. package/libs/feedback-form/lib/es6/FeedbackForm.js.map +1 -0
  1650. package/libs/feedback-form/lib/es6/index.d.js +2 -0
  1651. package/libs/feedback-form/lib/es6/index.d.js.map +1 -0
  1652. package/libs/feedback-form/lib/es6/index.js +2 -0
  1653. package/libs/feedback-form/lib/es6/index.js.map +1 -0
  1654. package/libs/feedback-form/lib/types/index.d.ts +35 -0
  1655. package/libs/flags/lib/cjs/Flags.js +108 -0
  1656. package/libs/flags/lib/cjs/Flags.js.map +1 -0
  1657. package/libs/flags/lib/cjs/aliases.json +7 -0
  1658. package/libs/flags/lib/cjs/countries.json +509 -0
  1659. package/libs/flags/lib/cjs/index.d.js +2 -0
  1660. package/libs/flags/lib/cjs/index.d.js.map +1 -0
  1661. package/libs/flags/lib/cjs/index.js +26 -0
  1662. package/libs/flags/lib/cjs/index.js.map +1 -0
  1663. package/libs/flags/lib/es6/Flags.js +98 -0
  1664. package/libs/flags/lib/es6/Flags.js.map +1 -0
  1665. package/libs/flags/lib/es6/aliases.json +7 -0
  1666. package/libs/flags/lib/es6/countries.json +509 -0
  1667. package/libs/flags/lib/es6/index.d.js +2 -0
  1668. package/libs/flags/lib/es6/index.d.js.map +1 -0
  1669. package/libs/flags/lib/es6/index.js +3 -0
  1670. package/libs/flags/lib/es6/index.js.map +1 -0
  1671. package/libs/flags/lib/sprites/sprite@1x.css +766 -0
  1672. package/libs/flags/lib/sprites/sprite@1x.png +0 -0
  1673. package/libs/flags/lib/sprites/sprite@2x.css +769 -0
  1674. package/libs/flags/lib/sprites/sprite@2x.png +0 -0
  1675. package/libs/flags/lib/types/index.d.ts +1344 -0
  1676. package/libs/flex-box/lib/cjs/Box/index.js +22 -0
  1677. package/libs/flex-box/lib/cjs/Box/index.js.map +1 -0
  1678. package/libs/flex-box/lib/cjs/Box/useBox.js +132 -0
  1679. package/libs/flex-box/lib/cjs/Box/useBox.js.map +1 -0
  1680. package/libs/flex-box/lib/cjs/Flex/index.js +22 -0
  1681. package/libs/flex-box/lib/cjs/Flex/index.js.map +1 -0
  1682. package/libs/flex-box/lib/cjs/Flex/useFlex.js +77 -0
  1683. package/libs/flex-box/lib/cjs/Flex/useFlex.js.map +1 -0
  1684. package/libs/flex-box/lib/cjs/index.js +64 -0
  1685. package/libs/flex-box/lib/cjs/index.js.map +1 -0
  1686. package/libs/flex-box/lib/cjs/utils.js +20 -0
  1687. package/libs/flex-box/lib/cjs/utils.js.map +1 -0
  1688. package/libs/flex-box/lib/es6/Box/index.js +14 -0
  1689. package/libs/flex-box/lib/es6/Box/index.js.map +1 -0
  1690. package/libs/flex-box/lib/es6/Box/useBox.js +125 -0
  1691. package/libs/flex-box/lib/es6/Box/useBox.js.map +1 -0
  1692. package/libs/flex-box/lib/es6/Flex/index.js +14 -0
  1693. package/libs/flex-box/lib/es6/Flex/index.js.map +1 -0
  1694. package/libs/flex-box/lib/es6/Flex/useFlex.js +70 -0
  1695. package/libs/flex-box/lib/es6/Flex/useFlex.js.map +1 -0
  1696. package/libs/flex-box/lib/es6/index.js +9 -0
  1697. package/libs/flex-box/lib/es6/index.js.map +1 -0
  1698. package/libs/flex-box/lib/es6/utils.js +13 -0
  1699. package/libs/flex-box/lib/es6/utils.js.map +1 -0
  1700. package/libs/flex-box/lib/types/Box/index.d.ts +4 -0
  1701. package/libs/flex-box/lib/types/Box/useBox.d.ts +109 -0
  1702. package/libs/flex-box/lib/types/Flex/index.d.ts +4 -0
  1703. package/libs/flex-box/lib/types/Flex/useFlex.d.ts +54 -0
  1704. package/libs/flex-box/lib/types/index.d.ts +6 -0
  1705. package/libs/flex-box/lib/types/utils.d.ts +1 -0
  1706. package/libs/format-text/lib/cjs/FormatText.js +51 -0
  1707. package/libs/format-text/lib/cjs/FormatText.js.map +1 -0
  1708. package/libs/format-text/lib/cjs/index.js +26 -0
  1709. package/libs/format-text/lib/cjs/index.js.map +1 -0
  1710. package/libs/format-text/lib/es6/FormatText.js +44 -0
  1711. package/libs/format-text/lib/es6/FormatText.js.map +1 -0
  1712. package/libs/format-text/lib/es6/index.js +3 -0
  1713. package/libs/format-text/lib/es6/index.js.map +1 -0
  1714. package/libs/format-text/lib/types/FormatText.d.ts +10 -0
  1715. package/libs/format-text/lib/types/index.d.ts +2 -0
  1716. package/libs/fullscreen-modal/lib/cjs/FullscreenModal.js +219 -0
  1717. package/libs/fullscreen-modal/lib/cjs/FullscreenModal.js.map +1 -0
  1718. package/libs/fullscreen-modal/lib/cjs/index.d.js +2 -0
  1719. package/libs/fullscreen-modal/lib/cjs/index.d.js.map +1 -0
  1720. package/libs/fullscreen-modal/lib/cjs/index.js +14 -0
  1721. package/libs/fullscreen-modal/lib/cjs/index.js.map +1 -0
  1722. package/libs/fullscreen-modal/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1723. package/libs/fullscreen-modal/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1724. package/libs/fullscreen-modal/lib/cjs/translations/de.json +4 -0
  1725. package/libs/fullscreen-modal/lib/cjs/translations/en.json +4 -0
  1726. package/libs/fullscreen-modal/lib/cjs/translations/es.json +4 -0
  1727. package/libs/fullscreen-modal/lib/cjs/translations/fr.json +4 -0
  1728. package/libs/fullscreen-modal/lib/cjs/translations/it.json +4 -0
  1729. package/libs/fullscreen-modal/lib/cjs/translations/ja.json +4 -0
  1730. package/libs/fullscreen-modal/lib/cjs/translations/ko.json +4 -0
  1731. package/libs/fullscreen-modal/lib/cjs/translations/nl.json +4 -0
  1732. package/libs/fullscreen-modal/lib/cjs/translations/pl.json +4 -0
  1733. package/libs/fullscreen-modal/lib/cjs/translations/pt.json +4 -0
  1734. package/libs/fullscreen-modal/lib/cjs/translations/sv.json +4 -0
  1735. package/libs/fullscreen-modal/lib/cjs/translations/tr.json +4 -0
  1736. package/libs/fullscreen-modal/lib/cjs/translations/vi.json +4 -0
  1737. package/libs/fullscreen-modal/lib/cjs/translations/zh.json +4 -0
  1738. package/libs/fullscreen-modal/lib/es6/FullscreenModal.js +220 -0
  1739. package/libs/fullscreen-modal/lib/es6/FullscreenModal.js.map +1 -0
  1740. package/libs/fullscreen-modal/lib/es6/index.d.js +2 -0
  1741. package/libs/fullscreen-modal/lib/es6/index.d.js.map +1 -0
  1742. package/libs/fullscreen-modal/lib/es6/index.js +2 -0
  1743. package/libs/fullscreen-modal/lib/es6/index.js.map +1 -0
  1744. package/libs/fullscreen-modal/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1745. package/libs/fullscreen-modal/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1746. package/libs/fullscreen-modal/lib/es6/translations/de.json +4 -0
  1747. package/libs/fullscreen-modal/lib/es6/translations/en.json +4 -0
  1748. package/libs/fullscreen-modal/lib/es6/translations/es.json +4 -0
  1749. package/libs/fullscreen-modal/lib/es6/translations/fr.json +4 -0
  1750. package/libs/fullscreen-modal/lib/es6/translations/it.json +4 -0
  1751. package/libs/fullscreen-modal/lib/es6/translations/ja.json +4 -0
  1752. package/libs/fullscreen-modal/lib/es6/translations/ko.json +4 -0
  1753. package/libs/fullscreen-modal/lib/es6/translations/nl.json +4 -0
  1754. package/libs/fullscreen-modal/lib/es6/translations/pl.json +4 -0
  1755. package/libs/fullscreen-modal/lib/es6/translations/pt.json +4 -0
  1756. package/libs/fullscreen-modal/lib/es6/translations/sv.json +4 -0
  1757. package/libs/fullscreen-modal/lib/es6/translations/tr.json +4 -0
  1758. package/libs/fullscreen-modal/lib/es6/translations/vi.json +4 -0
  1759. package/libs/fullscreen-modal/lib/es6/translations/zh.json +4 -0
  1760. package/libs/fullscreen-modal/lib/types/index.d.ts +48 -0
  1761. package/libs/grid/lib/cjs/Grid.js +218 -0
  1762. package/libs/grid/lib/cjs/Grid.js.map +1 -0
  1763. package/libs/grid/lib/cjs/index.d.js +2 -0
  1764. package/libs/grid/lib/cjs/index.d.js.map +1 -0
  1765. package/libs/grid/lib/cjs/index.js +17 -0
  1766. package/libs/grid/lib/cjs/index.js.map +1 -0
  1767. package/libs/grid/lib/es6/Grid.js +212 -0
  1768. package/libs/grid/lib/es6/Grid.js.map +1 -0
  1769. package/libs/grid/lib/es6/index.d.js +2 -0
  1770. package/libs/grid/lib/es6/index.d.js.map +1 -0
  1771. package/libs/grid/lib/es6/index.js +4 -0
  1772. package/libs/grid/lib/es6/index.js.map +1 -0
  1773. package/libs/grid/lib/types/index.d.ts +48 -0
  1774. package/libs/i18n-unplugin/lib/cjs/index.js +140 -0
  1775. package/libs/i18n-unplugin/lib/cjs/index.js.map +1 -0
  1776. package/libs/i18n-unplugin/lib/es6/index.js +128 -0
  1777. package/libs/i18n-unplugin/lib/es6/index.js.map +1 -0
  1778. package/libs/i18n-unplugin/lib/types/index.d.ts +12 -0
  1779. package/libs/icon/lib/cjs/Icon.js +89 -0
  1780. package/libs/icon/lib/cjs/Icon.js.map +1 -0
  1781. package/libs/icon/lib/cjs/index.d.js +2 -0
  1782. package/libs/icon/lib/cjs/index.d.js.map +1 -0
  1783. package/libs/icon/lib/cjs/index.js +14 -0
  1784. package/libs/icon/lib/cjs/index.js.map +1 -0
  1785. package/libs/icon/lib/es6/Icon.js +82 -0
  1786. package/libs/icon/lib/es6/Icon.js.map +1 -0
  1787. package/libs/icon/lib/es6/index.d.js +2 -0
  1788. package/libs/icon/lib/es6/index.d.js.map +1 -0
  1789. package/libs/icon/lib/es6/index.js +2 -0
  1790. package/libs/icon/lib/es6/index.js.map +1 -0
  1791. package/libs/icon/lib/types/index.d.ts +20 -0
  1792. package/libs/illustration/lib/cjs/index.d.js +2 -0
  1793. package/libs/illustration/lib/cjs/index.d.js.map +1 -0
  1794. package/libs/illustration/lib/cjs/index.js +22 -0
  1795. package/libs/illustration/lib/cjs/index.js.map +1 -0
  1796. package/libs/illustration/lib/es6/index.d.js +2 -0
  1797. package/libs/illustration/lib/es6/index.d.js.map +1 -0
  1798. package/libs/illustration/lib/es6/index.js +15 -0
  1799. package/libs/illustration/lib/es6/index.js.map +1 -0
  1800. package/libs/illustration/lib/types/index.d.ts +55 -0
  1801. package/libs/inline-edit/lib/cjs/InlineEdit.js +156 -0
  1802. package/libs/inline-edit/lib/cjs/InlineEdit.js.map +1 -0
  1803. package/libs/inline-edit/lib/cjs/index.d.js +2 -0
  1804. package/libs/inline-edit/lib/cjs/index.d.js.map +1 -0
  1805. package/libs/inline-edit/lib/cjs/index.js +14 -0
  1806. package/libs/inline-edit/lib/cjs/index.js.map +1 -0
  1807. package/libs/inline-edit/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1808. package/libs/inline-edit/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1809. package/libs/inline-edit/lib/cjs/translations/de.json +3 -0
  1810. package/libs/inline-edit/lib/cjs/translations/en.json +3 -0
  1811. package/libs/inline-edit/lib/cjs/translations/es.json +3 -0
  1812. package/libs/inline-edit/lib/cjs/translations/fr.json +3 -0
  1813. package/libs/inline-edit/lib/cjs/translations/it.json +3 -0
  1814. package/libs/inline-edit/lib/cjs/translations/ja.json +3 -0
  1815. package/libs/inline-edit/lib/cjs/translations/ko.json +3 -0
  1816. package/libs/inline-edit/lib/cjs/translations/nl.json +3 -0
  1817. package/libs/inline-edit/lib/cjs/translations/pl.json +3 -0
  1818. package/libs/inline-edit/lib/cjs/translations/pt.json +3 -0
  1819. package/libs/inline-edit/lib/cjs/translations/sv.json +3 -0
  1820. package/libs/inline-edit/lib/cjs/translations/tr.json +3 -0
  1821. package/libs/inline-edit/lib/cjs/translations/vi.json +3 -0
  1822. package/libs/inline-edit/lib/cjs/translations/zh.json +3 -0
  1823. package/libs/inline-edit/lib/es6/InlineEdit.js +151 -0
  1824. package/libs/inline-edit/lib/es6/InlineEdit.js.map +1 -0
  1825. package/libs/inline-edit/lib/es6/index.d.js +2 -0
  1826. package/libs/inline-edit/lib/es6/index.d.js.map +1 -0
  1827. package/libs/inline-edit/lib/es6/index.js +2 -0
  1828. package/libs/inline-edit/lib/es6/index.js.map +1 -0
  1829. package/libs/inline-edit/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1830. package/libs/inline-edit/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1831. package/libs/inline-edit/lib/es6/translations/de.json +3 -0
  1832. package/libs/inline-edit/lib/es6/translations/en.json +3 -0
  1833. package/libs/inline-edit/lib/es6/translations/es.json +3 -0
  1834. package/libs/inline-edit/lib/es6/translations/fr.json +3 -0
  1835. package/libs/inline-edit/lib/es6/translations/it.json +3 -0
  1836. package/libs/inline-edit/lib/es6/translations/ja.json +3 -0
  1837. package/libs/inline-edit/lib/es6/translations/ko.json +3 -0
  1838. package/libs/inline-edit/lib/es6/translations/nl.json +3 -0
  1839. package/libs/inline-edit/lib/es6/translations/pl.json +3 -0
  1840. package/libs/inline-edit/lib/es6/translations/pt.json +3 -0
  1841. package/libs/inline-edit/lib/es6/translations/sv.json +3 -0
  1842. package/libs/inline-edit/lib/es6/translations/tr.json +3 -0
  1843. package/libs/inline-edit/lib/es6/translations/vi.json +3 -0
  1844. package/libs/inline-edit/lib/es6/translations/zh.json +3 -0
  1845. package/libs/inline-edit/lib/types/index.d.ts +43 -0
  1846. package/libs/inline-input/lib/cjs/InlineInput.js +541 -0
  1847. package/libs/inline-input/lib/cjs/InlineInput.js.map +1 -0
  1848. package/libs/inline-input/lib/cjs/index.d.js +2 -0
  1849. package/libs/inline-input/lib/cjs/index.d.js.map +1 -0
  1850. package/libs/inline-input/lib/cjs/index.js +11 -0
  1851. package/libs/inline-input/lib/cjs/index.js.map +1 -0
  1852. package/libs/inline-input/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1853. package/libs/inline-input/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1854. package/libs/inline-input/lib/cjs/translations/de.json +5 -0
  1855. package/libs/inline-input/lib/cjs/translations/en.json +5 -0
  1856. package/libs/inline-input/lib/cjs/translations/es.json +5 -0
  1857. package/libs/inline-input/lib/cjs/translations/fr.json +5 -0
  1858. package/libs/inline-input/lib/cjs/translations/it.json +5 -0
  1859. package/libs/inline-input/lib/cjs/translations/ja.json +5 -0
  1860. package/libs/inline-input/lib/cjs/translations/ko.json +5 -0
  1861. package/libs/inline-input/lib/cjs/translations/nl.json +5 -0
  1862. package/libs/inline-input/lib/cjs/translations/pl.json +5 -0
  1863. package/libs/inline-input/lib/cjs/translations/pt.json +5 -0
  1864. package/libs/inline-input/lib/cjs/translations/sv.json +5 -0
  1865. package/libs/inline-input/lib/cjs/translations/tr.json +5 -0
  1866. package/libs/inline-input/lib/cjs/translations/vi.json +5 -0
  1867. package/libs/inline-input/lib/cjs/translations/zh.json +5 -0
  1868. package/libs/inline-input/lib/es6/InlineInput.js +542 -0
  1869. package/libs/inline-input/lib/es6/InlineInput.js.map +1 -0
  1870. package/libs/inline-input/lib/es6/index.d.js +2 -0
  1871. package/libs/inline-input/lib/es6/index.d.js.map +1 -0
  1872. package/libs/inline-input/lib/es6/index.js +3 -0
  1873. package/libs/inline-input/lib/es6/index.js.map +1 -0
  1874. package/libs/inline-input/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1875. package/libs/inline-input/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1876. package/libs/inline-input/lib/es6/translations/de.json +5 -0
  1877. package/libs/inline-input/lib/es6/translations/en.json +5 -0
  1878. package/libs/inline-input/lib/es6/translations/es.json +5 -0
  1879. package/libs/inline-input/lib/es6/translations/fr.json +5 -0
  1880. package/libs/inline-input/lib/es6/translations/it.json +5 -0
  1881. package/libs/inline-input/lib/es6/translations/ja.json +5 -0
  1882. package/libs/inline-input/lib/es6/translations/ko.json +5 -0
  1883. package/libs/inline-input/lib/es6/translations/nl.json +5 -0
  1884. package/libs/inline-input/lib/es6/translations/pl.json +5 -0
  1885. package/libs/inline-input/lib/es6/translations/pt.json +5 -0
  1886. package/libs/inline-input/lib/es6/translations/sv.json +5 -0
  1887. package/libs/inline-input/lib/es6/translations/tr.json +5 -0
  1888. package/libs/inline-input/lib/es6/translations/vi.json +5 -0
  1889. package/libs/inline-input/lib/es6/translations/zh.json +5 -0
  1890. package/libs/inline-input/lib/types/index.d.ts +151 -0
  1891. package/libs/input/lib/cjs/Input.js +223 -0
  1892. package/libs/input/lib/cjs/Input.js.map +1 -0
  1893. package/libs/input/lib/cjs/index.d.js +2 -0
  1894. package/libs/input/lib/cjs/index.d.js.map +1 -0
  1895. package/libs/input/lib/cjs/index.js +14 -0
  1896. package/libs/input/lib/cjs/index.js.map +1 -0
  1897. package/libs/input/lib/es6/Input.js +218 -0
  1898. package/libs/input/lib/es6/Input.js.map +1 -0
  1899. package/libs/input/lib/es6/index.d.js +2 -0
  1900. package/libs/input/lib/es6/index.d.js.map +1 -0
  1901. package/libs/input/lib/es6/index.js +2 -0
  1902. package/libs/input/lib/es6/index.js.map +1 -0
  1903. package/libs/input/lib/types/index.d.ts +92 -0
  1904. package/libs/input-mask/lib/cjs/InputMask.js +336 -0
  1905. package/libs/input-mask/lib/cjs/InputMask.js.map +1 -0
  1906. package/libs/input-mask/lib/cjs/index.js +26 -0
  1907. package/libs/input-mask/lib/cjs/index.js.map +1 -0
  1908. package/libs/input-mask/lib/es6/InputMask.js +329 -0
  1909. package/libs/input-mask/lib/es6/InputMask.js.map +1 -0
  1910. package/libs/input-mask/lib/es6/index.js +3 -0
  1911. package/libs/input-mask/lib/es6/index.js.map +1 -0
  1912. package/libs/input-mask/lib/types/InputMask.d.ts +59 -0
  1913. package/libs/input-mask/lib/types/index.d.ts +2 -0
  1914. package/libs/input-number/lib/cjs/InputNumber.js +251 -0
  1915. package/libs/input-number/lib/cjs/InputNumber.js.map +1 -0
  1916. package/libs/input-number/lib/cjs/buttons.js +31 -0
  1917. package/libs/input-number/lib/cjs/buttons.js.map +1 -0
  1918. package/libs/input-number/lib/cjs/index.d.js +2 -0
  1919. package/libs/input-number/lib/cjs/index.d.js.map +1 -0
  1920. package/libs/input-number/lib/cjs/index.js +33 -0
  1921. package/libs/input-number/lib/cjs/index.js.map +1 -0
  1922. package/libs/input-number/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1923. package/libs/input-number/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1924. package/libs/input-number/lib/cjs/translations/de.json +4 -0
  1925. package/libs/input-number/lib/cjs/translations/en.json +4 -0
  1926. package/libs/input-number/lib/cjs/translations/es.json +4 -0
  1927. package/libs/input-number/lib/cjs/translations/fr.json +4 -0
  1928. package/libs/input-number/lib/cjs/translations/it.json +4 -0
  1929. package/libs/input-number/lib/cjs/translations/ja.json +4 -0
  1930. package/libs/input-number/lib/cjs/translations/ko.json +4 -0
  1931. package/libs/input-number/lib/cjs/translations/nl.json +4 -0
  1932. package/libs/input-number/lib/cjs/translations/pl.json +4 -0
  1933. package/libs/input-number/lib/cjs/translations/pt.json +4 -0
  1934. package/libs/input-number/lib/cjs/translations/sv.json +4 -0
  1935. package/libs/input-number/lib/cjs/translations/tr.json +4 -0
  1936. package/libs/input-number/lib/cjs/translations/vi.json +4 -0
  1937. package/libs/input-number/lib/cjs/translations/zh.json +4 -0
  1938. package/libs/input-number/lib/es6/InputNumber.js +245 -0
  1939. package/libs/input-number/lib/es6/InputNumber.js.map +1 -0
  1940. package/libs/input-number/lib/es6/buttons.js +22 -0
  1941. package/libs/input-number/lib/es6/buttons.js.map +1 -0
  1942. package/libs/input-number/lib/es6/index.d.js +2 -0
  1943. package/libs/input-number/lib/es6/index.d.js.map +1 -0
  1944. package/libs/input-number/lib/es6/index.js +3 -0
  1945. package/libs/input-number/lib/es6/index.js.map +1 -0
  1946. package/libs/input-number/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  1947. package/libs/input-number/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1948. package/libs/input-number/lib/es6/translations/de.json +4 -0
  1949. package/libs/input-number/lib/es6/translations/en.json +4 -0
  1950. package/libs/input-number/lib/es6/translations/es.json +4 -0
  1951. package/libs/input-number/lib/es6/translations/fr.json +4 -0
  1952. package/libs/input-number/lib/es6/translations/it.json +4 -0
  1953. package/libs/input-number/lib/es6/translations/ja.json +4 -0
  1954. package/libs/input-number/lib/es6/translations/ko.json +4 -0
  1955. package/libs/input-number/lib/es6/translations/nl.json +4 -0
  1956. package/libs/input-number/lib/es6/translations/pl.json +4 -0
  1957. package/libs/input-number/lib/es6/translations/pt.json +4 -0
  1958. package/libs/input-number/lib/es6/translations/sv.json +4 -0
  1959. package/libs/input-number/lib/es6/translations/tr.json +4 -0
  1960. package/libs/input-number/lib/es6/translations/vi.json +4 -0
  1961. package/libs/input-number/lib/es6/translations/zh.json +4 -0
  1962. package/libs/input-number/lib/types/index.d.ts +68 -0
  1963. package/libs/input-tags/lib/cjs/InputTags.js +284 -0
  1964. package/libs/input-tags/lib/cjs/InputTags.js.map +1 -0
  1965. package/libs/input-tags/lib/cjs/index.js +26 -0
  1966. package/libs/input-tags/lib/cjs/index.js.map +1 -0
  1967. package/libs/input-tags/lib/es6/InputTags.js +279 -0
  1968. package/libs/input-tags/lib/es6/InputTags.js.map +1 -0
  1969. package/libs/input-tags/lib/es6/index.js +3 -0
  1970. package/libs/input-tags/lib/es6/index.js.map +1 -0
  1971. package/libs/input-tags/lib/types/InputTags.d.ts +68 -0
  1972. package/libs/input-tags/lib/types/index.d.ts +2 -0
  1973. package/libs/link/lib/cjs/Link.js +122 -0
  1974. package/libs/link/lib/cjs/Link.js.map +1 -0
  1975. package/libs/link/lib/cjs/index.d.js +2 -0
  1976. package/libs/link/lib/cjs/index.d.js.map +1 -0
  1977. package/libs/link/lib/cjs/index.js +14 -0
  1978. package/libs/link/lib/cjs/index.js.map +1 -0
  1979. package/libs/link/lib/es6/Link.js +117 -0
  1980. package/libs/link/lib/es6/Link.js.map +1 -0
  1981. package/libs/link/lib/es6/index.d.js +2 -0
  1982. package/libs/link/lib/es6/index.d.js.map +1 -0
  1983. package/libs/link/lib/es6/index.js +2 -0
  1984. package/libs/link/lib/es6/index.js.map +1 -0
  1985. package/libs/link/lib/types/index.d.ts +42 -0
  1986. package/libs/modal/lib/cjs/Modal.js +242 -0
  1987. package/libs/modal/lib/cjs/Modal.js.map +1 -0
  1988. package/libs/modal/lib/cjs/index.d.js +2 -0
  1989. package/libs/modal/lib/cjs/index.d.js.map +1 -0
  1990. package/libs/modal/lib/cjs/index.js +14 -0
  1991. package/libs/modal/lib/cjs/index.js.map +1 -0
  1992. package/libs/modal/lib/cjs/modal.vo-test.js +106 -0
  1993. package/libs/modal/lib/cjs/modal.vo-test.js.map +1 -0
  1994. package/libs/modal/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  1995. package/libs/modal/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  1996. package/libs/modal/lib/cjs/translations/de.json +4 -0
  1997. package/libs/modal/lib/cjs/translations/en.json +4 -0
  1998. package/libs/modal/lib/cjs/translations/es.json +4 -0
  1999. package/libs/modal/lib/cjs/translations/fr.json +4 -0
  2000. package/libs/modal/lib/cjs/translations/it.json +4 -0
  2001. package/libs/modal/lib/cjs/translations/ja.json +4 -0
  2002. package/libs/modal/lib/cjs/translations/ko.json +4 -0
  2003. package/libs/modal/lib/cjs/translations/nl.json +4 -0
  2004. package/libs/modal/lib/cjs/translations/pl.json +4 -0
  2005. package/libs/modal/lib/cjs/translations/pt.json +4 -0
  2006. package/libs/modal/lib/cjs/translations/sv.json +4 -0
  2007. package/libs/modal/lib/cjs/translations/tr.json +4 -0
  2008. package/libs/modal/lib/cjs/translations/vi.json +4 -0
  2009. package/libs/modal/lib/cjs/translations/zh.json +4 -0
  2010. package/libs/modal/lib/es6/Modal.js +239 -0
  2011. package/libs/modal/lib/es6/Modal.js.map +1 -0
  2012. package/libs/modal/lib/es6/index.d.js +2 -0
  2013. package/libs/modal/lib/es6/index.d.js.map +1 -0
  2014. package/libs/modal/lib/es6/index.js +2 -0
  2015. package/libs/modal/lib/es6/index.js.map +1 -0
  2016. package/libs/modal/lib/es6/modal.vo-test.js +103 -0
  2017. package/libs/modal/lib/es6/modal.vo-test.js.map +1 -0
  2018. package/libs/modal/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2019. package/libs/modal/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2020. package/libs/modal/lib/es6/translations/de.json +4 -0
  2021. package/libs/modal/lib/es6/translations/en.json +4 -0
  2022. package/libs/modal/lib/es6/translations/es.json +4 -0
  2023. package/libs/modal/lib/es6/translations/fr.json +4 -0
  2024. package/libs/modal/lib/es6/translations/it.json +4 -0
  2025. package/libs/modal/lib/es6/translations/ja.json +4 -0
  2026. package/libs/modal/lib/es6/translations/ko.json +4 -0
  2027. package/libs/modal/lib/es6/translations/nl.json +4 -0
  2028. package/libs/modal/lib/es6/translations/pl.json +4 -0
  2029. package/libs/modal/lib/es6/translations/pt.json +4 -0
  2030. package/libs/modal/lib/es6/translations/sv.json +4 -0
  2031. package/libs/modal/lib/es6/translations/tr.json +4 -0
  2032. package/libs/modal/lib/es6/translations/vi.json +4 -0
  2033. package/libs/modal/lib/es6/translations/zh.json +4 -0
  2034. package/libs/modal/lib/types/index.d.ts +61 -0
  2035. package/libs/neighbor-location/lib/cjs/NeighborLocation.js +145 -0
  2036. package/libs/neighbor-location/lib/cjs/NeighborLocation.js.map +1 -0
  2037. package/libs/neighbor-location/lib/cjs/index.d.js +2 -0
  2038. package/libs/neighbor-location/lib/cjs/index.d.js.map +1 -0
  2039. package/libs/neighbor-location/lib/cjs/index.js +26 -0
  2040. package/libs/neighbor-location/lib/cjs/index.js.map +1 -0
  2041. package/libs/neighbor-location/lib/es6/NeighborLocation.js +137 -0
  2042. package/libs/neighbor-location/lib/es6/NeighborLocation.js.map +1 -0
  2043. package/libs/neighbor-location/lib/es6/index.d.js +2 -0
  2044. package/libs/neighbor-location/lib/es6/index.d.js.map +1 -0
  2045. package/libs/neighbor-location/lib/es6/index.js +3 -0
  2046. package/libs/neighbor-location/lib/es6/index.js.map +1 -0
  2047. package/libs/neighbor-location/lib/types/index.d.ts +42 -0
  2048. package/libs/notice/lib/cjs/Notice.js +161 -0
  2049. package/libs/notice/lib/cjs/Notice.js.map +1 -0
  2050. package/libs/notice/lib/cjs/NoticeSmart.js +49 -0
  2051. package/libs/notice/lib/cjs/NoticeSmart.js.map +1 -0
  2052. package/libs/notice/lib/cjs/index.d.js +2 -0
  2053. package/libs/notice/lib/cjs/index.d.js.map +1 -0
  2054. package/libs/notice/lib/cjs/index.js +18 -0
  2055. package/libs/notice/lib/cjs/index.js.map +1 -0
  2056. package/libs/notice/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2057. package/libs/notice/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2058. package/libs/notice/lib/cjs/translations/de.json +3 -0
  2059. package/libs/notice/lib/cjs/translations/en.json +3 -0
  2060. package/libs/notice/lib/cjs/translations/es.json +3 -0
  2061. package/libs/notice/lib/cjs/translations/fr.json +3 -0
  2062. package/libs/notice/lib/cjs/translations/it.json +3 -0
  2063. package/libs/notice/lib/cjs/translations/ja.json +3 -0
  2064. package/libs/notice/lib/cjs/translations/ko.json +3 -0
  2065. package/libs/notice/lib/cjs/translations/nl.json +3 -0
  2066. package/libs/notice/lib/cjs/translations/pl.json +3 -0
  2067. package/libs/notice/lib/cjs/translations/pt.json +3 -0
  2068. package/libs/notice/lib/cjs/translations/sv.json +3 -0
  2069. package/libs/notice/lib/cjs/translations/tr.json +3 -0
  2070. package/libs/notice/lib/cjs/translations/vi.json +3 -0
  2071. package/libs/notice/lib/cjs/translations/zh.json +3 -0
  2072. package/libs/notice/lib/es6/Notice.js +158 -0
  2073. package/libs/notice/lib/es6/Notice.js.map +1 -0
  2074. package/libs/notice/lib/es6/NoticeSmart.js +41 -0
  2075. package/libs/notice/lib/es6/NoticeSmart.js.map +1 -0
  2076. package/libs/notice/lib/es6/index.d.js +2 -0
  2077. package/libs/notice/lib/es6/index.d.js.map +1 -0
  2078. package/libs/notice/lib/es6/index.js +4 -0
  2079. package/libs/notice/lib/es6/index.js.map +1 -0
  2080. package/libs/notice/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2081. package/libs/notice/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2082. package/libs/notice/lib/es6/translations/de.json +3 -0
  2083. package/libs/notice/lib/es6/translations/en.json +3 -0
  2084. package/libs/notice/lib/es6/translations/es.json +3 -0
  2085. package/libs/notice/lib/es6/translations/fr.json +3 -0
  2086. package/libs/notice/lib/es6/translations/it.json +3 -0
  2087. package/libs/notice/lib/es6/translations/ja.json +3 -0
  2088. package/libs/notice/lib/es6/translations/ko.json +3 -0
  2089. package/libs/notice/lib/es6/translations/nl.json +3 -0
  2090. package/libs/notice/lib/es6/translations/pl.json +3 -0
  2091. package/libs/notice/lib/es6/translations/pt.json +3 -0
  2092. package/libs/notice/lib/es6/translations/sv.json +3 -0
  2093. package/libs/notice/lib/es6/translations/tr.json +3 -0
  2094. package/libs/notice/lib/es6/translations/vi.json +3 -0
  2095. package/libs/notice/lib/es6/translations/zh.json +3 -0
  2096. package/libs/notice/lib/types/index.d.ts +74 -0
  2097. package/libs/notice-bubble/lib/cjs/NoticeBubble.js +315 -0
  2098. package/libs/notice-bubble/lib/cjs/NoticeBubble.js.map +1 -0
  2099. package/libs/notice-bubble/lib/cjs/NoticeBubbleManager.js +104 -0
  2100. package/libs/notice-bubble/lib/cjs/NoticeBubbleManager.js.map +1 -0
  2101. package/libs/notice-bubble/lib/cjs/index.d.js +20 -0
  2102. package/libs/notice-bubble/lib/cjs/index.d.js.map +1 -0
  2103. package/libs/notice-bubble/lib/cjs/index.js +50 -0
  2104. package/libs/notice-bubble/lib/cjs/index.js.map +1 -0
  2105. package/libs/notice-bubble/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2106. package/libs/notice-bubble/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2107. package/libs/notice-bubble/lib/cjs/translations/de.json +3 -0
  2108. package/libs/notice-bubble/lib/cjs/translations/en.json +3 -0
  2109. package/libs/notice-bubble/lib/cjs/translations/es.json +3 -0
  2110. package/libs/notice-bubble/lib/cjs/translations/fr.json +3 -0
  2111. package/libs/notice-bubble/lib/cjs/translations/it.json +3 -0
  2112. package/libs/notice-bubble/lib/cjs/translations/ja.json +3 -0
  2113. package/libs/notice-bubble/lib/cjs/translations/ko.json +3 -0
  2114. package/libs/notice-bubble/lib/cjs/translations/nl.json +3 -0
  2115. package/libs/notice-bubble/lib/cjs/translations/pl.json +3 -0
  2116. package/libs/notice-bubble/lib/cjs/translations/pt.json +3 -0
  2117. package/libs/notice-bubble/lib/cjs/translations/sv.json +3 -0
  2118. package/libs/notice-bubble/lib/cjs/translations/tr.json +3 -0
  2119. package/libs/notice-bubble/lib/cjs/translations/vi.json +3 -0
  2120. package/libs/notice-bubble/lib/cjs/translations/zh.json +3 -0
  2121. package/libs/notice-bubble/lib/cjs/utils.js +46 -0
  2122. package/libs/notice-bubble/lib/cjs/utils.js.map +1 -0
  2123. package/libs/notice-bubble/lib/es6/NoticeBubble.js +307 -0
  2124. package/libs/notice-bubble/lib/es6/NoticeBubble.js.map +1 -0
  2125. package/libs/notice-bubble/lib/es6/NoticeBubbleManager.js +96 -0
  2126. package/libs/notice-bubble/lib/es6/NoticeBubbleManager.js.map +1 -0
  2127. package/libs/notice-bubble/lib/es6/index.d.js +18 -0
  2128. package/libs/notice-bubble/lib/es6/index.d.js.map +1 -0
  2129. package/libs/notice-bubble/lib/es6/index.js +7 -0
  2130. package/libs/notice-bubble/lib/es6/index.js.map +1 -0
  2131. package/libs/notice-bubble/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2132. package/libs/notice-bubble/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2133. package/libs/notice-bubble/lib/es6/translations/de.json +3 -0
  2134. package/libs/notice-bubble/lib/es6/translations/en.json +3 -0
  2135. package/libs/notice-bubble/lib/es6/translations/es.json +3 -0
  2136. package/libs/notice-bubble/lib/es6/translations/fr.json +3 -0
  2137. package/libs/notice-bubble/lib/es6/translations/it.json +3 -0
  2138. package/libs/notice-bubble/lib/es6/translations/ja.json +3 -0
  2139. package/libs/notice-bubble/lib/es6/translations/ko.json +3 -0
  2140. package/libs/notice-bubble/lib/es6/translations/nl.json +3 -0
  2141. package/libs/notice-bubble/lib/es6/translations/pl.json +3 -0
  2142. package/libs/notice-bubble/lib/es6/translations/pt.json +3 -0
  2143. package/libs/notice-bubble/lib/es6/translations/sv.json +3 -0
  2144. package/libs/notice-bubble/lib/es6/translations/tr.json +3 -0
  2145. package/libs/notice-bubble/lib/es6/translations/vi.json +3 -0
  2146. package/libs/notice-bubble/lib/es6/translations/zh.json +3 -0
  2147. package/libs/notice-bubble/lib/es6/utils.js +39 -0
  2148. package/libs/notice-bubble/lib/es6/utils.js.map +1 -0
  2149. package/libs/notice-bubble/lib/types/index.d.ts +145 -0
  2150. package/libs/notice-global/lib/cjs/NoticeGlobal.js +126 -0
  2151. package/libs/notice-global/lib/cjs/NoticeGlobal.js.map +1 -0
  2152. package/libs/notice-global/lib/cjs/index.d.js +2 -0
  2153. package/libs/notice-global/lib/cjs/index.d.js.map +1 -0
  2154. package/libs/notice-global/lib/cjs/index.js +14 -0
  2155. package/libs/notice-global/lib/cjs/index.js.map +1 -0
  2156. package/libs/notice-global/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2157. package/libs/notice-global/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2158. package/libs/notice-global/lib/cjs/translations/de.json +3 -0
  2159. package/libs/notice-global/lib/cjs/translations/en.json +3 -0
  2160. package/libs/notice-global/lib/cjs/translations/es.json +3 -0
  2161. package/libs/notice-global/lib/cjs/translations/fr.json +3 -0
  2162. package/libs/notice-global/lib/cjs/translations/it.json +3 -0
  2163. package/libs/notice-global/lib/cjs/translations/ja.json +3 -0
  2164. package/libs/notice-global/lib/cjs/translations/ko.json +3 -0
  2165. package/libs/notice-global/lib/cjs/translations/nl.json +3 -0
  2166. package/libs/notice-global/lib/cjs/translations/pl.json +3 -0
  2167. package/libs/notice-global/lib/cjs/translations/pt.json +3 -0
  2168. package/libs/notice-global/lib/cjs/translations/sv.json +3 -0
  2169. package/libs/notice-global/lib/cjs/translations/tr.json +3 -0
  2170. package/libs/notice-global/lib/cjs/translations/vi.json +3 -0
  2171. package/libs/notice-global/lib/cjs/translations/zh.json +3 -0
  2172. package/libs/notice-global/lib/es6/NoticeGlobal.js +121 -0
  2173. package/libs/notice-global/lib/es6/NoticeGlobal.js.map +1 -0
  2174. package/libs/notice-global/lib/es6/index.d.js +2 -0
  2175. package/libs/notice-global/lib/es6/index.d.js.map +1 -0
  2176. package/libs/notice-global/lib/es6/index.js +2 -0
  2177. package/libs/notice-global/lib/es6/index.js.map +1 -0
  2178. package/libs/notice-global/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2179. package/libs/notice-global/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2180. package/libs/notice-global/lib/es6/translations/de.json +3 -0
  2181. package/libs/notice-global/lib/es6/translations/en.json +3 -0
  2182. package/libs/notice-global/lib/es6/translations/es.json +3 -0
  2183. package/libs/notice-global/lib/es6/translations/fr.json +3 -0
  2184. package/libs/notice-global/lib/es6/translations/it.json +3 -0
  2185. package/libs/notice-global/lib/es6/translations/ja.json +3 -0
  2186. package/libs/notice-global/lib/es6/translations/ko.json +3 -0
  2187. package/libs/notice-global/lib/es6/translations/nl.json +3 -0
  2188. package/libs/notice-global/lib/es6/translations/pl.json +3 -0
  2189. package/libs/notice-global/lib/es6/translations/pt.json +3 -0
  2190. package/libs/notice-global/lib/es6/translations/sv.json +3 -0
  2191. package/libs/notice-global/lib/es6/translations/tr.json +3 -0
  2192. package/libs/notice-global/lib/es6/translations/vi.json +3 -0
  2193. package/libs/notice-global/lib/es6/translations/zh.json +3 -0
  2194. package/libs/notice-global/lib/types/index.d.ts +36 -0
  2195. package/libs/outside-click/lib/cjs/OutsideClick.js +61 -0
  2196. package/libs/outside-click/lib/cjs/OutsideClick.js.map +1 -0
  2197. package/libs/outside-click/lib/cjs/index.js +26 -0
  2198. package/libs/outside-click/lib/cjs/index.js.map +1 -0
  2199. package/libs/outside-click/lib/es6/OutsideClick.js +55 -0
  2200. package/libs/outside-click/lib/es6/OutsideClick.js.map +1 -0
  2201. package/libs/outside-click/lib/es6/index.js +3 -0
  2202. package/libs/outside-click/lib/es6/index.js.map +1 -0
  2203. package/libs/outside-click/lib/types/OutsideClick.d.ts +24 -0
  2204. package/libs/outside-click/lib/types/index.d.ts +2 -0
  2205. package/libs/pagination/lib/cjs/Pagination.js +432 -0
  2206. package/libs/pagination/lib/cjs/Pagination.js.map +1 -0
  2207. package/libs/pagination/lib/cjs/index.d.js +2 -0
  2208. package/libs/pagination/lib/cjs/index.d.js.map +1 -0
  2209. package/libs/pagination/lib/cjs/index.js +14 -0
  2210. package/libs/pagination/lib/cjs/index.js.map +1 -0
  2211. package/libs/pagination/lib/cjs/translations/__intergalactic-dynamic-locales.js +41 -0
  2212. package/libs/pagination/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2213. package/libs/pagination/lib/cjs/translations/de.json +14 -0
  2214. package/libs/pagination/lib/cjs/translations/en.json +14 -0
  2215. package/libs/pagination/lib/cjs/translations/es.json +14 -0
  2216. package/libs/pagination/lib/cjs/translations/fr.json +14 -0
  2217. package/libs/pagination/lib/cjs/translations/it.json +14 -0
  2218. package/libs/pagination/lib/cjs/translations/ja.json +14 -0
  2219. package/libs/pagination/lib/cjs/translations/ko.json +14 -0
  2220. package/libs/pagination/lib/cjs/translations/nl.json +14 -0
  2221. package/libs/pagination/lib/cjs/translations/pl.json +14 -0
  2222. package/libs/pagination/lib/cjs/translations/pt.json +14 -0
  2223. package/libs/pagination/lib/cjs/translations/ru.json +6 -0
  2224. package/libs/pagination/lib/cjs/translations/sv.json +14 -0
  2225. package/libs/pagination/lib/cjs/translations/tr.json +14 -0
  2226. package/libs/pagination/lib/cjs/translations/vi.json +14 -0
  2227. package/libs/pagination/lib/cjs/translations/zh.json +14 -0
  2228. package/libs/pagination/lib/es6/Pagination.js +432 -0
  2229. package/libs/pagination/lib/es6/Pagination.js.map +1 -0
  2230. package/libs/pagination/lib/es6/index.d.js +2 -0
  2231. package/libs/pagination/lib/es6/index.d.js.map +1 -0
  2232. package/libs/pagination/lib/es6/index.js +2 -0
  2233. package/libs/pagination/lib/es6/index.js.map +1 -0
  2234. package/libs/pagination/lib/es6/translations/__intergalactic-dynamic-locales.js +33 -0
  2235. package/libs/pagination/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2236. package/libs/pagination/lib/es6/translations/de.json +14 -0
  2237. package/libs/pagination/lib/es6/translations/en.json +14 -0
  2238. package/libs/pagination/lib/es6/translations/es.json +14 -0
  2239. package/libs/pagination/lib/es6/translations/fr.json +14 -0
  2240. package/libs/pagination/lib/es6/translations/it.json +14 -0
  2241. package/libs/pagination/lib/es6/translations/ja.json +14 -0
  2242. package/libs/pagination/lib/es6/translations/ko.json +14 -0
  2243. package/libs/pagination/lib/es6/translations/nl.json +14 -0
  2244. package/libs/pagination/lib/es6/translations/pl.json +14 -0
  2245. package/libs/pagination/lib/es6/translations/pt.json +14 -0
  2246. package/libs/pagination/lib/es6/translations/ru.json +6 -0
  2247. package/libs/pagination/lib/es6/translations/sv.json +14 -0
  2248. package/libs/pagination/lib/es6/translations/tr.json +14 -0
  2249. package/libs/pagination/lib/es6/translations/vi.json +14 -0
  2250. package/libs/pagination/lib/es6/translations/zh.json +14 -0
  2251. package/libs/pagination/lib/types/index.d.ts +76 -0
  2252. package/libs/pills/lib/cjs/Pills.js +228 -0
  2253. package/libs/pills/lib/cjs/Pills.js.map +1 -0
  2254. package/libs/pills/lib/cjs/index.d.js +2 -0
  2255. package/libs/pills/lib/cjs/index.d.js.map +1 -0
  2256. package/libs/pills/lib/cjs/index.js +14 -0
  2257. package/libs/pills/lib/cjs/index.js.map +1 -0
  2258. package/libs/pills/lib/es6/Pills.js +224 -0
  2259. package/libs/pills/lib/es6/Pills.js.map +1 -0
  2260. package/libs/pills/lib/es6/index.d.js +2 -0
  2261. package/libs/pills/lib/es6/index.d.js.map +1 -0
  2262. package/libs/pills/lib/es6/index.js +2 -0
  2263. package/libs/pills/lib/es6/index.js.map +1 -0
  2264. package/libs/pills/lib/types/index.d.ts +94 -0
  2265. package/libs/popper/lib/cjs/Popper.js +596 -0
  2266. package/libs/popper/lib/cjs/Popper.js.map +1 -0
  2267. package/libs/popper/lib/cjs/arrowOffset.js +66 -0
  2268. package/libs/popper/lib/cjs/arrowOffset.js.map +1 -0
  2269. package/libs/popper/lib/cjs/createPopper.js +15 -0
  2270. package/libs/popper/lib/cjs/createPopper.js.map +1 -0
  2271. package/libs/popper/lib/cjs/index.d.js +2 -0
  2272. package/libs/popper/lib/cjs/index.d.js.map +1 -0
  2273. package/libs/popper/lib/cjs/index.js +14 -0
  2274. package/libs/popper/lib/cjs/index.js.map +1 -0
  2275. package/libs/popper/lib/es6/Popper.js +590 -0
  2276. package/libs/popper/lib/es6/Popper.js.map +1 -0
  2277. package/libs/popper/lib/es6/arrowOffset.js +58 -0
  2278. package/libs/popper/lib/es6/arrowOffset.js.map +1 -0
  2279. package/libs/popper/lib/es6/createPopper.js +7 -0
  2280. package/libs/popper/lib/es6/createPopper.js.map +1 -0
  2281. package/libs/popper/lib/es6/index.d.js +2 -0
  2282. package/libs/popper/lib/es6/index.d.js.map +1 -0
  2283. package/libs/popper/lib/es6/index.js +2 -0
  2284. package/libs/popper/lib/es6/index.js.map +1 -0
  2285. package/libs/popper/lib/types/index.d.ts +134 -0
  2286. package/libs/portal/lib/cjs/Portal.js +48 -0
  2287. package/libs/portal/lib/cjs/Portal.js.map +1 -0
  2288. package/libs/portal/lib/cjs/index.js +26 -0
  2289. package/libs/portal/lib/cjs/index.js.map +1 -0
  2290. package/libs/portal/lib/es6/Portal.js +42 -0
  2291. package/libs/portal/lib/es6/Portal.js.map +1 -0
  2292. package/libs/portal/lib/es6/index.js +3 -0
  2293. package/libs/portal/lib/es6/index.js.map +1 -0
  2294. package/libs/portal/lib/types/Portal.d.ts +16 -0
  2295. package/libs/portal/lib/types/index.d.ts +2 -0
  2296. package/libs/product-head/lib/cjs/Info.js +68 -0
  2297. package/libs/product-head/lib/cjs/Info.js.map +1 -0
  2298. package/libs/product-head/lib/cjs/ProductHead.js +70 -0
  2299. package/libs/product-head/lib/cjs/ProductHead.js.map +1 -0
  2300. package/libs/product-head/lib/cjs/Title.js +64 -0
  2301. package/libs/product-head/lib/cjs/Title.js.map +1 -0
  2302. package/libs/product-head/lib/cjs/index.js +55 -0
  2303. package/libs/product-head/lib/cjs/index.js.map +1 -0
  2304. package/libs/product-head/lib/es6/Info.js +63 -0
  2305. package/libs/product-head/lib/es6/Info.js.map +1 -0
  2306. package/libs/product-head/lib/es6/ProductHead.js +66 -0
  2307. package/libs/product-head/lib/es6/ProductHead.js.map +1 -0
  2308. package/libs/product-head/lib/es6/Title.js +58 -0
  2309. package/libs/product-head/lib/es6/Title.js.map +1 -0
  2310. package/libs/product-head/lib/es6/index.js +6 -0
  2311. package/libs/product-head/lib/es6/index.js.map +1 -0
  2312. package/libs/product-head/lib/types/Info.d.ts +16 -0
  2313. package/libs/product-head/lib/types/ProductHead.d.ts +7 -0
  2314. package/libs/product-head/lib/types/Title.d.ts +13 -0
  2315. package/libs/product-head/lib/types/index.d.ts +5 -0
  2316. package/libs/progress-bar/lib/cjs/ProgressBar.js +119 -0
  2317. package/libs/progress-bar/lib/cjs/ProgressBar.js.map +1 -0
  2318. package/libs/progress-bar/lib/cjs/index.d.js +2 -0
  2319. package/libs/progress-bar/lib/cjs/index.d.js.map +1 -0
  2320. package/libs/progress-bar/lib/cjs/index.js +14 -0
  2321. package/libs/progress-bar/lib/cjs/index.js.map +1 -0
  2322. package/libs/progress-bar/lib/es6/ProgressBar.js +113 -0
  2323. package/libs/progress-bar/lib/es6/ProgressBar.js.map +1 -0
  2324. package/libs/progress-bar/lib/es6/index.d.js +2 -0
  2325. package/libs/progress-bar/lib/es6/index.d.js.map +1 -0
  2326. package/libs/progress-bar/lib/es6/index.js +2 -0
  2327. package/libs/progress-bar/lib/es6/index.js.map +1 -0
  2328. package/libs/progress-bar/lib/types/index.d.ts +44 -0
  2329. package/libs/radio/lib/cjs/Radio.js +377 -0
  2330. package/libs/radio/lib/cjs/Radio.js.map +1 -0
  2331. package/libs/radio/lib/cjs/index.d.js +2 -0
  2332. package/libs/radio/lib/cjs/index.d.js.map +1 -0
  2333. package/libs/radio/lib/cjs/index.js +26 -0
  2334. package/libs/radio/lib/cjs/index.js.map +1 -0
  2335. package/libs/radio/lib/es6/Radio.js +368 -0
  2336. package/libs/radio/lib/es6/Radio.js.map +1 -0
  2337. package/libs/radio/lib/es6/index.d.js +2 -0
  2338. package/libs/radio/lib/es6/index.d.js.map +1 -0
  2339. package/libs/radio/lib/es6/index.js +3 -0
  2340. package/libs/radio/lib/es6/index.js.map +1 -0
  2341. package/libs/radio/lib/types/index.d.ts +138 -0
  2342. package/libs/scroll-area/lib/cjs/ScrollArea.js +302 -0
  2343. package/libs/scroll-area/lib/cjs/ScrollArea.js.map +1 -0
  2344. package/libs/scroll-area/lib/cjs/ScrollBar.js +393 -0
  2345. package/libs/scroll-area/lib/cjs/ScrollBar.js.map +1 -0
  2346. package/libs/scroll-area/lib/cjs/index.d.js +2 -0
  2347. package/libs/scroll-area/lib/cjs/index.d.js.map +1 -0
  2348. package/libs/scroll-area/lib/cjs/index.js +26 -0
  2349. package/libs/scroll-area/lib/cjs/index.js.map +1 -0
  2350. package/libs/scroll-area/lib/es6/ScrollArea.js +295 -0
  2351. package/libs/scroll-area/lib/es6/ScrollArea.js.map +1 -0
  2352. package/libs/scroll-area/lib/es6/ScrollBar.js +386 -0
  2353. package/libs/scroll-area/lib/es6/ScrollBar.js.map +1 -0
  2354. package/libs/scroll-area/lib/es6/index.d.js +2 -0
  2355. package/libs/scroll-area/lib/es6/index.d.js.map +1 -0
  2356. package/libs/scroll-area/lib/es6/index.js +3 -0
  2357. package/libs/scroll-area/lib/es6/index.js.map +1 -0
  2358. package/libs/scroll-area/lib/types/index.d.ts +58 -0
  2359. package/libs/select/lib/cjs/InputSearch.js +150 -0
  2360. package/libs/select/lib/cjs/InputSearch.js.map +1 -0
  2361. package/libs/select/lib/cjs/Select.js +405 -0
  2362. package/libs/select/lib/cjs/Select.js.map +1 -0
  2363. package/libs/select/lib/cjs/context.js +11 -0
  2364. package/libs/select/lib/cjs/context.js.map +1 -0
  2365. package/libs/select/lib/cjs/index.d.js +2 -0
  2366. package/libs/select/lib/cjs/index.d.js.map +1 -0
  2367. package/libs/select/lib/cjs/index.js +21 -0
  2368. package/libs/select/lib/cjs/index.js.map +1 -0
  2369. package/libs/select/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2370. package/libs/select/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2371. package/libs/select/lib/cjs/translations/de.json +6 -0
  2372. package/libs/select/lib/cjs/translations/en.json +6 -0
  2373. package/libs/select/lib/cjs/translations/es.json +6 -0
  2374. package/libs/select/lib/cjs/translations/fr.json +6 -0
  2375. package/libs/select/lib/cjs/translations/it.json +6 -0
  2376. package/libs/select/lib/cjs/translations/ja.json +6 -0
  2377. package/libs/select/lib/cjs/translations/ko.json +6 -0
  2378. package/libs/select/lib/cjs/translations/nl.json +6 -0
  2379. package/libs/select/lib/cjs/translations/pl.json +6 -0
  2380. package/libs/select/lib/cjs/translations/pt.json +6 -0
  2381. package/libs/select/lib/cjs/translations/sv.json +6 -0
  2382. package/libs/select/lib/cjs/translations/tr.json +6 -0
  2383. package/libs/select/lib/cjs/translations/vi.json +6 -0
  2384. package/libs/select/lib/cjs/translations/zh.json +6 -0
  2385. package/libs/select/lib/es6/InputSearch.js +146 -0
  2386. package/libs/select/lib/es6/InputSearch.js.map +1 -0
  2387. package/libs/select/lib/es6/Select.js +401 -0
  2388. package/libs/select/lib/es6/Select.js.map +1 -0
  2389. package/libs/select/lib/es6/context.js +3 -0
  2390. package/libs/select/lib/es6/context.js.map +1 -0
  2391. package/libs/select/lib/es6/index.d.js +2 -0
  2392. package/libs/select/lib/es6/index.d.js.map +1 -0
  2393. package/libs/select/lib/es6/index.js +3 -0
  2394. package/libs/select/lib/es6/index.js.map +1 -0
  2395. package/libs/select/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2396. package/libs/select/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2397. package/libs/select/lib/es6/translations/de.json +6 -0
  2398. package/libs/select/lib/es6/translations/en.json +6 -0
  2399. package/libs/select/lib/es6/translations/es.json +6 -0
  2400. package/libs/select/lib/es6/translations/fr.json +6 -0
  2401. package/libs/select/lib/es6/translations/it.json +6 -0
  2402. package/libs/select/lib/es6/translations/ja.json +6 -0
  2403. package/libs/select/lib/es6/translations/ko.json +6 -0
  2404. package/libs/select/lib/es6/translations/nl.json +6 -0
  2405. package/libs/select/lib/es6/translations/pl.json +6 -0
  2406. package/libs/select/lib/es6/translations/pt.json +6 -0
  2407. package/libs/select/lib/es6/translations/sv.json +6 -0
  2408. package/libs/select/lib/es6/translations/tr.json +6 -0
  2409. package/libs/select/lib/es6/translations/vi.json +6 -0
  2410. package/libs/select/lib/es6/translations/zh.json +6 -0
  2411. package/libs/select/lib/types/index.d.ts +162 -0
  2412. package/libs/side-panel/lib/cjs/SidePanel.js +270 -0
  2413. package/libs/side-panel/lib/cjs/SidePanel.js.map +1 -0
  2414. package/libs/side-panel/lib/cjs/index.d.js +2 -0
  2415. package/libs/side-panel/lib/cjs/index.d.js.map +1 -0
  2416. package/libs/side-panel/lib/cjs/index.js +14 -0
  2417. package/libs/side-panel/lib/cjs/index.js.map +1 -0
  2418. package/libs/side-panel/lib/es6/SidePanel.js +271 -0
  2419. package/libs/side-panel/lib/es6/SidePanel.js.map +1 -0
  2420. package/libs/side-panel/lib/es6/index.d.js +2 -0
  2421. package/libs/side-panel/lib/es6/index.d.js.map +1 -0
  2422. package/libs/side-panel/lib/es6/index.js +2 -0
  2423. package/libs/side-panel/lib/es6/index.js.map +1 -0
  2424. package/libs/side-panel/lib/types/index.d.ts +85 -0
  2425. package/libs/skeleton/lib/cjs/Charts/Area.js +44 -0
  2426. package/libs/skeleton/lib/cjs/Charts/Area.js.map +1 -0
  2427. package/libs/skeleton/lib/cjs/Charts/Bar.js +54 -0
  2428. package/libs/skeleton/lib/cjs/Charts/Bar.js.map +1 -0
  2429. package/libs/skeleton/lib/cjs/Charts/Bubble.js +38 -0
  2430. package/libs/skeleton/lib/cjs/Charts/Bubble.js.map +1 -0
  2431. package/libs/skeleton/lib/cjs/Charts/Donut.js +48 -0
  2432. package/libs/skeleton/lib/cjs/Charts/Donut.js.map +1 -0
  2433. package/libs/skeleton/lib/cjs/Charts/Histogram.js +54 -0
  2434. package/libs/skeleton/lib/cjs/Charts/Histogram.js.map +1 -0
  2435. package/libs/skeleton/lib/cjs/Charts/Line.js +44 -0
  2436. package/libs/skeleton/lib/cjs/Charts/Line.js.map +1 -0
  2437. package/libs/skeleton/lib/cjs/Charts/RadialTree.js +38 -0
  2438. package/libs/skeleton/lib/cjs/Charts/RadialTree.js.map +1 -0
  2439. package/libs/skeleton/lib/cjs/Charts/ScatterPlot.js +38 -0
  2440. package/libs/skeleton/lib/cjs/Charts/ScatterPlot.js.map +1 -0
  2441. package/libs/skeleton/lib/cjs/Charts/Venn.js +38 -0
  2442. package/libs/skeleton/lib/cjs/Charts/Venn.js.map +1 -0
  2443. package/libs/skeleton/lib/cjs/Charts/index.js +70 -0
  2444. package/libs/skeleton/lib/cjs/Charts/index.js.map +1 -0
  2445. package/libs/skeleton/lib/cjs/Skeleton.d.js +2 -0
  2446. package/libs/skeleton/lib/cjs/Skeleton.d.js.map +1 -0
  2447. package/libs/skeleton/lib/cjs/Skeleton.js +165 -0
  2448. package/libs/skeleton/lib/cjs/Skeleton.js.map +1 -0
  2449. package/libs/skeleton/lib/cjs/index.d.js +2 -0
  2450. package/libs/skeleton/lib/cjs/index.d.js.map +1 -0
  2451. package/libs/skeleton/lib/cjs/index.js +27 -0
  2452. package/libs/skeleton/lib/cjs/index.js.map +1 -0
  2453. package/libs/skeleton/lib/cjs/svg/area-chart-linear.svg +3 -0
  2454. package/libs/skeleton/lib/cjs/svg/area-chart-monotone.svg +3 -0
  2455. package/libs/skeleton/lib/cjs/svg/bar-chart-horizontal.svg +6 -0
  2456. package/libs/skeleton/lib/cjs/svg/bar-chart-vertical.svg +7 -0
  2457. package/libs/skeleton/lib/cjs/svg/bubble-chart.svg +7 -0
  2458. package/libs/skeleton/lib/cjs/svg/donut-chart-halfsize.svg +4 -0
  2459. package/libs/skeleton/lib/cjs/svg/donut-chart.svg +9 -0
  2460. package/libs/skeleton/lib/cjs/svg/histogram-chart-horizontal.svg +6 -0
  2461. package/libs/skeleton/lib/cjs/svg/histogram-chart-vertical.svg +7 -0
  2462. package/libs/skeleton/lib/cjs/svg/line-chart-linear.svg +10 -0
  2463. package/libs/skeleton/lib/cjs/svg/line-chart-monotone.svg +3 -0
  2464. package/libs/skeleton/lib/cjs/svg/radial-chart.svg +19 -0
  2465. package/libs/skeleton/lib/cjs/svg/scatter-plot-chart.svg +16 -0
  2466. package/libs/skeleton/lib/cjs/svg/venn-chart.svg +13 -0
  2467. package/libs/skeleton/lib/es6/Charts/Area.js +37 -0
  2468. package/libs/skeleton/lib/es6/Charts/Area.js.map +1 -0
  2469. package/libs/skeleton/lib/es6/Charts/Bar.js +47 -0
  2470. package/libs/skeleton/lib/es6/Charts/Bar.js.map +1 -0
  2471. package/libs/skeleton/lib/es6/Charts/Bubble.js +31 -0
  2472. package/libs/skeleton/lib/es6/Charts/Bubble.js.map +1 -0
  2473. package/libs/skeleton/lib/es6/Charts/Donut.js +41 -0
  2474. package/libs/skeleton/lib/es6/Charts/Donut.js.map +1 -0
  2475. package/libs/skeleton/lib/es6/Charts/Histogram.js +47 -0
  2476. package/libs/skeleton/lib/es6/Charts/Histogram.js.map +1 -0
  2477. package/libs/skeleton/lib/es6/Charts/Line.js +37 -0
  2478. package/libs/skeleton/lib/es6/Charts/Line.js.map +1 -0
  2479. package/libs/skeleton/lib/es6/Charts/RadialTree.js +31 -0
  2480. package/libs/skeleton/lib/es6/Charts/RadialTree.js.map +1 -0
  2481. package/libs/skeleton/lib/es6/Charts/ScatterPlot.js +31 -0
  2482. package/libs/skeleton/lib/es6/Charts/ScatterPlot.js.map +1 -0
  2483. package/libs/skeleton/lib/es6/Charts/Venn.js +31 -0
  2484. package/libs/skeleton/lib/es6/Charts/Venn.js.map +1 -0
  2485. package/libs/skeleton/lib/es6/Charts/index.js +10 -0
  2486. package/libs/skeleton/lib/es6/Charts/index.js.map +1 -0
  2487. package/libs/skeleton/lib/es6/Skeleton.d.js +2 -0
  2488. package/libs/skeleton/lib/es6/Skeleton.d.js.map +1 -0
  2489. package/libs/skeleton/lib/es6/Skeleton.js +159 -0
  2490. package/libs/skeleton/lib/es6/Skeleton.js.map +1 -0
  2491. package/libs/skeleton/lib/es6/index.d.js +2 -0
  2492. package/libs/skeleton/lib/es6/index.d.js.map +1 -0
  2493. package/libs/skeleton/lib/es6/index.js +3 -0
  2494. package/libs/skeleton/lib/es6/index.js.map +1 -0
  2495. package/libs/skeleton/lib/es6/svg/area-chart-linear.svg +3 -0
  2496. package/libs/skeleton/lib/es6/svg/area-chart-monotone.svg +3 -0
  2497. package/libs/skeleton/lib/es6/svg/bar-chart-horizontal.svg +6 -0
  2498. package/libs/skeleton/lib/es6/svg/bar-chart-vertical.svg +7 -0
  2499. package/libs/skeleton/lib/es6/svg/bubble-chart.svg +7 -0
  2500. package/libs/skeleton/lib/es6/svg/donut-chart-halfsize.svg +4 -0
  2501. package/libs/skeleton/lib/es6/svg/donut-chart.svg +9 -0
  2502. package/libs/skeleton/lib/es6/svg/histogram-chart-horizontal.svg +6 -0
  2503. package/libs/skeleton/lib/es6/svg/histogram-chart-vertical.svg +7 -0
  2504. package/libs/skeleton/lib/es6/svg/line-chart-linear.svg +10 -0
  2505. package/libs/skeleton/lib/es6/svg/line-chart-monotone.svg +3 -0
  2506. package/libs/skeleton/lib/es6/svg/radial-chart.svg +19 -0
  2507. package/libs/skeleton/lib/es6/svg/scatter-plot-chart.svg +16 -0
  2508. package/libs/skeleton/lib/es6/svg/venn-chart.svg +13 -0
  2509. package/libs/skeleton/lib/types/Skeleton.d.ts +4 -0
  2510. package/libs/skeleton/lib/types/index.d.ts +86 -0
  2511. package/libs/slider/lib/cjs/Slider.js +312 -0
  2512. package/libs/slider/lib/cjs/Slider.js.map +1 -0
  2513. package/libs/slider/lib/cjs/index.d.js +2 -0
  2514. package/libs/slider/lib/cjs/index.d.js.map +1 -0
  2515. package/libs/slider/lib/cjs/index.js +14 -0
  2516. package/libs/slider/lib/cjs/index.js.map +1 -0
  2517. package/libs/slider/lib/es6/Slider.js +309 -0
  2518. package/libs/slider/lib/es6/Slider.js.map +1 -0
  2519. package/libs/slider/lib/es6/index.d.js +2 -0
  2520. package/libs/slider/lib/es6/index.d.js.map +1 -0
  2521. package/libs/slider/lib/es6/index.js +2 -0
  2522. package/libs/slider/lib/es6/index.js.map +1 -0
  2523. package/libs/slider/lib/types/index.d.ts +83 -0
  2524. package/libs/spin/lib/cjs/Spin.js +74 -0
  2525. package/libs/spin/lib/cjs/Spin.js.map +1 -0
  2526. package/libs/spin/lib/cjs/index.d.js +2 -0
  2527. package/libs/spin/lib/cjs/index.d.js.map +1 -0
  2528. package/libs/spin/lib/cjs/index.js +14 -0
  2529. package/libs/spin/lib/cjs/index.js.map +1 -0
  2530. package/libs/spin/lib/es6/Spin.js +67 -0
  2531. package/libs/spin/lib/es6/Spin.js.map +1 -0
  2532. package/libs/spin/lib/es6/index.d.js +2 -0
  2533. package/libs/spin/lib/es6/index.d.js.map +1 -0
  2534. package/libs/spin/lib/es6/index.js +2 -0
  2535. package/libs/spin/lib/es6/index.js.map +1 -0
  2536. package/libs/spin/lib/types/index.d.ts +26 -0
  2537. package/libs/spin-container/lib/cjs/SpinContainer.js +142 -0
  2538. package/libs/spin-container/lib/cjs/SpinContainer.js.map +1 -0
  2539. package/libs/spin-container/lib/cjs/index.d.js +2 -0
  2540. package/libs/spin-container/lib/cjs/index.d.js.map +1 -0
  2541. package/libs/spin-container/lib/cjs/index.js +14 -0
  2542. package/libs/spin-container/lib/cjs/index.js.map +1 -0
  2543. package/libs/spin-container/lib/es6/SpinContainer.js +137 -0
  2544. package/libs/spin-container/lib/es6/SpinContainer.js.map +1 -0
  2545. package/libs/spin-container/lib/es6/index.d.js +2 -0
  2546. package/libs/spin-container/lib/es6/index.d.js.map +1 -0
  2547. package/libs/spin-container/lib/es6/index.js +2 -0
  2548. package/libs/spin-container/lib/es6/index.js.map +1 -0
  2549. package/libs/spin-container/lib/types/index.d.ts +52 -0
  2550. package/libs/sticky/lib/cjs/Sticky.js +53 -0
  2551. package/libs/sticky/lib/cjs/Sticky.js.map +1 -0
  2552. package/libs/sticky/lib/cjs/index.js +26 -0
  2553. package/libs/sticky/lib/cjs/index.js.map +1 -0
  2554. package/libs/sticky/lib/es6/Sticky.js +46 -0
  2555. package/libs/sticky/lib/es6/Sticky.js.map +1 -0
  2556. package/libs/sticky/lib/es6/index.js +3 -0
  2557. package/libs/sticky/lib/es6/index.js.map +1 -0
  2558. package/libs/sticky/lib/types/Sticky.d.ts +17 -0
  2559. package/libs/sticky/lib/types/index.d.ts +2 -0
  2560. package/libs/switch/lib/cjs/Switch.js +287 -0
  2561. package/libs/switch/lib/cjs/Switch.js.map +1 -0
  2562. package/libs/switch/lib/cjs/index.d.js +13 -0
  2563. package/libs/switch/lib/cjs/index.d.js.map +1 -0
  2564. package/libs/switch/lib/cjs/index.js +26 -0
  2565. package/libs/switch/lib/cjs/index.js.map +1 -0
  2566. package/libs/switch/lib/es6/Switch.js +276 -0
  2567. package/libs/switch/lib/es6/Switch.js.map +1 -0
  2568. package/libs/switch/lib/es6/index.d.js +3 -0
  2569. package/libs/switch/lib/es6/index.d.js.map +1 -0
  2570. package/libs/switch/lib/es6/index.js +3 -0
  2571. package/libs/switch/lib/es6/index.js.map +1 -0
  2572. package/libs/switch/lib/types/index.d.ts +61 -0
  2573. package/libs/tab-line/lib/cjs/TabLine.js +261 -0
  2574. package/libs/tab-line/lib/cjs/TabLine.js.map +1 -0
  2575. package/libs/tab-line/lib/cjs/index.d.js +2 -0
  2576. package/libs/tab-line/lib/cjs/index.d.js.map +1 -0
  2577. package/libs/tab-line/lib/cjs/index.js +14 -0
  2578. package/libs/tab-line/lib/cjs/index.js.map +1 -0
  2579. package/libs/tab-line/lib/es6/TabLine.js +257 -0
  2580. package/libs/tab-line/lib/es6/TabLine.js.map +1 -0
  2581. package/libs/tab-line/lib/es6/index.d.js +2 -0
  2582. package/libs/tab-line/lib/es6/index.d.js.map +1 -0
  2583. package/libs/tab-line/lib/es6/index.js +2 -0
  2584. package/libs/tab-line/lib/es6/index.js.map +1 -0
  2585. package/libs/tab-line/lib/types/index.d.ts +93 -0
  2586. package/libs/tab-panel/lib/cjs/TabPanel.js +154 -0
  2587. package/libs/tab-panel/lib/cjs/TabPanel.js.map +1 -0
  2588. package/libs/tab-panel/lib/cjs/index.d.js +2 -0
  2589. package/libs/tab-panel/lib/cjs/index.d.js.map +1 -0
  2590. package/libs/tab-panel/lib/cjs/index.js +14 -0
  2591. package/libs/tab-panel/lib/cjs/index.js.map +1 -0
  2592. package/libs/tab-panel/lib/es6/TabPanel.js +150 -0
  2593. package/libs/tab-panel/lib/es6/TabPanel.js.map +1 -0
  2594. package/libs/tab-panel/lib/es6/index.d.js +2 -0
  2595. package/libs/tab-panel/lib/es6/index.d.js.map +1 -0
  2596. package/libs/tab-panel/lib/es6/index.js +2 -0
  2597. package/libs/tab-panel/lib/es6/index.js.map +1 -0
  2598. package/libs/tab-panel/lib/types/index.d.ts +81 -0
  2599. package/libs/tag/lib/cjs/Tag.js +207 -0
  2600. package/libs/tag/lib/cjs/Tag.js.map +1 -0
  2601. package/libs/tag/lib/cjs/index.d.js +2 -0
  2602. package/libs/tag/lib/cjs/index.d.js.map +1 -0
  2603. package/libs/tag/lib/cjs/index.js +14 -0
  2604. package/libs/tag/lib/cjs/index.js.map +1 -0
  2605. package/libs/tag/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2606. package/libs/tag/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2607. package/libs/tag/lib/cjs/translations/de.json +3 -0
  2608. package/libs/tag/lib/cjs/translations/en.json +3 -0
  2609. package/libs/tag/lib/cjs/translations/es.json +3 -0
  2610. package/libs/tag/lib/cjs/translations/fr.json +3 -0
  2611. package/libs/tag/lib/cjs/translations/it.json +3 -0
  2612. package/libs/tag/lib/cjs/translations/ja.json +3 -0
  2613. package/libs/tag/lib/cjs/translations/ko.json +3 -0
  2614. package/libs/tag/lib/cjs/translations/nl.json +3 -0
  2615. package/libs/tag/lib/cjs/translations/pl.json +3 -0
  2616. package/libs/tag/lib/cjs/translations/pt.json +3 -0
  2617. package/libs/tag/lib/cjs/translations/sv.json +3 -0
  2618. package/libs/tag/lib/cjs/translations/tr.json +3 -0
  2619. package/libs/tag/lib/cjs/translations/vi.json +3 -0
  2620. package/libs/tag/lib/cjs/translations/zh.json +3 -0
  2621. package/libs/tag/lib/es6/Tag.js +204 -0
  2622. package/libs/tag/lib/es6/Tag.js.map +1 -0
  2623. package/libs/tag/lib/es6/index.d.js +2 -0
  2624. package/libs/tag/lib/es6/index.d.js.map +1 -0
  2625. package/libs/tag/lib/es6/index.js +2 -0
  2626. package/libs/tag/lib/es6/index.js.map +1 -0
  2627. package/libs/tag/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2628. package/libs/tag/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2629. package/libs/tag/lib/es6/translations/de.json +3 -0
  2630. package/libs/tag/lib/es6/translations/en.json +3 -0
  2631. package/libs/tag/lib/es6/translations/es.json +3 -0
  2632. package/libs/tag/lib/es6/translations/fr.json +3 -0
  2633. package/libs/tag/lib/es6/translations/it.json +3 -0
  2634. package/libs/tag/lib/es6/translations/ja.json +3 -0
  2635. package/libs/tag/lib/es6/translations/ko.json +3 -0
  2636. package/libs/tag/lib/es6/translations/nl.json +3 -0
  2637. package/libs/tag/lib/es6/translations/pl.json +3 -0
  2638. package/libs/tag/lib/es6/translations/pt.json +3 -0
  2639. package/libs/tag/lib/es6/translations/sv.json +3 -0
  2640. package/libs/tag/lib/es6/translations/tr.json +3 -0
  2641. package/libs/tag/lib/es6/translations/vi.json +3 -0
  2642. package/libs/tag/lib/es6/translations/zh.json +3 -0
  2643. package/libs/tag/lib/types/index.d.ts +88 -0
  2644. package/libs/textarea/lib/cjs/Textarea.js +151 -0
  2645. package/libs/textarea/lib/cjs/Textarea.js.map +1 -0
  2646. package/libs/textarea/lib/cjs/index.d.js +2 -0
  2647. package/libs/textarea/lib/cjs/index.d.js.map +1 -0
  2648. package/libs/textarea/lib/cjs/index.js +14 -0
  2649. package/libs/textarea/lib/cjs/index.js.map +1 -0
  2650. package/libs/textarea/lib/es6/Textarea.js +144 -0
  2651. package/libs/textarea/lib/es6/Textarea.js.map +1 -0
  2652. package/libs/textarea/lib/es6/index.d.js +2 -0
  2653. package/libs/textarea/lib/es6/index.d.js.map +1 -0
  2654. package/libs/textarea/lib/es6/index.js +2 -0
  2655. package/libs/textarea/lib/es6/index.js.map +1 -0
  2656. package/libs/textarea/lib/types/index.d.ts +45 -0
  2657. package/libs/time-picker/lib/cjs/PickerFormat.js +55 -0
  2658. package/libs/time-picker/lib/cjs/PickerFormat.js.map +1 -0
  2659. package/libs/time-picker/lib/cjs/PickerInput.js +306 -0
  2660. package/libs/time-picker/lib/cjs/PickerInput.js.map +1 -0
  2661. package/libs/time-picker/lib/cjs/TimePicker.js +338 -0
  2662. package/libs/time-picker/lib/cjs/TimePicker.js.map +1 -0
  2663. package/libs/time-picker/lib/cjs/index.d.js +2 -0
  2664. package/libs/time-picker/lib/cjs/index.d.js.map +1 -0
  2665. package/libs/time-picker/lib/cjs/index.js +26 -0
  2666. package/libs/time-picker/lib/cjs/index.js.map +1 -0
  2667. package/libs/time-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  2668. package/libs/time-picker/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2669. package/libs/time-picker/lib/cjs/translations/de.json +7 -0
  2670. package/libs/time-picker/lib/cjs/translations/en.json +7 -0
  2671. package/libs/time-picker/lib/cjs/translations/es.json +7 -0
  2672. package/libs/time-picker/lib/cjs/translations/fr.json +7 -0
  2673. package/libs/time-picker/lib/cjs/translations/it.json +7 -0
  2674. package/libs/time-picker/lib/cjs/translations/ja.json +7 -0
  2675. package/libs/time-picker/lib/cjs/translations/ko.json +7 -0
  2676. package/libs/time-picker/lib/cjs/translations/nl.json +7 -0
  2677. package/libs/time-picker/lib/cjs/translations/pl.json +7 -0
  2678. package/libs/time-picker/lib/cjs/translations/pt.json +7 -0
  2679. package/libs/time-picker/lib/cjs/translations/sv.json +7 -0
  2680. package/libs/time-picker/lib/cjs/translations/tr.json +7 -0
  2681. package/libs/time-picker/lib/cjs/translations/vi.json +7 -0
  2682. package/libs/time-picker/lib/cjs/translations/zh.json +7 -0
  2683. package/libs/time-picker/lib/es6/PickerFormat.js +48 -0
  2684. package/libs/time-picker/lib/es6/PickerFormat.js.map +1 -0
  2685. package/libs/time-picker/lib/es6/PickerInput.js +299 -0
  2686. package/libs/time-picker/lib/es6/PickerInput.js.map +1 -0
  2687. package/libs/time-picker/lib/es6/TimePicker.js +327 -0
  2688. package/libs/time-picker/lib/es6/TimePicker.js.map +1 -0
  2689. package/libs/time-picker/lib/es6/index.d.js +2 -0
  2690. package/libs/time-picker/lib/es6/index.d.js.map +1 -0
  2691. package/libs/time-picker/lib/es6/index.js +3 -0
  2692. package/libs/time-picker/lib/es6/index.js.map +1 -0
  2693. package/libs/time-picker/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  2694. package/libs/time-picker/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  2695. package/libs/time-picker/lib/es6/translations/de.json +7 -0
  2696. package/libs/time-picker/lib/es6/translations/en.json +7 -0
  2697. package/libs/time-picker/lib/es6/translations/es.json +7 -0
  2698. package/libs/time-picker/lib/es6/translations/fr.json +7 -0
  2699. package/libs/time-picker/lib/es6/translations/it.json +7 -0
  2700. package/libs/time-picker/lib/es6/translations/ja.json +7 -0
  2701. package/libs/time-picker/lib/es6/translations/ko.json +7 -0
  2702. package/libs/time-picker/lib/es6/translations/nl.json +7 -0
  2703. package/libs/time-picker/lib/es6/translations/pl.json +7 -0
  2704. package/libs/time-picker/lib/es6/translations/pt.json +7 -0
  2705. package/libs/time-picker/lib/es6/translations/sv.json +7 -0
  2706. package/libs/time-picker/lib/es6/translations/tr.json +7 -0
  2707. package/libs/time-picker/lib/es6/translations/vi.json +7 -0
  2708. package/libs/time-picker/lib/es6/translations/zh.json +7 -0
  2709. package/libs/time-picker/lib/types/index.d.ts +63 -0
  2710. package/libs/tooltip/lib/cjs/Tooltip.js +158 -0
  2711. package/libs/tooltip/lib/cjs/Tooltip.js.map +1 -0
  2712. package/libs/tooltip/lib/cjs/index.d.js +2 -0
  2713. package/libs/tooltip/lib/cjs/index.d.js.map +1 -0
  2714. package/libs/tooltip/lib/cjs/index.js +14 -0
  2715. package/libs/tooltip/lib/cjs/index.js.map +1 -0
  2716. package/libs/tooltip/lib/es6/Tooltip.js +153 -0
  2717. package/libs/tooltip/lib/es6/Tooltip.js.map +1 -0
  2718. package/libs/tooltip/lib/es6/index.d.js +2 -0
  2719. package/libs/tooltip/lib/es6/index.d.js.map +1 -0
  2720. package/libs/tooltip/lib/es6/index.js +2 -0
  2721. package/libs/tooltip/lib/es6/index.js.map +1 -0
  2722. package/libs/tooltip/lib/types/index.d.ts +29 -0
  2723. package/libs/typography/lib/cjs/Blockquote.js +35 -0
  2724. package/libs/typography/lib/cjs/Blockquote.js.map +1 -0
  2725. package/libs/typography/lib/cjs/Hint.js +86 -0
  2726. package/libs/typography/lib/cjs/Hint.js.map +1 -0
  2727. package/libs/typography/lib/cjs/List.js +81 -0
  2728. package/libs/typography/lib/cjs/List.js.map +1 -0
  2729. package/libs/typography/lib/cjs/Text.js +77 -0
  2730. package/libs/typography/lib/cjs/Text.js.map +1 -0
  2731. package/libs/typography/lib/cjs/index.d.js +2 -0
  2732. package/libs/typography/lib/cjs/index.d.js.map +1 -0
  2733. package/libs/typography/lib/cjs/index.js +35 -0
  2734. package/libs/typography/lib/cjs/index.js.map +1 -0
  2735. package/libs/typography/lib/es6/Blockquote.js +29 -0
  2736. package/libs/typography/lib/es6/Blockquote.js.map +1 -0
  2737. package/libs/typography/lib/es6/Hint.js +81 -0
  2738. package/libs/typography/lib/es6/Hint.js.map +1 -0
  2739. package/libs/typography/lib/es6/List.js +75 -0
  2740. package/libs/typography/lib/es6/List.js.map +1 -0
  2741. package/libs/typography/lib/es6/Text.js +71 -0
  2742. package/libs/typography/lib/es6/Text.js.map +1 -0
  2743. package/libs/typography/lib/es6/index.d.js +2 -0
  2744. package/libs/typography/lib/es6/index.d.js.map +1 -0
  2745. package/libs/typography/lib/es6/index.js +5 -0
  2746. package/libs/typography/lib/es6/index.js.map +1 -0
  2747. package/libs/typography/lib/types/index.d.ts +108 -0
  2748. package/libs/utils/lib/CSSinJS.d.ts +5 -0
  2749. package/libs/utils/lib/CSSinJS.js +36 -0
  2750. package/libs/utils/lib/CSSinJS.js.map +1 -0
  2751. package/libs/utils/lib/CSSinJS.mjs +28 -0
  2752. package/libs/utils/lib/CSSinJS.mjs.map +1 -0
  2753. package/libs/utils/lib/ScreenReaderOnly.d.ts +5 -0
  2754. package/libs/utils/lib/ScreenReaderOnly.js +29 -0
  2755. package/libs/utils/lib/ScreenReaderOnly.js.map +1 -0
  2756. package/libs/utils/lib/ScreenReaderOnly.mjs +21 -0
  2757. package/libs/utils/lib/ScreenReaderOnly.mjs.map +1 -0
  2758. package/libs/utils/lib/ThemeProvider.d.ts +13 -0
  2759. package/libs/utils/lib/ThemeProvider.js +74 -0
  2760. package/libs/utils/lib/ThemeProvider.js.map +1 -0
  2761. package/libs/utils/lib/ThemeProvider.mjs +63 -0
  2762. package/libs/utils/lib/ThemeProvider.mjs.map +1 -0
  2763. package/libs/utils/lib/addonText.d.ts +2 -0
  2764. package/libs/utils/lib/addonText.js +18 -0
  2765. package/libs/utils/lib/addonText.js.map +1 -0
  2766. package/libs/utils/lib/addonText.mjs +11 -0
  2767. package/libs/utils/lib/addonText.mjs.map +1 -0
  2768. package/libs/utils/lib/addonTextChildren.d.ts +3 -0
  2769. package/libs/utils/lib/addonTextChildren.js +47 -0
  2770. package/libs/utils/lib/addonTextChildren.js.map +1 -0
  2771. package/libs/utils/lib/addonTextChildren.mjs +38 -0
  2772. package/libs/utils/lib/addonTextChildren.mjs.map +1 -0
  2773. package/libs/utils/lib/assignProps.d.ts +13 -0
  2774. package/libs/utils/lib/assignProps.js +93 -0
  2775. package/libs/utils/lib/assignProps.js.map +1 -0
  2776. package/libs/utils/lib/assignProps.mjs +84 -0
  2777. package/libs/utils/lib/assignProps.mjs.map +1 -0
  2778. package/libs/utils/lib/canUseDOM.d.ts +1 -0
  2779. package/libs/utils/lib/canUseDOM.js +10 -0
  2780. package/libs/utils/lib/canUseDOM.js.map +1 -0
  2781. package/libs/utils/lib/canUseDOM.mjs +4 -0
  2782. package/libs/utils/lib/canUseDOM.mjs.map +1 -0
  2783. package/libs/utils/lib/capitalizeFirstLetter.d.ts +1 -0
  2784. package/libs/utils/lib/capitalizeFirstLetter.js +10 -0
  2785. package/libs/utils/lib/capitalizeFirstLetter.js.map +1 -0
  2786. package/libs/utils/lib/capitalizeFirstLetter.mjs +4 -0
  2787. package/libs/utils/lib/capitalizeFirstLetter.mjs.map +1 -0
  2788. package/libs/utils/lib/color.d.ts +6 -0
  2789. package/libs/utils/lib/color.js +370 -0
  2790. package/libs/utils/lib/color.js.map +1 -0
  2791. package/libs/utils/lib/color.mjs +357 -0
  2792. package/libs/utils/lib/color.mjs.map +1 -0
  2793. package/libs/utils/lib/compose.d.ts +1 -0
  2794. package/libs/utils/lib/compose.js +21 -0
  2795. package/libs/utils/lib/compose.js.map +1 -0
  2796. package/libs/utils/lib/compose.mjs +15 -0
  2797. package/libs/utils/lib/compose.mjs.map +1 -0
  2798. package/libs/utils/lib/createHoc.d.ts +3 -0
  2799. package/libs/utils/lib/createHoc.js +55 -0
  2800. package/libs/utils/lib/createHoc.js.map +1 -0
  2801. package/libs/utils/lib/createHoc.mjs +46 -0
  2802. package/libs/utils/lib/createHoc.mjs.map +1 -0
  2803. package/libs/utils/lib/createUUID.d.ts +1 -0
  2804. package/libs/utils/lib/createUUID.js +15 -0
  2805. package/libs/utils/lib/createUUID.js.map +1 -0
  2806. package/libs/utils/lib/createUUID.mjs +9 -0
  2807. package/libs/utils/lib/createUUID.mjs.map +1 -0
  2808. package/libs/utils/lib/cssToIntDefault.d.ts +8 -0
  2809. package/libs/utils/lib/cssToIntDefault.js +22 -0
  2810. package/libs/utils/lib/cssToIntDefault.js.map +1 -0
  2811. package/libs/utils/lib/cssToIntDefault.mjs +16 -0
  2812. package/libs/utils/lib/cssToIntDefault.mjs.map +1 -0
  2813. package/libs/utils/lib/enhances/WithAutoFocus.d.ts +14 -0
  2814. package/libs/utils/lib/enhances/WithAutoFocus.js +75 -0
  2815. package/libs/utils/lib/enhances/WithAutoFocus.js.map +1 -0
  2816. package/libs/utils/lib/enhances/WithAutoFocus.mjs +67 -0
  2817. package/libs/utils/lib/enhances/WithAutoFocus.mjs.map +1 -0
  2818. package/libs/utils/lib/enhances/WithCSS.d.ts +41 -0
  2819. package/libs/utils/lib/enhances/WithCSS.js +93 -0
  2820. package/libs/utils/lib/enhances/WithCSS.js.map +1 -0
  2821. package/libs/utils/lib/enhances/WithCSS.mjs +79 -0
  2822. package/libs/utils/lib/enhances/WithCSS.mjs.map +1 -0
  2823. package/libs/utils/lib/enhances/WithI18n.d.ts +43 -0
  2824. package/libs/utils/lib/enhances/WithI18n.js +85 -0
  2825. package/libs/utils/lib/enhances/WithI18n.js.map +1 -0
  2826. package/libs/utils/lib/enhances/WithI18n.mjs +73 -0
  2827. package/libs/utils/lib/enhances/WithI18n.mjs.map +1 -0
  2828. package/libs/utils/lib/enhances/WithKeyboardFocus.d.ts +45 -0
  2829. package/libs/utils/lib/enhances/WithKeyboardFocus.js +93 -0
  2830. package/libs/utils/lib/enhances/WithKeyboardFocus.js.map +1 -0
  2831. package/libs/utils/lib/enhances/WithKeyboardFocus.mjs +84 -0
  2832. package/libs/utils/lib/enhances/WithKeyboardFocus.mjs.map +1 -0
  2833. package/libs/utils/lib/enhances/WithRef.d.ts +3 -0
  2834. package/libs/utils/lib/enhances/WithRef.js +26 -0
  2835. package/libs/utils/lib/enhances/WithRef.js.map +1 -0
  2836. package/libs/utils/lib/enhances/WithRef.mjs +18 -0
  2837. package/libs/utils/lib/enhances/WithRef.mjs.map +1 -0
  2838. package/libs/utils/lib/enhances/a11yEnhance.d.ts +4 -0
  2839. package/libs/utils/lib/enhances/a11yEnhance.js +74 -0
  2840. package/libs/utils/lib/enhances/a11yEnhance.js.map +1 -0
  2841. package/libs/utils/lib/enhances/a11yEnhance.mjs +66 -0
  2842. package/libs/utils/lib/enhances/a11yEnhance.mjs.map +1 -0
  2843. package/libs/utils/lib/enhances/animatedSizeEnhance.d.ts +12 -0
  2844. package/libs/utils/lib/enhances/animatedSizeEnhance.js +98 -0
  2845. package/libs/utils/lib/enhances/animatedSizeEnhance.js.map +1 -0
  2846. package/libs/utils/lib/enhances/animatedSizeEnhance.mjs +90 -0
  2847. package/libs/utils/lib/enhances/animatedSizeEnhance.mjs.map +1 -0
  2848. package/libs/utils/lib/enhances/autoFocusEnhance.d.ts +10 -0
  2849. package/libs/utils/lib/enhances/autoFocusEnhance.js +46 -0
  2850. package/libs/utils/lib/enhances/autoFocusEnhance.js.map +1 -0
  2851. package/libs/utils/lib/enhances/autoFocusEnhance.mjs +38 -0
  2852. package/libs/utils/lib/enhances/autoFocusEnhance.mjs.map +1 -0
  2853. package/libs/utils/lib/enhances/contextEnhance.d.ts +3 -0
  2854. package/libs/utils/lib/enhances/contextEnhance.js +22 -0
  2855. package/libs/utils/lib/enhances/contextEnhance.js.map +1 -0
  2856. package/libs/utils/lib/enhances/contextEnhance.mjs +14 -0
  2857. package/libs/utils/lib/enhances/contextEnhance.mjs.map +1 -0
  2858. package/libs/utils/lib/enhances/i18nEnhance.d.ts +26 -0
  2859. package/libs/utils/lib/enhances/i18nEnhance.js +133 -0
  2860. package/libs/utils/lib/enhances/i18nEnhance.js.map +1 -0
  2861. package/libs/utils/lib/enhances/i18nEnhance.mjs +122 -0
  2862. package/libs/utils/lib/enhances/i18nEnhance.mjs.map +1 -0
  2863. package/libs/utils/lib/enhances/keyboardFocusEnhance.d.ts +26 -0
  2864. package/libs/utils/lib/enhances/keyboardFocusEnhance.js +114 -0
  2865. package/libs/utils/lib/enhances/keyboardFocusEnhance.js.map +1 -0
  2866. package/libs/utils/lib/enhances/keyboardFocusEnhance.mjs +105 -0
  2867. package/libs/utils/lib/enhances/keyboardFocusEnhance.mjs.map +1 -0
  2868. package/libs/utils/lib/enhances/resolveColorEnhance.d.ts +2 -0
  2869. package/libs/utils/lib/enhances/resolveColorEnhance.js +25 -0
  2870. package/libs/utils/lib/enhances/resolveColorEnhance.js.map +1 -0
  2871. package/libs/utils/lib/enhances/resolveColorEnhance.mjs +17 -0
  2872. package/libs/utils/lib/enhances/resolveColorEnhance.mjs.map +1 -0
  2873. package/libs/utils/lib/eventEmitter.d.ts +5 -0
  2874. package/libs/utils/lib/eventEmitter.js +49 -0
  2875. package/libs/utils/lib/eventEmitter.js.map +1 -0
  2876. package/libs/utils/lib/eventEmitter.mjs +42 -0
  2877. package/libs/utils/lib/eventEmitter.mjs.map +1 -0
  2878. package/libs/utils/lib/findComponent.d.ts +5 -0
  2879. package/libs/utils/lib/findComponent.js +67 -0
  2880. package/libs/utils/lib/findComponent.js.map +1 -0
  2881. package/libs/utils/lib/findComponent.mjs +56 -0
  2882. package/libs/utils/lib/findComponent.mjs.map +1 -0
  2883. package/libs/utils/lib/fire.d.ts +2 -0
  2884. package/libs/utils/lib/fire.js +23 -0
  2885. package/libs/utils/lib/fire.js.map +1 -0
  2886. package/libs/utils/lib/fire.mjs +15 -0
  2887. package/libs/utils/lib/fire.mjs.map +1 -0
  2888. package/libs/utils/lib/getDisplayName.d.ts +2 -0
  2889. package/libs/utils/lib/getDisplayName.js +10 -0
  2890. package/libs/utils/lib/getDisplayName.js.map +1 -0
  2891. package/libs/utils/lib/getDisplayName.mjs +4 -0
  2892. package/libs/utils/lib/getDisplayName.mjs.map +1 -0
  2893. package/libs/utils/lib/getOriginChildren.d.ts +2 -0
  2894. package/libs/utils/lib/getOriginChildren.js +20 -0
  2895. package/libs/utils/lib/getOriginChildren.js.map +1 -0
  2896. package/libs/utils/lib/getOriginChildren.mjs +11 -0
  2897. package/libs/utils/lib/getOriginChildren.mjs.map +1 -0
  2898. package/libs/utils/lib/getRandomInt.d.ts +1 -0
  2899. package/libs/utils/lib/getRandomInt.js +11 -0
  2900. package/libs/utils/lib/getRandomInt.js.map +1 -0
  2901. package/libs/utils/lib/getRandomInt.mjs +5 -0
  2902. package/libs/utils/lib/getRandomInt.mjs.map +1 -0
  2903. package/libs/utils/lib/getValue.d.ts +1 -0
  2904. package/libs/utils/lib/getValue.js +16 -0
  2905. package/libs/utils/lib/getValue.js.map +1 -0
  2906. package/libs/utils/lib/getValue.mjs +10 -0
  2907. package/libs/utils/lib/getValue.mjs.map +1 -0
  2908. package/libs/utils/lib/hasLabels.d.ts +7 -0
  2909. package/libs/utils/lib/hasLabels.js +47 -0
  2910. package/libs/utils/lib/hasLabels.js.map +1 -0
  2911. package/libs/utils/lib/hasLabels.mjs +39 -0
  2912. package/libs/utils/lib/hasLabels.mjs.map +1 -0
  2913. package/libs/utils/lib/if.d.ts +11 -0
  2914. package/libs/utils/lib/if.js +16 -0
  2915. package/libs/utils/lib/if.js.map +1 -0
  2916. package/libs/utils/lib/if.mjs +9 -0
  2917. package/libs/utils/lib/if.mjs.map +1 -0
  2918. package/libs/utils/lib/ifChildren.d.ts +8 -0
  2919. package/libs/utils/lib/ifChildren.js +17 -0
  2920. package/libs/utils/lib/ifChildren.js.map +1 -0
  2921. package/libs/utils/lib/ifChildren.mjs +10 -0
  2922. package/libs/utils/lib/ifChildren.mjs.map +1 -0
  2923. package/libs/utils/lib/index.d.ts +0 -0
  2924. package/libs/utils/lib/index.js +4 -0
  2925. package/libs/utils/lib/index.js.map +1 -0
  2926. package/libs/utils/lib/index.mjs +2 -0
  2927. package/libs/utils/lib/index.mjs.map +1 -0
  2928. package/libs/utils/lib/injectStyle.d.ts +2 -0
  2929. package/libs/utils/lib/injectStyle.js +49 -0
  2930. package/libs/utils/lib/injectStyle.js.map +1 -0
  2931. package/libs/utils/lib/injectStyle.mjs +41 -0
  2932. package/libs/utils/lib/injectStyle.mjs.map +1 -0
  2933. package/libs/utils/lib/inputProps.d.ts +2 -0
  2934. package/libs/utils/lib/inputProps.js +23 -0
  2935. package/libs/utils/lib/inputProps.js.map +1 -0
  2936. package/libs/utils/lib/inputProps.mjs +14 -0
  2937. package/libs/utils/lib/inputProps.mjs.map +1 -0
  2938. package/libs/utils/lib/isNode.d.ts +1 -0
  2939. package/libs/utils/lib/isNode.js +28 -0
  2940. package/libs/utils/lib/isNode.js.map +1 -0
  2941. package/libs/utils/lib/isNode.mjs +21 -0
  2942. package/libs/utils/lib/isNode.mjs.map +1 -0
  2943. package/libs/utils/lib/isPromise.d.ts +1 -0
  2944. package/libs/utils/lib/isPromise.js +10 -0
  2945. package/libs/utils/lib/isPromise.js.map +1 -0
  2946. package/libs/utils/lib/isPromise.mjs +4 -0
  2947. package/libs/utils/lib/isPromise.mjs.map +1 -0
  2948. package/libs/utils/lib/isRetina.d.ts +1 -0
  2949. package/libs/utils/lib/isRetina.js +15 -0
  2950. package/libs/utils/lib/isRetina.js.map +1 -0
  2951. package/libs/utils/lib/isRetina.mjs +9 -0
  2952. package/libs/utils/lib/isRetina.mjs.map +1 -0
  2953. package/libs/utils/lib/logger.d.ts +9 -0
  2954. package/libs/utils/lib/logger.js +40 -0
  2955. package/libs/utils/lib/logger.js.map +1 -0
  2956. package/libs/utils/lib/logger.mjs +32 -0
  2957. package/libs/utils/lib/logger.mjs.map +1 -0
  2958. package/libs/utils/lib/numericChecker.d.ts +5 -0
  2959. package/libs/utils/lib/numericChecker.js +33 -0
  2960. package/libs/utils/lib/numericChecker.js.map +1 -0
  2961. package/libs/utils/lib/numericChecker.mjs +27 -0
  2962. package/libs/utils/lib/numericChecker.mjs.map +1 -0
  2963. package/libs/utils/lib/ownerDocument.d.ts +1 -0
  2964. package/libs/utils/lib/ownerDocument.js +10 -0
  2965. package/libs/utils/lib/ownerDocument.js.map +1 -0
  2966. package/libs/utils/lib/ownerDocument.mjs +4 -0
  2967. package/libs/utils/lib/ownerDocument.mjs.map +1 -0
  2968. package/libs/utils/lib/pick.d.ts +1 -0
  2969. package/libs/utils/lib/pick.js +19 -0
  2970. package/libs/utils/lib/pick.js.map +1 -0
  2971. package/libs/utils/lib/pick.mjs +13 -0
  2972. package/libs/utils/lib/pick.mjs.map +1 -0
  2973. package/libs/utils/lib/propsForElement.d.ts +14 -0
  2974. package/libs/utils/lib/propsForElement.js +79 -0
  2975. package/libs/utils/lib/propsForElement.js.map +1 -0
  2976. package/libs/utils/lib/propsForElement.mjs +70 -0
  2977. package/libs/utils/lib/propsForElement.mjs.map +1 -0
  2978. package/libs/utils/lib/rafTrottle.d.ts +2 -0
  2979. package/libs/utils/lib/rafTrottle.js +33 -0
  2980. package/libs/utils/lib/rafTrottle.js.map +1 -0
  2981. package/libs/utils/lib/rafTrottle.mjs +26 -0
  2982. package/libs/utils/lib/rafTrottle.mjs.map +1 -0
  2983. package/libs/utils/lib/reactToText.d.ts +3 -0
  2984. package/libs/utils/lib/reactToText.js +28 -0
  2985. package/libs/utils/lib/reactToText.js.map +1 -0
  2986. package/libs/utils/lib/reactToText.mjs +21 -0
  2987. package/libs/utils/lib/reactToText.mjs.map +1 -0
  2988. package/libs/utils/lib/ref.d.ts +8 -0
  2989. package/libs/utils/lib/ref.js +94 -0
  2990. package/libs/utils/lib/ref.js.map +1 -0
  2991. package/libs/utils/lib/ref.mjs +82 -0
  2992. package/libs/utils/lib/ref.mjs.map +1 -0
  2993. package/libs/utils/lib/setRef.d.ts +2 -0
  2994. package/libs/utils/lib/setRef.js +10 -0
  2995. package/libs/utils/lib/setRef.js.map +1 -0
  2996. package/libs/utils/lib/setRef.mjs +3 -0
  2997. package/libs/utils/lib/setRef.mjs.map +1 -0
  2998. package/libs/utils/lib/syncScroll.d.ts +1 -0
  2999. package/libs/utils/lib/syncScroll.js +61 -0
  3000. package/libs/utils/lib/syncScroll.js.map +1 -0
  3001. package/libs/utils/lib/syncScroll.mjs +54 -0
  3002. package/libs/utils/lib/syncScroll.mjs.map +1 -0
  3003. package/libs/utils/lib/themes/auto.css +1422 -0
  3004. package/libs/utils/lib/themes/dark.css +701 -0
  3005. package/libs/utils/lib/themes/dark.json +363 -0
  3006. package/libs/utils/lib/themes/default.css +721 -0
  3007. package/libs/utils/lib/themes/default.json +367 -0
  3008. package/libs/utils/lib/themes/light.css +721 -0
  3009. package/libs/utils/lib/themes/light.json +367 -0
  3010. package/libs/utils/lib/uncontroll.d.ts +4 -0
  3011. package/libs/utils/lib/uncontroll.js +47 -0
  3012. package/libs/utils/lib/uncontroll.js.map +1 -0
  3013. package/libs/utils/lib/uncontroll.mjs +38 -0
  3014. package/libs/utils/lib/uncontroll.mjs.map +1 -0
  3015. package/libs/utils/lib/uniqueID.d.ts +12 -0
  3016. package/libs/utils/lib/uniqueID.js +43 -0
  3017. package/libs/utils/lib/uniqueID.js.map +1 -0
  3018. package/libs/utils/lib/uniqueID.mjs +33 -0
  3019. package/libs/utils/lib/uniqueID.mjs.map +1 -0
  3020. package/libs/utils/lib/use/useColorResolver.d.ts +1 -0
  3021. package/libs/utils/lib/use/useColorResolver.js +208 -0
  3022. package/libs/utils/lib/use/useColorResolver.js.map +1 -0
  3023. package/libs/utils/lib/use/useColorResolver.mjs +200 -0
  3024. package/libs/utils/lib/use/useColorResolver.mjs.map +1 -0
  3025. package/libs/utils/lib/use/useCss.d.ts +4 -0
  3026. package/libs/utils/lib/use/useCss.js +20 -0
  3027. package/libs/utils/lib/use/useCss.js.map +1 -0
  3028. package/libs/utils/lib/use/useCss.mjs +12 -0
  3029. package/libs/utils/lib/use/useCss.mjs.map +1 -0
  3030. package/libs/utils/lib/use/useEnhancedEffect.d.ts +3 -0
  3031. package/libs/utils/lib/use/useEnhancedEffect.js +13 -0
  3032. package/libs/utils/lib/use/useEnhancedEffect.js.map +1 -0
  3033. package/libs/utils/lib/use/useEnhancedEffect.mjs +5 -0
  3034. package/libs/utils/lib/use/useEnhancedEffect.mjs.map +1 -0
  3035. package/libs/utils/lib/use/useEventCallback.d.ts +4 -0
  3036. package/libs/utils/lib/use/useEventCallback.js +25 -0
  3037. package/libs/utils/lib/use/useEventCallback.js.map +1 -0
  3038. package/libs/utils/lib/use/useEventCallback.mjs +19 -0
  3039. package/libs/utils/lib/use/useEventCallback.mjs.map +1 -0
  3040. package/libs/utils/lib/use/useEventListener.d.ts +2 -0
  3041. package/libs/utils/lib/use/useEventListener.js +33 -0
  3042. package/libs/utils/lib/use/useEventListener.js.map +1 -0
  3043. package/libs/utils/lib/use/useEventListener.mjs +25 -0
  3044. package/libs/utils/lib/use/useEventListener.mjs.map +1 -0
  3045. package/libs/utils/lib/use/useFocusLock.d.ts +4 -0
  3046. package/libs/utils/lib/use/useFocusLock.js +293 -0
  3047. package/libs/utils/lib/use/useFocusLock.js.map +1 -0
  3048. package/libs/utils/lib/use/useFocusLock.mjs +282 -0
  3049. package/libs/utils/lib/use/useFocusLock.mjs.map +1 -0
  3050. package/libs/utils/lib/use/usePreventScroll.d.ts +2 -0
  3051. package/libs/utils/lib/use/usePreventScroll.js +78 -0
  3052. package/libs/utils/lib/use/usePreventScroll.js.map +1 -0
  3053. package/libs/utils/lib/use/usePreventScroll.mjs +70 -0
  3054. package/libs/utils/lib/use/usePreventScroll.mjs.map +1 -0
  3055. package/libs/utils/lib/useCssVariable.d.ts +8 -0
  3056. package/libs/utils/lib/useCssVariable.js +55 -0
  3057. package/libs/utils/lib/useCssVariable.js.map +1 -0
  3058. package/libs/utils/lib/useCssVariable.mjs +46 -0
  3059. package/libs/utils/lib/useCssVariable.mjs.map +1 -0
  3060. package/libs/widget-empty/lib/cjs/Error/index.js +49 -0
  3061. package/libs/widget-empty/lib/cjs/Error/index.js.map +1 -0
  3062. package/libs/widget-empty/lib/cjs/Error/translations/__intergalactic-dynamic-locales.js +41 -0
  3063. package/libs/widget-empty/lib/cjs/Error/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3064. package/libs/widget-empty/lib/cjs/Error/translations/de.json +4 -0
  3065. package/libs/widget-empty/lib/cjs/Error/translations/en.json +4 -0
  3066. package/libs/widget-empty/lib/cjs/Error/translations/es.json +4 -0
  3067. package/libs/widget-empty/lib/cjs/Error/translations/fr.json +4 -0
  3068. package/libs/widget-empty/lib/cjs/Error/translations/it.json +4 -0
  3069. package/libs/widget-empty/lib/cjs/Error/translations/ja.json +4 -0
  3070. package/libs/widget-empty/lib/cjs/Error/translations/ko.json +4 -0
  3071. package/libs/widget-empty/lib/cjs/Error/translations/nl.json +4 -0
  3072. package/libs/widget-empty/lib/cjs/Error/translations/pl.json +4 -0
  3073. package/libs/widget-empty/lib/cjs/Error/translations/pt.json +4 -0
  3074. package/libs/widget-empty/lib/cjs/Error/translations/ru.json +4 -0
  3075. package/libs/widget-empty/lib/cjs/Error/translations/sv.json +4 -0
  3076. package/libs/widget-empty/lib/cjs/Error/translations/tr.json +4 -0
  3077. package/libs/widget-empty/lib/cjs/Error/translations/vi.json +4 -0
  3078. package/libs/widget-empty/lib/cjs/Error/translations/zh.json +4 -0
  3079. package/libs/widget-empty/lib/cjs/NoData/index.js +51 -0
  3080. package/libs/widget-empty/lib/cjs/NoData/index.js.map +1 -0
  3081. package/libs/widget-empty/lib/cjs/NoData/translations/__intergalactic-dynamic-locales.js +41 -0
  3082. package/libs/widget-empty/lib/cjs/NoData/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3083. package/libs/widget-empty/lib/cjs/NoData/translations/de.json +4 -0
  3084. package/libs/widget-empty/lib/cjs/NoData/translations/en.json +4 -0
  3085. package/libs/widget-empty/lib/cjs/NoData/translations/es.json +4 -0
  3086. package/libs/widget-empty/lib/cjs/NoData/translations/fr.json +4 -0
  3087. package/libs/widget-empty/lib/cjs/NoData/translations/it.json +4 -0
  3088. package/libs/widget-empty/lib/cjs/NoData/translations/ja.json +4 -0
  3089. package/libs/widget-empty/lib/cjs/NoData/translations/ko.json +4 -0
  3090. package/libs/widget-empty/lib/cjs/NoData/translations/nl.json +4 -0
  3091. package/libs/widget-empty/lib/cjs/NoData/translations/pl.json +4 -0
  3092. package/libs/widget-empty/lib/cjs/NoData/translations/pt.json +4 -0
  3093. package/libs/widget-empty/lib/cjs/NoData/translations/ru.json +4 -0
  3094. package/libs/widget-empty/lib/cjs/NoData/translations/sv.json +4 -0
  3095. package/libs/widget-empty/lib/cjs/NoData/translations/tr.json +4 -0
  3096. package/libs/widget-empty/lib/cjs/NoData/translations/vi.json +4 -0
  3097. package/libs/widget-empty/lib/cjs/NoData/translations/zh.json +4 -0
  3098. package/libs/widget-empty/lib/cjs/WidgetEmpty.js +80 -0
  3099. package/libs/widget-empty/lib/cjs/WidgetEmpty.js.map +1 -0
  3100. package/libs/widget-empty/lib/cjs/index.d.js +2 -0
  3101. package/libs/widget-empty/lib/cjs/index.d.js.map +1 -0
  3102. package/libs/widget-empty/lib/cjs/index.js +44 -0
  3103. package/libs/widget-empty/lib/cjs/index.js.map +1 -0
  3104. package/libs/widget-empty/lib/es6/Error/index.js +41 -0
  3105. package/libs/widget-empty/lib/es6/Error/index.js.map +1 -0
  3106. package/libs/widget-empty/lib/es6/Error/translations/__intergalactic-dynamic-locales.js +33 -0
  3107. package/libs/widget-empty/lib/es6/Error/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3108. package/libs/widget-empty/lib/es6/Error/translations/de.json +4 -0
  3109. package/libs/widget-empty/lib/es6/Error/translations/en.json +4 -0
  3110. package/libs/widget-empty/lib/es6/Error/translations/es.json +4 -0
  3111. package/libs/widget-empty/lib/es6/Error/translations/fr.json +4 -0
  3112. package/libs/widget-empty/lib/es6/Error/translations/it.json +4 -0
  3113. package/libs/widget-empty/lib/es6/Error/translations/ja.json +4 -0
  3114. package/libs/widget-empty/lib/es6/Error/translations/ko.json +4 -0
  3115. package/libs/widget-empty/lib/es6/Error/translations/nl.json +4 -0
  3116. package/libs/widget-empty/lib/es6/Error/translations/pl.json +4 -0
  3117. package/libs/widget-empty/lib/es6/Error/translations/pt.json +4 -0
  3118. package/libs/widget-empty/lib/es6/Error/translations/ru.json +4 -0
  3119. package/libs/widget-empty/lib/es6/Error/translations/sv.json +4 -0
  3120. package/libs/widget-empty/lib/es6/Error/translations/tr.json +4 -0
  3121. package/libs/widget-empty/lib/es6/Error/translations/vi.json +4 -0
  3122. package/libs/widget-empty/lib/es6/Error/translations/zh.json +4 -0
  3123. package/libs/widget-empty/lib/es6/NoData/index.js +43 -0
  3124. package/libs/widget-empty/lib/es6/NoData/index.js.map +1 -0
  3125. package/libs/widget-empty/lib/es6/NoData/translations/__intergalactic-dynamic-locales.js +33 -0
  3126. package/libs/widget-empty/lib/es6/NoData/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3127. package/libs/widget-empty/lib/es6/NoData/translations/de.json +4 -0
  3128. package/libs/widget-empty/lib/es6/NoData/translations/en.json +4 -0
  3129. package/libs/widget-empty/lib/es6/NoData/translations/es.json +4 -0
  3130. package/libs/widget-empty/lib/es6/NoData/translations/fr.json +4 -0
  3131. package/libs/widget-empty/lib/es6/NoData/translations/it.json +4 -0
  3132. package/libs/widget-empty/lib/es6/NoData/translations/ja.json +4 -0
  3133. package/libs/widget-empty/lib/es6/NoData/translations/ko.json +4 -0
  3134. package/libs/widget-empty/lib/es6/NoData/translations/nl.json +4 -0
  3135. package/libs/widget-empty/lib/es6/NoData/translations/pl.json +4 -0
  3136. package/libs/widget-empty/lib/es6/NoData/translations/pt.json +4 -0
  3137. package/libs/widget-empty/lib/es6/NoData/translations/ru.json +4 -0
  3138. package/libs/widget-empty/lib/es6/NoData/translations/sv.json +4 -0
  3139. package/libs/widget-empty/lib/es6/NoData/translations/tr.json +4 -0
  3140. package/libs/widget-empty/lib/es6/NoData/translations/vi.json +4 -0
  3141. package/libs/widget-empty/lib/es6/NoData/translations/zh.json +4 -0
  3142. package/libs/widget-empty/lib/es6/WidgetEmpty.js +74 -0
  3143. package/libs/widget-empty/lib/es6/WidgetEmpty.js.map +1 -0
  3144. package/libs/widget-empty/lib/es6/index.d.js +2 -0
  3145. package/libs/widget-empty/lib/es6/index.d.js.map +1 -0
  3146. package/libs/widget-empty/lib/es6/index.js +5 -0
  3147. package/libs/widget-empty/lib/es6/index.js.map +1 -0
  3148. package/libs/widget-empty/lib/types/index.d.ts +44 -0
  3149. package/libs/wizard/lib/cjs/Wizard.js +178 -0
  3150. package/libs/wizard/lib/cjs/Wizard.js.map +1 -0
  3151. package/libs/wizard/lib/cjs/index.d.js +2 -0
  3152. package/libs/wizard/lib/cjs/index.d.js.map +1 -0
  3153. package/libs/wizard/lib/cjs/index.js +14 -0
  3154. package/libs/wizard/lib/cjs/index.js.map +1 -0
  3155. package/libs/wizard/lib/cjs/translations/__intergalactic-dynamic-locales.js +39 -0
  3156. package/libs/wizard/lib/cjs/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3157. package/libs/wizard/lib/cjs/translations/de.json +3 -0
  3158. package/libs/wizard/lib/cjs/translations/en.json +3 -0
  3159. package/libs/wizard/lib/cjs/translations/es.json +3 -0
  3160. package/libs/wizard/lib/cjs/translations/fr.json +3 -0
  3161. package/libs/wizard/lib/cjs/translations/it.json +3 -0
  3162. package/libs/wizard/lib/cjs/translations/ja.json +3 -0
  3163. package/libs/wizard/lib/cjs/translations/ko.json +3 -0
  3164. package/libs/wizard/lib/cjs/translations/nl.json +3 -0
  3165. package/libs/wizard/lib/cjs/translations/pl.json +3 -0
  3166. package/libs/wizard/lib/cjs/translations/pt.json +3 -0
  3167. package/libs/wizard/lib/cjs/translations/sv.json +3 -0
  3168. package/libs/wizard/lib/cjs/translations/tr.json +3 -0
  3169. package/libs/wizard/lib/cjs/translations/vi.json +3 -0
  3170. package/libs/wizard/lib/cjs/translations/zh.json +3 -0
  3171. package/libs/wizard/lib/es6/Wizard.js +174 -0
  3172. package/libs/wizard/lib/es6/Wizard.js.map +1 -0
  3173. package/libs/wizard/lib/es6/index.d.js +2 -0
  3174. package/libs/wizard/lib/es6/index.d.js.map +1 -0
  3175. package/libs/wizard/lib/es6/index.js +2 -0
  3176. package/libs/wizard/lib/es6/index.js.map +1 -0
  3177. package/libs/wizard/lib/es6/translations/__intergalactic-dynamic-locales.js +31 -0
  3178. package/libs/wizard/lib/es6/translations/__intergalactic-dynamic-locales.js.map +1 -0
  3179. package/libs/wizard/lib/es6/translations/de.json +3 -0
  3180. package/libs/wizard/lib/es6/translations/en.json +3 -0
  3181. package/libs/wizard/lib/es6/translations/es.json +3 -0
  3182. package/libs/wizard/lib/es6/translations/fr.json +3 -0
  3183. package/libs/wizard/lib/es6/translations/it.json +3 -0
  3184. package/libs/wizard/lib/es6/translations/ja.json +3 -0
  3185. package/libs/wizard/lib/es6/translations/ko.json +3 -0
  3186. package/libs/wizard/lib/es6/translations/nl.json +3 -0
  3187. package/libs/wizard/lib/es6/translations/pl.json +3 -0
  3188. package/libs/wizard/lib/es6/translations/pt.json +3 -0
  3189. package/libs/wizard/lib/es6/translations/sv.json +3 -0
  3190. package/libs/wizard/lib/es6/translations/tr.json +3 -0
  3191. package/libs/wizard/lib/es6/translations/vi.json +3 -0
  3192. package/libs/wizard/lib/es6/translations/zh.json +3 -0
  3193. package/libs/wizard/lib/types/index.d.ts +80 -0
  3194. package/package.json +1 -1
@@ -0,0 +1,282 @@
1
+ import _typeof from "@babel/runtime/helpers/typeof";
2
+ import _toConsumableArray from "@babel/runtime/helpers/toConsumableArray";
3
+ import canUseDOM from "../canUseDOM.mjs";
4
+ import moveFocusInside, { focusInside, getFocusableIn } from 'focus-lock';
5
+ import LocalReact from 'react';
6
+
7
+ /** "safe" focus movement means that function wrapper tries
8
+ * to detect focus war (when two focus locks are trying to
9
+ * control focus recursively) and disables it for 10 seconds
10
+ */
11
+ var focusMoveRequests = [];
12
+ var focusMoveDisabledUntil = 0;
13
+ var lastUserAction = 0;
14
+ var safeMoveFocusInside = function safeMoveFocusInside() {
15
+ if (focusMoveDisabledUntil > Date.now()) return;
16
+ focusMoveRequests.push(Date.now());
17
+ if (focusMoveRequests.length > 10 && Date.now() - lastUserAction > 600) {
18
+ var lastFocusMoveRequests = focusMoveRequests.slice(-10);
19
+ var timeBetweenFocusMoveRequests = lastFocusMoveRequests.slice(1).map(function (time, index) {
20
+ return Math.abs(time - lastFocusMoveRequests[index]);
21
+ });
22
+ if (timeBetweenFocusMoveRequests.every(function (time) {
23
+ return time < 250;
24
+ })) {
25
+ focusMoveDisabledUntil = Date.now() + 10000;
26
+ focusMoveRequests = [];
27
+ console.error('[useFocusLock] Probably the focus war was detected. It is a process when multiple browser focus control subjects are reacting to "blur" event on their element and are trying to get it back. Focus move function was disabled for 10 seconds. Probably your page has different focus lock systems. If you have multiple versions of Intergalactic components, updated them to the latest version (at least to 15.16.3).');
28
+ return;
29
+ }
30
+ }
31
+ if (focusMoveRequests.length > 500) focusMoveRequests = focusMoveRequests.slice(-10);
32
+ return moveFocusInside.apply(void 0, arguments);
33
+ };
34
+ if (canUseDOM()) {
35
+ document.addEventListener('keydown', function () {
36
+ lastUserAction = Date.now();
37
+ });
38
+ document.addEventListener('mousedown', function () {
39
+ lastUserAction = Date.now();
40
+ });
41
+ }
42
+ var focusBordersConsumers = new Set();
43
+ var focusBordersRefs = {
44
+ before: null,
45
+ after: null
46
+ };
47
+ var addBorders = function addBorders() {
48
+ if (!focusBordersRefs.before) {
49
+ focusBordersRefs.before = document.createElement('div');
50
+ focusBordersRefs.before.setAttribute('tabindex', '0');
51
+ focusBordersRefs.before.style.position = 'fixed';
52
+ focusBordersRefs.before.dataset.id = '__intergalactic-focus-border-before';
53
+ document.body.prepend(focusBordersRefs.before);
54
+ }
55
+ if (!focusBordersRefs.after) {
56
+ focusBordersRefs.after = document.createElement('div');
57
+ focusBordersRefs.after.setAttribute('tabindex', '0');
58
+ focusBordersRefs.after.dataset.id = '__intergalactic-focus-border-after';
59
+ focusBordersRefs.after.style.position = 'fixed';
60
+ document.body.append(focusBordersRefs.after);
61
+ }
62
+ };
63
+ var removeBorders = function removeBorders() {
64
+ var _focusBordersRefs$bef, _focusBordersRefs$aft;
65
+ (_focusBordersRefs$bef = focusBordersRefs.before) === null || _focusBordersRefs$bef === void 0 ? void 0 : _focusBordersRefs$bef.remove();
66
+ (_focusBordersRefs$aft = focusBordersRefs.after) === null || _focusBordersRefs$aft === void 0 ? void 0 : _focusBordersRefs$aft.remove();
67
+ focusBordersRefs.before = null;
68
+ focusBordersRefs.after = null;
69
+ };
70
+ var areBordersPlacedCorrectly = function areBordersPlacedCorrectly() {
71
+ if (!focusBordersRefs.before || !focusBordersRefs.after) return true;
72
+ if (document.body.children[0] !== focusBordersRefs.before) return false;
73
+ if (document.body.children[document.body.children.length - 1] !== focusBordersRefs.after) return false;
74
+ return true;
75
+ };
76
+ var uniqueId = 0;
77
+ var getUniqueId = function getUniqueId(prefix) {
78
+ return "".concat(prefix, "-").concat(Math.random().toString(36).slice(2), "-").concat(uniqueId++);
79
+ };
80
+ var useFocusBorders = function useFocusBorders(React, disabled) {
81
+ useUniqueIdHookMock(React);
82
+ React.useEffect(function () {
83
+ var id = getUniqueId('focus-borders-consumer');
84
+ if (!disabled) {
85
+ focusBordersConsumers.add(id);
86
+ }
87
+ if (!areBordersPlacedCorrectly()) removeBorders();
88
+ if (focusBordersConsumers.size > 0) addBorders();
89
+ return function () {
90
+ focusBordersConsumers["delete"](id);
91
+ if (focusBordersConsumers.size === 0) removeBorders();
92
+ };
93
+ }, [disabled]);
94
+ };
95
+ /**
96
+ * # Focus lock hook merging
97
+ * In some cases same page might contain different versions of components.
98
+ * In such cases, we need to ensure that only one version of focus lock hook is used.
99
+ * So, it's why we have `useFocusLockHook` function that is wrapped into `useFocusLock`.
100
+ *
101
+ * While evaluating this file code, we check if global focus lock hook is already defined.
102
+ * If it's defined, we replace it ONLY if our version is higher and no components currently use it.
103
+ * The last condition is very important because we are unable to replace React hook without reimplementing
104
+ * React hooks lifecycle in some kind of wrapper.
105
+ *
106
+ * ## Versioning
107
+ * Such versions merging requires us to keep hook api backward compatible.
108
+ * When hook logic changes, the variable `focusLockVersion` should be incremented.
109
+ *
110
+ * Version update `1 -> 2`. Fixed call `safeMoveFocusInside` in `handleFocusIn` with correct second parameter (focusCameFrom instead of event.target)
111
+ * Version update `2 -> 3`. Fixed React version isolation in nested hooks (`useFocusBorders`, `useUniqueId`).
112
+ *
113
+ * Initially (for a several versions) key was `__intergalactic_focus_lock_hook_`.
114
+ * Making it respect react version required to change key. So key was changed to `__intergalactic_focus_lock_hook_react_v_respectful`.
115
+ *
116
+ * ## React hooks order
117
+ * When updating from version 2 to version 3 `useUniqueId` hook was removed.
118
+ * Due to replacing useFocusLock hook in runtime, the order of hooks must be preserved.
119
+ * So, useUniqueIdHookMock helps to preserve hooks order when hook is being replaced from version 2 to version 3.
120
+ *
121
+ * If new update requires to remove some hooks – add mocks instead of them.
122
+ * If new update requires to add some hooks and no workaround with current hooks list is possible – probably focus lock hook key should be changed.
123
+ */
124
+ var focusLockVersion = 3;
125
+ var globalFocusLockHookKey = '__intergalactic_focus_lock_hook_react_v_respectful';
126
+ var focusLockAllTraps = new Set();
127
+ var focusLockUsedInMountedComponents = new Set();
128
+ /** Focus master is a special mode in which focus lock might work.
129
+ * Normally, focus lock hook allows user focus to move freely between
130
+ * all active focus traps. When component provides `focusMaster=true`
131
+ * parameter, it says that it doesn't want to share focus with other traps.
132
+ * It is very useful for a big components like modals or side-bars that
133
+ * also have some visual backdrop.
134
+ * The last element in focus masters stack is considered as a current focus master.
135
+ */
136
+ var focusMastersStack = [];
137
+ var noop = function noop() {};
138
+ var useUniqueIdHookMock = function useUniqueIdHookMock(React) {
139
+ React.useState(undefined);
140
+ var useEnhancedEffect = canUseDOM() ? React.useLayoutEffect : React.useEffect;
141
+ useEnhancedEffect(noop, []);
142
+ };
143
+ var useFocusLockHook = function useFocusLockHook(React, trapRef, autoFocus, returnFocusTo) {
144
+ var disabled = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
145
+ var focusMaster = arguments.length > 5 && arguments[5] !== undefined ? arguments[5] : false;
146
+ useFocusBorders(React, disabled);
147
+ var autoTriggerRef = React.useRef(null);
148
+ var lastUserInteractionRef = React.useRef(undefined);
149
+ var handleFocusIn = React.useCallback(function (event) {
150
+ var focusCameFrom = event.relatedTarget;
151
+ setTimeout(function () {
152
+ if (!focusCameFrom) return;
153
+ if (autoTriggerRef.current) return;
154
+ autoTriggerRef.current = focusCameFrom;
155
+ }, 0);
156
+ if (lastUserInteractionRef.current === 'mouse') return;
157
+ Promise.resolve().then(function () {
158
+ if (!trapRef.current) return;
159
+ var currentFocusMaster = focusMastersStack[focusMastersStack.length - 1];
160
+ if (currentFocusMaster && currentFocusMaster !== trapRef.current) return;
161
+ var trapNodes = currentFocusMaster ? [trapRef.current] : [trapRef.current].concat(_toConsumableArray(focusLockAllTraps));
162
+ if (focusInside(trapNodes)) return;
163
+ if (focusCameFrom) {
164
+ safeMoveFocusInside(trapRef.current, focusCameFrom);
165
+ }
166
+ });
167
+ }, []);
168
+ var handleMouseEvent = React.useCallback(function () {
169
+ lastUserInteractionRef.current = 'mouse';
170
+ }, []);
171
+ var handleKeyboardEvent = React.useCallback(function () {
172
+ lastUserInteractionRef.current = 'keyboard';
173
+ }, []);
174
+ var returnFocus = React.useCallback(function () {
175
+ var trapNode = trapRef.current;
176
+ if (!focusInside(trapNode)) return;
177
+ if (_typeof(returnFocusTo) === 'object' && returnFocusTo !== null && returnFocusTo !== void 0 && returnFocusTo.current) {
178
+ var returnFocusNode = returnFocusTo === null || returnFocusTo === void 0 ? void 0 : returnFocusTo.current;
179
+ setTimeout(function () {
180
+ return safeMoveFocusInside(returnFocusNode, trapNode);
181
+ }, 0);
182
+ }
183
+ if (returnFocusTo === 'auto' && autoTriggerRef.current) {
184
+ var autoTrigger = autoTriggerRef.current;
185
+ setTimeout(function () {
186
+ return safeMoveFocusInside(autoTrigger, trapNode);
187
+ }, 0);
188
+ }
189
+ }, [returnFocusTo]);
190
+ React.useEffect(function () {
191
+ if (_typeof(trapRef) !== 'object' || trapRef === null) return;
192
+ var node = trapRef.current;
193
+ if (!node) return;
194
+ focusLockAllTraps.add(node);
195
+ return function () {
196
+ if (!node) return;
197
+ focusLockAllTraps["delete"](node);
198
+ };
199
+ }, []);
200
+ React.useEffect(function () {
201
+ if (_typeof(trapRef) !== 'object' || trapRef === null) return;
202
+ if (disabled) return;
203
+ if (!canUseDOM()) return;
204
+ if (!trapRef.current) return;
205
+ if (focusMaster) {
206
+ focusMastersStack.push(trapRef.current);
207
+ }
208
+ return function () {
209
+ if (!focusMaster) return;
210
+ if (focusMastersStack[focusMastersStack.length - 1] === trapRef.current) {
211
+ focusMastersStack.pop();
212
+ } else {
213
+ focusMastersStack.splice(focusMastersStack.indexOf(trapRef.current), 1);
214
+ }
215
+ };
216
+ }, [disabled, focusMaster]);
217
+ React.useEffect(function () {
218
+ if (disabled) return;
219
+ if (!canUseDOM()) return;
220
+ if (!trapRef.current) return;
221
+ var focusableChildren = Array.from(trapRef.current.children).flatMap(function (node) {
222
+ return getFocusableIn(node);
223
+ });
224
+ if (focusableChildren.length === 0) return;
225
+ document.body.addEventListener('focusin', handleFocusIn);
226
+ document.body.addEventListener('mousedown', handleMouseEvent);
227
+ document.body.addEventListener('touchstart', handleMouseEvent);
228
+ document.body.addEventListener('keydown', handleKeyboardEvent);
229
+ if (autoFocus) safeMoveFocusInside(trapRef.current, _typeof(returnFocusTo) === 'object' ? returnFocusTo === null || returnFocusTo === void 0 ? void 0 : returnFocusTo.current : document.body);
230
+ return function () {
231
+ document.body.removeEventListener('focusin', handleFocusIn);
232
+ document.body.removeEventListener('mousedown', handleMouseEvent);
233
+ document.body.removeEventListener('touchstart', handleMouseEvent);
234
+ document.body.removeEventListener('keydown', handleKeyboardEvent);
235
+ returnFocus();
236
+ autoTriggerRef.current = null;
237
+ };
238
+ }, [disabled, autoFocus, returnFocusTo, returnFocus]);
239
+ useUniqueIdHookMock(React);
240
+ React.useEffect(function () {
241
+ var id = getUniqueId('focus-lock-consumer');
242
+ if (disabled) return;
243
+ focusLockUsedInMountedComponents.add(id);
244
+ return function () {
245
+ focusLockUsedInMountedComponents["delete"](id);
246
+ };
247
+ }, [disabled]);
248
+ };
249
+ var establishHookAsGlobal = function establishHookAsGlobal() {
250
+ globalThis[globalFocusLockHookKey] = {
251
+ hook: useFocusLockHook,
252
+ version: focusLockVersion,
253
+ usedInComponents: focusLockUsedInMountedComponents
254
+ };
255
+ };
256
+ if (!globalThis[globalFocusLockHookKey]) {
257
+ establishHookAsGlobal();
258
+ } else if (typeof globalThis[globalFocusLockHookKey].version !== 'number') {
259
+ establishHookAsGlobal();
260
+ } else {
261
+ var _globalFocusLockHookK = globalThis[globalFocusLockHookKey],
262
+ theirVersion = _globalFocusLockHookK.version,
263
+ usedInComponents = _globalFocusLockHookK.usedInComponents;
264
+ if (focusLockVersion > theirVersion && usedInComponents.size === 0) {
265
+ establishHookAsGlobal();
266
+ }
267
+ }
268
+ export var useFocusLock = function useFocusLock(trapRef, autoFocus, returnFocusTo) {
269
+ var _globalFocusLockHookK2, _globalFocusLockHookK3;
270
+ var disabled = arguments.length > 3 && arguments[3] !== undefined ? arguments[3] : false;
271
+ var focusMaster = arguments.length > 4 && arguments[4] !== undefined ? arguments[4] : false;
272
+ var hook = (_globalFocusLockHookK2 = (_globalFocusLockHookK3 = globalThis[globalFocusLockHookKey]) === null || _globalFocusLockHookK3 === void 0 ? void 0 : _globalFocusLockHookK3.hook) !== null && _globalFocusLockHookK2 !== void 0 ? _globalFocusLockHookK2 : useFocusLockHook;
273
+ return hook(LocalReact, trapRef, autoFocus, returnFocusTo, disabled, focusMaster);
274
+ };
275
+ export var hasFocusableIn = function hasFocusableIn(element) {
276
+ return Array.from(element.children).flatMap(function (node) {
277
+ return getFocusableIn(node);
278
+ }).length > 0;
279
+ };
280
+ export var isFocusInside = focusInside;
281
+ export var setFocus = safeMoveFocusInside;
282
+ //# sourceMappingURL=useFocusLock.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useFocusLock.mjs","names":["canUseDOM","moveFocusInside","focusInside","getFocusableIn","LocalReact","focusMoveRequests","focusMoveDisabledUntil","lastUserAction","safeMoveFocusInside","Date","now","push","length","lastFocusMoveRequests","slice","timeBetweenFocusMoveRequests","map","time","index","Math","abs","every","console","error","apply","arguments","document","addEventListener","focusBordersConsumers","Set","focusBordersRefs","before","after","addBorders","createElement","setAttribute","style","position","dataset","id","body","prepend","append","removeBorders","_focusBordersRefs$bef","_focusBordersRefs$aft","remove","areBordersPlacedCorrectly","children","uniqueId","getUniqueId","prefix","concat","random","toString","useFocusBorders","React","disabled","useUniqueIdHookMock","useEffect","add","size","focusLockVersion","globalFocusLockHookKey","focusLockAllTraps","focusLockUsedInMountedComponents","focusMastersStack","noop","useState","undefined","useEnhancedEffect","useLayoutEffect","useFocusLockHook","trapRef","autoFocus","returnFocusTo","focusMaster","autoTriggerRef","useRef","lastUserInteractionRef","handleFocusIn","useCallback","event","focusCameFrom","relatedTarget","setTimeout","current","Promise","resolve","then","currentFocusMaster","trapNodes","_toConsumableArray","handleMouseEvent","handleKeyboardEvent","returnFocus","trapNode","_typeof","returnFocusNode","autoTrigger","node","pop","splice","indexOf","focusableChildren","Array","from","flatMap","removeEventListener","establishHookAsGlobal","globalThis","hook","version","usedInComponents","_globalFocusLockHookK","theirVersion","useFocusLock","_globalFocusLockHookK2","_globalFocusLockHookK3","hasFocusableIn","element","isFocusInside","setFocus"],"sources":["../../src/use/useFocusLock.ts"],"sourcesContent":["import canUseDOM from '../canUseDOM';\nimport moveFocusInside, { focusInside, getFocusableIn } from 'focus-lock';\nimport LocalReact from 'react';\n\n/** \"safe\" focus movement means that function wrapper tries\n * to detect focus war (when two focus locks are trying to\n * control focus recursively) and disables it for 10 seconds\n */\nlet focusMoveRequests: number[] = [];\nlet focusMoveDisabledUntil = 0;\nlet lastUserAction = 0;\nconst safeMoveFocusInside: typeof moveFocusInside = (...args) => {\n if (focusMoveDisabledUntil > Date.now()) return;\n focusMoveRequests.push(Date.now());\n if (focusMoveRequests.length > 10 && Date.now() - lastUserAction > 600) {\n const lastFocusMoveRequests = focusMoveRequests.slice(-10);\n const timeBetweenFocusMoveRequests = lastFocusMoveRequests\n .slice(1)\n .map((time, index) => Math.abs(time - lastFocusMoveRequests[index]));\n if (timeBetweenFocusMoveRequests.every((time) => time < 250)) {\n focusMoveDisabledUntil = Date.now() + 10000;\n focusMoveRequests = [];\n console.error(\n '[useFocusLock] Probably the focus war was detected. It is a process when multiple browser focus control subjects are reacting to \"blur\" event on their element and are trying to get it back. Focus move function was disabled for 10 seconds. Probably your page has different focus lock systems. If you have multiple versions of Intergalactic components, updated them to the latest version (at least to 15.16.3).',\n );\n return;\n }\n }\n if (focusMoveRequests.length > 500) focusMoveRequests = focusMoveRequests.slice(-10);\n\n return moveFocusInside(...args);\n};\nif (canUseDOM()) {\n document.addEventListener('keydown', () => {\n lastUserAction = Date.now();\n });\n document.addEventListener('mousedown', () => {\n lastUserAction = Date.now();\n });\n}\n\nconst focusBordersConsumers = new Set();\nconst focusBordersRefs: {\n before: HTMLElement | null;\n after: HTMLElement | null;\n} = { before: null, after: null };\n\nconst addBorders = () => {\n if (!focusBordersRefs.before) {\n focusBordersRefs.before = document.createElement('div');\n focusBordersRefs.before.setAttribute('tabindex', '0');\n focusBordersRefs.before.style.position = 'fixed';\n focusBordersRefs.before.dataset.id = '__intergalactic-focus-border-before';\n document.body.prepend(focusBordersRefs.before);\n }\n if (!focusBordersRefs.after) {\n focusBordersRefs.after = document.createElement('div');\n focusBordersRefs.after.setAttribute('tabindex', '0');\n focusBordersRefs.after.dataset.id = '__intergalactic-focus-border-after';\n focusBordersRefs.after.style.position = 'fixed';\n document.body.append(focusBordersRefs.after);\n }\n};\nconst removeBorders = () => {\n focusBordersRefs.before?.remove();\n focusBordersRefs.after?.remove();\n focusBordersRefs.before = null;\n focusBordersRefs.after = null;\n};\nconst areBordersPlacedCorrectly = () => {\n if (!focusBordersRefs.before || !focusBordersRefs.after) return true;\n if (document.body.children[0] !== focusBordersRefs.before) return false;\n if (document.body.children[document.body.children.length - 1] !== focusBordersRefs.after)\n return false;\n return true;\n};\n\ntype ReactT = typeof LocalReact;\n\nlet uniqueId = 0;\nconst getUniqueId = (prefix: string) =>\n `${prefix}-${Math.random().toString(36).slice(2)}-${uniqueId++}`;\nconst useFocusBorders = (React: ReactT, disabled?: boolean) => {\n useUniqueIdHookMock(React);\n React.useEffect(() => {\n const id = getUniqueId('focus-borders-consumer');\n if (!disabled) {\n focusBordersConsumers.add(id);\n }\n\n if (!areBordersPlacedCorrectly()) removeBorders();\n if (focusBordersConsumers.size > 0) addBorders();\n\n return () => {\n focusBordersConsumers.delete(id);\n if (focusBordersConsumers.size === 0) removeBorders();\n };\n }, [disabled]);\n};\n/**\n * # Focus lock hook merging\n * In some cases same page might contain different versions of components.\n * In such cases, we need to ensure that only one version of focus lock hook is used.\n * So, it's why we have `useFocusLockHook` function that is wrapped into `useFocusLock`.\n *\n * While evaluating this file code, we check if global focus lock hook is already defined.\n * If it's defined, we replace it ONLY if our version is higher and no components currently use it.\n * The last condition is very important because we are unable to replace React hook without reimplementing\n * React hooks lifecycle in some kind of wrapper.\n *\n * ## Versioning\n * Such versions merging requires us to keep hook api backward compatible.\n * When hook logic changes, the variable `focusLockVersion` should be incremented.\n *\n * Version update `1 -> 2`. Fixed call `safeMoveFocusInside` in `handleFocusIn` with correct second parameter (focusCameFrom instead of event.target)\n * Version update `2 -> 3`. Fixed React version isolation in nested hooks (`useFocusBorders`, `useUniqueId`).\n *\n * Initially (for a several versions) key was `__intergalactic_focus_lock_hook_`.\n * Making it respect react version required to change key. So key was changed to `__intergalactic_focus_lock_hook_react_v_respectful`.\n *\n * ## React hooks order\n * When updating from version 2 to version 3 `useUniqueId` hook was removed.\n * Due to replacing useFocusLock hook in runtime, the order of hooks must be preserved.\n * So, useUniqueIdHookMock helps to preserve hooks order when hook is being replaced from version 2 to version 3.\n *\n * If new update requires to remove some hooks – add mocks instead of them.\n * If new update requires to add some hooks and no workaround with current hooks list is possible – probably focus lock hook key should be changed.\n */\nconst focusLockVersion = 3;\nconst globalFocusLockHookKey = '__intergalactic_focus_lock_hook_react_v_respectful';\n\nconst focusLockAllTraps = new Set<HTMLElement>();\nconst focusLockUsedInMountedComponents = new Set<string>();\n/** Focus master is a special mode in which focus lock might work.\n * Normally, focus lock hook allows user focus to move freely between\n * all active focus traps. When component provides `focusMaster=true`\n * parameter, it says that it doesn't want to share focus with other traps.\n * It is very useful for a big components like modals or side-bars that\n * also have some visual backdrop.\n * The last element in focus masters stack is considered as a current focus master.\n */\nconst focusMastersStack: HTMLElement[] = [];\n\nconst noop = () => {};\nconst useUniqueIdHookMock = (React: ReactT) => {\n React.useState(undefined);\n const useEnhancedEffect = canUseDOM() ? React.useLayoutEffect : React.useEffect;\n useEnhancedEffect(noop, []);\n};\n\nconst useFocusLockHook = (\n React: ReactT,\n trapRef: React.RefObject<HTMLElement>,\n autoFocus: boolean,\n returnFocusTo: React.RefObject<HTMLElement> | null | 'auto',\n disabled = false,\n focusMaster = false,\n) => {\n useFocusBorders(React, disabled);\n\n const autoTriggerRef = React.useRef<HTMLElement | null>(null);\n const lastUserInteractionRef = React.useRef<'mouse' | 'keyboard' | undefined>(undefined);\n\n const handleFocusIn = React.useCallback(\n (event: Event & { relatedTarget?: HTMLElement; target?: HTMLElement }) => {\n const focusCameFrom = event.relatedTarget;\n setTimeout(() => {\n if (!focusCameFrom) return;\n if (autoTriggerRef.current) return;\n autoTriggerRef.current = focusCameFrom;\n }, 0);\n if (lastUserInteractionRef.current === 'mouse') return;\n Promise.resolve().then(() => {\n if (!trapRef.current) return;\n const currentFocusMaster = focusMastersStack[focusMastersStack.length - 1];\n if (currentFocusMaster && currentFocusMaster !== trapRef.current) return;\n const trapNodes = currentFocusMaster\n ? [trapRef.current]\n : [trapRef.current, ...focusLockAllTraps];\n if (focusInside(trapNodes)) return;\n\n if (focusCameFrom) {\n safeMoveFocusInside(trapRef.current, focusCameFrom);\n }\n });\n },\n [],\n );\n const handleMouseEvent = React.useCallback(() => {\n lastUserInteractionRef.current = 'mouse';\n }, []);\n const handleKeyboardEvent = React.useCallback(() => {\n lastUserInteractionRef.current = 'keyboard';\n }, []);\n const returnFocus = React.useCallback(() => {\n const trapNode = trapRef.current!;\n if (!focusInside(trapNode)) return;\n if (typeof returnFocusTo === 'object' && returnFocusTo?.current) {\n const returnFocusNode = returnFocusTo?.current;\n setTimeout(() => safeMoveFocusInside(returnFocusNode, trapNode), 0);\n }\n if (returnFocusTo === 'auto' && autoTriggerRef.current) {\n const autoTrigger = autoTriggerRef.current;\n setTimeout(() => safeMoveFocusInside(autoTrigger, trapNode), 0);\n }\n }, [returnFocusTo]);\n React.useEffect(() => {\n if (typeof trapRef !== 'object' || trapRef === null) return;\n const node = trapRef.current;\n if (!node) return;\n focusLockAllTraps.add(node);\n return () => {\n if (!node) return;\n focusLockAllTraps.delete(node);\n };\n }, []);\n React.useEffect(() => {\n if (typeof trapRef !== 'object' || trapRef === null) return;\n if (disabled) return;\n if (!canUseDOM()) return;\n if (!trapRef.current) return;\n\n if (focusMaster) {\n focusMastersStack.push(trapRef.current);\n }\n\n return () => {\n if (!focusMaster) return;\n if (focusMastersStack[focusMastersStack.length - 1] === trapRef.current) {\n focusMastersStack.pop();\n } else {\n focusMastersStack.splice(focusMastersStack.indexOf(trapRef.current!), 1);\n }\n };\n }, [disabled, focusMaster]);\n React.useEffect(() => {\n if (disabled) return;\n if (!canUseDOM()) return;\n if (!trapRef.current) return;\n const focusableChildren = Array.from(trapRef.current.children).flatMap((node) =>\n getFocusableIn(node as HTMLElement),\n );\n if (focusableChildren.length === 0) return;\n\n document.body.addEventListener('focusin', handleFocusIn as any);\n document.body.addEventListener('mousedown', handleMouseEvent);\n document.body.addEventListener('touchstart', handleMouseEvent);\n document.body.addEventListener('keydown', handleKeyboardEvent);\n\n if (autoFocus)\n safeMoveFocusInside(\n trapRef.current,\n typeof returnFocusTo === 'object' ? returnFocusTo?.current! : document.body,\n );\n\n return () => {\n document.body.removeEventListener('focusin', handleFocusIn as any);\n document.body.removeEventListener('mousedown', handleMouseEvent);\n document.body.removeEventListener('touchstart', handleMouseEvent);\n document.body.removeEventListener('keydown', handleKeyboardEvent);\n returnFocus();\n autoTriggerRef.current = null;\n };\n }, [disabled, autoFocus, returnFocusTo, returnFocus]);\n\n useUniqueIdHookMock(React);\n React.useEffect(() => {\n const id = getUniqueId('focus-lock-consumer');\n if (disabled) return;\n focusLockUsedInMountedComponents.add(id);\n return () => {\n focusLockUsedInMountedComponents.delete(id);\n };\n }, [disabled]);\n};\nconst establishHookAsGlobal = () => {\n (globalThis as any)[globalFocusLockHookKey] = {\n hook: useFocusLockHook,\n version: focusLockVersion,\n usedInComponents: focusLockUsedInMountedComponents,\n };\n};\nif (!(globalThis as any)[globalFocusLockHookKey]) {\n establishHookAsGlobal();\n} else if (typeof (globalThis as any)[globalFocusLockHookKey].version !== 'number') {\n establishHookAsGlobal();\n} else {\n const { version: theirVersion, usedInComponents } = (globalThis as any)[globalFocusLockHookKey];\n if (focusLockVersion > theirVersion && usedInComponents.size === 0) {\n establishHookAsGlobal();\n }\n}\n\nexport const useFocusLock = (\n trapRef: React.RefObject<HTMLElement>,\n autoFocus: boolean,\n returnFocusTo: React.RefObject<HTMLElement> | null | 'auto',\n disabled = false,\n focusMaster = false,\n) => {\n const hook = (globalThis as any)[globalFocusLockHookKey]?.hook ?? useFocusLockHook;\n return hook(LocalReact, trapRef, autoFocus, returnFocusTo, disabled, focusMaster);\n};\n\nexport const hasFocusableIn = (element: HTMLElement): boolean => {\n return (\n Array.from(element.children).flatMap((node) => getFocusableIn(node as HTMLElement)).length > 0\n );\n};\nexport const isFocusInside = focusInside;\nexport const setFocus = safeMoveFocusInside as (topNode: HTMLElement, lastNode?: Element) => void;\n"],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export declare function getScrollbarWidth(): number;
2
+ export default function usePreventScroll(visible?: boolean, disabled?: boolean): void;
@@ -0,0 +1,78 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports["default"] = usePreventScroll;
8
+ exports.getScrollbarWidth = getScrollbarWidth;
9
+ var _react = _interopRequireDefault(require("react"));
10
+ var _canUseDOM = _interopRequireDefault(require("../canUseDOM"));
11
+ var _uniqueID = require("../uniqueID");
12
+ function getScrollbarWidth() {
13
+ var _outer$parentNode;
14
+ if (!(0, _canUseDOM["default"])()) return 0;
15
+ var outer = document.createElement('div');
16
+ outer.style.visibility = 'hidden';
17
+ outer.style.width = '100px';
18
+ // @ts-expect-error
19
+ outer.style.msOverflowStyle = 'scrollbar'; // needed for WinJS apps
20
+ document.body.appendChild(outer);
21
+ var widthNoScroll = outer.offsetWidth;
22
+ outer.style.overflow = 'scroll';
23
+ var inner = document.createElement('div');
24
+ inner.style.width = '100%';
25
+ outer.appendChild(inner);
26
+ var widthWithScroll = inner.offsetWidth;
27
+ (_outer$parentNode = outer.parentNode) === null || _outer$parentNode === void 0 ? void 0 : _outer$parentNode.removeChild(outer);
28
+ return widthNoScroll - widthWithScroll;
29
+ }
30
+ function getIntValueFromCss(value) {
31
+ return !Number.isNaN(Number(value)) ? Number(value) : Number.parseInt(value, 10);
32
+ }
33
+ var scrollPreventers = new Set();
34
+ var lockedBodyStyles = {
35
+ paddingRight: null,
36
+ overflow: null,
37
+ boxSizing: null
38
+ };
39
+ function usePreventScroll() {
40
+ var visible = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
41
+ var disabled = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
42
+ var scrollbarWidth = _react["default"].useMemo(getScrollbarWidth, [getScrollbarWidth]);
43
+ var id = (0, _uniqueID.useUID)('scroll-preventer-');
44
+ _react["default"].useEffect(function () {
45
+ if (disabled) return;
46
+ if (!(0, _canUseDOM["default"])() || !visible) return;
47
+ scrollPreventers.add(id);
48
+ if (scrollPreventers.size > 1) return;
49
+ var _window$getComputedSt = window.getComputedStyle(document.body),
50
+ overflow = _window$getComputedSt.overflow,
51
+ paddingRight = _window$getComputedSt.paddingRight,
52
+ boxSizing = _window$getComputedSt.boxSizing;
53
+ lockedBodyStyles.paddingRight = paddingRight;
54
+ lockedBodyStyles.overflow = overflow;
55
+ lockedBodyStyles.boxSizing = boxSizing;
56
+ var intPaddingRight = getIntValueFromCss(paddingRight);
57
+ var intPaddingRightFromStyle = getIntValueFromCss(document.body.style.paddingRight);
58
+ // Detected own style for window inside window
59
+ if (intPaddingRightFromStyle !== scrollbarWidth) {
60
+ intPaddingRightFromStyle = 0;
61
+ }
62
+ document.body.style.overflow = 'hidden';
63
+ document.body.style.paddingRight = scrollbarWidth + (intPaddingRight - intPaddingRightFromStyle) + 'px';
64
+ document.body.style.boxSizing = 'border-box';
65
+ }, [visible, id, disabled]);
66
+ _react["default"].useEffect(function () {
67
+ if (disabled) return;
68
+ if (!(0, _canUseDOM["default"])() || !visible) return;
69
+ return function () {
70
+ scrollPreventers["delete"](id);
71
+ if (scrollPreventers.size !== 0) return;
72
+ document.body.style.overflow = lockedBodyStyles.overflow;
73
+ document.body.style.paddingRight = lockedBodyStyles.paddingRight;
74
+ document.body.style.boxSizing = lockedBodyStyles.boxSizing;
75
+ };
76
+ }, [visible, id, disabled]);
77
+ }
78
+ //# sourceMappingURL=usePreventScroll.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePreventScroll.js","names":["_react","_interopRequireDefault","require","_canUseDOM","_uniqueID","getScrollbarWidth","_outer$parentNode","canUseDOM","outer","document","createElement","style","visibility","width","msOverflowStyle","body","appendChild","widthNoScroll","offsetWidth","overflow","inner","widthWithScroll","parentNode","removeChild","getIntValueFromCss","value","Number","isNaN","parseInt","scrollPreventers","Set","lockedBodyStyles","paddingRight","boxSizing","usePreventScroll","visible","arguments","length","undefined","disabled","scrollbarWidth","React","useMemo","id","useUID","useEffect","add","size","_window$getComputedSt","window","getComputedStyle","intPaddingRight","intPaddingRightFromStyle"],"sources":["../../src/use/usePreventScroll.tsx"],"sourcesContent":["import React from 'react';\nimport canUseDOM from '../canUseDOM';\nimport { useUID } from '../uniqueID';\n\nexport function getScrollbarWidth(): number {\n if (!canUseDOM()) return 0;\n const outer = document.createElement('div');\n outer.style.visibility = 'hidden';\n outer.style.width = '100px';\n // @ts-expect-error\n outer.style.msOverflowStyle = 'scrollbar'; // needed for WinJS apps\n document.body.appendChild(outer);\n\n const widthNoScroll = outer.offsetWidth;\n outer.style.overflow = 'scroll';\n\n const inner = document.createElement('div');\n inner.style.width = '100%';\n outer.appendChild(inner);\n\n const widthWithScroll = inner.offsetWidth;\n\n outer.parentNode?.removeChild(outer);\n\n return widthNoScroll - widthWithScroll;\n}\n\nfunction getIntValueFromCss(value: any) {\n return !Number.isNaN(Number(value)) ? Number(value) : Number.parseInt(value, 10);\n}\n\nconst scrollPreventers = new Set<string>();\nconst lockedBodyStyles = {\n paddingRight: null as string | null,\n overflow: null as string | null,\n boxSizing: null as string | null,\n};\nexport default function usePreventScroll(visible = true, disabled = false) {\n const scrollbarWidth = React.useMemo(getScrollbarWidth, [getScrollbarWidth]);\n const id = useUID('scroll-preventer-');\n\n React.useEffect(() => {\n if (disabled) return;\n if (!canUseDOM() || !visible) return;\n scrollPreventers.add(id);\n if (scrollPreventers.size > 1) return;\n\n const { overflow, paddingRight, boxSizing } = window.getComputedStyle(document.body);\n lockedBodyStyles.paddingRight = paddingRight;\n lockedBodyStyles.overflow = overflow;\n lockedBodyStyles.boxSizing = boxSizing;\n\n const intPaddingRight = getIntValueFromCss(paddingRight);\n let intPaddingRightFromStyle = getIntValueFromCss(document.body.style.paddingRight);\n // Detected own style for window inside window\n if (intPaddingRightFromStyle !== scrollbarWidth) {\n intPaddingRightFromStyle = 0;\n }\n\n document.body.style.overflow = 'hidden';\n document.body.style.paddingRight =\n scrollbarWidth + (intPaddingRight - intPaddingRightFromStyle) + 'px';\n document.body.style.boxSizing = 'border-box';\n }, [visible, id, disabled]);\n\n React.useEffect(() => {\n if (disabled) return;\n if (!canUseDOM() || !visible) return;\n return () => {\n scrollPreventers.delete(id);\n if (scrollPreventers.size !== 0) return;\n document.body.style.overflow = lockedBodyStyles.overflow!;\n document.body.style.paddingRight = lockedBodyStyles.paddingRight!;\n document.body.style.boxSizing = lockedBodyStyles.boxSizing!;\n };\n }, [visible, id, disabled]);\n}\n"],"mappings":"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"}
@@ -0,0 +1,70 @@
1
+ import React from 'react';
2
+ import canUseDOM from "../canUseDOM.mjs";
3
+ import { useUID } from "../uniqueID.mjs";
4
+ export function getScrollbarWidth() {
5
+ var _outer$parentNode;
6
+ if (!canUseDOM()) return 0;
7
+ var outer = document.createElement('div');
8
+ outer.style.visibility = 'hidden';
9
+ outer.style.width = '100px';
10
+ // @ts-expect-error
11
+ outer.style.msOverflowStyle = 'scrollbar'; // needed for WinJS apps
12
+ document.body.appendChild(outer);
13
+ var widthNoScroll = outer.offsetWidth;
14
+ outer.style.overflow = 'scroll';
15
+ var inner = document.createElement('div');
16
+ inner.style.width = '100%';
17
+ outer.appendChild(inner);
18
+ var widthWithScroll = inner.offsetWidth;
19
+ (_outer$parentNode = outer.parentNode) === null || _outer$parentNode === void 0 ? void 0 : _outer$parentNode.removeChild(outer);
20
+ return widthNoScroll - widthWithScroll;
21
+ }
22
+ function getIntValueFromCss(value) {
23
+ return !Number.isNaN(Number(value)) ? Number(value) : Number.parseInt(value, 10);
24
+ }
25
+ var scrollPreventers = new Set();
26
+ var lockedBodyStyles = {
27
+ paddingRight: null,
28
+ overflow: null,
29
+ boxSizing: null
30
+ };
31
+ export default function usePreventScroll() {
32
+ var visible = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : true;
33
+ var disabled = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : false;
34
+ var scrollbarWidth = React.useMemo(getScrollbarWidth, [getScrollbarWidth]);
35
+ var id = useUID('scroll-preventer-');
36
+ React.useEffect(function () {
37
+ if (disabled) return;
38
+ if (!canUseDOM() || !visible) return;
39
+ scrollPreventers.add(id);
40
+ if (scrollPreventers.size > 1) return;
41
+ var _window$getComputedSt = window.getComputedStyle(document.body),
42
+ overflow = _window$getComputedSt.overflow,
43
+ paddingRight = _window$getComputedSt.paddingRight,
44
+ boxSizing = _window$getComputedSt.boxSizing;
45
+ lockedBodyStyles.paddingRight = paddingRight;
46
+ lockedBodyStyles.overflow = overflow;
47
+ lockedBodyStyles.boxSizing = boxSizing;
48
+ var intPaddingRight = getIntValueFromCss(paddingRight);
49
+ var intPaddingRightFromStyle = getIntValueFromCss(document.body.style.paddingRight);
50
+ // Detected own style for window inside window
51
+ if (intPaddingRightFromStyle !== scrollbarWidth) {
52
+ intPaddingRightFromStyle = 0;
53
+ }
54
+ document.body.style.overflow = 'hidden';
55
+ document.body.style.paddingRight = scrollbarWidth + (intPaddingRight - intPaddingRightFromStyle) + 'px';
56
+ document.body.style.boxSizing = 'border-box';
57
+ }, [visible, id, disabled]);
58
+ React.useEffect(function () {
59
+ if (disabled) return;
60
+ if (!canUseDOM() || !visible) return;
61
+ return function () {
62
+ scrollPreventers["delete"](id);
63
+ if (scrollPreventers.size !== 0) return;
64
+ document.body.style.overflow = lockedBodyStyles.overflow;
65
+ document.body.style.paddingRight = lockedBodyStyles.paddingRight;
66
+ document.body.style.boxSizing = lockedBodyStyles.boxSizing;
67
+ };
68
+ }, [visible, id, disabled]);
69
+ }
70
+ //# sourceMappingURL=usePreventScroll.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"usePreventScroll.mjs","names":["React","canUseDOM","useUID","getScrollbarWidth","_outer$parentNode","outer","document","createElement","style","visibility","width","msOverflowStyle","body","appendChild","widthNoScroll","offsetWidth","overflow","inner","widthWithScroll","parentNode","removeChild","getIntValueFromCss","value","Number","isNaN","parseInt","scrollPreventers","Set","lockedBodyStyles","paddingRight","boxSizing","usePreventScroll","visible","arguments","length","undefined","disabled","scrollbarWidth","useMemo","id","useEffect","add","size","_window$getComputedSt","window","getComputedStyle","intPaddingRight","intPaddingRightFromStyle"],"sources":["../../src/use/usePreventScroll.tsx"],"sourcesContent":["import React from 'react';\nimport canUseDOM from '../canUseDOM';\nimport { useUID } from '../uniqueID';\n\nexport function getScrollbarWidth(): number {\n if (!canUseDOM()) return 0;\n const outer = document.createElement('div');\n outer.style.visibility = 'hidden';\n outer.style.width = '100px';\n // @ts-expect-error\n outer.style.msOverflowStyle = 'scrollbar'; // needed for WinJS apps\n document.body.appendChild(outer);\n\n const widthNoScroll = outer.offsetWidth;\n outer.style.overflow = 'scroll';\n\n const inner = document.createElement('div');\n inner.style.width = '100%';\n outer.appendChild(inner);\n\n const widthWithScroll = inner.offsetWidth;\n\n outer.parentNode?.removeChild(outer);\n\n return widthNoScroll - widthWithScroll;\n}\n\nfunction getIntValueFromCss(value: any) {\n return !Number.isNaN(Number(value)) ? Number(value) : Number.parseInt(value, 10);\n}\n\nconst scrollPreventers = new Set<string>();\nconst lockedBodyStyles = {\n paddingRight: null as string | null,\n overflow: null as string | null,\n boxSizing: null as string | null,\n};\nexport default function usePreventScroll(visible = true, disabled = false) {\n const scrollbarWidth = React.useMemo(getScrollbarWidth, [getScrollbarWidth]);\n const id = useUID('scroll-preventer-');\n\n React.useEffect(() => {\n if (disabled) return;\n if (!canUseDOM() || !visible) return;\n scrollPreventers.add(id);\n if (scrollPreventers.size > 1) return;\n\n const { overflow, paddingRight, boxSizing } = window.getComputedStyle(document.body);\n lockedBodyStyles.paddingRight = paddingRight;\n lockedBodyStyles.overflow = overflow;\n lockedBodyStyles.boxSizing = boxSizing;\n\n const intPaddingRight = getIntValueFromCss(paddingRight);\n let intPaddingRightFromStyle = getIntValueFromCss(document.body.style.paddingRight);\n // Detected own style for window inside window\n if (intPaddingRightFromStyle !== scrollbarWidth) {\n intPaddingRightFromStyle = 0;\n }\n\n document.body.style.overflow = 'hidden';\n document.body.style.paddingRight =\n scrollbarWidth + (intPaddingRight - intPaddingRightFromStyle) + 'px';\n document.body.style.boxSizing = 'border-box';\n }, [visible, id, disabled]);\n\n React.useEffect(() => {\n if (disabled) return;\n if (!canUseDOM() || !visible) return;\n return () => {\n scrollPreventers.delete(id);\n if (scrollPreventers.size !== 0) return;\n document.body.style.overflow = lockedBodyStyles.overflow!;\n document.body.style.paddingRight = lockedBodyStyles.paddingRight!;\n document.body.style.boxSizing = lockedBodyStyles.boxSizing!;\n };\n }, [visible, id, disabled]);\n}\n"],"mappings":"AAAA,OAAOA,KAAK,MAAM,OAAO;AACzB,OAAOC,SAAS,MAAM,kBAAc;AACpC,SAASC,MAAM,QAAQ,iBAAa;AAEpC,OAAO,SAASC,iBAAiBA,CAAA,EAAW;EAAA,IAAAC,iBAAA;EAC1C,IAAI,CAACH,SAAS,EAAE,EAAE,OAAO,CAAC;EAC1B,IAAMI,KAAK,GAAGC,QAAQ,CAACC,aAAa,CAAC,KAAK,CAAC;EAC3CF,KAAK,CAACG,KAAK,CAACC,UAAU,GAAG,QAAQ;EACjCJ,KAAK,CAACG,KAAK,CAACE,KAAK,GAAG,OAAO;EAC3B;EACAL,KAAK,CAACG,KAAK,CAACG,eAAe,GAAG,WAAW,CAAC,CAAC;EAC3CL,QAAQ,CAACM,IAAI,CAACC,WAAW,CAACR,KAAK,CAAC;EAEhC,IAAMS,aAAa,GAAGT,KAAK,CAACU,WAAW;EACvCV,KAAK,CAACG,KAAK,CAACQ,QAAQ,GAAG,QAAQ;EAE/B,IAAMC,KAAK,GAAGX,QAAQ,CAACC,aAAa,CAAC,KAAK,CAAC;EAC3CU,KAAK,CAACT,KAAK,CAACE,KAAK,GAAG,MAAM;EAC1BL,KAAK,CAACQ,WAAW,CAACI,KAAK,CAAC;EAExB,IAAMC,eAAe,GAAGD,KAAK,CAACF,WAAW;EAEzC,CAAAX,iBAAA,GAAAC,KAAK,CAACc,UAAU,cAAAf,iBAAA,uBAAhBA,iBAAA,CAAkBgB,WAAW,CAACf,KAAK,CAAC;EAEpC,OAAOS,aAAa,GAAGI,eAAe;AACxC;AAEA,SAASG,kBAAkBA,CAACC,KAAU,EAAE;EACtC,OAAO,CAACC,MAAM,CAACC,KAAK,CAACD,MAAM,CAACD,KAAK,CAAC,CAAC,GAAGC,MAAM,CAACD,KAAK,CAAC,GAAGC,MAAM,CAACE,QAAQ,CAACH,KAAK,EAAE,EAAE,CAAC;AAClF;AAEA,IAAMI,gBAAgB,GAAG,IAAIC,GAAG,EAAU;AAC1C,IAAMC,gBAAgB,GAAG;EACvBC,YAAY,EAAE,IAAqB;EACnCb,QAAQ,EAAE,IAAqB;EAC/Bc,SAAS,EAAE;AACb,CAAC;AACD,eAAe,SAASC,gBAAgBA,CAAA,EAAmC;EAAA,IAAlCC,OAAO,GAAAC,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,IAAI;EAAA,IAAEG,QAAQ,GAAAH,SAAA,CAAAC,MAAA,QAAAD,SAAA,QAAAE,SAAA,GAAAF,SAAA,MAAG,KAAK;EACvE,IAAMI,cAAc,GAAGrC,KAAK,CAACsC,OAAO,CAACnC,iBAAiB,EAAE,CAACA,iBAAiB,CAAC,CAAC;EAC5E,IAAMoC,EAAE,GAAGrC,MAAM,CAAC,mBAAmB,CAAC;EAEtCF,KAAK,CAACwC,SAAS,CAAC,YAAM;IACpB,IAAIJ,QAAQ,EAAE;IACd,IAAI,CAACnC,SAAS,EAAE,IAAI,CAAC+B,OAAO,EAAE;IAC9BN,gBAAgB,CAACe,GAAG,CAACF,EAAE,CAAC;IACxB,IAAIb,gBAAgB,CAACgB,IAAI,GAAG,CAAC,EAAE;IAE/B,IAAAC,qBAAA,GAA8CC,MAAM,CAACC,gBAAgB,CAACvC,QAAQ,CAACM,IAAI,CAAC;MAA5EI,QAAQ,GAAA2B,qBAAA,CAAR3B,QAAQ;MAAEa,YAAY,GAAAc,qBAAA,CAAZd,YAAY;MAAEC,SAAS,GAAAa,qBAAA,CAATb,SAAS;IACzCF,gBAAgB,CAACC,YAAY,GAAGA,YAAY;IAC5CD,gBAAgB,CAACZ,QAAQ,GAAGA,QAAQ;IACpCY,gBAAgB,CAACE,SAAS,GAAGA,SAAS;IAEtC,IAAMgB,eAAe,GAAGzB,kBAAkB,CAACQ,YAAY,CAAC;IACxD,IAAIkB,wBAAwB,GAAG1B,kBAAkB,CAACf,QAAQ,CAACM,IAAI,CAACJ,KAAK,CAACqB,YAAY,CAAC;IACnF;IACA,IAAIkB,wBAAwB,KAAKV,cAAc,EAAE;MAC/CU,wBAAwB,GAAG,CAAC;IAC9B;IAEAzC,QAAQ,CAACM,IAAI,CAACJ,KAAK,CAACQ,QAAQ,GAAG,QAAQ;IACvCV,QAAQ,CAACM,IAAI,CAACJ,KAAK,CAACqB,YAAY,GAC9BQ,cAAc,IAAIS,eAAe,GAAGC,wBAAwB,CAAC,GAAG,IAAI;IACtEzC,QAAQ,CAACM,IAAI,CAACJ,KAAK,CAACsB,SAAS,GAAG,YAAY;EAC9C,CAAC,EAAE,CAACE,OAAO,EAAEO,EAAE,EAAEH,QAAQ,CAAC,CAAC;EAE3BpC,KAAK,CAACwC,SAAS,CAAC,YAAM;IACpB,IAAIJ,QAAQ,EAAE;IACd,IAAI,CAACnC,SAAS,EAAE,IAAI,CAAC+B,OAAO,EAAE;IAC9B,OAAO,YAAM;MACXN,gBAAgB,UAAO,CAACa,EAAE,CAAC;MAC3B,IAAIb,gBAAgB,CAACgB,IAAI,KAAK,CAAC,EAAE;MACjCpC,QAAQ,CAACM,IAAI,CAACJ,KAAK,CAACQ,QAAQ,GAAGY,gBAAgB,CAACZ,QAAS;MACzDV,QAAQ,CAACM,IAAI,CAACJ,KAAK,CAACqB,YAAY,GAAGD,gBAAgB,CAACC,YAAa;MACjEvB,QAAQ,CAACM,IAAI,CAACJ,KAAK,CAACsB,SAAS,GAAGF,gBAAgB,CAACE,SAAU;IAC7D,CAAC;EACH,CAAC,EAAE,CAACE,OAAO,EAAEO,EAAE,EAAEH,QAAQ,CAAC,CAAC;AAC7B"}
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ export declare const useCssVariable: (name: string, fallbackValue: string, ref?: React.RefObject<any>) => string;
3
+ export declare const cssVariableEnhance: <P extends string, F = string, R = string, M extends ((value: string) => R) | null = any>({ variable, fallback, prop, map, }: {
4
+ variable: string;
5
+ prop: P;
6
+ fallback: F;
7
+ map?: M | undefined;
8
+ }) => <T extends {}>(props: T) => T & { [key in P]: M extends (value: string) => R ? R : F; };
@@ -0,0 +1,55 @@
1
+ "use strict";
2
+
3
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.useCssVariable = exports.cssVariableEnhance = void 0;
8
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
9
+ var _objectSpread3 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
10
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
11
+ var _react = _interopRequireDefault(require("react"));
12
+ var _canUseDOM = _interopRequireDefault(require("./canUseDOM"));
13
+ var _ref3 = require("./ref");
14
+ var _ThemeProvider = require("./ThemeProvider");
15
+ var useCssVariable = function useCssVariable(name, fallbackValue, ref) {
16
+ var contextTheme = (0, _ThemeProvider.useContextTokens)();
17
+ var getValue = _react["default"].useCallback(function () {
18
+ var _ref$current;
19
+ if (contextTheme !== null && contextTheme !== void 0 && contextTheme[name]) return contextTheme[name];
20
+ if (!(0, _canUseDOM["default"])()) return fallbackValue;
21
+ var element = (_ref$current = ref === null || ref === void 0 ? void 0 : ref.current) !== null && _ref$current !== void 0 ? _ref$current : document.documentElement;
22
+ var computedStyles = getComputedStyle(element);
23
+ return computedStyles.getPropertyValue(name) || fallbackValue;
24
+ }, [name, ref, fallbackValue, contextTheme]);
25
+ var initialValue = _react["default"].useMemo(getValue, [getValue]);
26
+ var _React$useState = _react["default"].useState(initialValue),
27
+ _React$useState2 = (0, _slicedToArray2["default"])(_React$useState, 2),
28
+ value = _React$useState2[0],
29
+ setValue = _React$useState2[1];
30
+ _react["default"].useEffect(function () {
31
+ return setValue(getValue);
32
+ }, [getValue]);
33
+ return value;
34
+ };
35
+ exports.useCssVariable = useCssVariable;
36
+ var cssVariableEnhance = function cssVariableEnhance(_ref) {
37
+ var variable = _ref.variable,
38
+ fallback = _ref.fallback,
39
+ prop = _ref.prop,
40
+ map = _ref.map;
41
+ return function (props) {
42
+ var _ref2 = props,
43
+ ref = _ref2.ref;
44
+ var nodeRef = _react["default"].useRef();
45
+ var variableValue = useCssVariable(variable, fallback, nodeRef);
46
+ var mappedValue = _react["default"].useMemo(function () {
47
+ return map ? map(variableValue) : variableValue;
48
+ }, [map, variableValue]);
49
+ return (0, _objectSpread3["default"])((0, _objectSpread3["default"])({}, props), {}, (0, _defineProperty2["default"])({
50
+ ref: (0, _ref3.useForkRef)(ref, nodeRef)
51
+ }, prop, props[prop] === undefined ? mappedValue : props[prop]));
52
+ };
53
+ };
54
+ exports.cssVariableEnhance = cssVariableEnhance;
55
+ //# sourceMappingURL=useCssVariable.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"useCssVariable.js","names":["_react","_interopRequireDefault","require","_canUseDOM","_ref3","_ThemeProvider","useCssVariable","name","fallbackValue","ref","contextTheme","useContextTokens","getValue","React","useCallback","_ref$current","canUseDOM","element","current","document","documentElement","computedStyles","getComputedStyle","getPropertyValue","initialValue","useMemo","_React$useState","useState","_React$useState2","_slicedToArray2","value","setValue","useEffect","exports","cssVariableEnhance","_ref","variable","fallback","prop","map","props","_ref2","nodeRef","useRef","variableValue","mappedValue","_objectSpread3","_defineProperty2","useForkRef","undefined"],"sources":["../src/useCssVariable.ts"],"sourcesContent":["import React from 'react';\nimport canUseDOM from './canUseDOM';\nimport { useForkRef } from './ref';\nimport { useContextTokens } from './ThemeProvider';\n\nexport const useCssVariable = (name: string, fallbackValue: string, ref?: React.RefObject<any>) => {\n const contextTheme = useContextTokens();\n const getValue = React.useCallback(() => {\n if (contextTheme?.[name]) return contextTheme[name];\n if (!canUseDOM()) return fallbackValue;\n\n const element = ref?.current ?? document.documentElement;\n\n const computedStyles = getComputedStyle(element);\n\n return computedStyles.getPropertyValue(name) || fallbackValue;\n }, [name, ref, fallbackValue, contextTheme]);\n\n const initialValue = React.useMemo(getValue, [getValue]);\n const [value, setValue] = React.useState(initialValue);\n React.useEffect(() => setValue(getValue), [getValue]);\n\n return value;\n};\n\nexport const cssVariableEnhance = <\n P extends string,\n F = string,\n R = string,\n M extends null | ((value: string) => R) = any,\n>({\n variable,\n fallback,\n prop,\n map,\n}: {\n variable: string;\n prop: P;\n fallback: F;\n map?: M;\n}) => {\n return <T extends {}>(props: T) => {\n const { ref } = props as any;\n const nodeRef = React.useRef();\n const variableValue = useCssVariable(variable, fallback as any, nodeRef);\n const mappedValue = React.useMemo(\n () => (map ? map(variableValue) : variableValue),\n [map, variableValue],\n );\n\n return {\n ...props,\n ref: useForkRef(ref, nodeRef),\n [prop]: (props as any)[prop] === undefined ? mappedValue : (props as any)[prop],\n } as T & {\n [key in P]: M extends (value: string) => R ? R : F;\n };\n };\n};\n"],"mappings":";;;;;;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,UAAA,GAAAF,sBAAA,CAAAC,OAAA;AACA,IAAAE,KAAA,GAAAF,OAAA;AACA,IAAAG,cAAA,GAAAH,OAAA;AAEO,IAAMI,cAAc,GAAG,SAAjBA,cAAcA,CAAIC,IAAY,EAAEC,aAAqB,EAAEC,GAA0B,EAAK;EACjG,IAAMC,YAAY,GAAG,IAAAC,+BAAgB,GAAE;EACvC,IAAMC,QAAQ,GAAGC,iBAAK,CAACC,WAAW,CAAC,YAAM;IAAA,IAAAC,YAAA;IACvC,IAAIL,YAAY,aAAZA,YAAY,eAAZA,YAAY,CAAGH,IAAI,CAAC,EAAE,OAAOG,YAAY,CAACH,IAAI,CAAC;IACnD,IAAI,CAAC,IAAAS,qBAAS,GAAE,EAAE,OAAOR,aAAa;IAEtC,IAAMS,OAAO,IAAAF,YAAA,GAAGN,GAAG,aAAHA,GAAG,uBAAHA,GAAG,CAAES,OAAO,cAAAH,YAAA,cAAAA,YAAA,GAAII,QAAQ,CAACC,eAAe;IAExD,IAAMC,cAAc,GAAGC,gBAAgB,CAACL,OAAO,CAAC;IAEhD,OAAOI,cAAc,CAACE,gBAAgB,CAAChB,IAAI,CAAC,IAAIC,aAAa;EAC/D,CAAC,EAAE,CAACD,IAAI,EAAEE,GAAG,EAAED,aAAa,EAAEE,YAAY,CAAC,CAAC;EAE5C,IAAMc,YAAY,GAAGX,iBAAK,CAACY,OAAO,CAACb,QAAQ,EAAE,CAACA,QAAQ,CAAC,CAAC;EACxD,IAAAc,eAAA,GAA0Bb,iBAAK,CAACc,QAAQ,CAACH,YAAY,CAAC;IAAAI,gBAAA,OAAAC,eAAA,aAAAH,eAAA;IAA/CI,KAAK,GAAAF,gBAAA;IAAEG,QAAQ,GAAAH,gBAAA;EACtBf,iBAAK,CAACmB,SAAS,CAAC;IAAA,OAAMD,QAAQ,CAACnB,QAAQ,CAAC;EAAA,GAAE,CAACA,QAAQ,CAAC,CAAC;EAErD,OAAOkB,KAAK;AACd,CAAC;AAACG,OAAA,CAAA3B,cAAA,GAAAA,cAAA;AAEK,IAAM4B,kBAAkB,GAAG,SAArBA,kBAAkBA,CAAAC,IAAA,EAezB;EAAA,IATJC,QAAQ,GAAAD,IAAA,CAARC,QAAQ;IACRC,QAAQ,GAAAF,IAAA,CAARE,QAAQ;IACRC,IAAI,GAAAH,IAAA,CAAJG,IAAI;IACJC,GAAG,GAAAJ,IAAA,CAAHI,GAAG;EAOH,OAAO,UAAeC,KAAQ,EAAK;IACjC,IAAAC,KAAA,GAAgBD,KAAK;MAAb/B,GAAG,GAAAgC,KAAA,CAAHhC,GAAG;IACX,IAAMiC,OAAO,GAAG7B,iBAAK,CAAC8B,MAAM,EAAE;IAC9B,IAAMC,aAAa,GAAGtC,cAAc,CAAC8B,QAAQ,EAAEC,QAAQ,EAASK,OAAO,CAAC;IACxE,IAAMG,WAAW,GAAGhC,iBAAK,CAACY,OAAO,CAC/B;MAAA,OAAOc,GAAG,GAAGA,GAAG,CAACK,aAAa,CAAC,GAAGA,aAAa;IAAA,CAAC,EAChD,CAACL,GAAG,EAAEK,aAAa,CAAC,CACrB;IAED,WAAAE,cAAA,iBAAAA,cAAA,iBACKN,KAAK,WAAAO,gBAAA;MACRtC,GAAG,EAAE,IAAAuC,gBAAU,EAACvC,GAAG,EAAEiC,OAAO;IAAC,GAC5BJ,IAAI,EAAIE,KAAK,CAASF,IAAI,CAAC,KAAKW,SAAS,GAAGJ,WAAW,GAAIL,KAAK,CAASF,IAAI,CAAC;EAInF,CAAC;AACH,CAAC;AAACL,OAAA,CAAAC,kBAAA,GAAAA,kBAAA"}