@hanzo/gui 8.3.1 → 8.3.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 (205) hide show
  1. package/dist/cjs/createGui.js +64 -0
  2. package/dist/cjs/createGui.js.map +1 -0
  3. package/dist/cjs/index.js +130 -0
  4. package/dist/cjs/index.js.map +1 -0
  5. package/dist/cjs/linear-gradient.js +6 -0
  6. package/dist/cjs/linear-gradient.js.map +1 -0
  7. package/dist/cjs/package.json +1 -0
  8. package/dist/cjs/setup.js +14 -0
  9. package/dist/cjs/setup.js.map +1 -0
  10. package/dist/cjs/viewTypes.js +3 -0
  11. package/dist/cjs/viewTypes.js.map +1 -0
  12. package/dist/cjs/views/Anchor.js +30 -0
  13. package/dist/cjs/views/Anchor.js.map +1 -0
  14. package/dist/cjs/views/EnsureFlexed.js +18 -0
  15. package/dist/cjs/views/EnsureFlexed.js.map +1 -0
  16. package/dist/cjs/views/Fieldset.js +20 -0
  17. package/dist/cjs/views/Fieldset.js.map +1 -0
  18. package/dist/cjs/views/GuiProvider.js +25 -0
  19. package/dist/cjs/views/GuiProvider.js.map +1 -0
  20. package/dist/cjs/views/Text.js +17 -0
  21. package/dist/cjs/views/Text.js.map +1 -0
  22. package/dist/cjs/views/VisuallyHidden.js +38 -0
  23. package/dist/cjs/views/VisuallyHidden.js.map +1 -0
  24. package/dist/esm/createGui.js +61 -0
  25. package/dist/esm/createGui.js.map +1 -0
  26. package/dist/esm/index.js +69 -64
  27. package/dist/esm/index.js.map +1 -1
  28. package/dist/esm/linear-gradient.js +2 -0
  29. package/dist/esm/linear-gradient.js.map +1 -0
  30. package/dist/esm/setup.js +11 -0
  31. package/dist/esm/setup.js.map +1 -0
  32. package/dist/esm/viewTypes.js +2 -0
  33. package/dist/esm/viewTypes.js.map +1 -0
  34. package/dist/esm/views/Anchor.js +27 -0
  35. package/dist/esm/views/Anchor.js.map +1 -0
  36. package/dist/esm/views/EnsureFlexed.js +15 -0
  37. package/dist/esm/views/EnsureFlexed.js.map +1 -0
  38. package/dist/esm/views/Fieldset.js +17 -0
  39. package/dist/esm/views/Fieldset.js.map +1 -0
  40. package/dist/esm/views/GuiProvider.js +21 -0
  41. package/dist/esm/views/GuiProvider.js.map +1 -0
  42. package/dist/esm/views/Text.js +14 -0
  43. package/dist/esm/views/Text.js.map +1 -0
  44. package/dist/esm/views/VisuallyHidden.js +35 -0
  45. package/dist/esm/views/VisuallyHidden.js.map +1 -0
  46. package/package.json +96 -128
  47. package/src/index.ts +8 -8
  48. package/types/index.d.ts +8 -8
  49. package/types/index.d.ts.map +1 -1
  50. package/types/views/Anchor.d.ts +2 -2
  51. package/types/views/GuiProvider.d.ts +1 -1
  52. package/types/views/GuiProvider.d.ts.map +1 -1
  53. package/types/views/VisuallyHidden.d.ts +1 -1
  54. package/dist/cjs/createGui.cjs +0 -80
  55. package/dist/cjs/createGui.native.js +0 -89
  56. package/dist/cjs/createGui.native.js.map +0 -1
  57. package/dist/cjs/index.cjs +0 -148
  58. package/dist/cjs/index.native.js +0 -151
  59. package/dist/cjs/index.native.js.map +0 -1
  60. package/dist/cjs/linear-gradient.cjs +0 -28
  61. package/dist/cjs/linear-gradient.native.js +0 -31
  62. package/dist/cjs/linear-gradient.native.js.map +0 -1
  63. package/dist/cjs/setup.cjs +0 -30
  64. package/dist/cjs/setup.native.js +0 -35
  65. package/dist/cjs/setup.native.js.map +0 -1
  66. package/dist/cjs/viewTypes.cjs +0 -18
  67. package/dist/cjs/viewTypes.native.js +0 -21
  68. package/dist/cjs/viewTypes.native.js.map +0 -1
  69. package/dist/cjs/views/Anchor.cjs +0 -60
  70. package/dist/cjs/views/Anchor.native.js +0 -65
  71. package/dist/cjs/views/Anchor.native.js.map +0 -1
  72. package/dist/cjs/views/EnsureFlexed.cjs +0 -38
  73. package/dist/cjs/views/EnsureFlexed.native.js +0 -41
  74. package/dist/cjs/views/EnsureFlexed.native.js.map +0 -1
  75. package/dist/cjs/views/Fieldset.cjs +0 -43
  76. package/dist/cjs/views/Fieldset.native.js +0 -46
  77. package/dist/cjs/views/Fieldset.native.js.map +0 -1
  78. package/dist/cjs/views/GuiProvider.cjs +0 -54
  79. package/dist/cjs/views/GuiProvider.native.js +0 -63
  80. package/dist/cjs/views/GuiProvider.native.js.map +0 -1
  81. package/dist/cjs/views/Text.cjs +0 -40
  82. package/dist/cjs/views/Text.native.js +0 -43
  83. package/dist/cjs/views/Text.native.js.map +0 -1
  84. package/dist/cjs/views/VisuallyHidden.cjs +0 -60
  85. package/dist/cjs/views/VisuallyHidden.native.js +0 -63
  86. package/dist/cjs/views/VisuallyHidden.native.js.map +0 -1
  87. package/dist/dist-WUUTYzbQ.cjs +0 -540
  88. package/dist/esm/createGui.mjs +0 -55
  89. package/dist/esm/createGui.mjs.map +0 -1
  90. package/dist/esm/createGui.native.js +0 -61
  91. package/dist/esm/createGui.native.js.map +0 -1
  92. package/dist/esm/index.mjs +0 -64
  93. package/dist/esm/index.mjs.map +0 -1
  94. package/dist/esm/index.native.js +0 -64
  95. package/dist/esm/index.native.js.map +0 -1
  96. package/dist/esm/linear-gradient.mjs +0 -3
  97. package/dist/esm/linear-gradient.mjs.map +0 -1
  98. package/dist/esm/linear-gradient.native.js +0 -3
  99. package/dist/esm/linear-gradient.native.js.map +0 -1
  100. package/dist/esm/setup.mjs +0 -6
  101. package/dist/esm/setup.mjs.map +0 -1
  102. package/dist/esm/setup.native.js +0 -8
  103. package/dist/esm/setup.native.js.map +0 -1
  104. package/dist/esm/viewTypes.mjs +0 -2
  105. package/dist/esm/viewTypes.mjs.map +0 -1
  106. package/dist/esm/viewTypes.native.js +0 -2
  107. package/dist/esm/viewTypes.native.js.map +0 -1
  108. package/dist/esm/views/Anchor.mjs +0 -35
  109. package/dist/esm/views/Anchor.mjs.map +0 -1
  110. package/dist/esm/views/Anchor.native.js +0 -37
  111. package/dist/esm/views/Anchor.native.js.map +0 -1
  112. package/dist/esm/views/EnsureFlexed.mjs +0 -13
  113. package/dist/esm/views/EnsureFlexed.mjs.map +0 -1
  114. package/dist/esm/views/EnsureFlexed.native.js +0 -13
  115. package/dist/esm/views/EnsureFlexed.native.js.map +0 -1
  116. package/dist/esm/views/Fieldset.mjs +0 -18
  117. package/dist/esm/views/Fieldset.mjs.map +0 -1
  118. package/dist/esm/views/Fieldset.native.js +0 -18
  119. package/dist/esm/views/Fieldset.native.js.map +0 -1
  120. package/dist/esm/views/GuiProvider.mjs +0 -29
  121. package/dist/esm/views/GuiProvider.mjs.map +0 -1
  122. package/dist/esm/views/GuiProvider.native.js +0 -35
  123. package/dist/esm/views/GuiProvider.native.js.map +0 -1
  124. package/dist/esm/views/Text.mjs +0 -15
  125. package/dist/esm/views/Text.mjs.map +0 -1
  126. package/dist/esm/views/Text.native.js +0 -15
  127. package/dist/esm/views/Text.native.js.map +0 -1
  128. package/dist/esm/views/VisuallyHidden.mjs +0 -35
  129. package/dist/esm/views/VisuallyHidden.mjs.map +0 -1
  130. package/dist/esm/views/VisuallyHidden.native.js +0 -35
  131. package/dist/esm/views/VisuallyHidden.native.js.map +0 -1
  132. package/dist/jsx/createGui.mjs +0 -55
  133. package/dist/jsx/createGui.mjs.map +0 -1
  134. package/dist/jsx/createGui.native.js +0 -89
  135. package/dist/jsx/createGui.native.js.map +0 -1
  136. package/dist/jsx/index.js +0 -64
  137. package/dist/jsx/index.js.map +0 -1
  138. package/dist/jsx/index.mjs +0 -64
  139. package/dist/jsx/index.mjs.map +0 -1
  140. package/dist/jsx/index.native.js +0 -151
  141. package/dist/jsx/index.native.js.map +0 -1
  142. package/dist/jsx/linear-gradient.mjs +0 -3
  143. package/dist/jsx/linear-gradient.mjs.map +0 -1
  144. package/dist/jsx/linear-gradient.native.js +0 -31
  145. package/dist/jsx/linear-gradient.native.js.map +0 -1
  146. package/dist/jsx/setup.mjs +0 -6
  147. package/dist/jsx/setup.mjs.map +0 -1
  148. package/dist/jsx/setup.native.js +0 -35
  149. package/dist/jsx/setup.native.js.map +0 -1
  150. package/dist/jsx/viewTypes.mjs +0 -2
  151. package/dist/jsx/viewTypes.mjs.map +0 -1
  152. package/dist/jsx/viewTypes.native.js +0 -21
  153. package/dist/jsx/viewTypes.native.js.map +0 -1
  154. package/dist/jsx/views/Anchor.mjs +0 -35
  155. package/dist/jsx/views/Anchor.mjs.map +0 -1
  156. package/dist/jsx/views/Anchor.native.js +0 -65
  157. package/dist/jsx/views/Anchor.native.js.map +0 -1
  158. package/dist/jsx/views/EnsureFlexed.mjs +0 -13
  159. package/dist/jsx/views/EnsureFlexed.mjs.map +0 -1
  160. package/dist/jsx/views/EnsureFlexed.native.js +0 -41
  161. package/dist/jsx/views/EnsureFlexed.native.js.map +0 -1
  162. package/dist/jsx/views/Fieldset.mjs +0 -18
  163. package/dist/jsx/views/Fieldset.mjs.map +0 -1
  164. package/dist/jsx/views/Fieldset.native.js +0 -46
  165. package/dist/jsx/views/Fieldset.native.js.map +0 -1
  166. package/dist/jsx/views/GuiProvider.mjs +0 -29
  167. package/dist/jsx/views/GuiProvider.mjs.map +0 -1
  168. package/dist/jsx/views/GuiProvider.native.js +0 -63
  169. package/dist/jsx/views/GuiProvider.native.js.map +0 -1
  170. package/dist/jsx/views/Text.mjs +0 -15
  171. package/dist/jsx/views/Text.mjs.map +0 -1
  172. package/dist/jsx/views/Text.native.js +0 -43
  173. package/dist/jsx/views/Text.native.js.map +0 -1
  174. package/dist/jsx/views/VisuallyHidden.mjs +0 -35
  175. package/dist/jsx/views/VisuallyHidden.mjs.map +0 -1
  176. package/dist/jsx/views/VisuallyHidden.native.js +0 -63
  177. package/dist/jsx/views/VisuallyHidden.native.js.map +0 -1
  178. package/dist/native.cjs +0 -36027
  179. package/dist/objectSpread2-wS8nGfQI.cjs +0 -163
  180. package/dist/test.cjs +0 -36094
  181. package/linear-gradient/index.cjs +0 -2
  182. package/linear-gradient/index.d.ts +0 -1
  183. package/linear-gradient/index.js +0 -2
  184. package/linear-gradient/index.native.cjs +0 -2
  185. package/linear-gradient/index.native.js +0 -2
  186. package/native/index.cjs +0 -2
  187. package/native/index.js +0 -2
  188. package/native-test/index.cjs +0 -2
  189. package/native-test/index.js +0 -2
  190. package/native-test/index.native.cjs +0 -2
  191. package/native-test/index.native.js +0 -2
  192. package/native-test.cjs +0 -1
  193. package/native-test.d.ts +0 -1
  194. package/native.cjs +0 -1
  195. package/native.d.ts +0 -1
  196. package/react-native-web/index.cjs +0 -2
  197. package/react-native-web/index.js +0 -2
  198. package/react-native-web/index.native.cjs +0 -2
  199. package/react-native-web/index.native.js +0 -2
  200. package/react-native-web.cjs +0 -1
  201. package/web/index.cjs +0 -2
  202. package/web/index.js +0 -2
  203. package/web/index.native.cjs +0 -2
  204. package/web/index.native.js +0 -2
  205. package/web.cjs +0 -1
