@konstructio/ui 0.0.2

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 (256) hide show
  1. package/LICENSE.md +21 -0
  2. package/README.md +19 -0
  3. package/dist/AlertDialogTrigger-BIbxXexQ.js +553 -0
  4. package/dist/Combination-Cmu9JRkv.js +479 -0
  5. package/dist/Modal-CO0_SnXD.js +909 -0
  6. package/dist/_commonjsHelpers-C6fGbg64.js +6 -0
  7. package/dist/chevron-up-Cmu1oXfj.js +54 -0
  8. package/dist/components/AlertDialog/AlertDialog.d.ts +3 -0
  9. package/dist/components/AlertDialog/AlertDialog.js +54 -0
  10. package/dist/components/AlertDialog/AlertDialog.types.d.ts +13 -0
  11. package/dist/components/AlertDialog/AlertDialog.types.js +1 -0
  12. package/dist/components/AlertDialog/AlertDialog.variants.d.ts +3 -0
  13. package/dist/components/AlertDialog/AlertDialog.variants.js +16 -0
  14. package/dist/components/AlertDialog/components/AlertDialogTrigger.d.ts +3 -0
  15. package/dist/components/AlertDialog/components/AlertDialogTrigger.js +10 -0
  16. package/dist/components/AlertDialog/components/AlertDialogTrigger.types.d.ts +6 -0
  17. package/dist/components/AlertDialog/components/AlertDialogTrigger.types.js +1 -0
  18. package/dist/components/AlertDialog/components/index.d.ts +1 -0
  19. package/dist/components/AlertDialog/components/index.js +4 -0
  20. package/dist/components/AlertDialog/hooks/index.d.ts +1 -0
  21. package/dist/components/AlertDialog/hooks/index.js +4 -0
  22. package/dist/components/AlertDialog/hooks/useAlertDialog.d.ts +7 -0
  23. package/dist/components/AlertDialog/hooks/useAlertDialog.js +10 -0
  24. package/dist/components/Autocomplete/Autocomplete.d.ts +3 -0
  25. package/dist/components/Autocomplete/Autocomplete.js +84 -0
  26. package/dist/components/Autocomplete/Autocomplete.types.d.ts +18 -0
  27. package/dist/components/Autocomplete/Autocomplete.types.js +1 -0
  28. package/dist/components/Autocomplete/Autocomplete.variants.d.ts +8 -0
  29. package/dist/components/Autocomplete/Autocomplete.variants.js +61 -0
  30. package/dist/components/Autocomplete/components/List.d.ts +3 -0
  31. package/dist/components/Autocomplete/components/List.js +57 -0
  32. package/dist/components/Autocomplete/components/List.types.d.ts +13 -0
  33. package/dist/components/Autocomplete/components/List.types.js +1 -0
  34. package/dist/components/Autocomplete/components/List.variants.d.ts +16 -0
  35. package/dist/components/Autocomplete/components/List.variants.js +81 -0
  36. package/dist/components/Autocomplete/hooks/index.d.ts +2 -0
  37. package/dist/components/Autocomplete/hooks/index.js +6 -0
  38. package/dist/components/Autocomplete/hooks/useAutocomplete.d.ts +17 -0
  39. package/dist/components/Autocomplete/hooks/useAutocomplete.js +81 -0
  40. package/dist/components/Autocomplete/hooks/useNavigationList.d.ts +10 -0
  41. package/dist/components/Autocomplete/hooks/useNavigationList.js +78 -0
  42. package/dist/components/Breadcrumb/Breadcrumb.d.ts +3 -0
  43. package/dist/components/Breadcrumb/Breadcrumb.js +460 -0
  44. package/dist/components/Breadcrumb/Breadcrumb.types.d.ts +11 -0
  45. package/dist/components/Breadcrumb/Breadcrumb.types.js +1 -0
  46. package/dist/components/Breadcrumb/Breadcrumb.variants.d.ts +12 -0
  47. package/dist/components/Breadcrumb/Breadcrumb.variants.js +61 -0
  48. package/dist/components/Breadcrumb/hooks/useBreadcrumb.d.ts +3 -0
  49. package/dist/components/Breadcrumb/hooks/useBreadcrumb.js +5 -0
  50. package/dist/components/Button/Button.d.ts +4 -0
  51. package/dist/components/Button/Button.js +42 -0
  52. package/dist/components/Button/Button.types.d.ts +7 -0
  53. package/dist/components/Button/Button.types.js +1 -0
  54. package/dist/components/Button/Button.variants.d.ts +6 -0
  55. package/dist/components/Button/Button.variants.js +102 -0
  56. package/dist/components/Checkbox/Checkbox.d.ts +3 -0
  57. package/dist/components/Checkbox/Checkbox.js +233 -0
  58. package/dist/components/Checkbox/Checkbox.types.d.ts +12 -0
  59. package/dist/components/Checkbox/Checkbox.types.js +1 -0
  60. package/dist/components/Checkbox/Checkbox.variants.d.ts +9 -0
  61. package/dist/components/Checkbox/Checkbox.variants.js +82 -0
  62. package/dist/components/Dropdown/Dropdown.d.ts +3 -0
  63. package/dist/components/Dropdown/Dropdown.js +10 -0
  64. package/dist/components/Dropdown/Dropdown.types.d.ts +15 -0
  65. package/dist/components/Dropdown/Dropdown.types.js +1 -0
  66. package/dist/components/Dropdown/Dropdown.variants.d.ts +3 -0
  67. package/dist/components/Dropdown/Dropdown.variants.js +45 -0
  68. package/dist/components/Dropdown/components/EmptyList.d.ts +2 -0
  69. package/dist/components/Dropdown/components/EmptyList.js +5 -0
  70. package/dist/components/Dropdown/components/List/List.d.ts +3 -0
  71. package/dist/components/Dropdown/components/List/List.js +25 -0
  72. package/dist/components/Dropdown/components/List/List.types.d.ts +8 -0
  73. package/dist/components/Dropdown/components/List/List.types.js +1 -0
  74. package/dist/components/Dropdown/components/List/List.variants.d.ts +3 -0
  75. package/dist/components/Dropdown/components/List/List.variants.js +34 -0
  76. package/dist/components/Dropdown/components/ListItem/ListItem.d.ts +3 -0
  77. package/dist/components/Dropdown/components/ListItem/ListItem.js +29 -0
  78. package/dist/components/Dropdown/components/ListItem/ListItem.types.d.ts +4 -0
  79. package/dist/components/Dropdown/components/ListItem/ListItem.types.js +1 -0
  80. package/dist/components/Dropdown/components/ListItem/ListItem.variants.d.ts +3 -0
  81. package/dist/components/Dropdown/components/ListItem/ListItem.variants.js +19 -0
  82. package/dist/components/Dropdown/components/Wrapper.d.ts +3 -0
  83. package/dist/components/Dropdown/components/Wrapper.js +90 -0
  84. package/dist/components/Dropdown/components/index.d.ts +3 -0
  85. package/dist/components/Dropdown/components/index.js +8 -0
  86. package/dist/components/Dropdown/contexts/dropdown.context.d.ts +8 -0
  87. package/dist/components/Dropdown/contexts/dropdown.context.js +14 -0
  88. package/dist/components/Dropdown/contexts/dropdown.hook.d.ts +2 -0
  89. package/dist/components/Dropdown/contexts/dropdown.hook.js +11 -0
  90. package/dist/components/Dropdown/contexts/dropdown.provider.d.ts +2 -0
  91. package/dist/components/Dropdown/contexts/dropdown.provider.js +11 -0
  92. package/dist/components/Dropdown/contexts/index.d.ts +2 -0
  93. package/dist/components/Dropdown/contexts/index.js +6 -0
  94. package/dist/components/Dropdown/hooks/useDropdown.d.ts +11 -0
  95. package/dist/components/Dropdown/hooks/useDropdown.js +65 -0
  96. package/dist/components/Dropdown/hooks/useNavigationList.d.ts +8 -0
  97. package/dist/components/Dropdown/hooks/useNavigationList.js +66 -0
  98. package/dist/components/Input/Input.d.ts +3 -0
  99. package/dist/components/Input/Input.js +178 -0
  100. package/dist/components/Input/Input.types.d.ts +9 -0
  101. package/dist/components/Input/Input.types.js +1 -0
  102. package/dist/components/Input/Input.variants.d.ts +4 -0
  103. package/dist/components/Input/Input.variants.js +43 -0
  104. package/dist/components/Modal/Modal.d.ts +8 -0
  105. package/dist/components/Modal/Modal.js +10 -0
  106. package/dist/components/Modal/Modal.types.d.ts +12 -0
  107. package/dist/components/Modal/Modal.types.js +1 -0
  108. package/dist/components/Modal/components/Body/Body.d.ts +3 -0
  109. package/dist/components/Modal/components/Body/Body.js +7 -0
  110. package/dist/components/Modal/components/Body/Body.types.d.ts +5 -0
  111. package/dist/components/Modal/components/Body/Body.types.js +1 -0
  112. package/dist/components/Modal/components/Footer/Footer.d.ts +3 -0
  113. package/dist/components/Modal/components/Footer/Footer.js +6 -0
  114. package/dist/components/Modal/components/Footer/Footer.types.d.ts +5 -0
  115. package/dist/components/Modal/components/Footer/Footer.types.js +1 -0
  116. package/dist/components/Modal/components/Header/Header.d.ts +3 -0
  117. package/dist/components/Modal/components/Header/Header.js +6 -0
  118. package/dist/components/Modal/components/Header/Header.types.d.ts +5 -0
  119. package/dist/components/Modal/components/Header/Header.types.js +1 -0
  120. package/dist/components/Modal/components/Wrapper/Wrapper.d.ts +3 -0
  121. package/dist/components/Modal/components/Wrapper/Wrapper.js +13 -0
  122. package/dist/components/Modal/components/Wrapper/Wrapper.types.d.ts +7 -0
  123. package/dist/components/Modal/components/Wrapper/Wrapper.types.js +1 -0
  124. package/dist/components/Modal/components/Wrapper/Wrapper.variants.d.ts +6 -0
  125. package/dist/components/Modal/components/Wrapper/Wrapper.variants.js +48 -0
  126. package/dist/components/Modal/components/index.d.ts +4 -0
  127. package/dist/components/Modal/components/index.js +10 -0
  128. package/dist/components/Modal/contexts/Modal.context.d.ts +2 -0
  129. package/dist/components/Modal/contexts/Modal.context.js +20 -0
  130. package/dist/components/Modal/contexts/Modal.provider.d.ts +4 -0
  131. package/dist/components/Modal/contexts/Modal.provider.js +26 -0
  132. package/dist/components/Modal/contexts/Modal.types.d.ts +9 -0
  133. package/dist/components/Modal/contexts/Modal.types.js +1 -0
  134. package/dist/components/Modal/contexts/index.d.ts +1 -0
  135. package/dist/components/Modal/contexts/index.js +4 -0
  136. package/dist/components/Modal/hooks/index.d.ts +1 -0
  137. package/dist/components/Modal/hooks/index.js +4 -0
  138. package/dist/components/Modal/hooks/useModal.d.ts +9 -0
  139. package/dist/components/Modal/hooks/useModal.js +27 -0
  140. package/dist/components/NumberInput/NumberInput.d.ts +3 -0
  141. package/dist/components/NumberInput/NumberInput.js +181 -0
  142. package/dist/components/NumberInput/NumberInput.types.d.ts +11 -0
  143. package/dist/components/NumberInput/NumberInput.types.js +1 -0
  144. package/dist/components/NumberInput/NumberInput.variants.d.ts +11 -0
  145. package/dist/components/NumberInput/NumberInput.variants.js +78 -0
  146. package/dist/components/ProgressBar/ProgressBar.d.ts +3 -0
  147. package/dist/components/ProgressBar/ProgressBar.js +37 -0
  148. package/dist/components/ProgressBar/ProgressBar.types.d.ts +8 -0
  149. package/dist/components/ProgressBar/ProgressBar.types.js +1 -0
  150. package/dist/components/ProgressBar/ProgressBar.variants.d.ts +7 -0
  151. package/dist/components/ProgressBar/ProgressBar.variants.js +62 -0
  152. package/dist/components/Radio/Radio.d.ts +3 -0
  153. package/dist/components/Radio/Radio.js +58 -0
  154. package/dist/components/Radio/Radio.types.d.ts +12 -0
  155. package/dist/components/Radio/Radio.types.js +1 -0
  156. package/dist/components/Radio/Radio.variants.d.ts +3 -0
  157. package/dist/components/Radio/Radio.variants.js +49 -0
  158. package/dist/components/RadioGroup/RadioGroup.d.ts +3 -0
  159. package/dist/components/RadioGroup/RadioGroup.js +37 -0
  160. package/dist/components/RadioGroup/RadioGroup.types.d.ts +11 -0
  161. package/dist/components/RadioGroup/RadioGroup.types.js +1 -0
  162. package/dist/components/Range/Range.d.ts +3 -0
  163. package/dist/components/Range/Range.js +70 -0
  164. package/dist/components/Range/Range.types.d.ts +13 -0
  165. package/dist/components/Range/Range.types.js +1 -0
  166. package/dist/components/Range/Range.variants.d.ts +14 -0
  167. package/dist/components/Range/Range.variants.js +93 -0
  168. package/dist/components/Slider/Slider.d.ts +3 -0
  169. package/dist/components/Slider/Slider.js +52 -0
  170. package/dist/components/Slider/Slider.types.d.ts +13 -0
  171. package/dist/components/Slider/Slider.types.js +1 -0
  172. package/dist/components/Slider/Slider.variants.d.ts +11 -0
  173. package/dist/components/Slider/Slider.variants.js +69 -0
  174. package/dist/components/Switch/Switch.d.ts +3 -0
  175. package/dist/components/Switch/Switch.js +176 -0
  176. package/dist/components/Switch/Switch.types.d.ts +10 -0
  177. package/dist/components/Switch/Switch.types.js +1 -0
  178. package/dist/components/Switch/Switch.variants.d.ts +6 -0
  179. package/dist/components/Switch/Switch.variants.js +58 -0
  180. package/dist/components/Tag/Tag.d.ts +3 -0
  181. package/dist/components/Tag/Tag.js +6 -0
  182. package/dist/components/Tag/Tag.types.d.ts +4 -0
  183. package/dist/components/Tag/Tag.types.js +1 -0
  184. package/dist/components/Tag/Tag.variants.d.ts +3 -0
  185. package/dist/components/Tag/Tag.variants.js +31 -0
  186. package/dist/components/TagSelect/TagSelect.d.ts +3 -0
  187. package/dist/components/TagSelect/TagSelect.js +75 -0
  188. package/dist/components/TagSelect/TagSelect.types.d.ts +9 -0
  189. package/dist/components/TagSelect/TagSelect.types.js +1 -0
  190. package/dist/components/TagSelect/TagSelect.variants.d.ts +9 -0
  191. package/dist/components/TagSelect/TagSelect.variants.js +83 -0
  192. package/dist/components/TagSelect/hooks/useTagSelect.d.ts +9 -0
  193. package/dist/components/TagSelect/hooks/useTagSelect.js +39 -0
  194. package/dist/components/TextArea/TextArea.d.ts +3 -0
  195. package/dist/components/TextArea/TextArea.js +34 -0
  196. package/dist/components/TextArea/TextArea.types.d.ts +10 -0
  197. package/dist/components/TextArea/TextArea.types.js +1 -0
  198. package/dist/components/TextArea/TextArea.variants.d.ts +3 -0
  199. package/dist/components/TextArea/TextArea.variants.js +34 -0
  200. package/dist/components/Toast/Toast.d.ts +3 -0
  201. package/dist/components/Toast/Toast.js +471 -0
  202. package/dist/components/Toast/Toast.types.d.ts +12 -0
  203. package/dist/components/Toast/Toast.types.js +1 -0
  204. package/dist/components/Toast/Toast.variants.d.ts +9 -0
  205. package/dist/components/Toast/Toast.variants.js +74 -0
  206. package/dist/components/Tooltip/Tooltip.d.ts +3 -0
  207. package/dist/components/Tooltip/Tooltip.js +42 -0
  208. package/dist/components/Tooltip/Tooltip.types.d.ts +8 -0
  209. package/dist/components/Tooltip/Tooltip.types.js +1 -0
  210. package/dist/components/Tooltip/Tooltip.variants.d.ts +8 -0
  211. package/dist/components/Tooltip/Tooltip.variants.js +93 -0
  212. package/dist/components/Tooltip/hooks/useTooltip.d.ts +4 -0
  213. package/dist/components/Tooltip/hooks/useTooltip.js +25 -0
  214. package/dist/components/index.d.ts +19 -0
  215. package/dist/components/index.js +40 -0
  216. package/dist/contexts/index.d.ts +3 -0
  217. package/dist/contexts/index.js +8 -0
  218. package/dist/contexts/theme.context.d.ts +6 -0
  219. package/dist/contexts/theme.context.js +10 -0
  220. package/dist/contexts/theme.hook.d.ts +7 -0
  221. package/dist/contexts/theme.hook.js +9 -0
  222. package/dist/contexts/theme.provider.d.ts +7 -0
  223. package/dist/contexts/theme.provider.js +17 -0
  224. package/dist/hooks/index.d.ts +1 -0
  225. package/dist/hooks/index.js +4 -0
  226. package/dist/hooks/useToggle.d.ts +1 -0
  227. package/dist/hooks/useToggle.js +11 -0
  228. package/dist/index-2K8qjK4R.js +145 -0
  229. package/dist/index-2hJuj4UN.js +19069 -0
  230. package/dist/index-4qm4jAkj.js +92 -0
  231. package/dist/index-8vgf-x5i.js +118 -0
  232. package/dist/index-BJ7FQg17.js +35 -0
  233. package/dist/index-B_GWswUP.js +71 -0
  234. package/dist/index-BqM_XclQ.js +94 -0
  235. package/dist/index-BwYCDOHZ.js +44 -0
  236. package/dist/index-BxeV34ij.js +32 -0
  237. package/dist/index-CCavb-1K.js +57 -0
  238. package/dist/index-DFbnnPzA.js +423 -0
  239. package/dist/index-DQMInta3.js +663 -0
  240. package/dist/index.d.ts +4 -0
  241. package/dist/index.js +50 -0
  242. package/dist/js.cookie-OLEfuq_g.js +74 -0
  243. package/dist/package.json +118 -0
  244. package/dist/plugins/index.d.ts +1 -0
  245. package/dist/plugins/index.js +4 -0
  246. package/dist/plugins/konstruct.d.ts +4 -0
  247. package/dist/plugins/konstruct.js +104 -0
  248. package/dist/plugins/utils/colors.d.ts +206 -0
  249. package/dist/plugins/utils/colors.js +626 -0
  250. package/dist/styles.css +1 -0
  251. package/dist/styles.d.ts +0 -0
  252. package/dist/styles.js +1 -0
  253. package/dist/useBreadcrumb-BSMnc4Fu.js +341 -0
  254. package/dist/utils/index.d.ts +4 -0
  255. package/dist/utils/index.js +2278 -0
  256. package/package.json +118 -0
