creactive 0.0.92 → 0.0.94
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.
- package/build/classic.js +1 -1
- package/build/constants/index.d.ts +1 -1
- package/build/constants/theme/color.d.ts +0 -27
- package/build/constants/theme/index.d.ts +1 -1
- package/build/contexts/index.d.ts +1 -1
- package/build/contexts/theme/constants/color.d.ts +27 -0
- package/build/contexts/theme/constants/index.d.ts +1 -0
- package/build/contexts/theme/index.d.ts +1 -1
- package/build/contexts/theme/theme.types.d.ts +67 -80
- package/build/default.js +1 -1
- package/build/hooks/use-theme-style-sheet.d.ts +9 -9
- package/build/index.d.ts +2 -2
- package/build/types/font.types.d.ts +1 -0
- package/build/types/index.d.ts +1 -0
- package/package.json +1 -1
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
export declare const COLOR_BACKGROUND_BASE_100 = "rgb(198,198,202)";
|
|
2
|
+
export declare const COLOR_BACKGROUND_BASE_200 = "rgb(212,212,216)";
|
|
3
|
+
export declare const COLOR_BACKGROUND_BASE_300 = "rgb(216,216,228)";
|
|
4
|
+
export declare const COLOR_BACKGROUND_BASE_400 = "rgb(218,218,234)";
|
|
5
|
+
export declare const COLOR_BACKGROUND_BASE_500 = "rgb(224,224,238)";
|
|
6
|
+
export declare const COLOR_BACKGROUND_BASE_600 = "rgb(244,244,245)";
|
|
7
|
+
export declare const COLOR_BACKGROUND_BASE_700 = "rgb(247,247,249)";
|
|
8
|
+
export declare const COLOR_BACKGROUND_BASE_800 = "rgb(249,249,250)";
|
|
9
|
+
export declare const COLOR_BACKGROUND_BASE_900 = "rgb(254,254,255)";
|
|
10
|
+
export declare const COLOR_BORDER_BASE_100 = "rgb(253,252,254)";
|
|
11
|
+
export declare const COLOR_BORDER_BASE_200 = "rgb(249,249,250)";
|
|
12
|
+
export declare const COLOR_BORDER_BASE_300 = "rgb(247,247,249)";
|
|
13
|
+
export declare const COLOR_BORDER_BASE_400 = "rgb(244,244,245)";
|
|
14
|
+
export declare const COLOR_BORDER_BASE_500 = "rgb(224,224,238)";
|
|
15
|
+
export declare const COLOR_BORDER_BASE_600 = "rgb(218,218,234)";
|
|
16
|
+
export declare const COLOR_BORDER_BASE_700 = "rgb(216,216,228)";
|
|
17
|
+
export declare const COLOR_BORDER_BASE_800 = "rgb(212,212,216)";
|
|
18
|
+
export declare const COLOR_BORDER_BASE_900 = "rgb(198,198,202)";
|
|
19
|
+
export declare const COLOR_FOREGROUND_BASE_100 = "rgb(102,102,116)";
|
|
20
|
+
export declare const COLOR_FOREGROUND_BASE_200 = "rgb(82,82,92)";
|
|
21
|
+
export declare const COLOR_FOREGROUND_BASE_300 = "rgb(74,74,88)";
|
|
22
|
+
export declare const COLOR_FOREGROUND_BASE_400 = "rgb(63,63,70)";
|
|
23
|
+
export declare const COLOR_FOREGROUND_BASE_500 = "rgb(49,49,56)";
|
|
24
|
+
export declare const COLOR_FOREGROUND_BASE_600 = "rgb(39,39,42)";
|
|
25
|
+
export declare const COLOR_FOREGROUND_BASE_700 = "rgb(30,30,34)";
|
|
26
|
+
export declare const COLOR_FOREGROUND_BASE_800 = "rgb(24,24,27)";
|
|
27
|
+
export declare const COLOR_FOREGROUND_BASE_900 = "rgb(6,6,14)";
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { COLOR_BACKGROUND_BASE_100, COLOR_BACKGROUND_BASE_200, COLOR_BACKGROUND_BASE_300, COLOR_BACKGROUND_BASE_400, COLOR_BACKGROUND_BASE_500, COLOR_BACKGROUND_BASE_600, COLOR_BACKGROUND_BASE_700, COLOR_BACKGROUND_BASE_800, COLOR_BACKGROUND_BASE_900, COLOR_BORDER_BASE_100, COLOR_BORDER_BASE_200, COLOR_BORDER_BASE_300, COLOR_BORDER_BASE_400, COLOR_BORDER_BASE_500, COLOR_BORDER_BASE_600, COLOR_BORDER_BASE_700, COLOR_BORDER_BASE_800, COLOR_BORDER_BASE_900, COLOR_FOREGROUND_BASE_100, COLOR_FOREGROUND_BASE_200, COLOR_FOREGROUND_BASE_300, COLOR_FOREGROUND_BASE_400, COLOR_FOREGROUND_BASE_500, COLOR_FOREGROUND_BASE_600, COLOR_FOREGROUND_BASE_700, COLOR_FOREGROUND_BASE_800, COLOR_FOREGROUND_BASE_900, } from './color';
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export { ThemeContextProvider, useThemeContext } from './theme';
|
|
2
|
-
export type { ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue,
|
|
2
|
+
export type { ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue, } from './theme.types';
|
|
@@ -1,158 +1,145 @@
|
|
|
1
|
-
import type { Color } from '../../types';
|
|
1
|
+
import type { Color, FontWeight } from '../../types';
|
|
2
2
|
import type { FunctionComponent, PropsWithChildren } from 'react';
|
|
3
|
-
/**
|
|
4
|
-
* Theme font weight type.
|
|
5
|
-
* Should be used to specify theme font weight.
|
|
6
|
-
*/
|
|
7
|
-
export type ThemeFontWeight = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 900;
|
|
8
3
|
/**
|
|
9
4
|
* Theme context value interface.
|
|
10
|
-
*
|
|
11
|
-
*
|
|
12
|
-
*
|
|
5
|
+
* Provides access to all themable tokens.
|
|
6
|
+
* Library components use this tokens for styling.
|
|
7
|
+
* Can be accessed via theme context outside when need.
|
|
13
8
|
*/
|
|
14
9
|
export interface ThemeContextValue {
|
|
15
10
|
/**
|
|
16
|
-
*
|
|
17
|
-
*
|
|
11
|
+
* Least contrast base background color.
|
|
12
|
+
* @default rgb(198,198,202)
|
|
18
13
|
*/
|
|
19
14
|
colorBackgroundBase100: Color;
|
|
20
15
|
/**
|
|
21
|
-
*
|
|
22
|
-
*
|
|
16
|
+
* Dim base background color.
|
|
17
|
+
* @default rgb(212,212,216)
|
|
23
18
|
*/
|
|
24
19
|
colorBackgroundBase200: Color;
|
|
25
20
|
/**
|
|
26
|
-
*
|
|
27
|
-
*
|
|
21
|
+
* Mix of dim and muted base background color.
|
|
22
|
+
* @default rgb(216,216,228)
|
|
28
23
|
*/
|
|
29
24
|
colorBackgroundBase300: Color;
|
|
30
25
|
/**
|
|
31
|
-
*
|
|
32
|
-
*
|
|
26
|
+
* Muted base background color.
|
|
27
|
+
* @default rgb(218,218,234)
|
|
33
28
|
*/
|
|
34
29
|
colorBackgroundBase400: Color;
|
|
35
30
|
/**
|
|
36
|
-
*
|
|
37
|
-
*
|
|
31
|
+
* Mix of muted and subtle base background color.
|
|
32
|
+
* @default rgb(224,224,238)
|
|
38
33
|
*/
|
|
39
34
|
colorBackgroundBase500: Color;
|
|
40
35
|
/**
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
* It is also less contrast than default background.
|
|
36
|
+
* Subtle base background color.
|
|
37
|
+
* @default rgb(244,244,245)
|
|
44
38
|
*/
|
|
45
39
|
colorBackgroundBase600: Color;
|
|
46
40
|
/**
|
|
47
|
-
*
|
|
48
|
-
*
|
|
41
|
+
* Mix of subtle and default base background color.
|
|
42
|
+
* @default rgb(247,247,249)
|
|
49
43
|
*/
|
|
50
44
|
colorBackgroundBase700: Color;
|
|
51
45
|
/**
|
|
52
|
-
* Base background
|
|
53
|
-
*
|
|
46
|
+
* Base default interface background color.
|
|
47
|
+
* @default rgb(249,249,250)
|
|
54
48
|
*/
|
|
55
49
|
colorBackgroundBase800: Color;
|
|
56
50
|
/**
|
|
57
|
-
*
|
|
58
|
-
*
|
|
51
|
+
* Most contrast base background color.
|
|
52
|
+
* @default rgb(254,254,255)
|
|
59
53
|
*/
|
|
60
54
|
colorBackgroundBase900: Color;
|
|
61
55
|
/**
|
|
62
|
-
*
|
|
63
|
-
*
|
|
64
|
-
* Useful for subtle dividers or low-emphasis elements.
|
|
56
|
+
* Least contrast base border color.
|
|
57
|
+
* @default rgb(253,252,254)
|
|
65
58
|
*/
|
|
66
59
|
colorBorderBase100: Color;
|
|
67
60
|
/**
|
|
68
|
-
*
|
|
69
|
-
*
|
|
70
|
-
* Suitable for very soft separators or outlines.
|
|
61
|
+
* Dim base border color.
|
|
62
|
+
* @default rgb(249,249,250)
|
|
71
63
|
*/
|
|
72
64
|
colorBorderBase200: Color;
|
|
73
65
|
/**
|
|
74
|
-
*
|
|
75
|
-
*
|
|
66
|
+
* Mix of dim and muted base border color.
|
|
67
|
+
* @default rgb(247,247,249)
|
|
76
68
|
*/
|
|
77
69
|
colorBorderBase300: Color;
|
|
78
70
|
/**
|
|
79
|
-
*
|
|
80
|
-
*
|
|
71
|
+
* Muted base border color.
|
|
72
|
+
* @default rgb(244,244,245)
|
|
81
73
|
*/
|
|
82
74
|
colorBorderBase400: Color;
|
|
83
75
|
/**
|
|
84
|
-
*
|
|
85
|
-
*
|
|
76
|
+
* Mix of muted and subtle base border color.
|
|
77
|
+
* @default rgb(224,224,238)
|
|
86
78
|
*/
|
|
87
79
|
colorBorderBase500: Color;
|
|
88
80
|
/**
|
|
89
|
-
*
|
|
90
|
-
*
|
|
81
|
+
* Subtle base border color.
|
|
82
|
+
* @default rgb(218,218,234)
|
|
91
83
|
*/
|
|
92
84
|
colorBorderBase600: Color;
|
|
93
85
|
/**
|
|
94
|
-
*
|
|
95
|
-
*
|
|
86
|
+
* Mix of subtle and default base border color.
|
|
87
|
+
* @default rgb(216,216,228)
|
|
96
88
|
*/
|
|
97
89
|
colorBorderBase700: Color;
|
|
98
90
|
/**
|
|
99
|
-
* Base border
|
|
100
|
-
*
|
|
91
|
+
* Base default border color.
|
|
92
|
+
* @default rgb(212,212,216)
|
|
101
93
|
*/
|
|
102
94
|
colorBorderBase800: Color;
|
|
103
95
|
/**
|
|
104
|
-
*
|
|
105
|
-
*
|
|
96
|
+
* Most contrast base border color.
|
|
97
|
+
* @default rgb(198,198,202)
|
|
106
98
|
*/
|
|
107
99
|
colorBorderBase900: Color;
|
|
108
100
|
/**
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
* Intended for nearly invisible elements.
|
|
101
|
+
* Least contrast base foreground color token.
|
|
102
|
+
* @default rgb(102,102,116)
|
|
112
103
|
*/
|
|
113
104
|
colorForegroundBase100: Color;
|
|
114
105
|
/**
|
|
115
|
-
*
|
|
116
|
-
*
|
|
117
|
-
* Can help create a subtle sense of hierarchy.
|
|
106
|
+
* Dim base foreground color.
|
|
107
|
+
* @default rgb(82,82,92)
|
|
118
108
|
*/
|
|
119
109
|
colorForegroundBase200: Color;
|
|
120
110
|
/**
|
|
121
|
-
*
|
|
122
|
-
*
|
|
111
|
+
* Mix of dim and muted base foreground color.
|
|
112
|
+
* @default rgb(74,74,88)
|
|
123
113
|
*/
|
|
124
114
|
colorForegroundBase300: Color;
|
|
125
115
|
/**
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
* If a secondary element has multiple levels, this is for the lower one.
|
|
116
|
+
* Muted base foreground color.
|
|
117
|
+
* @default rgb(63,63,70)
|
|
129
118
|
*/
|
|
130
119
|
colorForegroundBase400: Color;
|
|
131
120
|
/**
|
|
132
|
-
*
|
|
133
|
-
*
|
|
121
|
+
* Mix of muted and subtle base foreground color.
|
|
122
|
+
* @default rgb(49,49,56)
|
|
134
123
|
*/
|
|
135
124
|
colorForegroundBase500: Color;
|
|
136
125
|
/**
|
|
137
|
-
*
|
|
138
|
-
*
|
|
126
|
+
* Subtle base foreground color.
|
|
127
|
+
* @default rgb(39,39,42)
|
|
139
128
|
*/
|
|
140
129
|
colorForegroundBase600: Color;
|
|
141
130
|
/**
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
* Also suitable for slightly subdued elements.
|
|
131
|
+
* Mix of subtle and default base foreground color.
|
|
132
|
+
* @default rgb(30,30,34)
|
|
145
133
|
*/
|
|
146
134
|
colorForegroundBase700: Color;
|
|
147
135
|
/**
|
|
148
|
-
* Base foreground
|
|
149
|
-
*
|
|
150
|
-
* Ideal for high-contrast text and key elements.
|
|
136
|
+
* Base default foreground color.
|
|
137
|
+
* @default rgb(24,24,27)
|
|
151
138
|
*/
|
|
152
139
|
colorForegroundBase800: Color;
|
|
153
140
|
/**
|
|
154
|
-
*
|
|
155
|
-
*
|
|
141
|
+
* Most contrast base foreground color.
|
|
142
|
+
* @default rgb(6,6,14)
|
|
156
143
|
*/
|
|
157
144
|
colorForegroundBase900: Color;
|
|
158
145
|
/**
|
|
@@ -215,53 +202,53 @@ export interface ThemeContextValue {
|
|
|
215
202
|
* Base thin font weight token.
|
|
216
203
|
* Ideal for very delicate and decorative, large, elegant hero text.
|
|
217
204
|
*/
|
|
218
|
-
fontWeightBaseThin:
|
|
205
|
+
fontWeightBaseThin: FontWeight;
|
|
219
206
|
/**
|
|
220
207
|
* Base extra-light font weight token.
|
|
221
208
|
* Use for large, airy headings or subtle interface elements.
|
|
222
209
|
* Slightly more readable than extra-thin, but still decorative.
|
|
223
210
|
*/
|
|
224
|
-
fontWeightBaseExtraLight:
|
|
211
|
+
fontWeightBaseExtraLight: FontWeight;
|
|
225
212
|
/**
|
|
226
213
|
* Base light font weight token.
|
|
227
214
|
* Suitable for subheadings, muted captions, and soft labels.
|
|
228
215
|
*/
|
|
229
|
-
fontWeightBaseLight:
|
|
216
|
+
fontWeightBaseLight: FontWeight;
|
|
230
217
|
/**
|
|
231
218
|
* Base regular font weight token.
|
|
232
219
|
* For the most common text elements in your interface.
|
|
233
220
|
* When unsure about font weight, this is the default option.
|
|
234
221
|
*/
|
|
235
|
-
fontWeightBaseRegular:
|
|
222
|
+
fontWeightBaseRegular: FontWeight;
|
|
236
223
|
/**
|
|
237
224
|
* Base medium font weight token.
|
|
238
225
|
* Suitable for labels, buttons, and small subheadings.
|
|
239
226
|
* Slightly emphasized, providing better readability.
|
|
240
227
|
*/
|
|
241
|
-
fontWeightBaseMedium:
|
|
228
|
+
fontWeightBaseMedium: FontWeight;
|
|
242
229
|
/**
|
|
243
230
|
* Base semi-bold font weight token.
|
|
244
231
|
* Provides stronger emphasis without being overwhelming.
|
|
245
232
|
* Ideal for section headers, emphasized text, and card titles.
|
|
246
233
|
*/
|
|
247
|
-
fontWeightBaseSemibold:
|
|
234
|
+
fontWeightBaseSemibold: FontWeight;
|
|
248
235
|
/**
|
|
249
236
|
* Base bold font weight token.
|
|
250
237
|
* For high emphasis on important elements.
|
|
251
238
|
* Use for main headings and strong call-to-action buttons.
|
|
252
239
|
*/
|
|
253
|
-
fontWeightBaseBold:
|
|
240
|
+
fontWeightBaseBold: FontWeight;
|
|
254
241
|
/**
|
|
255
242
|
* Extra-bold font weight token.
|
|
256
243
|
* Perfect for promo banners and large impactful headings.
|
|
257
244
|
*/
|
|
258
|
-
fontWeightBaseExtraBold:
|
|
245
|
+
fontWeightBaseExtraBold: FontWeight;
|
|
259
246
|
/**
|
|
260
247
|
* Base black font weight token.
|
|
261
248
|
* Extreme emphasis for rare, dramatic cases.
|
|
262
249
|
* Great for headlines in posters and highly attention-grabbing elements.
|
|
263
250
|
*/
|
|
264
|
-
fontWeightBaseBlack:
|
|
251
|
+
fontWeightBaseBlack: FontWeight;
|
|
265
252
|
/**
|
|
266
253
|
* Base 2 times extra-small font size token.
|
|
267
254
|
* Use this size for tiny text elements like captions.
|
package/build/default.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see default.js.LICENSE.txt */
|
|
2
|
-
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("react"),require("react-native"),require("@emotion/styled")):"function"==typeof define&&define.amd?define("creactive",["react","react-native","@emotion/styled"],o):"object"==typeof exports?exports.creactive=o(require("react"),require("react-native"),require("@emotion/styled")):e.creactive=o(e.react,e["react-native"],e["@emotion/styled"])}(this,((e,o,r)=>(()=>{"use strict";var n={123:(e,o,r)=>{function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function t(e,o,r){return(o=function(e){var o=function(e){if("object"!=n(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=n(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==n(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}r.d(o,{CN:()=>C,th:()=>F,F5:()=>_,TI:()=>R,Q4:()=>T,mg:()=>A,Vc:()=>h,MD:()=>v,wG:()=>y,uC:()=>l,Oo:()=>u,t2:()=>c,s_:()=>a,kq:()=>i,jE:()=>s,lo:()=>N,uY:()=>I,VR:()=>q,b9:()=>M,zt:()=>V,vo:()=>H,o5:()=>j,nJ:()=>P,Ie:()=>x,CD:()=>U,I1:()=>O,FI:()=>z,wj:()=>k,JT:()=>D,TL:()=>G,co:()=>J,SQ:()=>$});var a=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({}),i=t(t(t({},a.SM,"borderWidthBaseSM"),a.MD,"borderWidthBaseMD"),a.LG,"borderWidthBaseLG"),s=t(t(t({},a.SM,"borderWidthBaseSM"),a.MD,"borderWidthBaseMD"),a.LG,"borderWidthBaseLG"),l=function(e){return e[e.XS=0]="XS",e[e.SM=1]="SM",e[e.MD=2]="MD",e[e.LG=3]="LG",e[e.XL=4]="XL",e[e.MAX=5]="MAX",e}({}),u=t(t(t(t(t({},l.XS,"borderRadiusBaseXS"),l.SM,"borderRadiusBaseSM"),l.MD,"borderRadiusBaseMD"),l.LG,"borderRadiusBaseLG"),l.XL,"borderRadiusBaseXL"),c=t(t(t(t(t({},l.XS,"borderRadiusBaseXS"),l.SM,"borderRadiusBaseSM"),l.MD,"borderRadiusBaseMD"),l.LG,"borderRadiusBaseLG"),l.XL,"borderRadiusBaseXL");function B(e){return B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},B(e)}function g(e,o,r){return(o=function(e){var o=function(e){if("object"!=B(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=B(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==B(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var d,f,S,p,L,m,X,b,E,h=function(e){return e[e.BASE_100=0]="BASE_100",e[e.BASE_200=1]="BASE_200",e[e.BASE_300=2]="BASE_300",e[e.BASE_400=3]="BASE_400",e[e.BASE_500=4]="BASE_500",e[e.BASE_600=5]="BASE_600",e[e.BASE_700=6]="BASE_700",e[e.BASE_800=7]="BASE_800",e[e.BASE_900=8]="BASE_900",e}({}),v=g(g(g(g(g(g(g(g(g({},h.BASE_100,"colorBorderBase100"),h.BASE_200,"colorBorderBase200"),h.BASE_300,"colorBorderBase300"),h.BASE_400,"colorBorderBase400"),h.BASE_500,"colorBorderBase500"),h.BASE_600,"colorBorderBase600"),h.BASE_700,"colorBorderBase700"),h.BASE_800,"colorBorderBase800"),h.BASE_900,"colorBorderBase900"),y=g(g(g(g(g(g(g(g(g({},h.BASE_100,"colorBorderBase100"),h.BASE_200,"colorBorderBase200"),h.BASE_300,"colorBorderBase300"),h.BASE_400,"colorBorderBase400"),h.BASE_500,"colorBorderBase500"),h.BASE_600,"colorBorderBase600"),h.BASE_700,"colorBorderBase700"),h.BASE_800,"colorBorderBase800"),h.BASE_900,"colorBorderBase900"),R=function(e){return e[e.BASE_100=0]="BASE_100",e[e.BASE_200=1]="BASE_200",e[e.BASE_300=2]="BASE_300",e[e.BASE_400=3]="BASE_400",e[e.BASE_500=4]="BASE_500",e[e.BASE_600=5]="BASE_600",e[e.BASE_700=6]="BASE_700",e[e.BASE_800=7]="BASE_800",e[e.BASE_900=8]="BASE_900",e}({}),T=g(g(g(g(g(g(g(g(g({},R.BASE_100,"colorBackgroundBase100"),R.BASE_200,"colorBackgroundBase200"),R.BASE_300,"colorBackgroundBase300"),R.BASE_400,"colorBackgroundBase400"),R.BASE_500,"colorBackgroundBase500"),R.BASE_600,"colorBackgroundBase600"),R.BASE_700,"colorBackgroundBase700"),R.BASE_800,"colorBackgroundBase800"),R.BASE_900,"colorBackgroundBase900"),A=g(g(g(g(g(g(g(g(g({},R.BASE_100,"colorBackgroundBase100"),R.BASE_200,"colorBackgroundBase200"),R.BASE_300,"colorBackgroundBase300"),R.BASE_400,"colorBackgroundBase400"),R.BASE_500,"colorBackgroundBase500"),R.BASE_600,"colorBackgroundBase600"),R.BASE_700,"colorBackgroundBase700"),R.BASE_800,"colorBackgroundBase800"),R.BASE_900,"colorBackgroundBase900"),I=function(e){return e[e.COLUMN=0]="COLUMN",e[e.ROW=1]="ROW",e}({}),M=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.SPACE_BETWEEN=3]="SPACE_BETWEEN",e[e.SPACE_AROUND=4]="SPACE_AROUND",e[e.SPACE_EVENLY=5]="SPACE_EVENLY",e}({}),F=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.BASELINE=4]="BASELINE",e}({}),_=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.BASELINE=4]="BASELINE",e}({}),C=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.SPACE_BETWEEN=4]="SPACE_BETWEEN",e[e.SPACE_AROUND=5]="SPACE_AROUND",e}({}),x=function(e){return e[e.VISIBLE=0]="VISIBLE",e[e.HIDDEN=1]="HIDDEN",e}({}),D=function(e){return e[e.RELATIVE=0]="RELATIVE",e[e.ABSOLUTE=1]="ABSOLUTE",e}({}),N=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({});function w(e){return w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function W(e,o,r){return(o=function(e){var o=function(e){if("object"!=w(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=w(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==w(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var G=function(e){return e[e.X2S=0]="X2S",e[e.XS=1]="XS",e[e.SM=2]="SM",e[e.MD=3]="MD",e[e.LG=4]="LG",e[e.XL=5]="XL",e[e.X2L=6]="X2L",e[e.X3L=7]="X3L",e[e.X4L=8]="X4L",e[e.X5L=9]="X5L",e[e.X6L=10]="X6L",e[e.X7L=11]="X7L",e}({}),P=(W(W(W(W(W(W(W(W(W(W(d={},G.X2S,"marginTopBaseX2S"),G.XS,"marginTopBaseXS"),G.SM,"marginTopBaseSM"),G.MD,"marginTopBaseMD"),G.LG,"marginTopBaseLG"),G.XL,"marginTopBaseXL"),G.X2L,"marginTopBaseX2L"),G.X3L,"marginTopBaseX3L"),G.X4L,"marginTopBaseX4L"),G.X5L,"marginTopBaseX5L"),W(W(d,G.X6L,"marginTopBaseX6L"),G.X7L,"marginTopBaseX7L")),k=(W(W(W(W(W(W(W(W(W(W(f={},G.X2S,"paddingTopBaseX2S"),G.XS,"paddingTopBaseXS"),G.SM,"paddingTopBaseSM"),G.MD,"paddingTopBaseMD"),G.LG,"paddingTopBaseLG"),G.XL,"paddingTopBaseXL"),G.X2L,"paddingTopBaseX2L"),G.X3L,"paddingTopBaseX3L"),G.X4L,"paddingTopBaseX4L"),G.X5L,"paddingTopBaseX5L"),W(W(f,G.X6L,"paddingTopBaseX6L"),G.X7L,"paddingTopBaseX7L")),H=(W(W(W(W(W(W(W(W(W(W(S={},G.X2S,"marginLeftBaseX2S"),G.XS,"marginLeftBaseXS"),G.SM,"marginLeftBaseSM"),G.MD,"marginLeftBaseMD"),G.LG,"marginLeftBaseLG"),G.XL,"marginLeftBaseXL"),G.X2L,"marginLeftBaseX2L"),G.X3L,"marginLeftBaseX3L"),G.X4L,"marginLeftBaseX4L"),G.X5L,"marginLeftBaseX5L"),W(W(S,G.X6L,"marginLeftBaseX6L"),G.X7L,"marginLeftBaseX7L")),O=(W(W(W(W(W(W(W(W(W(W(p={},G.X2S,"paddingLeftBaseX2S"),G.XS,"paddingLeftBaseXS"),G.SM,"paddingLeftBaseSM"),G.MD,"paddingLeftBaseMD"),G.LG,"paddingLeftBaseLG"),G.XL,"paddingLeftBaseXL"),G.X2L,"paddingLeftBaseX2L"),G.X3L,"paddingLeftBaseX3L"),G.X4L,"paddingLeftBaseX4L"),G.X5L,"paddingLeftBaseX5L"),W(W(p,G.X6L,"paddingLeftBaseX6L"),G.X7L,"paddingLeftBaseX7L")),j=(W(W(W(W(W(W(W(W(W(W(L={},G.X2S,"marginRightBaseX2S"),G.XS,"marginRightBaseXS"),G.SM,"marginRightBaseSM"),G.MD,"marginRightBaseMD"),G.LG,"marginRightBaseLG"),G.XL,"marginRightBaseXL"),G.X2L,"marginRightBaseX2L"),G.X3L,"marginRightBaseX3L"),G.X4L,"marginRightBaseX4L"),G.X5L,"marginRightBaseX5L"),W(W(L,G.X6L,"marginRightBaseX6L"),G.X7L,"marginRightBaseX7L")),z=(W(W(W(W(W(W(W(W(W(W(m={},G.X2S,"paddingRightBaseX2S"),G.XS,"paddingRightBaseXS"),G.SM,"paddingRightBaseSM"),G.MD,"paddingRightBaseMD"),G.LG,"paddingRightBaseLG"),G.XL,"paddingRightBaseXL"),G.X2L,"paddingRightBaseX2L"),G.X3L,"paddingRightBaseX3L"),G.X4L,"paddingRightBaseX4L"),G.X5L,"paddingRightBaseX5L"),W(W(m,G.X6L,"paddingRightBaseX6L"),G.X7L,"paddingRightBaseX7L")),V=(W(W(W(W(W(W(W(W(W(W(X={},G.X2S,"marginBottomBaseX2S"),G.XS,"marginBottomBaseXS"),G.SM,"marginBottomBaseSM"),G.MD,"marginBottomBaseMD"),G.LG,"marginBottomBaseLG"),G.XL,"marginBottomBaseXL"),G.X2L,"marginBottomBaseX2L"),G.X3L,"marginBottomBaseX3L"),G.X4L,"marginBottomBaseX4L"),G.X5L,"marginBottomBaseX5L"),W(W(X,G.X6L,"marginBottomBaseX6L"),G.X7L,"marginBottomBaseX7L")),U=(W(W(W(W(W(W(W(W(W(W(b={},G.X2S,"paddingBottomBaseX2S"),G.XS,"paddingBottomBaseXS"),G.SM,"paddingBottomBaseSM"),G.MD,"paddingBottomBaseMD"),G.LG,"paddingBottomBaseLG"),G.XL,"paddingBottomBaseXL"),G.X2L,"paddingBottomBaseX2L"),G.X3L,"paddingBottomBaseX3L"),G.X4L,"paddingBottomBaseX4L"),G.X5L,"paddingBottomBaseX5L"),W(W(b,G.X6L,"paddingBottomBaseX6L"),G.X7L,"paddingBottomBaseX7L")),J=(W(W(W(W(W(W(W(W(W(W(E={},G.X2S,"spacingBaseX2S"),G.XS,"spacingBaseXS"),G.SM,"spacingBaseSM"),G.MD,"spacingBaseMD"),G.LG,"spacingBaseLG"),G.XL,"spacingBaseXL"),G.X2L,"spacingBaseX2L"),G.X3L,"spacingBaseX3L"),G.X4L,"spacingBaseX4L"),G.X5L,"spacingBaseX5L"),W(W(E,G.X6L,"spacingBaseX6L"),G.X7L,"spacingBaseX7L"));function Y(e){return Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Y(e)}function K(e,o,r){return(o=function(e){var o=function(e){if("object"!=Y(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=Y(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==Y(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var $=function(e){return e[e.DIV=0]="DIV",e[e.FIGURE=1]="FIGURE",e[e.FIGCAPTION=2]="FIGCAPTION",e[e.ARTICLE=3]="ARTICLE",e[e.SECTION=4]="SECTION",e[e.HEADER=5]="HEADER",e[e.MAIN=6]="MAIN",e[e.FOOTER=7]="FOOTER",e}({}),q=K(K(K(K(K(K(K(K({},$.DIV,"div"),$.FIGURE,"figure"),$.FIGCAPTION,"figcaption"),$.ARTICLE,"article"),$.SECTION,"section"),$.HEADER,"header"),$.MAIN,"main"),$.FOOTER,"footer")},294:(e,o,r)=>{r.d(o,{GK:()=>M,lF:()=>v,r1:()=>T,vd:()=>g.vd,M4:()=>g.M4,TY:()=>g.TY,v5:()=>B,UI:()=>c,ud:()=>s,P6:()=>l,ev:()=>O.e,kP:()=>L,VW:()=>b,vD:()=>$,hX:()=>U,w7:()=>Y,Vf:()=>z,X6:()=>F,S:()=>N,Gd:()=>q,mu:()=>J,XV:()=>K,we:()=>V,xT:()=>k,bW:()=>H,FK:()=>j,g$:()=>Q});var n=r(695),t=r(909),a=r(389),i=r(123),s=function(e){return(0,t.J)()[i.kq[e]]},l=function(e){var o;return null!==(o=(0,n.wR)()[i.jE[e]])&&void 0!==o?o:0},u=a.StyleSheet.create({borderRadiusMax:{borderRadius:"50%"}}),c=function(e){var o=(0,t.J)();return e===i.uC.MAX?u.borderRadiusMax:o[i.Oo[e]]},B=function(e){var o=(0,n.wR)();if(void 0!==e)return e===i.uC.MAX?"50%":"".concat(o[i.t2[e]],"px")},g=r(383);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function f(e,o,r){return(o=function(e){var o=function(e){if("object"!=d(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=d(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==d(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var S=a.StyleSheet.create({flexDirectionColumn:{flexDirection:"column"},flexDirectionRow:{flexDirection:"row"}}),p=f(f({},i.uY.COLUMN,S.flexDirectionColumn),i.uY.ROW,S.flexDirectionRow),L=function(e){return p[e]},m=a.StyleSheet.create({justifuContentFlexStart:{justifyContent:"flex-start"},justifuContentFlexEnd:{justifyContent:"flex-end"},justifuContentCenter:{justifyContent:"center"},justifuContentSpaceBetween:{justifyContent:"space-between"},justifuContentSpaceAround:{justifyContent:"space-around"},justifuContentSpaceEvenly:{justifyContent:"space-evenly"}}),X=f(f(f(f(f(f({},i.b9.FLEX_START,m.justifuContentFlexStart),i.b9.FLEX_END,m.justifuContentFlexEnd),i.b9.CENTER,m.justifuContentCenter),i.b9.SPACE_BETWEEN,m.justifuContentSpaceBetween),i.b9.SPACE_AROUND,m.justifuContentSpaceAround),i.b9.SPACE_EVENLY,m.justifuContentSpaceEvenly),b=function(e){return X[e]},E=a.StyleSheet.create({alignItemsFlexStart:{alignItems:"flex-start"},alignItemsFlexEnd:{alignItems:"flex-end"},alignItemsCenter:{alignItems:"center"},alignItemsStretch:{alignItems:"stretch"},alignItemsBaseline:{alignItems:"baseline"}}),h=f(f(f(f(f({},i.th.FLEX_START,E.alignItemsFlexStart),i.th.FLEX_END,E.alignItemsFlexEnd),i.th.CENTER,E.alignItemsCenter),i.th.STRETCH,E.alignItemsStretch),i.th.BASELINE,E.alignItemsBaseline),v=function(e){return h[e]},y=a.StyleSheet.create({alignSelfFlexStart:{alignSelf:"flex-start"},alignSelfFlexEnd:{alignSelf:"flex-end"},alignSelfCenter:{alignSelf:"center"},alignSelfStretch:{alignSelf:"stretch"},alignSelfBaseline:{alignSelf:"baseline"}}),R=f(f(f(f(f({},i.F5.FLEX_START,y.alignSelfFlexStart),i.F5.FLEX_END,y.alignSelfFlexEnd),i.F5.CENTER,y.alignSelfCenter),i.F5.STRETCH,y.alignSelfStretch),i.F5.BASELINE,y.alignSelfBaseline),T=function(e){return R[e]},A=a.StyleSheet.create({alignContentFlexStart:{alignContent:"flex-start"},alignContentFlexEnd:{alignContent:"flex-end"},alignContentCenter:{alignContent:"center"},alignContentStretch:{alignContent:"stretch"},alignContentSpaceBetween:{alignContent:"space-between"},alignContentSpaceAround:{alignContent:"space-around"},valignContentSpaceEvenly:{alignContent:"space-evenly"}}),I=f(f(f(f(f(f({},i.CN.FLEX_START,A.alignContentFlexStart),i.CN.FLEX_END,A.alignContentFlexEnd),i.CN.CENTER,A.alignContentCenter),i.CN.STRETCH,A.alignContentStretch),i.CN.SPACE_BETWEEN,A.alignContentSpaceBetween),i.CN.SPACE_AROUND,A.alignContentSpaceAround),M=function(e){return I[e]},F=function(e){return null==e?void 0:e.toValue()};function _(e){return _="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_(e)}function C(e,o,r){return(o=function(e){var o=function(e){if("object"!=_(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=_(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==_(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var x=a.StyleSheet.create({overflowVisible:{overflow:"visible"},overflowHidden:{overflow:"hidden"}}),D=C(C({},i.Ie.VISIBLE,x.overflowVisible),i.Ie.HIDDEN,x.overflowHidden),N=function(e){return D[e]};function w(e){return w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function W(e,o,r){return(o=function(e){var o=function(e){if("object"!=w(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=w(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==w(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var G=a.StyleSheet.create({positionRelative:{position:"relative"},positionAbsolute:{position:"absolute"}}),P=W(W({},i.JT.RELATIVE,G.positionRelative),i.JT.ABSOLUTE,G.positionAbsolute),k=function(e){return P[e]},H=function(e){return(null==e?void 0:e.toValue)&&e.toValue()},O=r(374),j=function(e){return null==e?void 0:e.toValue()},z=function(e){return(0,t.J)()[i.nJ[e]]},V=function(e){return(0,t.J)()[i.wj[e]]},U=function(e){return(0,t.J)()[i.vo[e]]},J=function(e){return(0,t.J)()[i.I1[e]]},Y=function(e){return(0,t.J)()[i.o5[e]]},K=function(e){return(0,t.J)()[i.FI[e]]},$=function(e){return(0,t.J)()[i.zt[e]]},q=function(e){return(0,t.J)()[i.CD[e]]},Q=function(e){var o;return null!==(o=(0,n.wR)()[i.co[e]])&&void 0!==o?o:0}},383:(e,o,r)=>{r.d(o,{M4:()=>s,QR:()=>u,TY:()=>i,vd:()=>l});var n=r(695),t=r(909),a=r(123),i=function(e){return(0,t.J)()[a.MD[e]]},s=function(e){return(0,n.wR)()[a.wG[e]]},l=function(e){var o=(0,t.J)();if(void 0!==e)return e in a.TI?o[a.Q4[e]]:{backgroundColor:e}},u=function(e){var o=(0,n.wR)();if(void 0!==e)return e in a.TI?o[a.mg[e]]:e}},374:(e,o,r)=>{r.d(o,{P:()=>B,e:()=>l});var n=r(389),t=r(123);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function i(e,o,r){return(o=function(e){var o=function(e){if("object"!=a(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==a(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var s=i(i(i({},t.lo.SM,"0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1)"),t.lo.MD,"0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1)"),t.lo.LG,"0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1)"),l=function(e){var o;return null!==(o=s[e])&&void 0!==o?o:void 0},u=n.StyleSheet.create({boxShadowSM:{boxShadow:s[t.lo.SM]},boxShadowMD:{boxShadow:s[t.lo.MD]},boxShadowLG:{boxShadow:s[t.lo.LG]}}),c=i(i(i({},t.lo.SM,u.boxShadowSM),t.lo.MD,u.boxShadowMD),t.lo.LG,u.boxShadowLG),B=function(e){var o;return null!==(o=c[e])&&void 0!==o?o:void 0}},689:(e,o,r)=>{r.d(o,{A:()=>c});var n=r(389),t=r(123),a=r(294),i=r(374),s=r(848),l=n.StyleSheet.create({default:{display:"flex",margin:0,padding:0,zIndex:0,position:"relative",listStyle:"none",borderWidth:0,borderStyle:"solid",textDecoration:"none",boxSizing:"border-box"}}),u=function(e){var o=e.position,r=void 0===o?t.JT.RELATIVE:o,u=e.top,c=e.left,B=e.right,g=e.bottom,d=e.opacity,f=e.overflow,S=void 0===f?t.Ie.VISIBLE:f,p=e.flexDirection,L=void 0===p?t.uY.COLUMN:p,m=e.justifyContent,X=void 0===m?t.b9.FLEX_START:m,b=e.alignItems,E=void 0===b?t.th.STRETCH:b,h=e.alignSelf,v=e.alignContent,y=void 0===v?t.CN.FLEX_START:v,R=e.marginTop,T=e.paddingTop,A=e.marginLeft,I=e.paddingLeft,M=e.marginRight,F=e.paddingRight,_=e.marginBottom,C=e.paddingBottom,x=e.minWidth,D=e.width,N=e.maxWidth,w=e.minHeight,W=e.height,G=e.maxHeight,P=e.boxShadow,k=e.borderColor,H=e.borderWidth,O=e.borderRadius,j=e.backgroundColor,z=e.children;return(0,s.jsx)(n.View,{style:[l.default,(0,a.xT)(r),{top:(0,a.bW)(u),left:(0,a.bW)(c),right:(0,a.bW)(B),bottom:(0,a.bW)(g)},{opacity:(0,a.X6)(d)},(0,a.S)(S),(0,a.kP)(L),(0,a.VW)(X),(0,a.lF)(E),(0,a.r1)(h),(0,a.GK)(y),(0,a.Vf)(R),(0,a.we)(T),(0,a.hX)(A),(0,a.mu)(I),(0,a.w7)(M),(0,a.XV)(F),(0,a.vD)(_),(0,a.Gd)(C),{minWidth:(0,a.FK)(x),width:(0,a.FK)(D),maxWidth:(0,a.FK)(N),minHeight:(0,a.FK)(w),height:(0,a.FK)(W),maxHeight:(0,a.FK)(G)},(0,i.P)(P),(0,a.TY)(k),(0,a.ud)(H),(0,a.UI)(O),(0,a.vd)(j)],children:z})};u.Tag=t.SQ,u.Position=t.JT,u.Overflow=t.Ie,u.FlexDirection=t.uY,u.JustifyContent=t.b9,u.AlignItems=t.th,u.AlignSelf=t.F5,u.AlignContent=t.CN,u.Spacing=t.TL,u.BoxShadow=t.lo,u.BorderColor=t.Vc,u.BorderWidth=t.s_,u.BorderRadius=t.uC,u.BackgroundColor=t.TI;const c=u},741:(e,o,r)=>{r.d(o,{A:()=>v});var n,t=r(729),a=r.n(t),i=r(123);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,o,r){return(o=function(e){var o=function(e){if("object"!=s(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==s(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var u,c,B=l(l({},i.JT.RELATIVE,"relative"),i.JT.ABSOLUTE,"absolute"),g=l(l({},i.Ie.VISIBLE,"visible"),i.Ie.HIDDEN,"hidden"),d=l(l({},i.uY.COLUMN,"column"),i.uY.ROW,"row"),f=l(l(l(l(l(l({},i.b9.FLEX_START,"flex-start"),i.b9.FLEX_END,"flex-end"),i.b9.CENTER,"center"),i.b9.SPACE_BETWEEN,"space-between"),i.b9.SPACE_AROUND,"space-around"),i.b9.SPACE_EVENLY,"space-evenly"),S=l(l(l(l(l({},i.th.FLEX_START,"flex-start"),i.th.FLEX_END,"flex-end"),i.th.STRETCH,"stretch"),i.th.CENTER,"center"),i.th.BASELINE,"baseline"),p=l(l(l(l(l({},i.F5.FLEX_START,"flex-start"),i.F5.FLEX_END,"flex-end"),i.F5.CENTER,"center"),i.F5.STRETCH,"stretch"),i.F5.BASELINE,"baseline"),L=l(l(l(l(l(l({},i.CN.FLEX_START,"flex-start"),i.CN.FLEX_END,"flex-end"),i.CN.CENTER,"center"),i.CN.STRETCH,"stretch"),i.CN.SPACE_BETWEEN,"space-between"),i.CN.SPACE_AROUND,"space-around"),m=a().div(n||(u=["\n display: flex;\n margin: 0;\n padding: 0;\n z-index: 0;\n position: relative;\n list-style: none;\n border-style: solid;\n text-decoration: none;\n box-sizing: border-box;\n position: ",";\n top: ",";\n left: ",";\n right: ",";\n bottom: ",";\n opacity: ",";\n overflow: ",";\n flex-direction: ",";\n justify-content: ",";\n align-items: ",";\n align-self: ",";\n align-content: ",";\n margin-top: ","px;\n padding-top: ","px;\n margin-left: ","px;\n padding-left: ","px;\n margin-right: ","px;\n padding-right: ","px;\n margin-bottom: ","px;\n padding-bottom: ","px;\n min-width: ",";\n width: ",";\n max-width: ",";\n min-height: ",";\n height: ",";\n max-height: ",";\n box-shadow: ",";\n border-color: ",";\n border-width: ","px;\n border-radius: ",";\n background-color: ",";\n"],c||(c=u.slice(0)),n=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(c)}}))),(function(e){var o=e.position;return B[o]}),(function(e){return e.top}),(function(e){return e.left}),(function(e){return e.right}),(function(e){return e.bottom}),(function(e){return e.opacity}),(function(e){var o=e.overflow;return g[o]}),(function(e){var o=e.flexDirection;return d[o]}),(function(e){var o=e.justifyContent;return f[o]}),(function(e){var o=e.alignItems;return S[o]}),(function(e){var o=e.alignSelf;return p[o]}),(function(e){var o=e.alignContent;return L[o]}),(function(e){return e.marginTop}),(function(e){return e.paddingTop}),(function(e){return e.marginLeft}),(function(e){return e.paddingLeft}),(function(e){return e.marginRight}),(function(e){return e.paddingRight}),(function(e){return e.marginBottom}),(function(e){return e.paddingBottom}),(function(e){return e.minWidth}),(function(e){return e.width}),(function(e){return e.maxWidth}),(function(e){return e.minHeight}),(function(e){return e.height}),(function(e){return e.maxHeight}),(function(e){return e.boxShadow}),(function(e){return e.borderColor}),(function(e){return e.borderWidth}),(function(e){return e.borderRadius}),(function(e){return e.backgroundColor})),X=r(294),b=r(383),E=r(848),h=function(e){var o=e.tag,r=void 0===o?i.SQ.DIV:o,n=e.position,t=void 0===n?i.JT.RELATIVE:n,a=e.top,s=e.left,l=e.right,u=e.bottom,c=e.opacity,B=e.overflow,g=void 0===B?i.Ie.VISIBLE:B,d=e.flexDirection,f=void 0===d?i.uY.COLUMN:d,S=e.justifyContent,p=void 0===S?i.b9.FLEX_START:S,L=e.alignItems,h=void 0===L?i.th.STRETCH:L,v=e.alignSelf,y=e.alignContent,R=void 0===y?i.CN.FLEX_START:y,T=e.marginTop,A=e.paddingTop,I=e.marginLeft,M=e.paddingLeft,F=e.marginRight,_=e.paddingRight,C=e.marginBottom,x=e.paddingBottom,D=e.minWidth,N=e.width,w=e.maxWidth,W=e.minHeight,G=e.height,P=e.maxHeight,k=e.boxShadow,H=e.borderColor,O=e.borderWidth,j=e.borderRadius,z=e.backgroundColor,V=e.children;return(0,E.jsx)(m,{as:i.VR[r],position:t,top:(0,X.bW)(a),left:(0,X.bW)(s),right:(0,X.bW)(l),bottom:(0,X.bW)(u),opacity:(0,X.X6)(c),overflow:g,flexDirection:f,justifyContent:p,alignItems:h,alignSelf:v,alignContent:R,marginTop:(0,X.g$)(T),paddingTop:(0,X.g$)(A),marginLeft:(0,X.g$)(I),paddingLeft:(0,X.g$)(M),marginRight:(0,X.g$)(F),paddingRight:(0,X.g$)(_),marginBottom:(0,X.g$)(C),paddingBottom:(0,X.g$)(x),minWidth:(0,X.FK)(D),width:(0,X.FK)(N),maxWidth:(0,X.FK)(w),minHeight:(0,X.FK)(W),height:(0,X.FK)(G),maxHeight:(0,X.FK)(P),boxShadow:(0,X.ev)(k),borderColor:(0,X.M4)(H),borderWidth:(0,X.P6)(O),borderRadius:(0,X.v5)(j),backgroundColor:(0,b.QR)(z),children:V})};h.Tag=i.SQ,h.Position=i.JT,h.Overflow=i.Ie,h.FlexDirection=i.uY,h.JustifyContent=i.b9,h.AlignItems=i.th,h.AlignSelf=i.F5,h.AlignContent=i.CN,h.Spacing=i.TL,h.BoxShadow=i.lo,h.BorderColor=i.Vc,h.BorderWidth=i.s_,h.BorderRadius=i.uC,h.BackgroundColor=i.TI;const v=h},316:(e,o,r)=>{r.d(o,{f:()=>n});var n=function(e){return e[e.PIXEL=0]="PIXEL",e[e.PERCENT=1]="PERCENT",e}({})},841:(e,o,r)=>{r.d(o,{D:()=>t,l:()=>a});var n=r(567),t=new n.y(100,n.y.Dimension.PERCENT),a=new n.y(0,n.y.Dimension.PIXEL)},315:(e,o,r)=>{r.d(o,{Y:()=>t});var n=r(700),t=new n.o(100,n.o.Dimension.PERCENT)},695:(e,o,r)=>{r.d(o,{wR:()=>n.d}),r(410);var n=r(147)},410:(e,o,r)=>{r.d(o,{$U:()=>S,tZ:()=>l,$c:()=>u});var n=r(155),t=r(389),a=function(e){return e[e.MD=0]="MD",e[e.LG=1]="LG",e[e.XL=2]="XL",e}({}),i=r(848),s=(0,n.createContext)({}),l=function(e){var o=e.breakpointMD,r=e.breakpointLG,l=e.breakpointXL,u=e.children,c=function(e,o,r){var i=(0,t.useWindowDimensions)().width;return(0,n.useMemo)((function(){return i>=r?a.XL:i>=o?a.LG:i>=e?a.MD:void 0}),[i>=r,i>=o,i>=e])}(null!=o?o:768,null!=r?r:1024,null!=l?l:1280),B=(0,n.useMemo)((function(){return{breakpoint:c}}),[c]);return(0,i.jsx)(s.Provider,{value:B,children:(0,i.jsx)(L,{children:u})})},u=function(){return(0,n.useContext)(s)};function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function B(e,o){(null==o||o>e.length)&&(o=e.length);for(var r=0,n=Array(o);r<o;r++)n[r]=e[r];return n}function g(e,o,r){return(o=function(e){var o=function(e){if("object"!=c(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=c(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==c(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var d=g(g(g({},a.MD,1),a.LG,2),a.XL,3),f=function(e,o){return d[e]>d[o]},S=t.Platform.select({web:function(e){var o,r,t=e.isDefault,a=e.isOtherwise,i=e.breakpoint,s=e.children,l=u(),c=(o=(0,n.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(o)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,a,i,s=[],l=!0,u=!1;try{if(a=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=a.call(r)).done)&&(s.push(n.value),s.length!==o);l=!0);}catch(e){u=!0,t=e}finally{try{if(!l&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(u)throw t}}return s}}(o,r)||function(e,o){if(e){if("string"==typeof e)return B(e,o);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?B(e,o):void 0}}(o,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),g=c[0],d=c[1];if((0,n.useEffect)((function(){d(!0)}),[]),g){if(t&&void 0===l.breakpoint)return s;if(l.breakpoint===i)return s;if(a&&f(l.breakpoint,i))return s}else if(t)return s},default:function(e){var o=e.isDefault,r=e.isOtherwise,n=e.breakpoint,t=e.children,a=u();return o&&void 0===a.breakpoint||a.breakpoint===n||r&&f(a.breakpoint,n)?t:void 0}});function p(e,o){(null==o||o>e.length)&&(o=e.length);for(var r=0,n=Array(o);r<o;r++)n[r]=e[r];return n}S.Breakpoint=a;var L=t.Platform.select({web:function(e){var o,r,t=e.children,a=(0,n.useRef)(),s=(o=(0,n.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(o)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,a,i,s=[],l=!0,u=!1;try{if(a=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=a.call(r)).done)&&(s.push(n.value),s.length!==o);l=!0);}catch(e){u=!0,t=e}finally{try{if(!l&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(u)throw t}}return s}}(o,r)||function(e,o){if(e){if("string"==typeof e)return p(e,o);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,o):void 0}}(o,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),l=s[0],u=s[1];(0,n.useEffect)((function(){u(!0)}),[]);var c=(0,n.useMemo)((function(){return l||"undefined"==typeof window||"undefined"==typeof document?{display:"flex",flexGrow:1,flexShrink:1,flexBasis:"100%",flexDirection:"column"}:{display:"none",flexGrow:1,flexShrink:1,flexBasis:"100%",flexDirection:"column"}}),[l]);return(0,i.jsxs)("div",{ref:a,style:c,suppressHydrationWarning:!0,children:[(0,i.jsx)("script",{dangerouslySetInnerHTML:{__html:'document.currentScript.parentElement.style.display="none"'}}),t]})},default:function(e){return e.children}})},147:(e,o,r)=>{r.d(o,{w:()=>j,d:()=>z}),r(316),r(841),r(315);var n="rgb(24,24,27)",t="rgb(39,39,42)",a="rgb(63,63,70)",i="rgb(82,82,92)",s="rgb(113,113,123)",l="rgb(159,159,169)",u="rgb(212,212,216)",c="rgb(228,228,231)",B="rgb(244,244,245)",g="rgb(253,252,254)",d="rgb(249,249,250)",f="rgb(247,247,249)",S="rgb(244,244,245)",p="rgb(224,224,238)",L="rgb(216,216,228)",m="rgb(216,216,228)",X="rgb(212,212,216)",b="rgb(198,198,202)",E="rgb(244,244,245)",h="rgb(228,228,231)",v="rgb(212,212,216)",y="rgb(159,159,169)",R="rgb(113,113,123)",T="rgb(82,82,92)",A="rgb(63,63,70)",I="rgb(39,39,42)",M="rgb(24,24,27)",F="rgb(24,24,27)",_="rgb(39,39,42)",C="rgb(63,63,70)",x="rgb(82,82,92)",D="rgb(113,113,123)",N="rgb(159,159,169)",w="rgb(212,212,216)",W="rgb(228,228,231)",G="rgb(244,244,245)",P=["ui-sans-serif","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto","Helvetica","Arial","sans-serif"].join(","),k=r(155),H=r(848),O=(0,k.createContext)({colorBackgroundBase100:n,colorBackgroundBase200:t,colorBackgroundBase300:a,colorBackgroundBase400:i,colorBackgroundBase500:s,colorBackgroundBase600:l,colorBackgroundBase700:u,colorBackgroundBase800:c,colorBackgroundBase900:B,colorBorderBase100:g,colorBorderBase200:d,colorBorderBase300:f,colorBorderBase400:S,colorBorderBase500:p,colorBorderBase600:L,colorBorderBase700:m,colorBorderBase800:X,colorBorderBase900:b,colorForegroundBase100:E,colorForegroundBase200:h,colorForegroundBase300:v,colorForegroundBase400:y,colorForegroundBase500:R,colorForegroundBase600:T,colorForegroundBase700:A,colorForegroundBase800:I,colorForegroundBase900:M,colorForegroundInverse100:F,colorForegroundInverse200:_,colorForegroundInverse300:C,colorForegroundInverse400:x,colorForegroundInverse500:D,colorForegroundInverse600:N,colorForegroundInverse700:w,colorForegroundInverse800:W,colorForegroundInverse900:G,fontFamilyBase:P,fontWeightBaseThin:100,fontWeightBaseExtraLight:200,fontWeightBaseLight:300,fontWeightBaseRegular:400,fontWeightBaseMedium:500,fontWeightBaseSemibold:600,fontWeightBaseBold:700,fontWeightBaseExtraBold:800,fontWeightBaseBlack:900,fontSizeBaseX2S:12,fontSizeBaseXS:14,fontSizeBaseSM:16,fontSizeBaseMD:18,fontSizeBaseLG:20,fontSizeBaseXL:24,fontSizeBaseX2L:30,fontSizeBaseX3L:36,fontSizeBaseX4L:48,fontSizeBaseX5L:60,lineHeightBaseNone:1,lineHeightBaseTight:1.25,lineHeightBaseSnug:1.375,lineHeightBaseNormal:1.5,lineHeightBaseRelaxed:1.625,lineHeightBaseLoose:2,spacingBaseX2S:2,spacingBaseXS:4,spacingBaseSM:6,spacingBaseMD:8,spacingBaseLG:10,spacingBaseXL:12,spacingBaseX2L:14,spacingBaseX3L:16,spacingBaseX4L:20,spacingBaseX5L:24,spacingBaseX6L:28,spacingBaseX7L:32,borderWidthBaseSM:.5,borderWidthBaseMD:1,borderWidthBaseLG:1.5,borderRadiusBaseXS:2,borderRadiusBaseSM:4,borderRadiusBaseMD:6,borderRadiusBaseLG:8,borderRadiusBaseXL:10}),j=function(e){var o=e.colorBackgroundBase100,r=e.colorBackgroundBase200,j=e.colorBackgroundBase300,z=e.colorBackgroundBase400,V=e.colorBackgroundBase500,U=e.colorBackgroundBase600,J=e.colorBackgroundBase700,Y=e.colorBackgroundBase800,K=e.colorBackgroundBase900,$=e.colorBorderBase100,q=e.colorBorderBase200,Q=e.colorBorderBase300,Z=e.colorBorderBase400,ee=e.colorBorderBase500,oe=e.colorBorderBase600,re=e.colorBorderBase700,ne=e.colorBorderBase800,te=e.colorBorderBase900,ae=e.colorForegroundBase100,ie=e.colorForegroundBase200,se=e.colorForegroundBase300,le=e.colorForegroundBase400,ue=e.colorForegroundBase500,ce=e.colorForegroundBase600,Be=e.colorForegroundBase700,ge=e.colorForegroundBase800,de=e.colorForegroundBase900,fe=e.colorForegroundInverse100,Se=e.colorForegroundInverse200,pe=e.colorForegroundInverse300,Le=e.colorForegroundInverse400,me=e.colorForegroundInverse500,Xe=e.colorForegroundInverse600,be=e.colorForegroundInverse700,Ee=e.colorForegroundInverse800,he=e.colorForegroundInverse900,ve=e.fontFamilyBase,ye=e.fontWeightBaseThin,Re=e.fontWeightBaseExtraLight,Te=e.fontWeightBaseLight,Ae=e.fontWeightBaseRegular,Ie=e.fontWeightBaseMedium,Me=e.fontWeightBaseSemibold,Fe=e.fontWeightBaseBold,_e=e.fontWeightBaseExtraBold,Ce=e.fontWeightBaseBlack,xe=e.fontSizeBaseX2S,De=e.fontSizeBaseXS,Ne=e.fontSizeBaseSM,we=e.fontSizeBaseMD,We=e.fontSizeBaseLG,Ge=e.fontSizeBaseXL,Pe=e.fontSizeBaseX2L,ke=e.fontSizeBaseX3L,He=e.fontSizeBaseX4L,Oe=e.fontSizeBaseX5L,je=e.lineHeightBaseNone,ze=e.lineHeightBaseTight,Ve=e.lineHeightBaseSnug,Ue=e.lineHeightBaseNormal,Je=e.lineHeightBaseRelaxed,Ye=e.lineHeightBaseLoose,Ke=e.spacingBaseX2S,$e=e.spacingBaseXS,qe=e.spacingBaseSM,Qe=e.spacingBaseMD,Ze=e.spacingBaseLG,eo=e.spacingBaseXL,oo=e.spacingBaseX2L,ro=e.spacingBaseX3L,no=e.spacingBaseX4L,to=e.spacingBaseX5L,ao=e.spacingBaseX6L,io=e.spacingBaseX7L,so=e.borderWidthBaseSM,lo=e.borderWidthBaseMD,uo=e.borderWidthBaseLG,co=e.borderRadiusBaseXS,Bo=e.borderRadiusBaseSM,go=e.borderRadiusBaseMD,fo=e.borderRadiusBaseLG,So=e.borderRadiusBaseXL,po=e.children,Lo=(0,k.useMemo)((function(){return{colorBackgroundBase100:null!=o?o:n,colorBackgroundBase200:null!=r?r:t,colorBackgroundBase300:null!=j?j:a,colorBackgroundBase400:null!=z?z:i,colorBackgroundBase500:null!=V?V:s,colorBackgroundBase600:null!=U?U:l,colorBackgroundBase700:null!=J?J:u,colorBackgroundBase800:null!=Y?Y:c,colorBackgroundBase900:null!=K?K:B,colorBorderBase100:null!=$?$:g,colorBorderBase200:null!=q?q:d,colorBorderBase300:null!=Q?Q:f,colorBorderBase400:null!=Z?Z:S,colorBorderBase500:null!=ee?ee:p,colorBorderBase600:null!=oe?oe:L,colorBorderBase700:null!=re?re:m,colorBorderBase800:null!=ne?ne:X,colorBorderBase900:null!=te?te:b,colorForegroundBase100:null!=ae?ae:E,colorForegroundBase200:null!=ie?ie:h,colorForegroundBase300:null!=se?se:v,colorForegroundBase400:null!=le?le:y,colorForegroundBase500:null!=ue?ue:R,colorForegroundBase600:null!=ce?ce:T,colorForegroundBase700:null!=Be?Be:A,colorForegroundBase800:null!=ge?ge:I,colorForegroundBase900:null!=de?de:M,colorForegroundInverse100:null!=fe?fe:F,colorForegroundInverse200:null!=Se?Se:_,colorForegroundInverse300:null!=pe?pe:C,colorForegroundInverse400:null!=Le?Le:x,colorForegroundInverse500:null!=me?me:D,colorForegroundInverse600:null!=Xe?Xe:N,colorForegroundInverse700:null!=be?be:w,colorForegroundInverse800:null!=Ee?Ee:W,colorForegroundInverse900:null!=he?he:G,fontFamilyBase:null!=ve?ve:P,fontWeightBaseThin:null!=ye?ye:100,fontWeightBaseExtraLight:null!=Re?Re:200,fontWeightBaseLight:null!=Te?Te:300,fontWeightBaseRegular:null!=Ae?Ae:400,fontWeightBaseMedium:null!=Ie?Ie:500,fontWeightBaseSemibold:null!=Me?Me:600,fontWeightBaseBold:null!=Fe?Fe:700,fontWeightBaseExtraBold:null!=_e?_e:800,fontWeightBaseBlack:null!=Ce?Ce:900,fontSizeBaseX2S:null!=xe?xe:12,fontSizeBaseXS:null!=De?De:14,fontSizeBaseSM:null!=Ne?Ne:16,fontSizeBaseMD:null!=we?we:18,fontSizeBaseLG:null!=We?We:20,fontSizeBaseXL:null!=Ge?Ge:24,fontSizeBaseX2L:null!=Pe?Pe:30,fontSizeBaseX3L:null!=ke?ke:36,fontSizeBaseX4L:null!=He?He:48,fontSizeBaseX5L:null!=Oe?Oe:60,lineHeightBaseNone:null!=je?je:1,lineHeightBaseTight:null!=ze?ze:1.25,lineHeightBaseSnug:null!=Ve?Ve:1.375,lineHeightBaseNormal:null!=Ue?Ue:1.5,lineHeightBaseRelaxed:null!=Je?Je:1.625,lineHeightBaseLoose:null!=Ye?Ye:2,spacingBaseX2S:null!=Ke?Ke:2,spacingBaseXS:null!=$e?$e:4,spacingBaseSM:null!=qe?qe:6,spacingBaseMD:null!=Qe?Qe:8,spacingBaseLG:null!=Ze?Ze:10,spacingBaseXL:null!=eo?eo:12,spacingBaseX2L:null!=oo?oo:14,spacingBaseX3L:null!=ro?ro:16,spacingBaseX4L:null!=no?no:20,spacingBaseX5L:null!=to?to:24,spacingBaseX6L:null!=ao?ao:28,spacingBaseX7L:null!=io?io:32,borderWidthBaseSM:null!=so?so:.5,borderWidthBaseMD:null!=lo?lo:1,borderWidthBaseLG:null!=uo?uo:1.5,borderRadiusBaseXS:null!=co?co:2,borderRadiusBaseSM:null!=Bo?Bo:4,borderRadiusBaseMD:null!=go?go:6,borderRadiusBaseLG:null!=fo?fo:8,borderRadiusBaseXL:null!=So?So:10}}),[o,r,j,z,V,U,J,Y,K,$,q,Q,Z,ee,oe,re,ne,te,ae,ie,se,le,ue,ce,Be,ge,de,fe,Se,pe,Le,me,Xe,be,Ee,he,ve,ye,Re,Te,Ae,Ie,Me,Fe,_e,Ce,xe,De,Ne,we,We,Ge,Pe,ke,He,Oe,je,ze,Ve,Ue,Je,Ye,Ke,$e,qe,Qe,Ze,eo,oo,ro,no,to,ao,io,so,lo,uo,co,Bo,go,fo,So]);return(0,H.jsx)(O.Provider,{value:Lo,children:po})},z=function(){return(0,k.useContext)(O)}},567:(e,o,r)=>{r.d(o,{y:()=>B});var n=r(316),t=r(389);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function i(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,s(n.key),n)}}function s(e){var o=function(e){if("object"!=a(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==a(o)?o:o+""}var l,u,c,B=function(){return e=function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:n.f.PIXEL;!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=o,this.dimension=r},(o=[{key:"toValue",value:function(){return this.dimension===n.f.PIXEL?t.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])&&i(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}();l=B,u="Dimension",c=n.f,(u=s(u))in l?Object.defineProperty(l,u,{value:c,enumerable:!0,configurable:!0,writable:!0}):l[u]=c},700:(e,o,r)=>{r.d(o,{o:()=>B});var n=r(316),t=r(389);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function i(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,s(n.key),n)}}function s(e){var o=function(e){if("object"!=a(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==a(o)?o:o+""}var l,u,c,B=function(){return e=function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:n.f.PIXEL;!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=o,this.dimension=r},(o=[{key:"toValue",value:function(){return this.dimension===n.f.PIXEL?t.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])&&i(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}();l=B,u="Dimension",c=n.f,(u=s(u))in l?Object.defineProperty(l,u,{value:c,enumerable:!0,configurable:!0,writable:!0}):l[u]=c},909:(e,o,r)=>{r.d(o,{J:()=>n.J});var n=r(408)},408:(e,o,r)=>{r.d(o,{J:()=>i});var n=r(147),t=r(155),a=r(389),i=function(){var e=(0,n.d)();return(0,t.useMemo)((function(){return a.StyleSheet.create({colorBackgroundBase100:{backgroundColor:e.colorBackgroundBase100},colorBackgroundBase200:{backgroundColor:e.colorBackgroundBase200},colorBackgroundBase300:{backgroundColor:e.colorBackgroundBase300},colorBackgroundBase400:{backgroundColor:e.colorBackgroundBase400},colorBackgroundBase500:{backgroundColor:e.colorBackgroundBase500},colorBackgroundBase600:{backgroundColor:e.colorBackgroundBase600},colorBackgroundBase700:{backgroundColor:e.colorBackgroundBase700},colorBackgroundBase800:{backgroundColor:e.colorBackgroundBase800},colorBackgroundBase900:{backgroundColor:e.colorBackgroundBase900},colorBorderBase100:{borderColor:e.colorBorderBase100},colorBorderBase200:{borderColor:e.colorBorderBase200},colorBorderBase300:{borderColor:e.colorBorderBase300},colorBorderBase400:{borderColor:e.colorBorderBase400},colorBorderBase500:{borderColor:e.colorBorderBase500},colorBorderBase600:{borderColor:e.colorBorderBase600},colorBorderBase700:{borderColor:e.colorBorderBase700},colorBorderBase800:{borderColor:e.colorBorderBase800},colorBorderBase900:{borderColor:e.colorBorderBase900},colorForegroundBase100:{color:e.colorForegroundBase100},colorForegroundBase200:{color:e.colorForegroundBase200},colorForegroundBase300:{color:e.colorForegroundBase300},colorForegroundBase400:{color:e.colorForegroundBase400},colorForegroundBase500:{color:e.colorForegroundBase500},colorForegroundBase600:{color:e.colorForegroundBase600},colorForegroundBase700:{color:e.colorForegroundBase700},colorForegroundBase800:{color:e.colorForegroundBase800},colorForegroundBase900:{color:e.colorForegroundBase900},colorForegroundInverse100:{color:e.colorForegroundInverse100},colorForegroundInverse200:{color:e.colorForegroundInverse200},colorForegroundInverse300:{color:e.colorForegroundInverse300},colorForegroundInverse400:{color:e.colorForegroundInverse400},colorForegroundInverse500:{color:e.colorForegroundInverse500},colorForegroundInverse600:{color:e.colorForegroundInverse600},colorForegroundInverse700:{color:e.colorForegroundInverse700},colorForegroundInverse800:{color:e.colorForegroundInverse800},colorForegroundInverse900:{color:e.colorForegroundInverse900},fontFamilyBase:{fontFamily:e.fontFamilyBase},fontWeightBaseThin:{fontWeight:e.fontWeightBaseThin},fontWeightBaseExtraLight:{fontWeight:e.fontWeightBaseExtraLight},fontWeightBaseLight:{fontWeight:e.fontWeightBaseLight},fontWeightBaseRegular:{fontWeight:e.fontWeightBaseRegular},fontWeightBaseMedium:{fontWeight:e.fontWeightBaseMedium},fontWeightBaseSemibold:{fontWeight:e.fontWeightBaseSemibold},fontWeightBaseBold:{fontWeight:e.fontWeightBaseBold},fontWeightBaseExtraBold:{fontWeight:e.fontWeightBaseExtraBold},fontWeightBaseBlack:{fontWeight:e.fontWeightBaseBlack},fontSizeBaseX2S:{fontSize:e.fontSizeBaseX2S},fontSizeBaseXS:{fontSize:e.fontSizeBaseXS},fontSizeBaseSM:{fontSize:e.fontSizeBaseSM},fontSizeBaseMD:{fontSize:e.fontSizeBaseMD},fontSizeBaseLG:{fontSize:e.fontSizeBaseLG},fontSizeBaseXL:{fontSize:e.fontSizeBaseXL},fontSizeBaseX2L:{fontSize:e.fontSizeBaseX2L},fontSizeBaseX3L:{fontSize:e.fontSizeBaseX3L},fontSizeBaseX4L:{fontSize:e.fontSizeBaseX4L},fontSizeBaseX5L:{fontSize:e.fontSizeBaseX5L},marginTopBaseX2S:{marginTop:e.spacingBaseX2S},paddingTopBaseX2S:{paddingTop:e.spacingBaseX2S},marginLeftBaseX2S:{marginLeft:e.spacingBaseX2S},paddingLeftBaseX2S:{paddingLeft:e.spacingBaseX2S},marginRightBaseX2S:{marginRight:e.spacingBaseX2S},paddingRightBaseX2S:{paddingRight:e.spacingBaseX2S},marginBottomBaseX2S:{marginBottom:e.spacingBaseX2S},paddingBottomBaseX2S:{paddingBottom:e.spacingBaseX2S},marginTopBaseXS:{marginTop:e.spacingBaseXS},paddingTopBaseXS:{paddingTop:e.spacingBaseXS},marginLeftBaseXS:{marginLeft:e.spacingBaseXS},paddingLeftBaseXS:{paddingLeft:e.spacingBaseXS},marginRightBaseXS:{marginRight:e.spacingBaseXS},paddingRightBaseXS:{paddingRight:e.spacingBaseXS},marginBottomBaseXS:{marginBottom:e.spacingBaseXS},paddingBottomBaseXS:{paddingBottom:e.spacingBaseXS},marginTopBaseSM:{marginTop:e.spacingBaseSM},paddingTopBaseSM:{paddingTop:e.spacingBaseSM},marginLeftBaseSM:{marginLeft:e.spacingBaseSM},paddingLeftBaseSM:{paddingLeft:e.spacingBaseSM},marginRightBaseSM:{marginRight:e.spacingBaseSM},paddingRightBaseSM:{paddingRight:e.spacingBaseSM},marginBottomBaseSM:{marginBottom:e.spacingBaseSM},paddingBottomBaseSM:{paddingBottom:e.spacingBaseSM},marginTopBaseMD:{marginTop:e.spacingBaseMD},paddingTopBaseMD:{paddingTop:e.spacingBaseMD},marginLeftBaseMD:{marginLeft:e.spacingBaseMD},paddingLeftBaseMD:{paddingLeft:e.spacingBaseMD},marginRightBaseMD:{marginRight:e.spacingBaseMD},paddingRightBaseMD:{paddingRight:e.spacingBaseMD},marginBottomBaseMD:{marginBottom:e.spacingBaseMD},paddingBottomBaseMD:{paddingBottom:e.spacingBaseMD},marginTopBaseLG:{marginTop:e.spacingBaseLG},paddingTopBaseLG:{paddingTop:e.spacingBaseLG},marginLeftBaseLG:{marginLeft:e.spacingBaseLG},paddingLeftBaseLG:{paddingLeft:e.spacingBaseLG},marginRightBaseLG:{marginRight:e.spacingBaseLG},paddingRightBaseLG:{paddingRight:e.spacingBaseLG},marginBottomBaseLG:{marginBottom:e.spacingBaseLG},paddingBottomBaseLG:{paddingBottom:e.spacingBaseLG},marginTopBaseXL:{marginTop:e.spacingBaseXL},paddingTopBaseXL:{paddingTop:e.spacingBaseXL},marginLeftBaseXL:{marginLeft:e.spacingBaseXL},paddingLeftBaseXL:{paddingLeft:e.spacingBaseXL},marginRightBaseXL:{marginRight:e.spacingBaseXL},paddingRightBaseXL:{paddingRight:e.spacingBaseXL},marginBottomBaseXL:{marginBottom:e.spacingBaseXL},paddingBottomBaseXL:{paddingBottom:e.spacingBaseXL},marginTopBaseX2L:{marginTop:e.spacingBaseX2L},paddingTopBaseX2L:{paddingTop:e.spacingBaseX2L},marginLeftBaseX2L:{marginLeft:e.spacingBaseX2L},paddingLeftBaseX2L:{paddingLeft:e.spacingBaseX2L},marginRightBaseX2L:{marginRight:e.spacingBaseX2L},paddingRightBaseX2L:{paddingRight:e.spacingBaseX2L},marginBottomBaseX2L:{marginBottom:e.spacingBaseX2L},paddingBottomBaseX2L:{paddingBottom:e.spacingBaseX2L},marginTopBaseX3L:{marginTop:e.spacingBaseX3L},paddingTopBaseX3L:{paddingTop:e.spacingBaseX3L},marginLeftBaseX3L:{marginLeft:e.spacingBaseX3L},paddingLeftBaseX3L:{paddingLeft:e.spacingBaseX3L},marginRightBaseX3L:{marginRight:e.spacingBaseX3L},paddingRightBaseX3L:{paddingRight:e.spacingBaseX3L},marginBottomBaseX3L:{marginBottom:e.spacingBaseX3L},paddingBottomBaseX3L:{paddingBottom:e.spacingBaseX3L},marginTopBaseX4L:{marginTop:e.spacingBaseX4L},paddingTopBaseX4L:{paddingTop:e.spacingBaseX4L},marginLeftBaseX4L:{marginLeft:e.spacingBaseX4L},paddingLeftBaseX4L:{paddingLeft:e.spacingBaseX4L},marginRightBaseX4L:{marginRight:e.spacingBaseX4L},paddingRightBaseX4L:{paddingRight:e.spacingBaseX4L},marginBottomBaseX4L:{marginBottom:e.spacingBaseX4L},paddingBottomBaseX4L:{paddingBottom:e.spacingBaseX4L},marginTopBaseX5L:{marginTop:e.spacingBaseX5L},paddingTopBaseX5L:{paddingTop:e.spacingBaseX5L},marginLeftBaseX5L:{marginLeft:e.spacingBaseX5L},paddingLeftBaseX5L:{paddingLeft:e.spacingBaseX5L},marginRightBaseX5L:{marginRight:e.spacingBaseX5L},paddingRightBaseX5L:{paddingRight:e.spacingBaseX5L},marginBottomBaseX5L:{marginBottom:e.spacingBaseX5L},paddingBottomBaseX5L:{paddingBottom:e.spacingBaseX5L},marginTopBaseX6L:{marginTop:e.spacingBaseX6L},paddingTopBaseX6L:{paddingTop:e.spacingBaseX6L},marginLeftBaseX6L:{marginLeft:e.spacingBaseX6L},paddingLeftBaseX6L:{paddingLeft:e.spacingBaseX6L},marginRightBaseX6L:{marginRight:e.spacingBaseX6L},paddingRightBaseX6L:{paddingRight:e.spacingBaseX6L},marginBottomBaseX6L:{marginBottom:e.spacingBaseX6L},paddingBottomBaseX6L:{paddingBottom:e.spacingBaseX6L},marginTopBaseX7L:{marginTop:e.spacingBaseX7L},paddingTopBaseX7L:{paddingTop:e.spacingBaseX7L},marginLeftBaseX7L:{marginLeft:e.spacingBaseX7L},paddingLeftBaseX7L:{paddingLeft:e.spacingBaseX7L},marginRightBaseX7L:{marginRight:e.spacingBaseX7L},paddingRightBaseX7L:{paddingRight:e.spacingBaseX7L},marginBottomBaseX7L:{marginBottom:e.spacingBaseX7L},paddingBottomBaseX7L:{paddingBottom:e.spacingBaseX7L},borderWidthBaseSM:{borderWidth:e.borderWidthBaseSM},borderWidthBaseMD:{borderWidth:e.borderWidthBaseMD},borderWidthBaseLG:{borderWidth:e.borderWidthBaseLG},borderRadiusBaseXS:{borderRadius:e.borderRadiusBaseXS},borderRadiusBaseSM:{borderRadius:e.borderRadiusBaseSM},borderRadiusBaseMD:{borderRadius:e.borderRadiusBaseMD},borderRadiusBaseLG:{borderRadius:e.borderRadiusBaseLG},borderRadiusBaseXL:{borderRadius:e.borderRadiusBaseXL}})}),[e])}},20:(e,o,r)=>{var n=r(155),t=Symbol.for("react.element"),a=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),i=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function l(e,o,r){var n,l={},u=null,c=null;for(n in void 0!==r&&(u=""+r),void 0!==o.key&&(u=""+o.key),void 0!==o.ref&&(c=o.ref),o)a.call(o,n)&&!s.hasOwnProperty(n)&&(l[n]=o[n]);if(e&&e.defaultProps)for(n in o=e.defaultProps)void 0===l[n]&&(l[n]=o[n]);return{$$typeof:t,type:e,key:u,ref:c,props:l,_owner:i.current}}o.jsx=l,o.jsxs=l},848:(e,o,r)=>{e.exports=r(20)},729:e=>{e.exports=r},155:o=>{o.exports=e},389:e=>{e.exports=o}},t={};function a(e){var o=t[e];if(void 0!==o)return o.exports;var r=t[e]={exports:{}};return n[e](r,r.exports,a),r.exports}a.n=e=>{var o=e&&e.__esModule?()=>e.default:()=>e;return a.d(o,{a:o}),o},a.d=(e,o)=>{for(var r in o)a.o(o,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:o[r]})},a.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};a.r(i),a.d(i,{Dimension:()=>y.f,Media:()=>A.$U,MediaContextProvider:()=>A.tZ,Opacity:()=>C,POSITION_MAX:()=>R.D,POSITION_MIN:()=>R.l,Position:()=>x.y,SIZE_FULL:()=>T.Y,Size:()=>D.o,Text:()=>h,ThemeContextProvider:()=>I.w,View:()=>v,useMediaContext:()=>A.$c,useThemeContext:()=>I.d,useThemeStyleSheet:()=>N.J});var s=a(695),l=a(909),u=a(155),c=a(389),B=function(e){return e[e.TRANSPARENT=0]="TRANSPARENT",e[e.BASE_100=1]="BASE_100",e[e.BASE_200=2]="BASE_200",e[e.BASE_300=3]="BASE_300",e[e.BASE_400=4]="BASE_400",e[e.BASE_500=5]="BASE_500",e[e.BASE_600=6]="BASE_600",e[e.BASE_700=7]="BASE_700",e[e.BASE_800=8]="BASE_800",e[e.BASE_900=9]="BASE_900",e[e.INVERSE_100=10]="INVERSE_100",e[e.INVERSE_200=11]="INVERSE_200",e[e.INVERSE_300=12]="INVERSE_300",e[e.INVERSE_400=13]="INVERSE_400",e[e.INVERSE_500=14]="INVERSE_500",e[e.INVERSE_600=15]="INVERSE_600",e[e.INVERSE_700=16]="INVERSE_700",e[e.INVERSE_800=17]="INVERSE_800",e[e.INVERSE_900=18]="INVERSE_900",e}({}),g=function(e){return e[e.THIN=0]="THIN",e[e.EXTRA_LIGHT=1]="EXTRA_LIGHT",e[e.LIGHT=2]="LIGHT",e[e.REGULAR=3]="REGULAR",e[e.MEDIUM=4]="MEDIUM",e[e.SEMIBOLD=5]="SEMIBOLD",e[e.BOLD=6]="BOLD",e[e.EXTRA_BOLD=7]="EXTRA_BOLD",e[e.BLACK=8]="BLACK",e}({}),d=function(e){return e[e.X2S=0]="X2S",e[e.XS=1]="XS",e[e.SM=2]="SM",e[e.MD=3]="MD",e[e.LG=4]="LG",e[e.XL=5]="XL",e[e.X2L=6]="X2L",e[e.X3L=7]="X3L",e[e.X4L=8]="X4L",e[e.X5L=9]="X5L",e}({}),f=function(e){return e.HEADING="heading",e.PARAGRAPH="paragraph",e}({}),S=function(e){return e[e.LEFT=0]="LEFT",e[e.CENTER=1]="CENTER",e[e.RIGHT=2]="RIGHT",e}({}),p=function(e){return e[e.NONE=0]="NONE",e[e.TIGHT=1]="TIGHT",e[e.SNUG=2]="SNUG",e[e.NORMAL=3]="NORMAL",e[e.RELAXED=4]="RELAXED",e[e.LOOSE=5]="LOOSE",e}({}),L=function(e){return e[e.H1=0]="H1",e[e.H2=1]="H2",e[e.H3=2]="H3",e[e.H4=3]="H4",e[e.H5=4]="H5",e[e.H6=5]="H6",e[e.P=6]="P",e}({}),m=[L.H1,L.H2,L.H3,L.H4,L.H5,L.H6],X=a(848),b=c.StyleSheet.create({textPositionStatic:{position:"static"},textAlignLeft:{textAlign:"left"},textAlignCenter:{textAlign:"center"},textAlignRight:{textAlign:"right"},textColorTransparent:{color:"transparent"}}),E=new Map,h=function(e){var o=e.type,r=e.align,n=void 0===r?S.LEFT:r,t=e.fontWeight,a=void 0===t?g.REGULAR:t,i=e.fontSize,h=void 0===i?d.MD:i,v=e.lineHeight,y=void 0===v?p.NONE:v,R=e.maxLines,T=e.color,A=void 0===T?B.BASE_800:T,I=e.children,M=(0,s.wR)(),F=(0,l.J)(),_=(0,u.useMemo)((function(){var e=function(e,o){var r=[e,o].join("-");if(E.has(r))return E.get(r);var n=c.StyleSheet.create({textLineHeight:{lineHeight:e*o}});return E.set(r,n),n}(function(){switch(h){case d.X2S:return M.fontSizeBaseX2S;case d.XS:return M.fontSizeBaseXS;case d.SM:return M.fontSizeBaseSM;case d.MD:return M.fontSizeBaseMD;case d.LG:return M.fontSizeBaseLG;case d.XL:return M.fontSizeBaseXL;case d.X2L:return M.fontSizeBaseX2L;case d.X3L:return M.fontSizeBaseX3L;case d.X4L:return M.fontSizeBaseX4L;case d.X5L:return M.fontSizeBaseX5L}}(),function(){switch(y){case p.NONE:return M.lineHeightBaseNone;case p.TIGHT:return M.lineHeightBaseTight;case p.SNUG:return M.lineHeightBaseSnug;case p.NORMAL:return M.lineHeightBaseNormal;case p.RELAXED:return M.lineHeightBaseRelaxed;case p.LOOSE:return M.lineHeightBaseLoose}}());return e.textLineHeight}),[h,y,M]);return(0,X.jsx)(c.Text,{role:L.P===o?f.PARAGRAPH:m.includes(o)?f.HEADING:void 0,"aria-level":function(){if(m.includes(o)){if(o===L.H1)return 1;if(o===L.H2)return 2;if(o===L.H3)return 3;if(o===L.H4)return 4;if(o===L.H5)return 5;if(o===L.H6)return 6}}(),style:[b.textPositionStatic,F.fontFamilyBase,function(){switch(n){case S.LEFT:return b.textAlignLeft;case S.CENTER:return b.textAlignCenter;case S.RIGHT:return b.textAlignRight}}(),function(){switch(a){case g.THIN:return F.fontWeightBaseThin;case g.EXTRA_LIGHT:return F.fontWeightBaseExtraLight;case g.LIGHT:return F.fontWeightBaseLight;case g.REGULAR:return F.fontWeightBaseRegular;case g.MEDIUM:return F.fontWeightBaseMedium;case g.SEMIBOLD:return F.fontWeightBaseSemibold;case g.BOLD:return F.fontWeightBaseBold;case g.EXTRA_BOLD:return F.fontWeightBaseExtraBold;case g.BLACK:return F.fontWeightBaseBlack}}(),function(){switch(h){case d.X2S:return F.fontSizeBaseX2S;case d.XS:return F.fontSizeBaseXS;case d.SM:return F.fontSizeBaseSM;case d.MD:return F.fontSizeBaseMD;case d.LG:return F.fontSizeBaseLG;case d.XL:return F.fontSizeBaseXL;case d.X2L:return F.fontSizeBaseX2L;case d.X3L:return F.fontSizeBaseX3L;case d.X4L:return F.fontSizeBaseX4L;case d.X5L:return F.fontSizeBaseX5L}}(),_,function(){switch(A){case B.TRANSPARENT:return b.textColorTransparent;case B.BASE_100:return F.colorForegroundBase100;case B.BASE_200:return F.colorForegroundBase200;case B.BASE_300:return F.colorForegroundBase300;case B.BASE_400:return F.colorForegroundBase400;case B.BASE_500:return F.colorForegroundBase500;case B.BASE_600:return F.colorForegroundBase600;case B.BASE_700:return F.colorForegroundBase700;case B.BASE_800:return F.colorForegroundBase800;case B.BASE_900:return F.colorForegroundBase900;case B.INVERSE_100:return F.colorForegroundInverse100;case B.INVERSE_200:return F.colorForegroundInverse200;case B.INVERSE_300:return F.colorForegroundInverse300;case B.INVERSE_400:return F.colorForegroundInverse400;case B.INVERSE_500:return F.colorForegroundInverse500;case B.INVERSE_600:return F.colorForegroundInverse600;case B.INVERSE_700:return F.colorForegroundInverse700;case B.INVERSE_800:return F.colorForegroundInverse800;case B.INVERSE_900:return F.colorForegroundInverse900}}()],numberOfLines:R,children:I})};h.Type=L,h.Align=S,h.FontWeight=g,h.FontSize=d,h.LineHeight=p,h.Color=B;var v=c.Platform.select({native:function(){return a(689).A},web:function(){return a(741).A}})(),y=a(316),R=a(841),T=a(315),A=a(410),I=a(147);function M(e){return M="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},M(e)}function F(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,_(n.key),n)}}function _(e){var o=function(e){if("object"!=M(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=M(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==M(o)?o:o+""}var C=function(){return e=function e(o){!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.value=o},(o=[{key:"toValue",value:function(){return this.value}}])&&F(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}(),x=a(567),D=a(700),N=a(408);return i})()));
|
|
2
|
+
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("react"),require("react-native"),require("@emotion/styled")):"function"==typeof define&&define.amd?define("creactive",["react","react-native","@emotion/styled"],o):"object"==typeof exports?exports.creactive=o(require("react"),require("react-native"),require("@emotion/styled")):e.creactive=o(e.react,e["react-native"],e["@emotion/styled"])}(this,((e,o,r)=>(()=>{"use strict";var n={123:(e,o,r)=>{function n(e){return n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},n(e)}function t(e,o,r){return(o=function(e){var o=function(e){if("object"!=n(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=n(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==n(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}r.d(o,{CN:()=>C,th:()=>F,F5:()=>_,TI:()=>R,Q4:()=>T,mg:()=>A,Vc:()=>h,MD:()=>v,wG:()=>y,uC:()=>l,Oo:()=>u,t2:()=>c,s_:()=>a,kq:()=>i,jE:()=>s,lo:()=>N,uY:()=>I,VR:()=>q,b9:()=>M,zt:()=>V,vo:()=>H,o5:()=>j,nJ:()=>P,Ie:()=>x,CD:()=>U,I1:()=>O,FI:()=>z,wj:()=>k,JT:()=>D,TL:()=>G,co:()=>J,SQ:()=>$});var a=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({}),i=t(t(t({},a.SM,"borderWidthBaseSM"),a.MD,"borderWidthBaseMD"),a.LG,"borderWidthBaseLG"),s=t(t(t({},a.SM,"borderWidthBaseSM"),a.MD,"borderWidthBaseMD"),a.LG,"borderWidthBaseLG"),l=function(e){return e[e.XS=0]="XS",e[e.SM=1]="SM",e[e.MD=2]="MD",e[e.LG=3]="LG",e[e.XL=4]="XL",e[e.MAX=5]="MAX",e}({}),u=t(t(t(t(t({},l.XS,"borderRadiusBaseXS"),l.SM,"borderRadiusBaseSM"),l.MD,"borderRadiusBaseMD"),l.LG,"borderRadiusBaseLG"),l.XL,"borderRadiusBaseXL"),c=t(t(t(t(t({},l.XS,"borderRadiusBaseXS"),l.SM,"borderRadiusBaseSM"),l.MD,"borderRadiusBaseMD"),l.LG,"borderRadiusBaseLG"),l.XL,"borderRadiusBaseXL");function B(e){return B="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},B(e)}function g(e,o,r){return(o=function(e){var o=function(e){if("object"!=B(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=B(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==B(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var d,f,S,p,L,m,X,b,E,h=function(e){return e[e.BASE_100=0]="BASE_100",e[e.BASE_200=1]="BASE_200",e[e.BASE_300=2]="BASE_300",e[e.BASE_400=3]="BASE_400",e[e.BASE_500=4]="BASE_500",e[e.BASE_600=5]="BASE_600",e[e.BASE_700=6]="BASE_700",e[e.BASE_800=7]="BASE_800",e[e.BASE_900=8]="BASE_900",e}({}),v=g(g(g(g(g(g(g(g(g({},h.BASE_100,"colorBorderBase100"),h.BASE_200,"colorBorderBase200"),h.BASE_300,"colorBorderBase300"),h.BASE_400,"colorBorderBase400"),h.BASE_500,"colorBorderBase500"),h.BASE_600,"colorBorderBase600"),h.BASE_700,"colorBorderBase700"),h.BASE_800,"colorBorderBase800"),h.BASE_900,"colorBorderBase900"),y=g(g(g(g(g(g(g(g(g({},h.BASE_100,"colorBorderBase100"),h.BASE_200,"colorBorderBase200"),h.BASE_300,"colorBorderBase300"),h.BASE_400,"colorBorderBase400"),h.BASE_500,"colorBorderBase500"),h.BASE_600,"colorBorderBase600"),h.BASE_700,"colorBorderBase700"),h.BASE_800,"colorBorderBase800"),h.BASE_900,"colorBorderBase900"),R=function(e){return e[e.BASE_100=0]="BASE_100",e[e.BASE_200=1]="BASE_200",e[e.BASE_300=2]="BASE_300",e[e.BASE_400=3]="BASE_400",e[e.BASE_500=4]="BASE_500",e[e.BASE_600=5]="BASE_600",e[e.BASE_700=6]="BASE_700",e[e.BASE_800=7]="BASE_800",e[e.BASE_900=8]="BASE_900",e}({}),T=g(g(g(g(g(g(g(g(g({},R.BASE_100,"colorBackgroundBase100"),R.BASE_200,"colorBackgroundBase200"),R.BASE_300,"colorBackgroundBase300"),R.BASE_400,"colorBackgroundBase400"),R.BASE_500,"colorBackgroundBase500"),R.BASE_600,"colorBackgroundBase600"),R.BASE_700,"colorBackgroundBase700"),R.BASE_800,"colorBackgroundBase800"),R.BASE_900,"colorBackgroundBase900"),A=g(g(g(g(g(g(g(g(g({},R.BASE_100,"colorBackgroundBase100"),R.BASE_200,"colorBackgroundBase200"),R.BASE_300,"colorBackgroundBase300"),R.BASE_400,"colorBackgroundBase400"),R.BASE_500,"colorBackgroundBase500"),R.BASE_600,"colorBackgroundBase600"),R.BASE_700,"colorBackgroundBase700"),R.BASE_800,"colorBackgroundBase800"),R.BASE_900,"colorBackgroundBase900"),I=function(e){return e[e.COLUMN=0]="COLUMN",e[e.ROW=1]="ROW",e}({}),M=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.SPACE_BETWEEN=3]="SPACE_BETWEEN",e[e.SPACE_AROUND=4]="SPACE_AROUND",e[e.SPACE_EVENLY=5]="SPACE_EVENLY",e}({}),F=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.BASELINE=4]="BASELINE",e}({}),_=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.BASELINE=4]="BASELINE",e}({}),C=function(e){return e[e.FLEX_START=0]="FLEX_START",e[e.FLEX_END=1]="FLEX_END",e[e.CENTER=2]="CENTER",e[e.STRETCH=3]="STRETCH",e[e.SPACE_BETWEEN=4]="SPACE_BETWEEN",e[e.SPACE_AROUND=5]="SPACE_AROUND",e}({}),x=function(e){return e[e.VISIBLE=0]="VISIBLE",e[e.HIDDEN=1]="HIDDEN",e}({}),D=function(e){return e[e.RELATIVE=0]="RELATIVE",e[e.ABSOLUTE=1]="ABSOLUTE",e}({}),N=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({});function w(e){return w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function W(e,o,r){return(o=function(e){var o=function(e){if("object"!=w(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=w(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==w(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var G=function(e){return e[e.X2S=0]="X2S",e[e.XS=1]="XS",e[e.SM=2]="SM",e[e.MD=3]="MD",e[e.LG=4]="LG",e[e.XL=5]="XL",e[e.X2L=6]="X2L",e[e.X3L=7]="X3L",e[e.X4L=8]="X4L",e[e.X5L=9]="X5L",e[e.X6L=10]="X6L",e[e.X7L=11]="X7L",e}({}),P=(W(W(W(W(W(W(W(W(W(W(d={},G.X2S,"marginTopBaseX2S"),G.XS,"marginTopBaseXS"),G.SM,"marginTopBaseSM"),G.MD,"marginTopBaseMD"),G.LG,"marginTopBaseLG"),G.XL,"marginTopBaseXL"),G.X2L,"marginTopBaseX2L"),G.X3L,"marginTopBaseX3L"),G.X4L,"marginTopBaseX4L"),G.X5L,"marginTopBaseX5L"),W(W(d,G.X6L,"marginTopBaseX6L"),G.X7L,"marginTopBaseX7L")),k=(W(W(W(W(W(W(W(W(W(W(f={},G.X2S,"paddingTopBaseX2S"),G.XS,"paddingTopBaseXS"),G.SM,"paddingTopBaseSM"),G.MD,"paddingTopBaseMD"),G.LG,"paddingTopBaseLG"),G.XL,"paddingTopBaseXL"),G.X2L,"paddingTopBaseX2L"),G.X3L,"paddingTopBaseX3L"),G.X4L,"paddingTopBaseX4L"),G.X5L,"paddingTopBaseX5L"),W(W(f,G.X6L,"paddingTopBaseX6L"),G.X7L,"paddingTopBaseX7L")),H=(W(W(W(W(W(W(W(W(W(W(S={},G.X2S,"marginLeftBaseX2S"),G.XS,"marginLeftBaseXS"),G.SM,"marginLeftBaseSM"),G.MD,"marginLeftBaseMD"),G.LG,"marginLeftBaseLG"),G.XL,"marginLeftBaseXL"),G.X2L,"marginLeftBaseX2L"),G.X3L,"marginLeftBaseX3L"),G.X4L,"marginLeftBaseX4L"),G.X5L,"marginLeftBaseX5L"),W(W(S,G.X6L,"marginLeftBaseX6L"),G.X7L,"marginLeftBaseX7L")),O=(W(W(W(W(W(W(W(W(W(W(p={},G.X2S,"paddingLeftBaseX2S"),G.XS,"paddingLeftBaseXS"),G.SM,"paddingLeftBaseSM"),G.MD,"paddingLeftBaseMD"),G.LG,"paddingLeftBaseLG"),G.XL,"paddingLeftBaseXL"),G.X2L,"paddingLeftBaseX2L"),G.X3L,"paddingLeftBaseX3L"),G.X4L,"paddingLeftBaseX4L"),G.X5L,"paddingLeftBaseX5L"),W(W(p,G.X6L,"paddingLeftBaseX6L"),G.X7L,"paddingLeftBaseX7L")),j=(W(W(W(W(W(W(W(W(W(W(L={},G.X2S,"marginRightBaseX2S"),G.XS,"marginRightBaseXS"),G.SM,"marginRightBaseSM"),G.MD,"marginRightBaseMD"),G.LG,"marginRightBaseLG"),G.XL,"marginRightBaseXL"),G.X2L,"marginRightBaseX2L"),G.X3L,"marginRightBaseX3L"),G.X4L,"marginRightBaseX4L"),G.X5L,"marginRightBaseX5L"),W(W(L,G.X6L,"marginRightBaseX6L"),G.X7L,"marginRightBaseX7L")),z=(W(W(W(W(W(W(W(W(W(W(m={},G.X2S,"paddingRightBaseX2S"),G.XS,"paddingRightBaseXS"),G.SM,"paddingRightBaseSM"),G.MD,"paddingRightBaseMD"),G.LG,"paddingRightBaseLG"),G.XL,"paddingRightBaseXL"),G.X2L,"paddingRightBaseX2L"),G.X3L,"paddingRightBaseX3L"),G.X4L,"paddingRightBaseX4L"),G.X5L,"paddingRightBaseX5L"),W(W(m,G.X6L,"paddingRightBaseX6L"),G.X7L,"paddingRightBaseX7L")),V=(W(W(W(W(W(W(W(W(W(W(X={},G.X2S,"marginBottomBaseX2S"),G.XS,"marginBottomBaseXS"),G.SM,"marginBottomBaseSM"),G.MD,"marginBottomBaseMD"),G.LG,"marginBottomBaseLG"),G.XL,"marginBottomBaseXL"),G.X2L,"marginBottomBaseX2L"),G.X3L,"marginBottomBaseX3L"),G.X4L,"marginBottomBaseX4L"),G.X5L,"marginBottomBaseX5L"),W(W(X,G.X6L,"marginBottomBaseX6L"),G.X7L,"marginBottomBaseX7L")),U=(W(W(W(W(W(W(W(W(W(W(b={},G.X2S,"paddingBottomBaseX2S"),G.XS,"paddingBottomBaseXS"),G.SM,"paddingBottomBaseSM"),G.MD,"paddingBottomBaseMD"),G.LG,"paddingBottomBaseLG"),G.XL,"paddingBottomBaseXL"),G.X2L,"paddingBottomBaseX2L"),G.X3L,"paddingBottomBaseX3L"),G.X4L,"paddingBottomBaseX4L"),G.X5L,"paddingBottomBaseX5L"),W(W(b,G.X6L,"paddingBottomBaseX6L"),G.X7L,"paddingBottomBaseX7L")),J=(W(W(W(W(W(W(W(W(W(W(E={},G.X2S,"spacingBaseX2S"),G.XS,"spacingBaseXS"),G.SM,"spacingBaseSM"),G.MD,"spacingBaseMD"),G.LG,"spacingBaseLG"),G.XL,"spacingBaseXL"),G.X2L,"spacingBaseX2L"),G.X3L,"spacingBaseX3L"),G.X4L,"spacingBaseX4L"),G.X5L,"spacingBaseX5L"),W(W(E,G.X6L,"spacingBaseX6L"),G.X7L,"spacingBaseX7L"));function Y(e){return Y="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},Y(e)}function K(e,o,r){return(o=function(e){var o=function(e){if("object"!=Y(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=Y(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==Y(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var $=function(e){return e[e.DIV=0]="DIV",e[e.FIGURE=1]="FIGURE",e[e.FIGCAPTION=2]="FIGCAPTION",e[e.ARTICLE=3]="ARTICLE",e[e.SECTION=4]="SECTION",e[e.HEADER=5]="HEADER",e[e.MAIN=6]="MAIN",e[e.FOOTER=7]="FOOTER",e}({}),q=K(K(K(K(K(K(K(K({},$.DIV,"div"),$.FIGURE,"figure"),$.FIGCAPTION,"figcaption"),$.ARTICLE,"article"),$.SECTION,"section"),$.HEADER,"header"),$.MAIN,"main"),$.FOOTER,"footer")},294:(e,o,r)=>{r.d(o,{GK:()=>M,lF:()=>v,r1:()=>T,vd:()=>g.vd,M4:()=>g.M4,TY:()=>g.TY,v5:()=>B,UI:()=>c,ud:()=>s,P6:()=>l,ev:()=>O.e,kP:()=>L,VW:()=>b,vD:()=>$,hX:()=>U,w7:()=>Y,Vf:()=>z,X6:()=>F,S:()=>N,Gd:()=>q,mu:()=>J,XV:()=>K,we:()=>V,xT:()=>k,bW:()=>H,FK:()=>j,g$:()=>Q});var n=r(695),t=r(909),a=r(389),i=r(123),s=function(e){return(0,t.J)()[i.kq[e]]},l=function(e){var o;return null!==(o=(0,n.wR)()[i.jE[e]])&&void 0!==o?o:0},u=a.StyleSheet.create({borderRadiusMax:{borderRadius:"50%"}}),c=function(e){var o=(0,t.J)();return e===i.uC.MAX?u.borderRadiusMax:o[i.Oo[e]]},B=function(e){var o=(0,n.wR)();if(void 0!==e)return e===i.uC.MAX?"50%":"".concat(o[i.t2[e]],"px")},g=r(383);function d(e){return d="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},d(e)}function f(e,o,r){return(o=function(e){var o=function(e){if("object"!=d(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=d(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==d(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var S=a.StyleSheet.create({flexDirectionColumn:{flexDirection:"column"},flexDirectionRow:{flexDirection:"row"}}),p=f(f({},i.uY.COLUMN,S.flexDirectionColumn),i.uY.ROW,S.flexDirectionRow),L=function(e){return p[e]},m=a.StyleSheet.create({justifuContentFlexStart:{justifyContent:"flex-start"},justifuContentFlexEnd:{justifyContent:"flex-end"},justifuContentCenter:{justifyContent:"center"},justifuContentSpaceBetween:{justifyContent:"space-between"},justifuContentSpaceAround:{justifyContent:"space-around"},justifuContentSpaceEvenly:{justifyContent:"space-evenly"}}),X=f(f(f(f(f(f({},i.b9.FLEX_START,m.justifuContentFlexStart),i.b9.FLEX_END,m.justifuContentFlexEnd),i.b9.CENTER,m.justifuContentCenter),i.b9.SPACE_BETWEEN,m.justifuContentSpaceBetween),i.b9.SPACE_AROUND,m.justifuContentSpaceAround),i.b9.SPACE_EVENLY,m.justifuContentSpaceEvenly),b=function(e){return X[e]},E=a.StyleSheet.create({alignItemsFlexStart:{alignItems:"flex-start"},alignItemsFlexEnd:{alignItems:"flex-end"},alignItemsCenter:{alignItems:"center"},alignItemsStretch:{alignItems:"stretch"},alignItemsBaseline:{alignItems:"baseline"}}),h=f(f(f(f(f({},i.th.FLEX_START,E.alignItemsFlexStart),i.th.FLEX_END,E.alignItemsFlexEnd),i.th.CENTER,E.alignItemsCenter),i.th.STRETCH,E.alignItemsStretch),i.th.BASELINE,E.alignItemsBaseline),v=function(e){return h[e]},y=a.StyleSheet.create({alignSelfFlexStart:{alignSelf:"flex-start"},alignSelfFlexEnd:{alignSelf:"flex-end"},alignSelfCenter:{alignSelf:"center"},alignSelfStretch:{alignSelf:"stretch"},alignSelfBaseline:{alignSelf:"baseline"}}),R=f(f(f(f(f({},i.F5.FLEX_START,y.alignSelfFlexStart),i.F5.FLEX_END,y.alignSelfFlexEnd),i.F5.CENTER,y.alignSelfCenter),i.F5.STRETCH,y.alignSelfStretch),i.F5.BASELINE,y.alignSelfBaseline),T=function(e){return R[e]},A=a.StyleSheet.create({alignContentFlexStart:{alignContent:"flex-start"},alignContentFlexEnd:{alignContent:"flex-end"},alignContentCenter:{alignContent:"center"},alignContentStretch:{alignContent:"stretch"},alignContentSpaceBetween:{alignContent:"space-between"},alignContentSpaceAround:{alignContent:"space-around"},valignContentSpaceEvenly:{alignContent:"space-evenly"}}),I=f(f(f(f(f(f({},i.CN.FLEX_START,A.alignContentFlexStart),i.CN.FLEX_END,A.alignContentFlexEnd),i.CN.CENTER,A.alignContentCenter),i.CN.STRETCH,A.alignContentStretch),i.CN.SPACE_BETWEEN,A.alignContentSpaceBetween),i.CN.SPACE_AROUND,A.alignContentSpaceAround),M=function(e){return I[e]},F=function(e){return null==e?void 0:e.toValue()};function _(e){return _="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},_(e)}function C(e,o,r){return(o=function(e){var o=function(e){if("object"!=_(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=_(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==_(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var x=a.StyleSheet.create({overflowVisible:{overflow:"visible"},overflowHidden:{overflow:"hidden"}}),D=C(C({},i.Ie.VISIBLE,x.overflowVisible),i.Ie.HIDDEN,x.overflowHidden),N=function(e){return D[e]};function w(e){return w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},w(e)}function W(e,o,r){return(o=function(e){var o=function(e){if("object"!=w(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=w(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==w(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var G=a.StyleSheet.create({positionRelative:{position:"relative"},positionAbsolute:{position:"absolute"}}),P=W(W({},i.JT.RELATIVE,G.positionRelative),i.JT.ABSOLUTE,G.positionAbsolute),k=function(e){return P[e]},H=function(e){return(null==e?void 0:e.toValue)&&e.toValue()},O=r(374),j=function(e){return null==e?void 0:e.toValue()},z=function(e){return(0,t.J)()[i.nJ[e]]},V=function(e){return(0,t.J)()[i.wj[e]]},U=function(e){return(0,t.J)()[i.vo[e]]},J=function(e){return(0,t.J)()[i.I1[e]]},Y=function(e){return(0,t.J)()[i.o5[e]]},K=function(e){return(0,t.J)()[i.FI[e]]},$=function(e){return(0,t.J)()[i.zt[e]]},q=function(e){return(0,t.J)()[i.CD[e]]},Q=function(e){var o;return null!==(o=(0,n.wR)()[i.co[e]])&&void 0!==o?o:0}},383:(e,o,r)=>{r.d(o,{M4:()=>s,QR:()=>u,TY:()=>i,vd:()=>l});var n=r(695),t=r(909),a=r(123),i=function(e){return(0,t.J)()[a.MD[e]]},s=function(e){return(0,n.wR)()[a.wG[e]]},l=function(e){var o=(0,t.J)();if(void 0!==e)return e in a.TI?o[a.Q4[e]]:{backgroundColor:e}},u=function(e){var o=(0,n.wR)();if(void 0!==e)return e in a.TI?o[a.mg[e]]:e}},374:(e,o,r)=>{r.d(o,{P:()=>B,e:()=>l});var n=r(389),t=r(123);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function i(e,o,r){return(o=function(e){var o=function(e){if("object"!=a(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==a(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var s=i(i(i({},t.lo.SM,"0 1px 3px 0 rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1)"),t.lo.MD,"0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1)"),t.lo.LG,"0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1)"),l=function(e){var o;return null!==(o=s[e])&&void 0!==o?o:void 0},u=n.StyleSheet.create({boxShadowSM:{boxShadow:s[t.lo.SM]},boxShadowMD:{boxShadow:s[t.lo.MD]},boxShadowLG:{boxShadow:s[t.lo.LG]}}),c=i(i(i({},t.lo.SM,u.boxShadowSM),t.lo.MD,u.boxShadowMD),t.lo.LG,u.boxShadowLG),B=function(e){var o;return null!==(o=c[e])&&void 0!==o?o:void 0}},689:(e,o,r)=>{r.d(o,{A:()=>c});var n=r(389),t=r(123),a=r(294),i=r(374),s=r(848),l=n.StyleSheet.create({default:{display:"flex",margin:0,padding:0,zIndex:0,position:"relative",listStyle:"none",borderWidth:0,borderStyle:"solid",textDecoration:"none",boxSizing:"border-box"}}),u=function(e){var o=e.position,r=void 0===o?t.JT.RELATIVE:o,u=e.top,c=e.left,B=e.right,g=e.bottom,d=e.opacity,f=e.overflow,S=void 0===f?t.Ie.VISIBLE:f,p=e.flexDirection,L=void 0===p?t.uY.COLUMN:p,m=e.justifyContent,X=void 0===m?t.b9.FLEX_START:m,b=e.alignItems,E=void 0===b?t.th.STRETCH:b,h=e.alignSelf,v=e.alignContent,y=void 0===v?t.CN.FLEX_START:v,R=e.marginTop,T=e.paddingTop,A=e.marginLeft,I=e.paddingLeft,M=e.marginRight,F=e.paddingRight,_=e.marginBottom,C=e.paddingBottom,x=e.minWidth,D=e.width,N=e.maxWidth,w=e.minHeight,W=e.height,G=e.maxHeight,P=e.boxShadow,k=e.borderColor,H=e.borderWidth,O=e.borderRadius,j=e.backgroundColor,z=e.children;return(0,s.jsx)(n.View,{style:[l.default,(0,a.xT)(r),{top:(0,a.bW)(u),left:(0,a.bW)(c),right:(0,a.bW)(B),bottom:(0,a.bW)(g)},{opacity:(0,a.X6)(d)},(0,a.S)(S),(0,a.kP)(L),(0,a.VW)(X),(0,a.lF)(E),(0,a.r1)(h),(0,a.GK)(y),(0,a.Vf)(R),(0,a.we)(T),(0,a.hX)(A),(0,a.mu)(I),(0,a.w7)(M),(0,a.XV)(F),(0,a.vD)(_),(0,a.Gd)(C),{minWidth:(0,a.FK)(x),width:(0,a.FK)(D),maxWidth:(0,a.FK)(N),minHeight:(0,a.FK)(w),height:(0,a.FK)(W),maxHeight:(0,a.FK)(G)},(0,i.P)(P),(0,a.TY)(k),(0,a.ud)(H),(0,a.UI)(O),(0,a.vd)(j)],children:z})};u.Tag=t.SQ,u.Position=t.JT,u.Overflow=t.Ie,u.FlexDirection=t.uY,u.JustifyContent=t.b9,u.AlignItems=t.th,u.AlignSelf=t.F5,u.AlignContent=t.CN,u.Spacing=t.TL,u.BoxShadow=t.lo,u.BorderColor=t.Vc,u.BorderWidth=t.s_,u.BorderRadius=t.uC,u.BackgroundColor=t.TI;const c=u},741:(e,o,r)=>{r.d(o,{A:()=>v});var n,t=r(729),a=r.n(t),i=r(123);function s(e){return s="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},s(e)}function l(e,o,r){return(o=function(e){var o=function(e){if("object"!=s(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=s(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==s(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var u,c,B=l(l({},i.JT.RELATIVE,"relative"),i.JT.ABSOLUTE,"absolute"),g=l(l({},i.Ie.VISIBLE,"visible"),i.Ie.HIDDEN,"hidden"),d=l(l({},i.uY.COLUMN,"column"),i.uY.ROW,"row"),f=l(l(l(l(l(l({},i.b9.FLEX_START,"flex-start"),i.b9.FLEX_END,"flex-end"),i.b9.CENTER,"center"),i.b9.SPACE_BETWEEN,"space-between"),i.b9.SPACE_AROUND,"space-around"),i.b9.SPACE_EVENLY,"space-evenly"),S=l(l(l(l(l({},i.th.FLEX_START,"flex-start"),i.th.FLEX_END,"flex-end"),i.th.STRETCH,"stretch"),i.th.CENTER,"center"),i.th.BASELINE,"baseline"),p=l(l(l(l(l({},i.F5.FLEX_START,"flex-start"),i.F5.FLEX_END,"flex-end"),i.F5.CENTER,"center"),i.F5.STRETCH,"stretch"),i.F5.BASELINE,"baseline"),L=l(l(l(l(l(l({},i.CN.FLEX_START,"flex-start"),i.CN.FLEX_END,"flex-end"),i.CN.CENTER,"center"),i.CN.STRETCH,"stretch"),i.CN.SPACE_BETWEEN,"space-between"),i.CN.SPACE_AROUND,"space-around"),m=a().div(n||(u=["\n display: flex;\n margin: 0;\n padding: 0;\n z-index: 0;\n position: relative;\n list-style: none;\n border-style: solid;\n text-decoration: none;\n box-sizing: border-box;\n position: ",";\n top: ",";\n left: ",";\n right: ",";\n bottom: ",";\n opacity: ",";\n overflow: ",";\n flex-direction: ",";\n justify-content: ",";\n align-items: ",";\n align-self: ",";\n align-content: ",";\n margin-top: ","px;\n padding-top: ","px;\n margin-left: ","px;\n padding-left: ","px;\n margin-right: ","px;\n padding-right: ","px;\n margin-bottom: ","px;\n padding-bottom: ","px;\n min-width: ",";\n width: ",";\n max-width: ",";\n min-height: ",";\n height: ",";\n max-height: ",";\n box-shadow: ",";\n border-color: ",";\n border-width: ","px;\n border-radius: ",";\n background-color: ",";\n"],c||(c=u.slice(0)),n=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(c)}}))),(function(e){var o=e.position;return B[o]}),(function(e){return e.top}),(function(e){return e.left}),(function(e){return e.right}),(function(e){return e.bottom}),(function(e){return e.opacity}),(function(e){var o=e.overflow;return g[o]}),(function(e){var o=e.flexDirection;return d[o]}),(function(e){var o=e.justifyContent;return f[o]}),(function(e){var o=e.alignItems;return S[o]}),(function(e){var o=e.alignSelf;return p[o]}),(function(e){var o=e.alignContent;return L[o]}),(function(e){return e.marginTop}),(function(e){return e.paddingTop}),(function(e){return e.marginLeft}),(function(e){return e.paddingLeft}),(function(e){return e.marginRight}),(function(e){return e.paddingRight}),(function(e){return e.marginBottom}),(function(e){return e.paddingBottom}),(function(e){return e.minWidth}),(function(e){return e.width}),(function(e){return e.maxWidth}),(function(e){return e.minHeight}),(function(e){return e.height}),(function(e){return e.maxHeight}),(function(e){return e.boxShadow}),(function(e){return e.borderColor}),(function(e){return e.borderWidth}),(function(e){return e.borderRadius}),(function(e){return e.backgroundColor})),X=r(294),b=r(383),E=r(848),h=function(e){var o=e.tag,r=void 0===o?i.SQ.DIV:o,n=e.position,t=void 0===n?i.JT.RELATIVE:n,a=e.top,s=e.left,l=e.right,u=e.bottom,c=e.opacity,B=e.overflow,g=void 0===B?i.Ie.VISIBLE:B,d=e.flexDirection,f=void 0===d?i.uY.COLUMN:d,S=e.justifyContent,p=void 0===S?i.b9.FLEX_START:S,L=e.alignItems,h=void 0===L?i.th.STRETCH:L,v=e.alignSelf,y=e.alignContent,R=void 0===y?i.CN.FLEX_START:y,T=e.marginTop,A=e.paddingTop,I=e.marginLeft,M=e.paddingLeft,F=e.marginRight,_=e.paddingRight,C=e.marginBottom,x=e.paddingBottom,D=e.minWidth,N=e.width,w=e.maxWidth,W=e.minHeight,G=e.height,P=e.maxHeight,k=e.boxShadow,H=e.borderColor,O=e.borderWidth,j=e.borderRadius,z=e.backgroundColor,V=e.children;return(0,E.jsx)(m,{as:i.VR[r],position:t,top:(0,X.bW)(a),left:(0,X.bW)(s),right:(0,X.bW)(l),bottom:(0,X.bW)(u),opacity:(0,X.X6)(c),overflow:g,flexDirection:f,justifyContent:p,alignItems:h,alignSelf:v,alignContent:R,marginTop:(0,X.g$)(T),paddingTop:(0,X.g$)(A),marginLeft:(0,X.g$)(I),paddingLeft:(0,X.g$)(M),marginRight:(0,X.g$)(F),paddingRight:(0,X.g$)(_),marginBottom:(0,X.g$)(C),paddingBottom:(0,X.g$)(x),minWidth:(0,X.FK)(D),width:(0,X.FK)(N),maxWidth:(0,X.FK)(w),minHeight:(0,X.FK)(W),height:(0,X.FK)(G),maxHeight:(0,X.FK)(P),boxShadow:(0,X.ev)(k),borderColor:(0,X.M4)(H),borderWidth:(0,X.P6)(O),borderRadius:(0,X.v5)(j),backgroundColor:(0,b.QR)(z),children:V})};h.Tag=i.SQ,h.Position=i.JT,h.Overflow=i.Ie,h.FlexDirection=i.uY,h.JustifyContent=i.b9,h.AlignItems=i.th,h.AlignSelf=i.F5,h.AlignContent=i.CN,h.Spacing=i.TL,h.BoxShadow=i.lo,h.BorderColor=i.Vc,h.BorderWidth=i.s_,h.BorderRadius=i.uC,h.BackgroundColor=i.TI;const v=h},316:(e,o,r)=>{r.d(o,{f:()=>n});var n=function(e){return e[e.PIXEL=0]="PIXEL",e[e.PERCENT=1]="PERCENT",e}({})},841:(e,o,r)=>{r.d(o,{D:()=>t,l:()=>a});var n=r(567),t=new n.y(100,n.y.Dimension.PERCENT),a=new n.y(0,n.y.Dimension.PIXEL)},315:(e,o,r)=>{r.d(o,{Y:()=>t});var n=r(700),t=new n.o(100,n.o.Dimension.PERCENT)},695:(e,o,r)=>{r.d(o,{wR:()=>n.d}),r(410);var n=r(84)},410:(e,o,r)=>{r.d(o,{$U:()=>S,tZ:()=>l,$c:()=>u});var n=r(155),t=r(389),a=function(e){return e[e.MD=0]="MD",e[e.LG=1]="LG",e[e.XL=2]="XL",e}({}),i=r(848),s=(0,n.createContext)({}),l=function(e){var o=e.breakpointMD,r=e.breakpointLG,l=e.breakpointXL,u=e.children,c=function(e,o,r){var i=(0,t.useWindowDimensions)().width;return(0,n.useMemo)((function(){return i>=r?a.XL:i>=o?a.LG:i>=e?a.MD:void 0}),[i>=r,i>=o,i>=e])}(null!=o?o:768,null!=r?r:1024,null!=l?l:1280),B=(0,n.useMemo)((function(){return{breakpoint:c}}),[c]);return(0,i.jsx)(s.Provider,{value:B,children:(0,i.jsx)(L,{children:u})})},u=function(){return(0,n.useContext)(s)};function c(e){return c="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},c(e)}function B(e,o){(null==o||o>e.length)&&(o=e.length);for(var r=0,n=Array(o);r<o;r++)n[r]=e[r];return n}function g(e,o,r){return(o=function(e){var o=function(e){if("object"!=c(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=c(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==c(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var d=g(g(g({},a.MD,1),a.LG,2),a.XL,3),f=function(e,o){return d[e]>d[o]},S=t.Platform.select({web:function(e){var o,r,t=e.isDefault,a=e.isOtherwise,i=e.breakpoint,s=e.children,l=u(),c=(o=(0,n.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(o)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,a,i,s=[],l=!0,u=!1;try{if(a=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=a.call(r)).done)&&(s.push(n.value),s.length!==o);l=!0);}catch(e){u=!0,t=e}finally{try{if(!l&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(u)throw t}}return s}}(o,r)||function(e,o){if(e){if("string"==typeof e)return B(e,o);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?B(e,o):void 0}}(o,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),g=c[0],d=c[1];if((0,n.useEffect)((function(){d(!0)}),[]),g){if(t&&void 0===l.breakpoint)return s;if(l.breakpoint===i)return s;if(a&&f(l.breakpoint,i))return s}else if(t)return s},default:function(e){var o=e.isDefault,r=e.isOtherwise,n=e.breakpoint,t=e.children,a=u();return o&&void 0===a.breakpoint||a.breakpoint===n||r&&f(a.breakpoint,n)?t:void 0}});function p(e,o){(null==o||o>e.length)&&(o=e.length);for(var r=0,n=Array(o);r<o;r++)n[r]=e[r];return n}S.Breakpoint=a;var L=t.Platform.select({web:function(e){var o,r,t=e.children,a=(0,n.useRef)(),s=(o=(0,n.useState)(!1),r=2,function(e){if(Array.isArray(e))return e}(o)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,a,i,s=[],l=!0,u=!1;try{if(a=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=a.call(r)).done)&&(s.push(n.value),s.length!==o);l=!0);}catch(e){u=!0,t=e}finally{try{if(!l&&null!=r.return&&(i=r.return(),Object(i)!==i))return}finally{if(u)throw t}}return s}}(o,r)||function(e,o){if(e){if("string"==typeof e)return p(e,o);var r={}.toString.call(e).slice(8,-1);return"Object"===r&&e.constructor&&(r=e.constructor.name),"Map"===r||"Set"===r?Array.from(e):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?p(e,o):void 0}}(o,r)||function(){throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()),l=s[0],u=s[1];(0,n.useEffect)((function(){u(!0)}),[]);var c=(0,n.useMemo)((function(){return l||"undefined"==typeof window||"undefined"==typeof document?{display:"flex",flexGrow:1,flexShrink:1,flexBasis:"100%",flexDirection:"column"}:{display:"none",flexGrow:1,flexShrink:1,flexBasis:"100%",flexDirection:"column"}}),[l]);return(0,i.jsxs)("div",{ref:a,style:c,suppressHydrationWarning:!0,children:[(0,i.jsx)("script",{dangerouslySetInnerHTML:{__html:'document.currentScript.parentElement.style.display="none"'}}),t]})},default:function(e){return e.children}})},84:(e,o,r)=>{r.d(o,{w:()=>j,d:()=>z}),r(316),r(841),r(315);var n="rgb(24,24,27)",t="rgb(39,39,42)",a="rgb(63,63,70)",i="rgb(82,82,92)",s="rgb(113,113,123)",l="rgb(159,159,169)",u="rgb(212,212,216)",c="rgb(228,228,231)",B="rgb(244,244,245)",g=["ui-sans-serif","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto","Helvetica","Arial","sans-serif"].join(","),d=r(155),f="rgb(198,198,202)",S="rgb(212,212,216)",p="rgb(216,216,228)",L="rgb(218,218,234)",m="rgb(224,224,238)",X="rgb(244,244,245)",b="rgb(247,247,249)",E="rgb(249,249,250)",h="rgb(254,254,255)",v="rgb(253,252,254)",y="rgb(249,249,250)",R="rgb(247,247,249)",T="rgb(244,244,245)",A="rgb(224,224,238)",I="rgb(218,218,234)",M="rgb(216,216,228)",F="rgb(212,212,216)",_="rgb(198,198,202)",C="rgb(102,102,116)",x="rgb(82,82,92)",D="rgb(74,74,88)",N="rgb(63,63,70)",w="rgb(49,49,56)",W="rgb(39,39,42)",G="rgb(30,30,34)",P="rgb(24,24,27)",k="rgb(6,6,14)",H=r(848),O=(0,d.createContext)({colorBackgroundBase100:f,colorBackgroundBase200:S,colorBackgroundBase300:p,colorBackgroundBase400:L,colorBackgroundBase500:m,colorBackgroundBase600:X,colorBackgroundBase700:b,colorBackgroundBase800:E,colorBackgroundBase900:h,colorBorderBase100:v,colorBorderBase200:y,colorBorderBase300:R,colorBorderBase400:T,colorBorderBase500:A,colorBorderBase600:I,colorBorderBase700:M,colorBorderBase800:F,colorBorderBase900:_,colorForegroundBase100:C,colorForegroundBase200:x,colorForegroundBase300:D,colorForegroundBase400:N,colorForegroundBase500:w,colorForegroundBase600:W,colorForegroundBase700:G,colorForegroundBase800:P,colorForegroundBase900:k,colorForegroundInverse100:n,colorForegroundInverse200:t,colorForegroundInverse300:a,colorForegroundInverse400:i,colorForegroundInverse500:s,colorForegroundInverse600:l,colorForegroundInverse700:u,colorForegroundInverse800:c,colorForegroundInverse900:B,fontFamilyBase:g,fontWeightBaseThin:100,fontWeightBaseExtraLight:200,fontWeightBaseLight:300,fontWeightBaseRegular:400,fontWeightBaseMedium:500,fontWeightBaseSemibold:600,fontWeightBaseBold:700,fontWeightBaseExtraBold:800,fontWeightBaseBlack:900,fontSizeBaseX2S:12,fontSizeBaseXS:14,fontSizeBaseSM:16,fontSizeBaseMD:18,fontSizeBaseLG:20,fontSizeBaseXL:24,fontSizeBaseX2L:30,fontSizeBaseX3L:36,fontSizeBaseX4L:48,fontSizeBaseX5L:60,lineHeightBaseNone:1,lineHeightBaseTight:1.25,lineHeightBaseSnug:1.375,lineHeightBaseNormal:1.5,lineHeightBaseRelaxed:1.625,lineHeightBaseLoose:2,spacingBaseX2S:2,spacingBaseXS:4,spacingBaseSM:6,spacingBaseMD:8,spacingBaseLG:10,spacingBaseXL:12,spacingBaseX2L:14,spacingBaseX3L:16,spacingBaseX4L:20,spacingBaseX5L:24,spacingBaseX6L:28,spacingBaseX7L:32,borderWidthBaseSM:.5,borderWidthBaseMD:1,borderWidthBaseLG:1.5,borderRadiusBaseXS:2,borderRadiusBaseSM:4,borderRadiusBaseMD:6,borderRadiusBaseLG:8,borderRadiusBaseXL:10}),j=function(e){var o=e.colorBackgroundBase100,r=e.colorBackgroundBase200,j=e.colorBackgroundBase300,z=e.colorBackgroundBase400,V=e.colorBackgroundBase500,U=e.colorBackgroundBase600,J=e.colorBackgroundBase700,Y=e.colorBackgroundBase800,K=e.colorBackgroundBase900,$=e.colorBorderBase100,q=e.colorBorderBase200,Q=e.colorBorderBase300,Z=e.colorBorderBase400,ee=e.colorBorderBase500,oe=e.colorBorderBase600,re=e.colorBorderBase700,ne=e.colorBorderBase800,te=e.colorBorderBase900,ae=e.colorForegroundBase100,ie=e.colorForegroundBase200,se=e.colorForegroundBase300,le=e.colorForegroundBase400,ue=e.colorForegroundBase500,ce=e.colorForegroundBase600,Be=e.colorForegroundBase700,ge=e.colorForegroundBase800,de=e.colorForegroundBase900,fe=e.colorForegroundInverse100,Se=e.colorForegroundInverse200,pe=e.colorForegroundInverse300,Le=e.colorForegroundInverse400,me=e.colorForegroundInverse500,Xe=e.colorForegroundInverse600,be=e.colorForegroundInverse700,Ee=e.colorForegroundInverse800,he=e.colorForegroundInverse900,ve=e.fontFamilyBase,ye=e.fontWeightBaseThin,Re=e.fontWeightBaseExtraLight,Te=e.fontWeightBaseLight,Ae=e.fontWeightBaseRegular,Ie=e.fontWeightBaseMedium,Me=e.fontWeightBaseSemibold,Fe=e.fontWeightBaseBold,_e=e.fontWeightBaseExtraBold,Ce=e.fontWeightBaseBlack,xe=e.fontSizeBaseX2S,De=e.fontSizeBaseXS,Ne=e.fontSizeBaseSM,we=e.fontSizeBaseMD,We=e.fontSizeBaseLG,Ge=e.fontSizeBaseXL,Pe=e.fontSizeBaseX2L,ke=e.fontSizeBaseX3L,He=e.fontSizeBaseX4L,Oe=e.fontSizeBaseX5L,je=e.lineHeightBaseNone,ze=e.lineHeightBaseTight,Ve=e.lineHeightBaseSnug,Ue=e.lineHeightBaseNormal,Je=e.lineHeightBaseRelaxed,Ye=e.lineHeightBaseLoose,Ke=e.spacingBaseX2S,$e=e.spacingBaseXS,qe=e.spacingBaseSM,Qe=e.spacingBaseMD,Ze=e.spacingBaseLG,eo=e.spacingBaseXL,oo=e.spacingBaseX2L,ro=e.spacingBaseX3L,no=e.spacingBaseX4L,to=e.spacingBaseX5L,ao=e.spacingBaseX6L,io=e.spacingBaseX7L,so=e.borderWidthBaseSM,lo=e.borderWidthBaseMD,uo=e.borderWidthBaseLG,co=e.borderRadiusBaseXS,Bo=e.borderRadiusBaseSM,go=e.borderRadiusBaseMD,fo=e.borderRadiusBaseLG,So=e.borderRadiusBaseXL,po=e.children,Lo=(0,d.useMemo)((function(){return{colorBackgroundBase100:null!=o?o:f,colorBackgroundBase200:null!=r?r:S,colorBackgroundBase300:null!=j?j:p,colorBackgroundBase400:null!=z?z:L,colorBackgroundBase500:null!=V?V:m,colorBackgroundBase600:null!=U?U:X,colorBackgroundBase700:null!=J?J:b,colorBackgroundBase800:null!=Y?Y:E,colorBackgroundBase900:null!=K?K:h,colorBorderBase100:null!=$?$:v,colorBorderBase200:null!=q?q:y,colorBorderBase300:null!=Q?Q:R,colorBorderBase400:null!=Z?Z:T,colorBorderBase500:null!=ee?ee:A,colorBorderBase600:null!=oe?oe:I,colorBorderBase700:null!=re?re:M,colorBorderBase800:null!=ne?ne:F,colorBorderBase900:null!=te?te:_,colorForegroundBase100:null!=ae?ae:C,colorForegroundBase200:null!=ie?ie:x,colorForegroundBase300:null!=se?se:D,colorForegroundBase400:null!=le?le:N,colorForegroundBase500:null!=ue?ue:w,colorForegroundBase600:null!=ce?ce:W,colorForegroundBase700:null!=Be?Be:G,colorForegroundBase800:null!=ge?ge:P,colorForegroundBase900:null!=de?de:k,colorForegroundInverse100:null!=fe?fe:n,colorForegroundInverse200:null!=Se?Se:t,colorForegroundInverse300:null!=pe?pe:a,colorForegroundInverse400:null!=Le?Le:i,colorForegroundInverse500:null!=me?me:s,colorForegroundInverse600:null!=Xe?Xe:l,colorForegroundInverse700:null!=be?be:u,colorForegroundInverse800:null!=Ee?Ee:c,colorForegroundInverse900:null!=he?he:B,fontFamilyBase:null!=ve?ve:g,fontWeightBaseThin:null!=ye?ye:100,fontWeightBaseExtraLight:null!=Re?Re:200,fontWeightBaseLight:null!=Te?Te:300,fontWeightBaseRegular:null!=Ae?Ae:400,fontWeightBaseMedium:null!=Ie?Ie:500,fontWeightBaseSemibold:null!=Me?Me:600,fontWeightBaseBold:null!=Fe?Fe:700,fontWeightBaseExtraBold:null!=_e?_e:800,fontWeightBaseBlack:null!=Ce?Ce:900,fontSizeBaseX2S:null!=xe?xe:12,fontSizeBaseXS:null!=De?De:14,fontSizeBaseSM:null!=Ne?Ne:16,fontSizeBaseMD:null!=we?we:18,fontSizeBaseLG:null!=We?We:20,fontSizeBaseXL:null!=Ge?Ge:24,fontSizeBaseX2L:null!=Pe?Pe:30,fontSizeBaseX3L:null!=ke?ke:36,fontSizeBaseX4L:null!=He?He:48,fontSizeBaseX5L:null!=Oe?Oe:60,lineHeightBaseNone:null!=je?je:1,lineHeightBaseTight:null!=ze?ze:1.25,lineHeightBaseSnug:null!=Ve?Ve:1.375,lineHeightBaseNormal:null!=Ue?Ue:1.5,lineHeightBaseRelaxed:null!=Je?Je:1.625,lineHeightBaseLoose:null!=Ye?Ye:2,spacingBaseX2S:null!=Ke?Ke:2,spacingBaseXS:null!=$e?$e:4,spacingBaseSM:null!=qe?qe:6,spacingBaseMD:null!=Qe?Qe:8,spacingBaseLG:null!=Ze?Ze:10,spacingBaseXL:null!=eo?eo:12,spacingBaseX2L:null!=oo?oo:14,spacingBaseX3L:null!=ro?ro:16,spacingBaseX4L:null!=no?no:20,spacingBaseX5L:null!=to?to:24,spacingBaseX6L:null!=ao?ao:28,spacingBaseX7L:null!=io?io:32,borderWidthBaseSM:null!=so?so:.5,borderWidthBaseMD:null!=lo?lo:1,borderWidthBaseLG:null!=uo?uo:1.5,borderRadiusBaseXS:null!=co?co:2,borderRadiusBaseSM:null!=Bo?Bo:4,borderRadiusBaseMD:null!=go?go:6,borderRadiusBaseLG:null!=fo?fo:8,borderRadiusBaseXL:null!=So?So:10}}),[o,r,j,z,V,U,J,Y,K,$,q,Q,Z,ee,oe,re,ne,te,ae,ie,se,le,ue,ce,Be,ge,de,fe,Se,pe,Le,me,Xe,be,Ee,he,ve,ye,Re,Te,Ae,Ie,Me,Fe,_e,Ce,xe,De,Ne,we,We,Ge,Pe,ke,He,Oe,je,ze,Ve,Ue,Je,Ye,Ke,$e,qe,Qe,Ze,eo,oo,ro,no,to,ao,io,so,lo,uo,co,Bo,go,fo,So]);return(0,H.jsx)(O.Provider,{value:Lo,children:po})},z=function(){return(0,d.useContext)(O)}},567:(e,o,r)=>{r.d(o,{y:()=>B});var n=r(316),t=r(389);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function i(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,s(n.key),n)}}function s(e){var o=function(e){if("object"!=a(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==a(o)?o:o+""}var l,u,c,B=function(){return e=function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:n.f.PIXEL;!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=o,this.dimension=r},(o=[{key:"toValue",value:function(){return this.dimension===n.f.PIXEL?t.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])&&i(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}();l=B,u="Dimension",c=n.f,(u=s(u))in l?Object.defineProperty(l,u,{value:c,enumerable:!0,configurable:!0,writable:!0}):l[u]=c},700:(e,o,r)=>{r.d(o,{o:()=>B});var n=r(316),t=r(389);function a(e){return a="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},a(e)}function i(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,s(n.key),n)}}function s(e){var o=function(e){if("object"!=a(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=a(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==a(o)?o:o+""}var l,u,c,B=function(){return e=function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:n.f.PIXEL;!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=o,this.dimension=r},(o=[{key:"toValue",value:function(){return this.dimension===n.f.PIXEL?t.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])&&i(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}();l=B,u="Dimension",c=n.f,(u=s(u))in l?Object.defineProperty(l,u,{value:c,enumerable:!0,configurable:!0,writable:!0}):l[u]=c},909:(e,o,r)=>{r.d(o,{J:()=>n.J});var n=r(408)},408:(e,o,r)=>{r.d(o,{J:()=>i});var n=r(84),t=r(155),a=r(389),i=function(){var e=(0,n.d)();return(0,t.useMemo)((function(){return a.StyleSheet.create({colorBackgroundBase100:{backgroundColor:e.colorBackgroundBase100},colorBackgroundBase200:{backgroundColor:e.colorBackgroundBase200},colorBackgroundBase300:{backgroundColor:e.colorBackgroundBase300},colorBackgroundBase400:{backgroundColor:e.colorBackgroundBase400},colorBackgroundBase500:{backgroundColor:e.colorBackgroundBase500},colorBackgroundBase600:{backgroundColor:e.colorBackgroundBase600},colorBackgroundBase700:{backgroundColor:e.colorBackgroundBase700},colorBackgroundBase800:{backgroundColor:e.colorBackgroundBase800},colorBackgroundBase900:{backgroundColor:e.colorBackgroundBase900},colorBorderBase100:{borderColor:e.colorBorderBase100},colorBorderBase200:{borderColor:e.colorBorderBase200},colorBorderBase300:{borderColor:e.colorBorderBase300},colorBorderBase400:{borderColor:e.colorBorderBase400},colorBorderBase500:{borderColor:e.colorBorderBase500},colorBorderBase600:{borderColor:e.colorBorderBase600},colorBorderBase700:{borderColor:e.colorBorderBase700},colorBorderBase800:{borderColor:e.colorBorderBase800},colorBorderBase900:{borderColor:e.colorBorderBase900},colorForegroundBase100:{color:e.colorForegroundBase100},colorForegroundBase200:{color:e.colorForegroundBase200},colorForegroundBase300:{color:e.colorForegroundBase300},colorForegroundBase400:{color:e.colorForegroundBase400},colorForegroundBase500:{color:e.colorForegroundBase500},colorForegroundBase600:{color:e.colorForegroundBase600},colorForegroundBase700:{color:e.colorForegroundBase700},colorForegroundBase800:{color:e.colorForegroundBase800},colorForegroundBase900:{color:e.colorForegroundBase900},colorForegroundInverse100:{color:e.colorForegroundInverse100},colorForegroundInverse200:{color:e.colorForegroundInverse200},colorForegroundInverse300:{color:e.colorForegroundInverse300},colorForegroundInverse400:{color:e.colorForegroundInverse400},colorForegroundInverse500:{color:e.colorForegroundInverse500},colorForegroundInverse600:{color:e.colorForegroundInverse600},colorForegroundInverse700:{color:e.colorForegroundInverse700},colorForegroundInverse800:{color:e.colorForegroundInverse800},colorForegroundInverse900:{color:e.colorForegroundInverse900},fontFamilyBase:{fontFamily:e.fontFamilyBase},fontWeightBaseThin:{fontWeight:e.fontWeightBaseThin},fontWeightBaseExtraLight:{fontWeight:e.fontWeightBaseExtraLight},fontWeightBaseLight:{fontWeight:e.fontWeightBaseLight},fontWeightBaseRegular:{fontWeight:e.fontWeightBaseRegular},fontWeightBaseMedium:{fontWeight:e.fontWeightBaseMedium},fontWeightBaseSemibold:{fontWeight:e.fontWeightBaseSemibold},fontWeightBaseBold:{fontWeight:e.fontWeightBaseBold},fontWeightBaseExtraBold:{fontWeight:e.fontWeightBaseExtraBold},fontWeightBaseBlack:{fontWeight:e.fontWeightBaseBlack},fontSizeBaseX2S:{fontSize:e.fontSizeBaseX2S},fontSizeBaseXS:{fontSize:e.fontSizeBaseXS},fontSizeBaseSM:{fontSize:e.fontSizeBaseSM},fontSizeBaseMD:{fontSize:e.fontSizeBaseMD},fontSizeBaseLG:{fontSize:e.fontSizeBaseLG},fontSizeBaseXL:{fontSize:e.fontSizeBaseXL},fontSizeBaseX2L:{fontSize:e.fontSizeBaseX2L},fontSizeBaseX3L:{fontSize:e.fontSizeBaseX3L},fontSizeBaseX4L:{fontSize:e.fontSizeBaseX4L},fontSizeBaseX5L:{fontSize:e.fontSizeBaseX5L},marginTopBaseX2S:{marginTop:e.spacingBaseX2S},paddingTopBaseX2S:{paddingTop:e.spacingBaseX2S},marginLeftBaseX2S:{marginLeft:e.spacingBaseX2S},paddingLeftBaseX2S:{paddingLeft:e.spacingBaseX2S},marginRightBaseX2S:{marginRight:e.spacingBaseX2S},paddingRightBaseX2S:{paddingRight:e.spacingBaseX2S},marginBottomBaseX2S:{marginBottom:e.spacingBaseX2S},paddingBottomBaseX2S:{paddingBottom:e.spacingBaseX2S},marginTopBaseXS:{marginTop:e.spacingBaseXS},paddingTopBaseXS:{paddingTop:e.spacingBaseXS},marginLeftBaseXS:{marginLeft:e.spacingBaseXS},paddingLeftBaseXS:{paddingLeft:e.spacingBaseXS},marginRightBaseXS:{marginRight:e.spacingBaseXS},paddingRightBaseXS:{paddingRight:e.spacingBaseXS},marginBottomBaseXS:{marginBottom:e.spacingBaseXS},paddingBottomBaseXS:{paddingBottom:e.spacingBaseXS},marginTopBaseSM:{marginTop:e.spacingBaseSM},paddingTopBaseSM:{paddingTop:e.spacingBaseSM},marginLeftBaseSM:{marginLeft:e.spacingBaseSM},paddingLeftBaseSM:{paddingLeft:e.spacingBaseSM},marginRightBaseSM:{marginRight:e.spacingBaseSM},paddingRightBaseSM:{paddingRight:e.spacingBaseSM},marginBottomBaseSM:{marginBottom:e.spacingBaseSM},paddingBottomBaseSM:{paddingBottom:e.spacingBaseSM},marginTopBaseMD:{marginTop:e.spacingBaseMD},paddingTopBaseMD:{paddingTop:e.spacingBaseMD},marginLeftBaseMD:{marginLeft:e.spacingBaseMD},paddingLeftBaseMD:{paddingLeft:e.spacingBaseMD},marginRightBaseMD:{marginRight:e.spacingBaseMD},paddingRightBaseMD:{paddingRight:e.spacingBaseMD},marginBottomBaseMD:{marginBottom:e.spacingBaseMD},paddingBottomBaseMD:{paddingBottom:e.spacingBaseMD},marginTopBaseLG:{marginTop:e.spacingBaseLG},paddingTopBaseLG:{paddingTop:e.spacingBaseLG},marginLeftBaseLG:{marginLeft:e.spacingBaseLG},paddingLeftBaseLG:{paddingLeft:e.spacingBaseLG},marginRightBaseLG:{marginRight:e.spacingBaseLG},paddingRightBaseLG:{paddingRight:e.spacingBaseLG},marginBottomBaseLG:{marginBottom:e.spacingBaseLG},paddingBottomBaseLG:{paddingBottom:e.spacingBaseLG},marginTopBaseXL:{marginTop:e.spacingBaseXL},paddingTopBaseXL:{paddingTop:e.spacingBaseXL},marginLeftBaseXL:{marginLeft:e.spacingBaseXL},paddingLeftBaseXL:{paddingLeft:e.spacingBaseXL},marginRightBaseXL:{marginRight:e.spacingBaseXL},paddingRightBaseXL:{paddingRight:e.spacingBaseXL},marginBottomBaseXL:{marginBottom:e.spacingBaseXL},paddingBottomBaseXL:{paddingBottom:e.spacingBaseXL},marginTopBaseX2L:{marginTop:e.spacingBaseX2L},paddingTopBaseX2L:{paddingTop:e.spacingBaseX2L},marginLeftBaseX2L:{marginLeft:e.spacingBaseX2L},paddingLeftBaseX2L:{paddingLeft:e.spacingBaseX2L},marginRightBaseX2L:{marginRight:e.spacingBaseX2L},paddingRightBaseX2L:{paddingRight:e.spacingBaseX2L},marginBottomBaseX2L:{marginBottom:e.spacingBaseX2L},paddingBottomBaseX2L:{paddingBottom:e.spacingBaseX2L},marginTopBaseX3L:{marginTop:e.spacingBaseX3L},paddingTopBaseX3L:{paddingTop:e.spacingBaseX3L},marginLeftBaseX3L:{marginLeft:e.spacingBaseX3L},paddingLeftBaseX3L:{paddingLeft:e.spacingBaseX3L},marginRightBaseX3L:{marginRight:e.spacingBaseX3L},paddingRightBaseX3L:{paddingRight:e.spacingBaseX3L},marginBottomBaseX3L:{marginBottom:e.spacingBaseX3L},paddingBottomBaseX3L:{paddingBottom:e.spacingBaseX3L},marginTopBaseX4L:{marginTop:e.spacingBaseX4L},paddingTopBaseX4L:{paddingTop:e.spacingBaseX4L},marginLeftBaseX4L:{marginLeft:e.spacingBaseX4L},paddingLeftBaseX4L:{paddingLeft:e.spacingBaseX4L},marginRightBaseX4L:{marginRight:e.spacingBaseX4L},paddingRightBaseX4L:{paddingRight:e.spacingBaseX4L},marginBottomBaseX4L:{marginBottom:e.spacingBaseX4L},paddingBottomBaseX4L:{paddingBottom:e.spacingBaseX4L},marginTopBaseX5L:{marginTop:e.spacingBaseX5L},paddingTopBaseX5L:{paddingTop:e.spacingBaseX5L},marginLeftBaseX5L:{marginLeft:e.spacingBaseX5L},paddingLeftBaseX5L:{paddingLeft:e.spacingBaseX5L},marginRightBaseX5L:{marginRight:e.spacingBaseX5L},paddingRightBaseX5L:{paddingRight:e.spacingBaseX5L},marginBottomBaseX5L:{marginBottom:e.spacingBaseX5L},paddingBottomBaseX5L:{paddingBottom:e.spacingBaseX5L},marginTopBaseX6L:{marginTop:e.spacingBaseX6L},paddingTopBaseX6L:{paddingTop:e.spacingBaseX6L},marginLeftBaseX6L:{marginLeft:e.spacingBaseX6L},paddingLeftBaseX6L:{paddingLeft:e.spacingBaseX6L},marginRightBaseX6L:{marginRight:e.spacingBaseX6L},paddingRightBaseX6L:{paddingRight:e.spacingBaseX6L},marginBottomBaseX6L:{marginBottom:e.spacingBaseX6L},paddingBottomBaseX6L:{paddingBottom:e.spacingBaseX6L},marginTopBaseX7L:{marginTop:e.spacingBaseX7L},paddingTopBaseX7L:{paddingTop:e.spacingBaseX7L},marginLeftBaseX7L:{marginLeft:e.spacingBaseX7L},paddingLeftBaseX7L:{paddingLeft:e.spacingBaseX7L},marginRightBaseX7L:{marginRight:e.spacingBaseX7L},paddingRightBaseX7L:{paddingRight:e.spacingBaseX7L},marginBottomBaseX7L:{marginBottom:e.spacingBaseX7L},paddingBottomBaseX7L:{paddingBottom:e.spacingBaseX7L},borderWidthBaseSM:{borderWidth:e.borderWidthBaseSM},borderWidthBaseMD:{borderWidth:e.borderWidthBaseMD},borderWidthBaseLG:{borderWidth:e.borderWidthBaseLG},borderRadiusBaseXS:{borderRadius:e.borderRadiusBaseXS},borderRadiusBaseSM:{borderRadius:e.borderRadiusBaseSM},borderRadiusBaseMD:{borderRadius:e.borderRadiusBaseMD},borderRadiusBaseLG:{borderRadius:e.borderRadiusBaseLG},borderRadiusBaseXL:{borderRadius:e.borderRadiusBaseXL}})}),[e])}},20:(e,o,r)=>{var n=r(155),t=Symbol.for("react.element"),a=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),i=n.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,s={key:!0,ref:!0,__self:!0,__source:!0};function l(e,o,r){var n,l={},u=null,c=null;for(n in void 0!==r&&(u=""+r),void 0!==o.key&&(u=""+o.key),void 0!==o.ref&&(c=o.ref),o)a.call(o,n)&&!s.hasOwnProperty(n)&&(l[n]=o[n]);if(e&&e.defaultProps)for(n in o=e.defaultProps)void 0===l[n]&&(l[n]=o[n]);return{$$typeof:t,type:e,key:u,ref:c,props:l,_owner:i.current}}o.jsx=l,o.jsxs=l},848:(e,o,r)=>{e.exports=r(20)},729:e=>{e.exports=r},155:o=>{o.exports=e},389:e=>{e.exports=o}},t={};function a(e){var o=t[e];if(void 0!==o)return o.exports;var r=t[e]={exports:{}};return n[e](r,r.exports,a),r.exports}a.n=e=>{var o=e&&e.__esModule?()=>e.default:()=>e;return a.d(o,{a:o}),o},a.d=(e,o)=>{for(var r in o)a.o(o,r)&&!a.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:o[r]})},a.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),a.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};a.r(i),a.d(i,{Dimension:()=>y.f,Media:()=>A.$U,MediaContextProvider:()=>A.tZ,Opacity:()=>C,POSITION_MAX:()=>R.D,POSITION_MIN:()=>R.l,Position:()=>x.y,SIZE_FULL:()=>T.Y,Size:()=>D.o,Text:()=>h,ThemeContextProvider:()=>I.w,View:()=>v,useMediaContext:()=>A.$c,useThemeContext:()=>I.d,useThemeStyleSheet:()=>N.J});var s=a(695),l=a(909),u=a(155),c=a(389),B=function(e){return e[e.TRANSPARENT=0]="TRANSPARENT",e[e.BASE_100=1]="BASE_100",e[e.BASE_200=2]="BASE_200",e[e.BASE_300=3]="BASE_300",e[e.BASE_400=4]="BASE_400",e[e.BASE_500=5]="BASE_500",e[e.BASE_600=6]="BASE_600",e[e.BASE_700=7]="BASE_700",e[e.BASE_800=8]="BASE_800",e[e.BASE_900=9]="BASE_900",e[e.INVERSE_100=10]="INVERSE_100",e[e.INVERSE_200=11]="INVERSE_200",e[e.INVERSE_300=12]="INVERSE_300",e[e.INVERSE_400=13]="INVERSE_400",e[e.INVERSE_500=14]="INVERSE_500",e[e.INVERSE_600=15]="INVERSE_600",e[e.INVERSE_700=16]="INVERSE_700",e[e.INVERSE_800=17]="INVERSE_800",e[e.INVERSE_900=18]="INVERSE_900",e}({}),g=function(e){return e[e.THIN=0]="THIN",e[e.EXTRA_LIGHT=1]="EXTRA_LIGHT",e[e.LIGHT=2]="LIGHT",e[e.REGULAR=3]="REGULAR",e[e.MEDIUM=4]="MEDIUM",e[e.SEMIBOLD=5]="SEMIBOLD",e[e.BOLD=6]="BOLD",e[e.EXTRA_BOLD=7]="EXTRA_BOLD",e[e.BLACK=8]="BLACK",e}({}),d=function(e){return e[e.X2S=0]="X2S",e[e.XS=1]="XS",e[e.SM=2]="SM",e[e.MD=3]="MD",e[e.LG=4]="LG",e[e.XL=5]="XL",e[e.X2L=6]="X2L",e[e.X3L=7]="X3L",e[e.X4L=8]="X4L",e[e.X5L=9]="X5L",e}({}),f=function(e){return e.HEADING="heading",e.PARAGRAPH="paragraph",e}({}),S=function(e){return e[e.LEFT=0]="LEFT",e[e.CENTER=1]="CENTER",e[e.RIGHT=2]="RIGHT",e}({}),p=function(e){return e[e.NONE=0]="NONE",e[e.TIGHT=1]="TIGHT",e[e.SNUG=2]="SNUG",e[e.NORMAL=3]="NORMAL",e[e.RELAXED=4]="RELAXED",e[e.LOOSE=5]="LOOSE",e}({}),L=function(e){return e[e.H1=0]="H1",e[e.H2=1]="H2",e[e.H3=2]="H3",e[e.H4=3]="H4",e[e.H5=4]="H5",e[e.H6=5]="H6",e[e.P=6]="P",e}({}),m=[L.H1,L.H2,L.H3,L.H4,L.H5,L.H6],X=a(848),b=c.StyleSheet.create({textPositionStatic:{position:"static"},textAlignLeft:{textAlign:"left"},textAlignCenter:{textAlign:"center"},textAlignRight:{textAlign:"right"},textColorTransparent:{color:"transparent"}}),E=new Map,h=function(e){var o=e.type,r=e.align,n=void 0===r?S.LEFT:r,t=e.fontWeight,a=void 0===t?g.REGULAR:t,i=e.fontSize,h=void 0===i?d.MD:i,v=e.lineHeight,y=void 0===v?p.NONE:v,R=e.maxLines,T=e.color,A=void 0===T?B.BASE_800:T,I=e.children,M=(0,s.wR)(),F=(0,l.J)(),_=(0,u.useMemo)((function(){var e=function(e,o){var r=[e,o].join("-");if(E.has(r))return E.get(r);var n=c.StyleSheet.create({textLineHeight:{lineHeight:e*o}});return E.set(r,n),n}(function(){switch(h){case d.X2S:return M.fontSizeBaseX2S;case d.XS:return M.fontSizeBaseXS;case d.SM:return M.fontSizeBaseSM;case d.MD:return M.fontSizeBaseMD;case d.LG:return M.fontSizeBaseLG;case d.XL:return M.fontSizeBaseXL;case d.X2L:return M.fontSizeBaseX2L;case d.X3L:return M.fontSizeBaseX3L;case d.X4L:return M.fontSizeBaseX4L;case d.X5L:return M.fontSizeBaseX5L}}(),function(){switch(y){case p.NONE:return M.lineHeightBaseNone;case p.TIGHT:return M.lineHeightBaseTight;case p.SNUG:return M.lineHeightBaseSnug;case p.NORMAL:return M.lineHeightBaseNormal;case p.RELAXED:return M.lineHeightBaseRelaxed;case p.LOOSE:return M.lineHeightBaseLoose}}());return e.textLineHeight}),[h,y,M]);return(0,X.jsx)(c.Text,{role:L.P===o?f.PARAGRAPH:m.includes(o)?f.HEADING:void 0,"aria-level":function(){if(m.includes(o)){if(o===L.H1)return 1;if(o===L.H2)return 2;if(o===L.H3)return 3;if(o===L.H4)return 4;if(o===L.H5)return 5;if(o===L.H6)return 6}}(),style:[b.textPositionStatic,F.fontFamilyBase,function(){switch(n){case S.LEFT:return b.textAlignLeft;case S.CENTER:return b.textAlignCenter;case S.RIGHT:return b.textAlignRight}}(),function(){switch(a){case g.THIN:return F.fontWeightBaseThin;case g.EXTRA_LIGHT:return F.fontWeightBaseExtraLight;case g.LIGHT:return F.fontWeightBaseLight;case g.REGULAR:return F.fontWeightBaseRegular;case g.MEDIUM:return F.fontWeightBaseMedium;case g.SEMIBOLD:return F.fontWeightBaseSemibold;case g.BOLD:return F.fontWeightBaseBold;case g.EXTRA_BOLD:return F.fontWeightBaseExtraBold;case g.BLACK:return F.fontWeightBaseBlack}}(),function(){switch(h){case d.X2S:return F.fontSizeBaseX2S;case d.XS:return F.fontSizeBaseXS;case d.SM:return F.fontSizeBaseSM;case d.MD:return F.fontSizeBaseMD;case d.LG:return F.fontSizeBaseLG;case d.XL:return F.fontSizeBaseXL;case d.X2L:return F.fontSizeBaseX2L;case d.X3L:return F.fontSizeBaseX3L;case d.X4L:return F.fontSizeBaseX4L;case d.X5L:return F.fontSizeBaseX5L}}(),_,function(){switch(A){case B.TRANSPARENT:return b.textColorTransparent;case B.BASE_100:return F.colorForegroundBase100;case B.BASE_200:return F.colorForegroundBase200;case B.BASE_300:return F.colorForegroundBase300;case B.BASE_400:return F.colorForegroundBase400;case B.BASE_500:return F.colorForegroundBase500;case B.BASE_600:return F.colorForegroundBase600;case B.BASE_700:return F.colorForegroundBase700;case B.BASE_800:return F.colorForegroundBase800;case B.BASE_900:return F.colorForegroundBase900;case B.INVERSE_100:return F.colorForegroundInverse100;case B.INVERSE_200:return F.colorForegroundInverse200;case B.INVERSE_300:return F.colorForegroundInverse300;case B.INVERSE_400:return F.colorForegroundInverse400;case B.INVERSE_500:return F.colorForegroundInverse500;case B.INVERSE_600:return F.colorForegroundInverse600;case B.INVERSE_700:return F.colorForegroundInverse700;case B.INVERSE_800:return F.colorForegroundInverse800;case B.INVERSE_900:return F.colorForegroundInverse900}}()],numberOfLines:R,children:I})};h.Type=L,h.Align=S,h.FontWeight=g,h.FontSize=d,h.LineHeight=p,h.Color=B;var v=c.Platform.select({native:function(){return a(689).A},web:function(){return a(741).A}})(),y=a(316),R=a(841),T=a(315),A=a(410),I=a(84);function M(e){return M="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e},M(e)}function F(e,o){for(var r=0;r<o.length;r++){var n=o[r];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,_(n.key),n)}}function _(e){var o=function(e){if("object"!=M(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=M(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==M(o)?o:o+""}var C=function(){return e=function e(o){!function(e,o){if(!(e instanceof o))throw new TypeError("Cannot call a class as a function")}(this,e),this.value=o},(o=[{key:"toValue",value:function(){return this.value}}])&&F(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}(),x=a(567),D=a(700),N=a(408);return i})()));
|