@@ -1,148 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all) __defProp(target, name, {
7
- get: all[name],
8
- enumerable: true
9
- });
10
- };
11
- var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
14
- get: () => from[key],
15
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
- });
17
- }
18
- return to;
19
- };
20
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
21
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
22
- value: true
23
- }), mod);
24
- var index_exports = {};
25
- __export(index_exports, {
26
- ClientOnly: () => import_core.ClientOnly,
27
- ComponentContext: () => import_core.ComponentContext,
28
- Configuration: () => import_core.Configuration,
29
- FontLanguage: () => import_core.FontLanguage,
30
- GroupContext: () => import_core.GroupContext,
31
- Theme: () => import_core.Theme,
32
- View: () => import_core.View,
33
- _withStableStyle: () => import_core._withStableStyle,
34
- createComponent: () => import_core.createComponent,
35
- createFont: () => import_core.createFont,
36
- createShorthands: () => import_core.createShorthands,
37
- createStyledContext: () => import_core.createStyledContext,
38
- createTokens: () => import_core.createTokens,
39
- createVariable: () => import_core.createVariable,
40
- getCSSStylesAtomic: () => import_core.getCSSStylesAtomic,
41
- getConfig: () => import_core.getConfig,
42
- getMedia: () => import_core.getMedia,
43
- getThemes: () => import_core.getThemes,
44
- getToken: () => import_core.getToken,
45
- getTokenValue: () => import_core.getTokenValue,
46
- getTokens: () => import_core.getTokens,
47
- getVariable: () => import_core.getVariable,
48
- getVariableName: () => import_core.getVariableName,
49
- getVariableValue: () => import_core.getVariableValue,
50
- insertFont: () => import_core.insertFont,
51
- isBrowser: () => import_core.isBrowser,
52
- isChrome: () => import_core.isChrome,
53
- isClient: () => import_core.isClient,
54
- isGuiComponent: () => import_core.isGuiComponent,
55
- isGuiElement: () => import_core.isGuiElement,
56
- isServer: () => import_core.isServer,
57
- isTouchable: () => import_core.isTouchable,
58
- isVariable: () => import_core.isVariable,
59
- isWeb: () => import_core.isWeb,
60
- isWebTouchable: () => import_core.isWebTouchable,
61
- matchMedia: () => import_core.matchMedia,
62
- mediaObjectToString: () => import_core.mediaObjectToString,
63
- mediaQueryConfig: () => import_core.mediaQueryConfig,
64
- mediaState: () => import_core.mediaState,
65
- setConfig: () => import_core.setConfig,
66
- setOnLayoutStrategy: () => import_core.setOnLayoutStrategy,
67
- setupDev: () => import_core.setupDev,
68
- styled: () => import_core.styled,
69
- themeable: () => import_core.themeable,
70
- useClientValue: () => import_core.useClientValue,
71
- useConfiguration: () => import_core.useConfiguration,
72
- useDidFinishSSR: () => import_core.useDidFinishSSR,
73
- useEvent: () => import_core.useEvent,
74
- useGet: () => import_core.useGet,
75
- useIsTouchDevice: () => import_core.useIsTouchDevice,
76
- useIsomorphicLayoutEffect: () => import_core.useIsomorphicLayoutEffect,
77
- useMedia: () => import_core.useMedia,
78
- useProps: () => import_core.useProps,
79
- usePropsAndStyle: () => import_core.usePropsAndStyle,
80
- useStyle: () => import_core.useStyle,
81
- useTheme: () => import_core.useTheme,
82
- useThemeName: () => import_core.useThemeName,
83
- variableToString: () => import_core.variableToString,
84
- withStaticProperties: () => import_core.withStaticProperties
85
- });
86
- module.exports = __toCommonJS(index_exports);
87
- var import_setup = require("./setup.cjs");
88
- __reExport(index_exports, require("@hanzogui/spacer"), module.exports);
89
- __reExport(index_exports, require("@hanzogui/accordion"), module.exports);
90
- __reExport(index_exports, require("@hanzogui/adapt"), module.exports);
91
- __reExport(index_exports, require("@hanzogui/alert-dialog"), module.exports);
92
- __reExport(index_exports, require("@hanzogui/animate"), module.exports);
93
- __reExport(index_exports, require("@hanzogui/animate-presence"), module.exports);
94
- __reExport(index_exports, require("@hanzogui/avatar"), module.exports);
95
- __reExport(index_exports, require("@hanzogui/button"), module.exports);
96
- __reExport(index_exports, require("@hanzogui/card"), module.exports);
97
- __reExport(index_exports, require("@hanzogui/checkbox"), module.exports);
98
- __reExport(index_exports, require("@hanzogui/collapsible"), module.exports);
99
- __reExport(index_exports, require("@hanzogui/compose-refs"), module.exports);
100
- __reExport(index_exports, require("@hanzogui/create-context"), module.exports);
101
- __reExport(index_exports, require("@hanzogui/dialog"), module.exports);
102
- __reExport(index_exports, require("@hanzogui/font-size"), module.exports);
103
- __reExport(index_exports, require("@hanzogui/form"), module.exports);
104
- __reExport(index_exports, require("@hanzogui/group"), module.exports);
105
- __reExport(index_exports, require("@hanzogui/react-native-media-driver"), module.exports);
106
- __reExport(index_exports, require("@hanzogui/elements"), module.exports);
107
- __reExport(index_exports, require("@hanzogui/component-helpers"), module.exports);
108
- __reExport(index_exports, require("@hanzogui/image"), module.exports);
109
- __reExport(index_exports, require("@hanzogui/label"), module.exports);
110
- __reExport(index_exports, require("@hanzogui/list-item"), module.exports);
111
- __reExport(index_exports, require("@hanzogui/menu"), module.exports);
112
- __reExport(index_exports, require("@hanzogui/context-menu"), module.exports);
113
- __reExport(index_exports, require("@hanzogui/create-menu"), module.exports);
114
- __reExport(index_exports, require("@hanzogui/popover"), module.exports);
115
- __reExport(index_exports, require("@hanzogui/popper"), module.exports);
116
- __reExport(index_exports, require("@hanzogui/portal"), module.exports);
117
- __reExport(index_exports, require("@hanzogui/progress"), module.exports);
118
- __reExport(index_exports, require("@hanzogui/radio-group"), module.exports);
119
- __reExport(index_exports, require("@hanzogui/scroll-view"), module.exports);
120
- __reExport(index_exports, require("@hanzogui/select"), module.exports);
121
- __reExport(index_exports, require("@hanzogui/separator"), module.exports);
122
- __reExport(index_exports, require("@hanzogui/shapes"), module.exports);
123
- __reExport(index_exports, require("@hanzogui/sheet"), module.exports);
124
- __reExport(index_exports, require("@hanzogui/slider"), module.exports);
125
- __reExport(index_exports, require("@hanzogui/stacks"), module.exports);
126
- __reExport(index_exports, require("@hanzogui/switch"), module.exports);
127
- __reExport(index_exports, require("@hanzogui/tabs"), module.exports);
128
- __reExport(index_exports, require("@hanzogui/text"), module.exports);
129
- __reExport(index_exports, require("@hanzogui/theme"), module.exports);
130
- __reExport(index_exports, require("@hanzogui/toast"), module.exports);
131
- __reExport(index_exports, require("@hanzogui/toggle-group"), module.exports);
132
- __reExport(index_exports, require("@hanzogui/tooltip"), module.exports);
133
- __reExport(index_exports, require("@hanzogui/use-controllable-state"), module.exports);
134
- __reExport(index_exports, require("@hanzogui/use-debounce"), module.exports);
135
- __reExport(index_exports, require("@hanzogui/use-force-update"), module.exports);
136
- __reExport(index_exports, require("@hanzogui/element"), module.exports);
137
- __reExport(index_exports, require("@hanzogui/use-window-dimensions"), module.exports);
138
- __reExport(index_exports, require("@hanzogui/visually-hidden"), module.exports);
139
- __reExport(index_exports, require("./createGui.cjs"), module.exports);
140
- __reExport(index_exports, require("./viewTypes.cjs"), module.exports);
141
- __reExport(index_exports, require("./views/GuiProvider.cjs"), module.exports);
142
- __reExport(index_exports, require("./views/Anchor.cjs"), module.exports);
143
- __reExport(index_exports, require("./views/EnsureFlexed.cjs"), module.exports);
144
- __reExport(index_exports, require("./views/Fieldset.cjs"), module.exports);
145
- __reExport(index_exports, require("@hanzogui/input"), module.exports);
146
- __reExport(index_exports, require("@hanzogui/spinner"), module.exports);
147
- __reExport(index_exports, require("./views/Text.cjs"), module.exports);
148
- var import_core = require("@hanzogui/core");
@@ -1,151 +0,0 @@
1
- "use strict";
2
-
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: true
11
- });
12
- };
13
- var __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from === "object" || typeof from === "function") {
15
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
16
- get: () => from[key],
17
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
18
- });
19
- }
20
- return to;
21
- };
22
- var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
23
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
24
- value: true
25
- }), mod);
26
- var index_exports = {};
27
- __export(index_exports, {
28
- ClientOnly: () => import_core.ClientOnly,
29
- ComponentContext: () => import_core.ComponentContext,
30
- Configuration: () => import_core.Configuration,
31
- FontLanguage: () => import_core.FontLanguage,
32
- GroupContext: () => import_core.GroupContext,
33
- Theme: () => import_core.Theme,
34
- View: () => import_core.View,
35
- _withStableStyle: () => import_core._withStableStyle,
36
- createComponent: () => import_core.createComponent,
37
- createFont: () => import_core.createFont,
38
- createShorthands: () => import_core.createShorthands,
39
- createStyledContext: () => import_core.createStyledContext,
40
- createTokens: () => import_core.createTokens,
41
- createVariable: () => import_core.createVariable,
42
- getCSSStylesAtomic: () => import_core.getCSSStylesAtomic,
43
- getConfig: () => import_core.getConfig,
44
- getMedia: () => import_core.getMedia,
45
- getThemes: () => import_core.getThemes,
46
- getToken: () => import_core.getToken,
47
- getTokenValue: () => import_core.getTokenValue,
48
- getTokens: () => import_core.getTokens,
49
- getVariable: () => import_core.getVariable,
50
- getVariableName: () => import_core.getVariableName,
51
- getVariableValue: () => import_core.getVariableValue,
52
- insertFont: () => import_core.insertFont,
53
- isBrowser: () => import_core.isBrowser,
54
- isChrome: () => import_core.isChrome,
55
- isClient: () => import_core.isClient,
56
- isGuiComponent: () => import_core.isGuiComponent,
57
- isGuiElement: () => import_core.isGuiElement,
58
- isServer: () => import_core.isServer,
59
- isTouchable: () => import_core.isTouchable,
60
- isVariable: () => import_core.isVariable,
61
- isWeb: () => import_core.isWeb,
62
- isWebTouchable: () => import_core.isWebTouchable,
63
- matchMedia: () => import_core.matchMedia,
64
- mediaObjectToString: () => import_core.mediaObjectToString,
65
- mediaQueryConfig: () => import_core.mediaQueryConfig,
66
- mediaState: () => import_core.mediaState,
67
- setConfig: () => import_core.setConfig,
68
- setOnLayoutStrategy: () => import_core.setOnLayoutStrategy,
69
- setupDev: () => import_core.setupDev,
70
- styled: () => import_core.styled,
71
- themeable: () => import_core.themeable,
72
- useClientValue: () => import_core.useClientValue,
73
- useConfiguration: () => import_core.useConfiguration,
74
- useDidFinishSSR: () => import_core.useDidFinishSSR,
75
- useEvent: () => import_core.useEvent,
76
- useGet: () => import_core.useGet,
77
- useIsTouchDevice: () => import_core.useIsTouchDevice,
78
- useIsomorphicLayoutEffect: () => import_core.useIsomorphicLayoutEffect,
79
- useMedia: () => import_core.useMedia,
80
- useProps: () => import_core.useProps,
81
- usePropsAndStyle: () => import_core.usePropsAndStyle,
82
- useStyle: () => import_core.useStyle,
83
- useTheme: () => import_core.useTheme,
84
- useThemeName: () => import_core.useThemeName,
85
- variableToString: () => import_core.variableToString,
86
- withStaticProperties: () => import_core.withStaticProperties
87
- });
88
- module.exports = __toCommonJS(index_exports);
89
- var import_setup = require("./setup.native.js");
90
- __reExport(index_exports, require("@hanzogui/spacer"), module.exports);
91
- __reExport(index_exports, require("@hanzogui/accordion"), module.exports);
92
- __reExport(index_exports, require("@hanzogui/adapt"), module.exports);
93
- __reExport(index_exports, require("@hanzogui/alert-dialog"), module.exports);
94
- __reExport(index_exports, require("@hanzogui/animate"), module.exports);
95
- __reExport(index_exports, require("@hanzogui/animate-presence"), module.exports);
96
- __reExport(index_exports, require("@hanzogui/avatar"), module.exports);
97
- __reExport(index_exports, require("@hanzogui/button"), module.exports);
98
- __reExport(index_exports, require("@hanzogui/card"), module.exports);
99
- __reExport(index_exports, require("@hanzogui/checkbox"), module.exports);
100
- __reExport(index_exports, require("@hanzogui/collapsible"), module.exports);
101
- __reExport(index_exports, require("@hanzogui/compose-refs"), module.exports);
102
- __reExport(index_exports, require("@hanzogui/create-context"), module.exports);
103
- __reExport(index_exports, require("@hanzogui/dialog"), module.exports);
104
- __reExport(index_exports, require("@hanzogui/font-size"), module.exports);
105
- __reExport(index_exports, require("@hanzogui/form"), module.exports);
106
- __reExport(index_exports, require("@hanzogui/group"), module.exports);
107
- __reExport(index_exports, require("@hanzogui/react-native-media-driver"), module.exports);
108
- __reExport(index_exports, require("@hanzogui/elements"), module.exports);
109
- __reExport(index_exports, require("@hanzogui/component-helpers"), module.exports);
110
- __reExport(index_exports, require("@hanzogui/image"), module.exports);
111
- __reExport(index_exports, require("@hanzogui/label"), module.exports);
112
- __reExport(index_exports, require("@hanzogui/list-item"), module.exports);
113
- __reExport(index_exports, require("@hanzogui/menu"), module.exports);
114
- __reExport(index_exports, require("@hanzogui/context-menu"), module.exports);
115
- __reExport(index_exports, require("@hanzogui/create-menu"), module.exports);
116
- __reExport(index_exports, require("@hanzogui/popover"), module.exports);
117
- __reExport(index_exports, require("@hanzogui/popper"), module.exports);
118
- __reExport(index_exports, require("@hanzogui/portal"), module.exports);
119
- __reExport(index_exports, require("@hanzogui/progress"), module.exports);
120
- __reExport(index_exports, require("@hanzogui/radio-group"), module.exports);
121
- __reExport(index_exports, require("@hanzogui/scroll-view"), module.exports);
122
- __reExport(index_exports, require("@hanzogui/select"), module.exports);
123
- __reExport(index_exports, require("@hanzogui/separator"), module.exports);
124
- __reExport(index_exports, require("@hanzogui/shapes"), module.exports);
125
- __reExport(index_exports, require("@hanzogui/sheet"), module.exports);
126
- __reExport(index_exports, require("@hanzogui/slider"), module.exports);
127
- __reExport(index_exports, require("@hanzogui/stacks"), module.exports);
128
- __reExport(index_exports, require("@hanzogui/switch"), module.exports);
129
- __reExport(index_exports, require("@hanzogui/tabs"), module.exports);
130
- __reExport(index_exports, require("@hanzogui/text"), module.exports);
131
- __reExport(index_exports, require("@hanzogui/theme"), module.exports);
132
- __reExport(index_exports, require("@hanzogui/toast"), module.exports);
133
- __reExport(index_exports, require("@hanzogui/toggle-group"), module.exports);
134
- __reExport(index_exports, require("@hanzogui/tooltip"), module.exports);
135
- __reExport(index_exports, require("@hanzogui/use-controllable-state"), module.exports);
136
- __reExport(index_exports, require("@hanzogui/use-debounce"), module.exports);
137
- __reExport(index_exports, require("@hanzogui/use-force-update"), module.exports);
138
- __reExport(index_exports, require("@hanzogui/element"), module.exports);
139
- __reExport(index_exports, require("@hanzogui/use-window-dimensions"), module.exports);
140
- __reExport(index_exports, require("@hanzogui/visually-hidden"), module.exports);
141
- __reExport(index_exports, require("./createGui.native.js"), module.exports);
142
- __reExport(index_exports, require("./viewTypes.native.js"), module.exports);
143
- __reExport(index_exports, require("./views/GuiProvider.native.js"), module.exports);
144
- __reExport(index_exports, require("./views/Anchor.native.js"), module.exports);
145
- __reExport(index_exports, require("./views/EnsureFlexed.native.js"), module.exports);
146
- __reExport(index_exports, require("./views/Fieldset.native.js"), module.exports);
147
- __reExport(index_exports, require("@hanzogui/input"), module.exports);
148
- __reExport(index_exports, require("@hanzogui/spinner"), module.exports);
149
- __reExport(index_exports, require("./views/Text.native.js"), module.exports);
150
- var import_core = require("@hanzogui/core");
151
- //# sourceMappingURL=index.native.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","index_exports","__export","ClientOnly","import_core","ComponentContext","Configuration","FontLanguage","GroupContext","Theme","View","_withStableStyle","createComponent","createFont","createShorthands","createStyledContext","createTokens","createVariable","getCSSStylesAtomic","getConfig","getMedia","getThemes","getToken","getTokenValue","getTokens","getVariable","getVariableName","getVariableValue","insertFont","isBrowser","isChrome","isClient","isGuiComponent","isGuiElement","isServer","isTouchable","isVariable","isWeb","isWebTouchable","matchMedia","mediaObjectToString","mediaQueryConfig","mediaState","setConfig","setOnLayoutStrategy","setupDev","styled","themeable","useClientValue","useConfiguration","useDidFinishSSR","useEvent","useGet","useIsTouchDevice","useIsomorphicLayoutEffect","useMedia","useProps","usePropsAndStyle","useStyle","useTheme","useThemeName","variableToString","withStaticProperties","module","exports","import_setup","require","__reExport"],"sources":["../../src/index.ts"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
@@ -1,28 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all) __defProp(target, name, {
7
- get: all[name],
8
- enumerable: true
9
- });
10
- };
11
- var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
14
- get: () => from[key],
15
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
- });
17
- }
18
- return to;
19
- };
20
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
- value: true
22
- }), mod);
23
- var linear_gradient_exports = {};
24
- __export(linear_gradient_exports, {
25
- LinearGradient: () => import_linear_gradient.LinearGradient
26
- });
27
- module.exports = __toCommonJS(linear_gradient_exports);
28
- var import_linear_gradient = require("@hanzogui/linear-gradient");
@@ -1,31 +0,0 @@
1
- "use strict";
2
-
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: true
11
- });
12
- };
13
- var __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from === "object" || typeof from === "function") {
15
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
16
- get: () => from[key],
17
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
18
- });
19
- }
20
- return to;
21
- };
22
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
23
- value: true
24
- }), mod);
25
- var linear_gradient_exports = {};
26
- __export(linear_gradient_exports, {
27
- LinearGradient: () => import_linear_gradient.LinearGradient
28
- });
29
- module.exports = __toCommonJS(linear_gradient_exports);
30
- var import_linear_gradient = require("@hanzogui/linear-gradient");
31
- //# sourceMappingURL=linear-gradient.native.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","linear_gradient_exports","__export","LinearGradient","import_linear_gradient","module","exports"],"sources":["../../src/linear-gradient.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,uBAAA;AAAAC,QAAA,CAAAD,uBAAA;EAAAE,cAAA,EAAAA,CAAA,KAAAC,sBAAA,CAAAD;AAAA;AAAAE,MAAA,CAAAC,OAAA,GAAAV,YAAyD,CAAAK,uBAAA","ignoreList":[]}
@@ -1,30 +0,0 @@
1
- var __create = Object.create;
2
- var __defProp = Object.defineProperty;
3
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
4
- var __getOwnPropNames = Object.getOwnPropertyNames;
5
- var __getProtoOf = Object.getPrototypeOf;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __copyProps = (to, from, except, desc) => {
8
- if (from && typeof from === "object" || typeof from === "function") {
9
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
10
- get: () => from[key],
11
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
12
- });
13
- }
14
- return to;
15
- };
16
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
17
- // If the importer is in node compatibility mode or this is not an ESM
18
- // file that has been converted to a CommonJS file using a Babel-
19
- // compatible transform (i.e. "__esModule" has not been set), then set
20
- // "default" to the CommonJS "module.exports" for node compatibility.
21
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
22
- value: mod,
23
- enumerable: true
24
- }) : target, mod));
25
- var import_polyfill_dev = require("@hanzogui/polyfill-dev");
26
- var React = __toESM(require("react"), 1);
27
- globalThis["React"] ||= React;
28
- if (typeof requestAnimationFrame === "undefined") {
29
- globalThis["requestAnimationFrame"] = typeof setImmediate === "undefined" ? setTimeout : setImmediate;
30
- }
@@ -1,35 +0,0 @@
1
- "use strict";
2
-
3
- var __create = Object.create;
4
- var __defProp = Object.defineProperty;
5
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
6
- var __getOwnPropNames = Object.getOwnPropertyNames;
7
- var __getProtoOf = Object.getPrototypeOf;
8
- var __hasOwnProp = Object.prototype.hasOwnProperty;
9
- var __copyProps = (to, from, except, desc) => {
10
- if (from && typeof from === "object" || typeof from === "function") {
11
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
12
- get: () => from[key],
13
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
14
- });
15
- }
16
- return to;
17
- };
18
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
19
- // If the importer is in node compatibility mode or this is not an ESM
20
- // file that has been converted to a CommonJS file using a Babel-
21
- // compatible transform (i.e. "__esModule" has not been set), then set
22
- // "default" to the CommonJS "module.exports" for node compatibility.
23
- isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
24
- value: mod,
25
- enumerable: true
26
- }) : target, mod));
27
- var import_polyfill_dev = require("@hanzogui/polyfill-dev");
28
- var React = __toESM(require("react"), 1);
29
- var _globalThis;
30
- var _React;
31
- (_globalThis = globalThis)[_React = "React"] || (_globalThis[_React] = React);
32
- if (typeof requestAnimationFrame === "undefined") {
33
- globalThis["requestAnimationFrame"] = typeof setImmediate === "undefined" ? setTimeout : setImmediate;
34
- }
35
- //# sourceMappingURL=setup.native.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["import_polyfill_dev","require","React","__toESM","_globalThis","_React","globalThis"],"sources":["../../src/setup.ts"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;gBAAA;AAEA,IAAAA,mBAAuB,GAAAC,OAAA;AAIvB,IAAAC,KAAA,GAAWC,OAAO,CAAAF,OAAM;AAGxB,IAAIG,WAAO;AACT,IAAAC,MAAA;AAEF,CAAAD,WAAA,GAAAE,UAAA,EAAAD,MAAA,gBAAAD,WAAA,CAAAC,MAAA,IAAAH,KAAA","ignoreList":[]}
@@ -1,18 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __copyProps = (to, from, except, desc) => {
6
- if (from && typeof from === "object" || typeof from === "function") {
7
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
8
- get: () => from[key],
9
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
10
- });
11
- }
12
- return to;
13
- };
14
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
15
- value: true
16
- }), mod);
17
- var viewTypes_exports = {};
18
- module.exports = __toCommonJS(viewTypes_exports);
@@ -1,21 +0,0 @@
1
- "use strict";
2
-
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __copyProps = (to, from, except, desc) => {
8
- if (from && typeof from === "object" || typeof from === "function") {
9
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
10
- get: () => from[key],
11
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
12
- });
13
- }
14
- return to;
15
- };
16
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
17
- value: true
18
- }), mod);
19
- var viewTypes_exports = {};
20
- module.exports = __toCommonJS(viewTypes_exports);
21
- //# sourceMappingURL=viewTypes.native.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","viewTypes_exports"],"sources":["../../src/viewTypes.tsx"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,iBAAA","ignoreList":[]}
@@ -1,60 +0,0 @@
1
- var __defProp = Object.defineProperty;
2
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
3
- var __getOwnPropNames = Object.getOwnPropertyNames;
4
- var __hasOwnProp = Object.prototype.hasOwnProperty;
5
- var __export = (target, all) => {
6
- for (var name in all) __defProp(target, name, {
7
- get: all[name],
8
- enumerable: true
9
- });
10
- };
11
- var __copyProps = (to, from, except, desc) => {
12
- if (from && typeof from === "object" || typeof from === "function") {
13
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
14
- get: () => from[key],
15
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
16
- });
17
- }
18
- return to;
19
- };
20
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
21
- value: true
22
- }), mod);
23
- var Anchor_exports = {};
24
- __export(Anchor_exports, {
25
- Anchor: () => Anchor
26
- });
27
- module.exports = __toCommonJS(Anchor_exports);
28
- var import_constants = require("@hanzogui/constants");
29
- var import_core = require("@hanzogui/core");
30
- var import_text = require("@hanzogui/text");
31
- var import_react_native = require("react-native-web");
32
- var import_jsx_runtime = require("react/jsx-runtime");
33
- const AnchorFrame = (0, import_core.styled)(import_text.SizableText, {
34
- name: "Anchor",
35
- render: "a",
36
- role: "link"
37
- });
38
- const Anchor = AnchorFrame.styleable(({
39
- href,
40
- target,
41
- rel,
42
- ...props
43
- }, ref) => {
44
- return /* @__PURE__ */(0, import_jsx_runtime.jsx)(AnchorFrame, {
45
- ...props,
46
- ...(import_constants.isWeb ? {
47
- href,
48
- target,
49
- rel
50
- } : {
51
- onPress: event => {
52
- props.onPress?.(event);
53
- if (href !== void 0) {
54
- import_react_native.Linking.openURL(href);
55
- }
56
- }
57
- }),
58
- ref
59
- });
60
- });
@@ -1,65 +0,0 @@
1
- "use strict";
2
-
3
- var __defProp = Object.defineProperty;
4
- var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
5
- var __getOwnPropNames = Object.getOwnPropertyNames;
6
- var __hasOwnProp = Object.prototype.hasOwnProperty;
7
- var __export = (target, all) => {
8
- for (var name in all) __defProp(target, name, {
9
- get: all[name],
10
- enumerable: true
11
- });
12
- };
13
- var __copyProps = (to, from, except, desc) => {
14
- if (from && typeof from === "object" || typeof from === "function") {
15
- for (let key of __getOwnPropNames(from)) if (!__hasOwnProp.call(to, key) && key !== except) __defProp(to, key, {
16
- get: () => from[key],
17
- enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
18
- });
19
- }
20
- return to;
21
- };
22
- var __toCommonJS = mod => __copyProps(__defProp({}, "__esModule", {
23
- value: true
24
- }), mod);
25
- var Anchor_exports = {};
26
- __export(Anchor_exports, {
27
- Anchor: () => Anchor
28
- });
29
- module.exports = __toCommonJS(Anchor_exports);
30
- var import_jsx_runtime = require("react/jsx-runtime");
31
- var import_constants = require("@hanzogui/constants");
32
- var import_core = require("@hanzogui/core");
33
- var import_text = require("@hanzogui/text");
34
- var import_react_native = require("react-native");
35
- var AnchorFrame = (0, import_core.styled)(import_text.SizableText, {
36
- name: "Anchor",
37
- render: "a",
38
- role: "link"
39
- });
40
- var Anchor = AnchorFrame.styleable(function (param, ref) {
41
- var {
42
- href,
43
- target,
44
- rel,
45
- ...props
46
- } = param;
47
- return /* @__PURE__ */(0, import_jsx_runtime.jsx)(AnchorFrame, {
48
- ...props,
49
- ...(import_constants.isWeb ? {
50
- href,
51
- target,
52
- rel
53
- } : {
54
- onPress: function (event) {
55
- var _props_onPress;
56
- (_props_onPress = props.onPress) === null || _props_onPress === void 0 ? void 0 : _props_onPress.call(props, event);
57
- if (href !== void 0) {
58
- import_react_native.Linking.openURL(href);
59
- }
60
- }
61
- }),
62
- ref
63
- });
64
- });
65
- //# sourceMappingURL=Anchor.native.js.map
@@ -1 +0,0 @@
1
- {"version":3,"names":["__toCommonJS","mod","__copyProps","__defProp","value","Anchor_exports","__export","Anchor","module","exports","import_jsx_runtime","require","import_constants","import_core","import_text","import_react_native","AnchorFrame","styled","SizableText","name","render","role","styleable","param","ref","href","target","rel","props","jsx","isWeb","onPress","event","_props_onPress","call","Linking","openURL"],"sources":["../../../src/views/Anchor.tsx"],"sourcesContent":[null],"mappings":";;;;;;;;;;;;;;;;;;;;;AAAA,IAAAA,YAAA,GAAAC,GAAA,IAAAC,WAAA,CAAAC,SAAA;EAAAC,KAAA;AAAA,IAAAH,GAAA;AAAA,IAAAI,cAAA;AAAAC,QAAA,CAAAD,cAAA;EAAAE,MAAA,EAAAA,CAAA,KAAAA;AAAA;AAAAC,MAAA,CAAAC,OAAA,GAAAT,YAAsB,CAAAK,cAAA;AACtB,IAAAK,kBAAuB,GAAAC,OAAA;AAEvB,IAAAC,gBAA4B,GAAAD,OAAA;AAC5B,IAAAE,WAAA,GAAAF,OAAA,CAAwB;AAmBlB,IAAAG,WAAA,GAAAH,OAAA;AATN,IAAAI,mBAAM,GAAcJ,OAAA,eAAO;AAAa,IACtCK,WAAM,OAAAH,WAAA,CAAAI,MAAA,EAAAH,WAAA,CAAAI,WAAA;EACNC,IAAA,UAAQ;EACRC,MAAM;EACPC,IAAA;AAEM;AAA2B,IAC/Bd,MAAE,GAAMS,WAAa,CAAAM,SAAS,WAAWC,KAAA,EAAAC,GAAA;EACxC;IAAAC,IACE;IAAAC,MAAA;IAAAC,GAAA;IAAA,GAAAC;EAAA,IAAAL,KAAA;EAAA,OAAC,mBAAAb,kBAAA,CAAAmB,GAAA,EAAAb,WAAA;IAAA,GAAAY,KAAA;IAAA,IAAAhB,gBACK,CAAAkB,KAAA;MAAAL,IACH;MACGC,MACE;MAAAC;IACA;MACAI,OAEF,WAAAA,CAAAC,KAAA;QAAA,IACEC,cAAU;QACR,CAAAA,cAAM,GAAAL,KAAU,CAAAG,OAAK,cAAAE,cAAA,uBAAAA,cAAA,CAAAC,IAAA,CAAAN,KAAA,EAAAI,KAAA;QACrB,IAAAP,IAAI,UAAS;UACXV,mBAAA,CAAAoB,OAAA,CAAAC,OAAQ,CAAAX,IAAQ;QAAI;MACtB;IACF;IACFD;EACJ;AAAA","ignoreList":[]}