@@ -0,0 +1,663 @@
1
+ import { g as Ee } from "./_commonjsHelpers-C6fGbg64.js";
2
+ var ae = { exports: {} }, V = { exports: {} }, m = {};
3
+ /** @license React v16.13.1
4
+ * react-is.production.min.js
5
+ *
6
+ * Copyright (c) Facebook, Inc. and its affiliates.
7
+ *
8
+ * This source code is licensed under the MIT license found in the
9
+ * LICENSE file in the root directory of this source tree.
10
+ */
11
+ var fe;
12
+ function ge() {
13
+ if (fe) return m;
14
+ fe = 1;
15
+ var o = typeof Symbol == "function" && Symbol.for, I = o ? Symbol.for("react.element") : 60103, O = o ? Symbol.for("react.portal") : 60106, p = o ? Symbol.for("react.fragment") : 60107, S = o ? Symbol.for("react.strict_mode") : 60108, a = o ? Symbol.for("react.profiler") : 60114, P = o ? Symbol.for("react.provider") : 60109, l = o ? Symbol.for("react.context") : 60110, _ = o ? Symbol.for("react.async_mode") : 60111, g = o ? Symbol.for("react.concurrent_mode") : 60111, b = o ? Symbol.for("react.forward_ref") : 60112, E = o ? Symbol.for("react.suspense") : 60113, C = o ? Symbol.for("react.suspense_list") : 60120, x = o ? Symbol.for("react.memo") : 60115, M = o ? Symbol.for("react.lazy") : 60116, R = o ? Symbol.for("react.block") : 60121, j = o ? Symbol.for("react.fundamental") : 60117, Y = o ? Symbol.for("react.responder") : 60118, F = o ? Symbol.for("react.scope") : 60119;
16
+ function A(t) {
17
+ if (typeof t == "object" && t !== null) {
18
+ var k = t.$$typeof;
19
+ switch (k) {
20
+ case I:
21
+ switch (t = t.type, t) {
22
+ case _:
23
+ case g:
24
+ case p:
25
+ case a:
26
+ case S:
27
+ case E:
28
+ return t;
29
+ default:
30
+ switch (t = t && t.$$typeof, t) {
31
+ case l:
32
+ case b:
33
+ case M:
34
+ case x:
35
+ case P:
36
+ return t;
37
+ default:
38
+ return k;
39
+ }
40
+ }
41
+ case O:
42
+ return k;
43
+ }
44
+ }
45
+ }
46
+ function w(t) {
47
+ return A(t) === g;
48
+ }
49
+ return m.AsyncMode = _, m.ConcurrentMode = g, m.ContextConsumer = l, m.ContextProvider = P, m.Element = I, m.ForwardRef = b, m.Fragment = p, m.Lazy = M, m.Memo = x, m.Portal = O, m.Profiler = a, m.StrictMode = S, m.Suspense = E, m.isAsyncMode = function(t) {
50
+ return w(t) || A(t) === _;
51
+ }, m.isConcurrentMode = w, m.isContextConsumer = function(t) {
52
+ return A(t) === l;
53
+ }, m.isContextProvider = function(t) {
54
+ return A(t) === P;
55
+ }, m.isElement = function(t) {
56
+ return typeof t == "object" && t !== null && t.$$typeof === I;
57
+ }, m.isForwardRef = function(t) {
58
+ return A(t) === b;
59
+ }, m.isFragment = function(t) {
60
+ return A(t) === p;
61
+ }, m.isLazy = function(t) {
62
+ return A(t) === M;
63
+ }, m.isMemo = function(t) {
64
+ return A(t) === x;
65
+ }, m.isPortal = function(t) {
66
+ return A(t) === O;
67
+ }, m.isProfiler = function(t) {
68
+ return A(t) === a;
69
+ }, m.isStrictMode = function(t) {
70
+ return A(t) === S;
71
+ }, m.isSuspense = function(t) {
72
+ return A(t) === E;
73
+ }, m.isValidElementType = function(t) {
74
+ return typeof t == "string" || typeof t == "function" || t === p || t === g || t === a || t === S || t === E || t === C || typeof t == "object" && t !== null && (t.$$typeof === M || t.$$typeof === x || t.$$typeof === P || t.$$typeof === l || t.$$typeof === b || t.$$typeof === j || t.$$typeof === Y || t.$$typeof === F || t.$$typeof === R);
75
+ }, m.typeOf = A, m;
76
+ }
77
+ var T = {};
78
+ /** @license React v16.13.1
79
+ * react-is.development.js
80
+ *
81
+ * Copyright (c) Facebook, Inc. and its affiliates.
82
+ *
83
+ * This source code is licensed under the MIT license found in the
84
+ * LICENSE file in the root directory of this source tree.
85
+ */
86
+ var ue;
87
+ function Se() {
88
+ return ue || (ue = 1, process.env.NODE_ENV !== "production" && function() {
89
+ var o = typeof Symbol == "function" && Symbol.for, I = o ? Symbol.for("react.element") : 60103, O = o ? Symbol.for("react.portal") : 60106, p = o ? Symbol.for("react.fragment") : 60107, S = o ? Symbol.for("react.strict_mode") : 60108, a = o ? Symbol.for("react.profiler") : 60114, P = o ? Symbol.for("react.provider") : 60109, l = o ? Symbol.for("react.context") : 60110, _ = o ? Symbol.for("react.async_mode") : 60111, g = o ? Symbol.for("react.concurrent_mode") : 60111, b = o ? Symbol.for("react.forward_ref") : 60112, E = o ? Symbol.for("react.suspense") : 60113, C = o ? Symbol.for("react.suspense_list") : 60120, x = o ? Symbol.for("react.memo") : 60115, M = o ? Symbol.for("react.lazy") : 60116, R = o ? Symbol.for("react.block") : 60121, j = o ? Symbol.for("react.fundamental") : 60117, Y = o ? Symbol.for("react.responder") : 60118, F = o ? Symbol.for("react.scope") : 60119;
90
+ function A(r) {
91
+ return typeof r == "string" || typeof r == "function" || // Note: its typeof might be other than 'symbol' or 'number' if it's a polyfill.
92
+ r === p || r === g || r === a || r === S || r === E || r === C || typeof r == "object" && r !== null && (r.$$typeof === M || r.$$typeof === x || r.$$typeof === P || r.$$typeof === l || r.$$typeof === b || r.$$typeof === j || r.$$typeof === Y || r.$$typeof === F || r.$$typeof === R);
93
+ }
94
+ function w(r) {
95
+ if (typeof r == "object" && r !== null) {
96
+ var D = r.$$typeof;
97
+ switch (D) {
98
+ case I:
99
+ var B = r.type;
100
+ switch (B) {
101
+ case _:
102
+ case g:
103
+ case p:
104
+ case a:
105
+ case S:
106
+ case E:
107
+ return B;
108
+ default:
109
+ var se = B && B.$$typeof;
110
+ switch (se) {
111
+ case l:
112
+ case b:
113
+ case M:
114
+ case x:
115
+ case P:
116
+ return se;
117
+ default:
118
+ return D;
119
+ }
120
+ }
121
+ case O:
122
+ return D;
123
+ }
124
+ }
125
+ }
126
+ var t = _, k = g, N = l, H = P, J = I, X = b, U = p, G = M, K = x, L = O, Z = a, q = S, W = E, z = !1;
127
+ function Q(r) {
128
+ return z || (z = !0, console.warn("The ReactIs.isAsyncMode() alias has been deprecated, and will be removed in React 17+. Update your code to use ReactIs.isConcurrentMode() instead. It has the exact same API.")), e(r) || w(r) === _;
129
+ }
130
+ function e(r) {
131
+ return w(r) === g;
132
+ }
133
+ function n(r) {
134
+ return w(r) === l;
135
+ }
136
+ function u(r) {
137
+ return w(r) === P;
138
+ }
139
+ function s(r) {
140
+ return typeof r == "object" && r !== null && r.$$typeof === I;
141
+ }
142
+ function i(r) {
143
+ return w(r) === b;
144
+ }
145
+ function y(r) {
146
+ return w(r) === p;
147
+ }
148
+ function c(r) {
149
+ return w(r) === M;
150
+ }
151
+ function f(r) {
152
+ return w(r) === x;
153
+ }
154
+ function d(r) {
155
+ return w(r) === O;
156
+ }
157
+ function h(r) {
158
+ return w(r) === a;
159
+ }
160
+ function v(r) {
161
+ return w(r) === S;
162
+ }
163
+ function $(r) {
164
+ return w(r) === E;
165
+ }
166
+ T.AsyncMode = t, T.ConcurrentMode = k, T.ContextConsumer = N, T.ContextProvider = H, T.Element = J, T.ForwardRef = X, T.Fragment = U, T.Lazy = G, T.Memo = K, T.Portal = L, T.Profiler = Z, T.StrictMode = q, T.Suspense = W, T.isAsyncMode = Q, T.isConcurrentMode = e, T.isContextConsumer = n, T.isContextProvider = u, T.isElement = s, T.isForwardRef = i, T.isFragment = y, T.isLazy = c, T.isMemo = f, T.isPortal = d, T.isProfiler = h, T.isStrictMode = v, T.isSuspense = $, T.isValidElementType = A, T.typeOf = w;
167
+ }()), T;
168
+ }
169
+ var le;
170
+ function Te() {
171
+ return le || (le = 1, process.env.NODE_ENV === "production" ? V.exports = ge() : V.exports = Se()), V.exports;
172
+ }
173
+ /*
174
+ object-assign
175
+ (c) Sindre Sorhus
176
+ @license MIT
177
+ */
178
+ var ee, pe;
179
+ function Pe() {
180
+ if (pe) return ee;
181
+ pe = 1;
182
+ var o = Object.getOwnPropertySymbols, I = Object.prototype.hasOwnProperty, O = Object.prototype.propertyIsEnumerable;
183
+ function p(a) {
184
+ if (a == null)
185
+ throw new TypeError("Object.assign cannot be called with null or undefined");
186
+ return Object(a);
187
+ }
188
+ function S() {
189
+ try {
190
+ if (!Object.assign)
191
+ return !1;
192
+ var a = new String("abc");
193
+ if (a[5] = "de", Object.getOwnPropertyNames(a)[0] === "5")
194
+ return !1;
195
+ for (var P = {}, l = 0; l < 10; l++)
196
+ P["_" + String.fromCharCode(l)] = l;
197
+ var _ = Object.getOwnPropertyNames(P).map(function(b) {
198
+ return P[b];
199
+ });
200
+ if (_.join("") !== "0123456789")
201
+ return !1;
202
+ var g = {};
203
+ return "abcdefghijklmnopqrst".split("").forEach(function(b) {
204
+ g[b] = b;
205
+ }), Object.keys(Object.assign({}, g)).join("") === "abcdefghijklmnopqrst";
206
+ } catch {
207
+ return !1;
208
+ }
209
+ }
210
+ return ee = S() ? Object.assign : function(a, P) {
211
+ for (var l, _ = p(a), g, b = 1; b < arguments.length; b++) {
212
+ l = Object(arguments[b]);
213
+ for (var E in l)
214
+ I.call(l, E) && (_[E] = l[E]);
215
+ if (o) {
216
+ g = o(l);
217
+ for (var C = 0; C < g.length; C++)
218
+ O.call(l, g[C]) && (_[g[C]] = l[g[C]]);
219
+ }
220
+ }
221
+ return _;
222
+ }, ee;
223
+ }
224
+ var re, ye;
225
+ function ce() {
226
+ if (ye) return re;
227
+ ye = 1;
228
+ var o = "SECRET_DO_NOT_PASS_THIS_OR_YOU_WILL_BE_FIRED";
229
+ return re = o, re;
230
+ }
231
+ var te, de;
232
+ function he() {
233
+ return de || (de = 1, te = Function.call.bind(Object.prototype.hasOwnProperty)), te;
234
+ }
235
+ var ne, ve;
236
+ function Oe() {
237
+ if (ve) return ne;
238
+ ve = 1;
239
+ var o = function() {
240
+ };
241
+ if (process.env.NODE_ENV !== "production") {
242
+ var I = ce(), O = {}, p = he();
243
+ o = function(a) {
244
+ var P = "Warning: " + a;
245
+ typeof console < "u" && console.error(P);
246
+ try {
247
+ throw new Error(P);
248
+ } catch {
249
+ }
250
+ };
251
+ }
252
+ function S(a, P, l, _, g) {
253
+ if (process.env.NODE_ENV !== "production") {
254
+ for (var b in a)
255
+ if (p(a, b)) {
256
+ var E;
257
+ try {
258
+ if (typeof a[b] != "function") {
259
+ var C = Error(
260
+ (_ || "React class") + ": " + l + " type `" + b + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + typeof a[b] + "`.This often happens because of typos such as `PropTypes.function` instead of `PropTypes.func`."
261
+ );
262
+ throw C.name = "Invariant Violation", C;
263
+ }
264
+ E = a[b](P, b, _, l, null, I);
265
+ } catch (M) {
266
+ E = M;
267
+ }
268
+ if (E && !(E instanceof Error) && o(
269
+ (_ || "React class") + ": type specification of " + l + " `" + b + "` is invalid; the type checker function must return `null` or an `Error` but returned a " + typeof E + ". You may have forgotten to pass an argument to the type checker creator (arrayOf, instanceOf, objectOf, oneOf, oneOfType, and shape all require an argument)."
270
+ ), E instanceof Error && !(E.message in O)) {
271
+ O[E.message] = !0;
272
+ var x = g ? g() : "";
273
+ o(
274
+ "Failed " + l + " type: " + E.message + (x ?? "")
275
+ );
276
+ }
277
+ }
278
+ }
279
+ }
280
+ return S.resetWarningCache = function() {
281
+ process.env.NODE_ENV !== "production" && (O = {});
282
+ }, ne = S, ne;
283
+ }
284
+ var oe, be;
285
+ function _e() {
286
+ if (be) return oe;
287
+ be = 1;
288
+ var o = Te(), I = Pe(), O = ce(), p = he(), S = Oe(), a = function() {
289
+ };
290
+ process.env.NODE_ENV !== "production" && (a = function(l) {
291
+ var _ = "Warning: " + l;
292
+ typeof console < "u" && console.error(_);
293
+ try {
294
+ throw new Error(_);
295
+ } catch {
296
+ }
297
+ });
298
+ function P() {
299
+ return null;
300
+ }
301
+ return oe = function(l, _) {
302
+ var g = typeof Symbol == "function" && Symbol.iterator, b = "@@iterator";
303
+ function E(e) {
304
+ var n = e && (g && e[g] || e[b]);
305
+ if (typeof n == "function")
306
+ return n;
307
+ }
308
+ var C = "<<anonymous>>", x = {
309
+ array: Y("array"),
310
+ bigint: Y("bigint"),
311
+ bool: Y("boolean"),
312
+ func: Y("function"),
313
+ number: Y("number"),
314
+ object: Y("object"),
315
+ string: Y("string"),
316
+ symbol: Y("symbol"),
317
+ any: F(),
318
+ arrayOf: A,
319
+ element: w(),
320
+ elementType: t(),
321
+ instanceOf: k,
322
+ node: X(),
323
+ objectOf: H,
324
+ oneOf: N,
325
+ oneOfType: J,
326
+ shape: G,
327
+ exact: K
328
+ };
329
+ function M(e, n) {
330
+ return e === n ? e !== 0 || 1 / e === 1 / n : e !== e && n !== n;
331
+ }
332
+ function R(e, n) {
333
+ this.message = e, this.data = n && typeof n == "object" ? n : {}, this.stack = "";
334
+ }
335
+ R.prototype = Error.prototype;
336
+ function j(e) {
337
+ if (process.env.NODE_ENV !== "production")
338
+ var n = {}, u = 0;
339
+ function s(y, c, f, d, h, v, $) {
340
+ if (d = d || C, v = v || f, $ !== O) {
341
+ if (_) {
342
+ var r = new Error(
343
+ "Calling PropTypes validators directly is not supported by the `prop-types` package. Use `PropTypes.checkPropTypes()` to call them. Read more at http://fb.me/use-check-prop-types"
344
+ );
345
+ throw r.name = "Invariant Violation", r;
346
+ } else if (process.env.NODE_ENV !== "production" && typeof console < "u") {
347
+ var D = d + ":" + f;
348
+ !n[D] && // Avoid spamming the console because they are often not actionable except for lib authors
349
+ u < 3 && (a(
350
+ "You are manually calling a React.PropTypes validation function for the `" + v + "` prop on `" + d + "`. This is deprecated and will throw in the standalone `prop-types` package. You may be seeing this warning due to a third-party PropTypes library. See https://fb.me/react-warning-dont-call-proptypes for details."
351
+ ), n[D] = !0, u++);
352
+ }
353
+ }
354
+ return c[f] == null ? y ? c[f] === null ? new R("The " + h + " `" + v + "` is marked as required " + ("in `" + d + "`, but its value is `null`.")) : new R("The " + h + " `" + v + "` is marked as required in " + ("`" + d + "`, but its value is `undefined`.")) : null : e(c, f, d, h, v);
355
+ }
356
+ var i = s.bind(null, !1);
357
+ return i.isRequired = s.bind(null, !0), i;
358
+ }
359
+ function Y(e) {
360
+ function n(u, s, i, y, c, f) {
361
+ var d = u[s], h = q(d);
362
+ if (h !== e) {
363
+ var v = W(d);
364
+ return new R(
365
+ "Invalid " + y + " `" + c + "` of type " + ("`" + v + "` supplied to `" + i + "`, expected ") + ("`" + e + "`."),
366
+ { expectedType: e }
367
+ );
368
+ }
369
+ return null;
370
+ }
371
+ return j(n);
372
+ }
373
+ function F() {
374
+ return j(P);
375
+ }
376
+ function A(e) {
377
+ function n(u, s, i, y, c) {
378
+ if (typeof e != "function")
379
+ return new R("Property `" + c + "` of component `" + i + "` has invalid PropType notation inside arrayOf.");
380
+ var f = u[s];
381
+ if (!Array.isArray(f)) {
382
+ var d = q(f);
383
+ return new R("Invalid " + y + " `" + c + "` of type " + ("`" + d + "` supplied to `" + i + "`, expected an array."));
384
+ }
385
+ for (var h = 0; h < f.length; h++) {
386
+ var v = e(f, h, i, y, c + "[" + h + "]", O);
387
+ if (v instanceof Error)
388
+ return v;
389
+ }
390
+ return null;
391
+ }
392
+ return j(n);
393
+ }
394
+ function w() {
395
+ function e(n, u, s, i, y) {
396
+ var c = n[u];
397
+ if (!l(c)) {
398
+ var f = q(c);
399
+ return new R("Invalid " + i + " `" + y + "` of type " + ("`" + f + "` supplied to `" + s + "`, expected a single ReactElement."));
400
+ }
401
+ return null;
402
+ }
403
+ return j(e);
404
+ }
405
+ function t() {
406
+ function e(n, u, s, i, y) {
407
+ var c = n[u];
408
+ if (!o.isValidElementType(c)) {
409
+ var f = q(c);
410
+ return new R("Invalid " + i + " `" + y + "` of type " + ("`" + f + "` supplied to `" + s + "`, expected a single ReactElement type."));
411
+ }
412
+ return null;
413
+ }
414
+ return j(e);
415
+ }
416
+ function k(e) {
417
+ function n(u, s, i, y, c) {
418
+ if (!(u[s] instanceof e)) {
419
+ var f = e.name || C, d = Q(u[s]);
420
+ return new R("Invalid " + y + " `" + c + "` of type " + ("`" + d + "` supplied to `" + i + "`, expected ") + ("instance of `" + f + "`."));
421
+ }
422
+ return null;
423
+ }
424
+ return j(n);
425
+ }
426
+ function N(e) {
427
+ if (!Array.isArray(e))
428
+ return process.env.NODE_ENV !== "production" && (arguments.length > 1 ? a(
429
+ "Invalid arguments supplied to oneOf, expected an array, got " + arguments.length + " arguments. A common mistake is to write oneOf(x, y, z) instead of oneOf([x, y, z])."
430
+ ) : a("Invalid argument supplied to oneOf, expected an array.")), P;
431
+ function n(u, s, i, y, c) {
432
+ for (var f = u[s], d = 0; d < e.length; d++)
433
+ if (M(f, e[d]))
434
+ return null;
435
+ var h = JSON.stringify(e, function($, r) {
436
+ var D = W(r);
437
+ return D === "symbol" ? String(r) : r;
438
+ });
439
+ return new R("Invalid " + y + " `" + c + "` of value `" + String(f) + "` " + ("supplied to `" + i + "`, expected one of " + h + "."));
440
+ }
441
+ return j(n);
442
+ }
443
+ function H(e) {
444
+ function n(u, s, i, y, c) {
445
+ if (typeof e != "function")
446
+ return new R("Property `" + c + "` of component `" + i + "` has invalid PropType notation inside objectOf.");
447
+ var f = u[s], d = q(f);
448
+ if (d !== "object")
449
+ return new R("Invalid " + y + " `" + c + "` of type " + ("`" + d + "` supplied to `" + i + "`, expected an object."));
450
+ for (var h in f)
451
+ if (p(f, h)) {
452
+ var v = e(f, h, i, y, c + "." + h, O);
453
+ if (v instanceof Error)
454
+ return v;
455
+ }
456
+ return null;
457
+ }
458
+ return j(n);
459
+ }
460
+ function J(e) {
461
+ if (!Array.isArray(e))
462
+ return process.env.NODE_ENV !== "production" && a("Invalid argument supplied to oneOfType, expected an instance of array."), P;
463
+ for (var n = 0; n < e.length; n++) {
464
+ var u = e[n];
465
+ if (typeof u != "function")
466
+ return a(
467
+ "Invalid argument supplied to oneOfType. Expected an array of check functions, but received " + z(u) + " at index " + n + "."
468
+ ), P;
469
+ }
470
+ function s(i, y, c, f, d) {
471
+ for (var h = [], v = 0; v < e.length; v++) {
472
+ var $ = e[v], r = $(i, y, c, f, d, O);
473
+ if (r == null)
474
+ return null;
475
+ r.data && p(r.data, "expectedType") && h.push(r.data.expectedType);
476
+ }
477
+ var D = h.length > 0 ? ", expected one of type [" + h.join(", ") + "]" : "";
478
+ return new R("Invalid " + f + " `" + d + "` supplied to " + ("`" + c + "`" + D + "."));
479
+ }
480
+ return j(s);
481
+ }
482
+ function X() {
483
+ function e(n, u, s, i, y) {
484
+ return L(n[u]) ? null : new R("Invalid " + i + " `" + y + "` supplied to " + ("`" + s + "`, expected a ReactNode."));
485
+ }
486
+ return j(e);
487
+ }
488
+ function U(e, n, u, s, i) {
489
+ return new R(
490
+ (e || "React class") + ": " + n + " type `" + u + "." + s + "` is invalid; it must be a function, usually from the `prop-types` package, but received `" + i + "`."
491
+ );
492
+ }
493
+ function G(e) {
494
+ function n(u, s, i, y, c) {
495
+ var f = u[s], d = q(f);
496
+ if (d !== "object")
497
+ return new R("Invalid " + y + " `" + c + "` of type `" + d + "` " + ("supplied to `" + i + "`, expected `object`."));
498
+ for (var h in e) {
499
+ var v = e[h];
500
+ if (typeof v != "function")
501
+ return U(i, y, c, h, W(v));
502
+ var $ = v(f, h, i, y, c + "." + h, O);
503
+ if ($)
504
+ return $;
505
+ }
506
+ return null;
507
+ }
508
+ return j(n);
509
+ }
510
+ function K(e) {
511
+ function n(u, s, i, y, c) {
512
+ var f = u[s], d = q(f);
513
+ if (d !== "object")
514
+ return new R("Invalid " + y + " `" + c + "` of type `" + d + "` " + ("supplied to `" + i + "`, expected `object`."));
515
+ var h = I({}, u[s], e);
516
+ for (var v in h) {
517
+ var $ = e[v];
518
+ if (p(e, v) && typeof $ != "function")
519
+ return U(i, y, c, v, W($));
520
+ if (!$)
521
+ return new R(
522
+ "Invalid " + y + " `" + c + "` key `" + v + "` supplied to `" + i + "`.\nBad object: " + JSON.stringify(u[s], null, " ") + `
523
+ Valid keys: ` + JSON.stringify(Object.keys(e), null, " ")
524
+ );
525
+ var r = $(f, v, i, y, c + "." + v, O);
526
+ if (r)
527
+ return r;
528
+ }
529
+ return null;
530
+ }
531
+ return j(n);
532
+ }
533
+ function L(e) {
534
+ switch (typeof e) {
535
+ case "number":
536
+ case "string":
537
+ case "undefined":
538
+ return !0;
539
+ case "boolean":
540
+ return !e;
541
+ case "object":
542
+ if (Array.isArray(e))
543
+ return e.every(L);
544
+ if (e === null || l(e))
545
+ return !0;
546
+ var n = E(e);
547
+ if (n) {
548
+ var u = n.call(e), s;
549
+ if (n !== e.entries) {
550
+ for (; !(s = u.next()).done; )
551
+ if (!L(s.value))
552
+ return !1;
553
+ } else
554
+ for (; !(s = u.next()).done; ) {
555
+ var i = s.value;
556
+ if (i && !L(i[1]))
557
+ return !1;
558
+ }
559
+ } else
560
+ return !1;
561
+ return !0;
562
+ default:
563
+ return !1;
564
+ }
565
+ }
566
+ function Z(e, n) {
567
+ return e === "symbol" ? !0 : n ? n["@@toStringTag"] === "Symbol" || typeof Symbol == "function" && n instanceof Symbol : !1;
568
+ }
569
+ function q(e) {
570
+ var n = typeof e;
571
+ return Array.isArray(e) ? "array" : e instanceof RegExp ? "object" : Z(n, e) ? "symbol" : n;
572
+ }
573
+ function W(e) {
574
+ if (typeof e > "u" || e === null)
575
+ return "" + e;
576
+ var n = q(e);
577
+ if (n === "object") {
578
+ if (e instanceof Date)
579
+ return "date";
580
+ if (e instanceof RegExp)
581
+ return "regexp";
582
+ }
583
+ return n;
584
+ }
585
+ function z(e) {
586
+ var n = W(e);
587
+ switch (n) {
588
+ case "array":
589
+ case "object":
590
+ return "an " + n;
591
+ case "boolean":
592
+ case "date":
593
+ case "regexp":
594
+ return "a " + n;
595
+ default:
596
+ return n;
597
+ }
598
+ }
599
+ function Q(e) {
600
+ return !e.constructor || !e.constructor.name ? C : e.constructor.name;
601
+ }
602
+ return x.checkPropTypes = S, x.resetWarningCache = S.resetWarningCache, x.PropTypes = x, x;
603
+ }, oe;
604
+ }
605
+ var ie, me;
606
+ function Re() {
607
+ if (me) return ie;
608
+ me = 1;
609
+ var o = ce();
610
+ function I() {
611
+ }
612
+ function O() {
613
+ }
614
+ return O.resetWarningCache = I, ie = function() {
615
+ function p(P, l, _, g, b, E) {
616
+ if (E !== o) {
617
+ var C = new Error(
618
+ "Calling PropTypes validators directly is not supported by the `prop-types` package. Use PropTypes.checkPropTypes() to call them. Read more at http://fb.me/use-check-prop-types"
619
+ );
620
+ throw C.name = "Invariant Violation", C;
621
+ }
622
+ }
623
+ p.isRequired = p;
624
+ function S() {
625
+ return p;
626
+ }
627
+ var a = {
628
+ array: p,
629
+ bigint: p,
630
+ bool: p,
631
+ func: p,
632
+ number: p,
633
+ object: p,
634
+ string: p,
635
+ symbol: p,
636
+ any: p,
637
+ arrayOf: S,
638
+ element: p,
639
+ elementType: p,
640
+ instanceOf: S,
641
+ node: p,
642
+ objectOf: S,
643
+ oneOf: S,
644
+ oneOfType: S,
645
+ shape: S,
646
+ exact: S,
647
+ checkPropTypes: O,
648
+ resetWarningCache: I
649
+ };
650
+ return a.PropTypes = a, a;
651
+ }, ie;
652
+ }
653
+ if (process.env.NODE_ENV !== "production") {
654
+ var Ce = Te(), xe = !0;
655
+ ae.exports = _e()(Ce.isElement, xe);
656
+ } else
657
+ ae.exports = Re()();
658
+ var we = ae.exports;
659
+ const Ie = /* @__PURE__ */ Ee(we);
660
+ export {
661
+ Ie as P,
662
+ we as p
663
+ };
@@ -0,0 +1,4 @@
1
+ export * from './components';
2
+ export * from './contexts';
3
+ export * from './hooks';
4
+ export * from './plugins';