creactive 0.0.102 → 0.0.103
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 +25 -2
- package/build/components/text/constants/color.d.ts +20 -0
- package/build/components/text/constants/font.d.ts +23 -0
- package/build/components/text/constants/index.d.ts +4 -5
- package/build/components/text/constants/tag.d.ts +24 -0
- package/build/components/text/constants/text.d.ts +8 -0
- package/build/components/text/index.d.ts +3 -2
- package/build/components/text/text.types.d.ts +25 -22
- package/build/components/view/view.types.d.ts +4 -1
- package/build/contexts/theme/hooks/use-theme-style-sheet.d.ts +1 -1
- package/build/contexts/theme/theme.types.d.ts +2 -2
- package/build/default.js +1 -1
- package/package.json +1 -1
- package/build/components/text/constants/role.d.ts +0 -12
- package/build/components/text/constants/type.d.ts +0 -19
- package/build/components/text/text.d.ts +0 -2
- package/build/contexts/index.d.ts +0 -4
|
@@ -24,3 +24,23 @@ export declare enum TextColor {
|
|
|
24
24
|
INVERSE_800 = 17,
|
|
25
25
|
INVERSE_900 = 18
|
|
26
26
|
}
|
|
27
|
+
export declare const TEXT_COLOR_THEME_KEY: {
|
|
28
|
+
1: "colorForegroundBase100";
|
|
29
|
+
2: "colorForegroundBase200";
|
|
30
|
+
3: "colorForegroundBase300";
|
|
31
|
+
4: "colorForegroundBase400";
|
|
32
|
+
5: "colorForegroundBase500";
|
|
33
|
+
6: "colorForegroundBase600";
|
|
34
|
+
7: "colorForegroundBase700";
|
|
35
|
+
8: "colorForegroundBase800";
|
|
36
|
+
9: "colorForegroundBase900";
|
|
37
|
+
10: "colorForegroundInverse100";
|
|
38
|
+
11: "colorForegroundInverse200";
|
|
39
|
+
12: "colorForegroundInverse300";
|
|
40
|
+
13: "colorForegroundInverse400";
|
|
41
|
+
14: "colorForegroundInverse500";
|
|
42
|
+
15: "colorForegroundInverse600";
|
|
43
|
+
16: "colorForegroundInverse700";
|
|
44
|
+
17: "colorForegroundInverse800";
|
|
45
|
+
18: "colorForegroundInverse900";
|
|
46
|
+
};
|
|
@@ -13,6 +13,17 @@ export declare enum TextFontWeight {
|
|
|
13
13
|
EXTRA_BOLD = 7,
|
|
14
14
|
BLACK = 8
|
|
15
15
|
}
|
|
16
|
+
export declare const TEXT_THEME_FONT_WEIGHT_KEY: {
|
|
17
|
+
0: "fontWeightBaseThin";
|
|
18
|
+
1: "fontWeightBaseExtraLight";
|
|
19
|
+
2: "fontWeightBaseLight";
|
|
20
|
+
3: "fontWeightBaseRegular";
|
|
21
|
+
4: "fontWeightBaseMedium";
|
|
22
|
+
5: "fontWeightBaseSemiBold";
|
|
23
|
+
6: "fontWeightBaseBold";
|
|
24
|
+
7: "fontWeightBaseExtraBold";
|
|
25
|
+
8: "fontWeightBaseBlack";
|
|
26
|
+
};
|
|
16
27
|
/**
|
|
17
28
|
* Supported text font sizes enum.
|
|
18
29
|
* Should be used to control the size of the text.
|
|
@@ -29,3 +40,15 @@ export declare enum TextFontSize {
|
|
|
29
40
|
X4L = 8,
|
|
30
41
|
X5L = 9
|
|
31
42
|
}
|
|
43
|
+
export declare const TEXT_THEME_FONT_SIZE_KEY: {
|
|
44
|
+
0: "fontSizeBaseX2S";
|
|
45
|
+
1: "fontSizeBaseXS";
|
|
46
|
+
2: "fontSizeBaseSM";
|
|
47
|
+
3: "fontSizeBaseMD";
|
|
48
|
+
4: "fontSizeBaseLG";
|
|
49
|
+
5: "fontSizeBaseXL";
|
|
50
|
+
6: "fontSizeBaseX2L";
|
|
51
|
+
7: "fontSizeBaseX3L";
|
|
52
|
+
8: "fontSizeBaseX4L";
|
|
53
|
+
9: "fontSizeBaseX5L";
|
|
54
|
+
};
|
|
@@ -1,5 +1,4 @@
|
|
|
1
|
-
export { TextColor } from './color';
|
|
2
|
-
export { TextFontSize, TextFontWeight } from './font';
|
|
3
|
-
export {
|
|
4
|
-
export { TextAlign, TextLineHeight } from './text';
|
|
5
|
-
export { TEXT_TYPE_HEADING, TextType } from './type';
|
|
1
|
+
export { TEXT_COLOR_THEME_KEY, TextColor } from './color';
|
|
2
|
+
export { TEXT_THEME_FONT_SIZE_KEY, TEXT_THEME_FONT_WEIGHT_KEY, TextFontSize, TextFontWeight, } from './font';
|
|
3
|
+
export { TEXT_HTML_TAG, TextTag } from './tag';
|
|
4
|
+
export { TEXT_THEME_LINE_HEIGHT_KEY, TextAlign, TextLineHeight } from './text';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Supported by view component tags.
|
|
3
|
+
* All possible layout tags should be listed here.
|
|
4
|
+
*/
|
|
5
|
+
export declare enum TextTag {
|
|
6
|
+
H1 = 0,
|
|
7
|
+
H2 = 1,
|
|
8
|
+
H3 = 2,
|
|
9
|
+
H4 = 3,
|
|
10
|
+
H5 = 4,
|
|
11
|
+
H6 = 5,
|
|
12
|
+
P = 6,
|
|
13
|
+
SPAN = 7
|
|
14
|
+
}
|
|
15
|
+
export declare const TEXT_HTML_TAG: {
|
|
16
|
+
0: "h1";
|
|
17
|
+
1: "h2";
|
|
18
|
+
2: "h3";
|
|
19
|
+
3: "h4";
|
|
20
|
+
4: "h5";
|
|
21
|
+
5: "h6";
|
|
22
|
+
6: "p";
|
|
23
|
+
7: "span";
|
|
24
|
+
};
|
|
@@ -19,3 +19,11 @@ export declare enum TextLineHeight {
|
|
|
19
19
|
RELAXED = 4,
|
|
20
20
|
LOOSE = 5
|
|
21
21
|
}
|
|
22
|
+
export declare const TEXT_THEME_LINE_HEIGHT_KEY: {
|
|
23
|
+
0: "lineHeightBaseNone";
|
|
24
|
+
1: "lineHeightBaseTight";
|
|
25
|
+
2: "lineHeightBaseSnug";
|
|
26
|
+
3: "lineHeightBaseNormal";
|
|
27
|
+
4: "lineHeightBaseRelaxed";
|
|
28
|
+
5: "lineHeightBaseLoose";
|
|
29
|
+
};
|
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
import type { TextComponent, TextProps } from './text.types';
|
|
2
|
+
export declare const Text: TextComponent;
|
|
3
|
+
export type { TextComponent, TextProps };
|
|
@@ -1,59 +1,62 @@
|
|
|
1
|
+
import type { Color, FontWeight } from '../../types';
|
|
1
2
|
import type { FunctionComponent, PropsWithChildren } from 'react';
|
|
2
|
-
import type { TextAlign, TextColor, TextFontSize, TextFontWeight, TextLineHeight,
|
|
3
|
+
import type { TextAlign, TextColor, TextFontSize, TextFontWeight, TextLineHeight, TextTag } from './constants';
|
|
3
4
|
export interface TextProps extends PropsWithChildren {
|
|
4
5
|
/**
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
6
|
+
* Allows to control HTML tag to render.
|
|
7
|
+
* Makes no sense on native platforms.
|
|
8
|
+
* @see Text.Tag
|
|
8
9
|
* @default undefined - renders into DIV element
|
|
9
10
|
*/
|
|
10
|
-
|
|
11
|
+
tag?: TextTag;
|
|
11
12
|
/**
|
|
12
|
-
* Text component align control property.
|
|
13
13
|
* Inner text will be aligned according to this value.
|
|
14
|
+
* @see Text.Align
|
|
14
15
|
* @default Text.Align.LEFT
|
|
15
16
|
*/
|
|
16
17
|
align?: TextAlign;
|
|
17
18
|
/**
|
|
18
|
-
*
|
|
19
|
-
*
|
|
20
|
-
* Uses base font weight tokens for mapping.
|
|
19
|
+
* Themed font weight.
|
|
20
|
+
* @see Text.FontWeight
|
|
21
21
|
* @default Text.FontWeight.REGULAR
|
|
22
22
|
*/
|
|
23
23
|
fontWeight?: TextFontWeight;
|
|
24
24
|
/**
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
* Uses base font size tokens for mapping.
|
|
25
|
+
* Themed font size.
|
|
26
|
+
* @see Text.FontSize
|
|
28
27
|
* @default Text.FontSize.MD
|
|
29
28
|
*/
|
|
30
29
|
fontSize?: TextFontSize;
|
|
31
30
|
/**
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
35
|
-
* @default Text.LineHeight.NONE
|
|
31
|
+
* Themed line heidht.
|
|
32
|
+
* @see Text.LineHeight
|
|
33
|
+
* @default Text.LineHeight.NORMAL
|
|
36
34
|
*/
|
|
37
35
|
lineHeight?: TextLineHeight;
|
|
38
36
|
/**
|
|
39
|
-
*
|
|
40
|
-
* Text will be truncated with an ellipsis after specified lines count.
|
|
37
|
+
* Maximum number of lines to display.
|
|
41
38
|
* @default undefined
|
|
42
39
|
*/
|
|
43
40
|
maxLines?: number;
|
|
44
41
|
/**
|
|
45
|
-
*
|
|
46
|
-
*
|
|
47
|
-
* Theme independent colors and values may be also available.
|
|
42
|
+
* Themed or transparent color.
|
|
43
|
+
* @see Text.Color
|
|
48
44
|
* @default Text.Color.BASE_800
|
|
49
45
|
*/
|
|
50
46
|
color?: TextColor;
|
|
51
47
|
}
|
|
52
48
|
export type TextComponent = FunctionComponent<TextProps> & {
|
|
53
|
-
|
|
49
|
+
Tag: Record<keyof typeof TextTag, TextTag>;
|
|
54
50
|
Align: Record<keyof typeof TextAlign, TextAlign>;
|
|
55
51
|
FontWeight: Record<keyof typeof TextFontWeight, TextFontWeight>;
|
|
56
52
|
FontSize: Record<keyof typeof TextFontSize, TextFontSize>;
|
|
57
53
|
LineHeight: Record<keyof typeof TextLineHeight, TextLineHeight>;
|
|
58
54
|
Color: Record<keyof typeof TextColor, TextColor>;
|
|
59
55
|
};
|
|
56
|
+
export type StyledTextrops = Pick<TextProps, 'align' | 'maxLines'> & {
|
|
57
|
+
fontFamily: string;
|
|
58
|
+
fontWeight: FontWeight;
|
|
59
|
+
fontSize: number;
|
|
60
|
+
lineHeight: number;
|
|
61
|
+
color: Color | 'transparent';
|
|
62
|
+
};
|
|
@@ -180,7 +180,10 @@ export interface ViewProps extends PropsWithChildren {
|
|
|
180
180
|
*/
|
|
181
181
|
maxHeight?: Size;
|
|
182
182
|
/**
|
|
183
|
-
* View box shadow.
|
|
183
|
+
* View component box shadow.
|
|
184
|
+
* React Native's "New Architecture" is required on native.
|
|
185
|
+
* @see https://reactnative.dev/architecture/landing-page
|
|
186
|
+
* @see https://docs.expo.dev/guides/new-architecture/
|
|
184
187
|
* @see View.BoxShadow
|
|
185
188
|
* @default undefined
|
|
186
189
|
*/
|
|
@@ -125,7 +125,7 @@ export declare const useThemeStyleSheet: () => {
|
|
|
125
125
|
fontWeightBaseMedium: {
|
|
126
126
|
fontWeight: import("../../..").FontWeight;
|
|
127
127
|
};
|
|
128
|
-
|
|
128
|
+
fontWeightBaseSemiBold: {
|
|
129
129
|
fontWeight: import("../../..").FontWeight;
|
|
130
130
|
};
|
|
131
131
|
fontWeightBaseBold: {
|
|
@@ -227,7 +227,7 @@ export interface ThemeContextValue {
|
|
|
227
227
|
* @see FONT_WEIGHT_BASE_SEMIBOLD
|
|
228
228
|
* @default 600
|
|
229
229
|
*/
|
|
230
|
-
|
|
230
|
+
fontWeightBaseSemiBold: FontWeight;
|
|
231
231
|
/**
|
|
232
232
|
* Base bold font weight.
|
|
233
233
|
* @see FONT_WEIGHT_BASE_BOLD
|
|
@@ -343,7 +343,7 @@ export interface ThemeContextValue {
|
|
|
343
343
|
*/
|
|
344
344
|
lineHeightBaseLoose: number;
|
|
345
345
|
/**
|
|
346
|
-
* Base
|
|
346
|
+
* Base f spacing.
|
|
347
347
|
* @see SPACING_BASE_X6S
|
|
348
348
|
* @default 2
|
|
349
349
|
*/
|
package/build/default.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/*! For license information please see default.js.LICENSE.txt */
|
|
2
|
-
!function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("react"),require("react-native"),require("@emotion/styled")):"function"==typeof define&&define.amd?define("creactive",["react","react-native","@emotion/styled"],r):"object"==typeof exports?exports.creactive=r(require("react"),require("react-native"),require("@emotion/styled")):e.creactive=r(e.react,e["react-native"],e["@emotion/styled"])}(this,((e,r,o)=>(()=>{"use strict";var n={123:(e,r,o)=>{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,r,o){return(r=function(e){var r=function(e){if("object"!=n(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=n(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==n(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}o.d(r,{l5:()=>q,wu:()=>J,b8:()=>M,J2:()=>R,yQ:()=>l,ce:()=>B,kI:()=>i,Er:()=>d,Rw:()=>g,g9:()=>s,X1:()=>V,DK:()=>H,iq:()=>j,Dz:()=>P,mN:()=>U,Wk:()=>O,l2:()=>z,Wi:()=>k,CN:()=>W,th:()=>F,F5:()=>C,TI:()=>T,Vc:()=>v,uC:()=>u,s_:()=>a,lo:()=>x,uY:()=>A,b9:()=>I,Ie:()=>_,JT:()=>D,TL:()=>G,SQ:()=>Q});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,"borderWidthTopBaseSM"),a.MD,"borderWidthTopBaseMD"),a.LG,"borderWidthTopBaseLG"),d=t(t(t({},a.SM,"borderWidthLeftBaseSM"),a.MD,"borderWidthLeftBaseMD"),a.LG,"borderWidthLeftBaseLG"),g=t(t(t({},a.SM,"borderWidthRightBaseSM"),a.MD,"borderWidthRightBaseMD"),a.LG,"borderWidthRightBaseLG"),B=t(t(t({},a.SM,"borderWidthBottomBaseSM"),a.MD,"borderWidthBottomBaseMD"),a.LG,"borderWidthBottomBaseLG"),u=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}({}),l=t(t(t(t(t({},u.XS,"borderRadiusBaseXS"),u.SM,"borderRadiusBaseSM"),u.MD,"borderRadiusBaseMD"),u.LG,"borderRadiusBaseLG"),u.XL,"borderRadiusBaseXL");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 f(e,r,o){return(r=function(e){var r=function(e){if("object"!=c(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=c(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==c(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var S,p,L,m,X,b,h,E,y,v=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}({}),R=f(f(f(f(f(f(f(f(f({},v.BASE_100,"colorBorderBase100"),v.BASE_200,"colorBorderBase200"),v.BASE_300,"colorBorderBase300"),v.BASE_400,"colorBorderBase400"),v.BASE_500,"colorBorderBase500"),v.BASE_600,"colorBorderBase600"),v.BASE_700,"colorBorderBase700"),v.BASE_800,"colorBorderBase800"),v.BASE_900,"colorBorderBase900"),T=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}({}),M=f(f(f(f(f(f(f(f(f({},T.BASE_100,"colorBackgroundBase100"),T.BASE_200,"colorBackgroundBase200"),T.BASE_300,"colorBackgroundBase300"),T.BASE_400,"colorBackgroundBase400"),T.BASE_500,"colorBackgroundBase500"),T.BASE_600,"colorBackgroundBase600"),T.BASE_700,"colorBackgroundBase700"),T.BASE_800,"colorBackgroundBase800"),T.BASE_900,"colorBackgroundBase900"),A=function(e){return e[e.COLUMN=0]="COLUMN",e[e.ROW=1]="ROW",e}({}),I=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}({}),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.BASELINE=4]="BASELINE",e}({}),W=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}({}),_=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}({}),x=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({});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 w(e,r,o){return(r=function(e){var r=function(e){if("object"!=N(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=N(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==N(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var G=function(e){return e[e.X6S=0]="X6S",e[e.X5S=1]="X5S",e[e.X4S=2]="X4S",e[e.X3S=3]="X3S",e[e.X2S=4]="X2S",e[e.XS=5]="XS",e[e.SM=6]="SM",e[e.MD=7]="MD",e[e.LG=8]="LG",e[e.XL=9]="XL",e[e.X2L=10]="X2L",e[e.X3L=11]="X3L",e[e.X4L=12]="X4L",e[e.X5L=13]="X5L",e[e.X6L=14]="X6L",e}({}),P=(w(w(w(w(w(w(w(w(w(w(S={},G.X6S,"marginTopBaseX6S"),G.X5S,"marginTopBaseX5S"),G.X4S,"marginTopBaseX4S"),G.X3S,"marginTopBaseX3S"),G.X2S,"marginTopBaseX2S"),G.XS,"marginTopBaseXS"),G.SM,"marginTopBaseSM"),G.MD,"marginTopBaseMD"),G.LG,"marginTopBaseLG"),G.XL,"marginTopBaseXL"),w(w(w(w(w(S,G.X2L,"marginTopBaseX2L"),G.X3L,"marginTopBaseX3L"),G.X4L,"marginTopBaseX4L"),G.X5L,"marginTopBaseX5L"),G.X6L,"marginTopBaseX6L")),k=(w(w(w(w(w(w(w(w(w(w(p={},G.X6S,"paddingTopBaseX6S"),G.X5S,"paddingTopBaseX5S"),G.X4S,"paddingTopBaseX4S"),G.X3S,"paddingTopBaseX3S"),G.X2S,"paddingTopBaseX2S"),G.XS,"paddingTopBaseXS"),G.SM,"paddingTopBaseSM"),G.MD,"paddingTopBaseMD"),G.LG,"paddingTopBaseLG"),G.XL,"paddingTopBaseXL"),w(w(w(w(w(p,G.X2L,"paddingTopBaseX2L"),G.X3L,"paddingTopBaseX3L"),G.X4L,"paddingTopBaseX4L"),G.X5L,"paddingTopBaseX5L"),G.X6L,"paddingTopBaseX6L")),H=(w(w(w(w(w(w(w(w(w(w(L={},G.X6S,"marginLeftBaseX6S"),G.X5S,"marginLeftBaseX5S"),G.X4S,"marginLeftBaseX4S"),G.X3S,"marginLeftBaseX3S"),G.X2S,"marginLeftBaseX2S"),G.XS,"marginLeftBaseXS"),G.SM,"marginLeftBaseSM"),G.MD,"marginLeftBaseMD"),G.LG,"marginLeftBaseLG"),G.XL,"marginLeftBaseXL"),w(w(w(w(w(L,G.X2L,"marginLeftBaseX2L"),G.X3L,"marginLeftBaseX3L"),G.X4L,"marginLeftBaseX4L"),G.X5L,"marginLeftBaseX5L"),G.X6L,"marginLeftBaseX6L")),O=(w(w(w(w(w(w(w(w(w(w(m={},G.X6S,"paddingLeftBaseX6S"),G.X5S,"paddingLeftBaseX5S"),G.X4S,"paddingLeftBaseX4S"),G.X3S,"paddingLeftBaseX3S"),G.X2S,"paddingLeftBaseX2S"),G.XS,"paddingLeftBaseXS"),G.SM,"paddingLeftBaseSM"),G.MD,"paddingLeftBaseMD"),G.LG,"paddingLeftBaseLG"),G.XL,"paddingLeftBaseXL"),w(w(w(w(w(m,G.X2L,"paddingLeftBaseX2L"),G.X3L,"paddingLeftBaseX3L"),G.X4L,"paddingLeftBaseX4L"),G.X5L,"paddingLeftBaseX5L"),G.X6L,"paddingLeftBaseX6L")),j=(w(w(w(w(w(w(w(w(w(w(X={},G.X6S,"marginRightBaseX6S"),G.X5S,"marginRightBaseX5S"),G.X4S,"marginRightBaseX4S"),G.X3S,"marginRightBaseX3S"),G.X2S,"marginRightBaseX2S"),G.XS,"marginRightBaseXS"),G.SM,"marginRightBaseSM"),G.MD,"marginRightBaseMD"),G.LG,"marginRightBaseLG"),G.XL,"marginRightBaseXL"),w(w(w(w(w(X,G.X2L,"marginRightBaseX2L"),G.X3L,"marginRightBaseX3L"),G.X4L,"marginRightBaseX4L"),G.X5L,"marginRightBaseX5L"),G.X6L,"marginRightBaseX6L")),z=(w(w(w(w(w(w(w(w(w(w(b={},G.X6S,"paddingRightBaseX6S"),G.X5S,"paddingRightBaseX5S"),G.X4S,"paddingRightBaseX4S"),G.X3S,"paddingRightBaseX3S"),G.X2S,"paddingRightBaseX2S"),G.XS,"paddingRightBaseXS"),G.SM,"paddingRightBaseSM"),G.MD,"paddingRightBaseMD"),G.LG,"paddingRightBaseLG"),G.XL,"paddingRightBaseXL"),w(w(w(w(w(b,G.X2L,"paddingRightBaseX2L"),G.X3L,"paddingRightBaseX3L"),G.X4L,"paddingRightBaseX4L"),G.X5L,"paddingRightBaseX5L"),G.X6L,"paddingRightBaseX6L")),V=(w(w(w(w(w(w(w(w(w(w(h={},G.X6S,"marginBottomBaseX6S"),G.X5S,"marginBottomBaseX5S"),G.X4S,"marginBottomBaseX4S"),G.X3S,"marginBottomBaseX3S"),G.X2S,"marginBottomBaseX2S"),G.XS,"marginBottomBaseXS"),G.SM,"marginBottomBaseSM"),G.MD,"marginBottomBaseMD"),G.LG,"marginBottomBaseLG"),G.XL,"marginBottomBaseXL"),w(w(w(w(w(h,G.X2L,"marginBottomBaseX2L"),G.X3L,"marginBottomBaseX3L"),G.X4L,"marginBottomBaseX4L"),G.X5L,"marginBottomBaseX5L"),G.X6L,"marginBottomBaseX6L")),U=(w(w(w(w(w(w(w(w(w(w(E={},G.X6S,"paddingBottomBaseX6S"),G.X5S,"paddingBottomBaseX5S"),G.X4S,"paddingBottomBaseX4S"),G.X3S,"paddingBottomBaseX3S"),G.X2S,"paddingBottomBaseX2S"),G.XS,"paddingBottomBaseXS"),G.SM,"paddingBottomBaseSM"),G.MD,"paddingBottomBaseMD"),G.LG,"paddingBottomBaseLG"),G.XL,"paddingBottomBaseXL"),w(w(w(w(w(E,G.X2L,"paddingBottomBaseX2L"),G.X3L,"paddingBottomBaseX3L"),G.X4L,"paddingBottomBaseX4L"),G.X5L,"paddingBottomBaseX5L"),G.X6L,"paddingBottomBaseX6L")),J=(w(w(w(w(w(w(w(w(w(w(y={},G.X6S,"spacingBaseX6S"),G.X5S,"spacingBaseX5S"),G.X4S,"spacingBaseX4S"),G.X3S,"spacingBaseX3S"),G.X2S,"spacingBaseX2S"),G.XS,"spacingBaseXS"),G.SM,"spacingBaseSM"),G.MD,"spacingBaseMD"),G.LG,"spacingBaseLG"),G.XL,"spacingBaseXL"),w(w(w(w(w(y,G.X2L,"spacingBaseX2L"),G.X3L,"spacingBaseX3L"),G.X4L,"spacingBaseX4L"),G.X5L,"spacingBaseX5L"),G.X6L,"spacingBaseX6L"));function K(e){return K="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},K(e)}function Y(e,r,o){return(r=function(e){var r=function(e){if("object"!=K(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=K(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==K(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var Q=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=Y(Y(Y(Y(Y(Y(Y(Y({},Q.DIV,"div"),Q.FIGURE,"figure"),Q.FIGCAPTION,"figcaption"),Q.ARTICLE,"article"),Q.SECTION,"section"),Q.HEADER,"header"),Q.MAIN,"main"),Q.FOOTER,"footer")},579:(e,r,o)=>{o.d(r,{GK:()=>x,lF:()=>I,r1:()=>W,QR:()=>m,vd:()=>L,M4:()=>p,TY:()=>S,v5:()=>f,UI:()=>c,bS:()=>B,ft:()=>u,TX:()=>d,Ei:()=>g,ud:()=>i,LN:()=>s,ev:()=>q,Ps:()=>ee,kP:()=>y,VW:()=>T,vD:()=>de,hX:()=>te,w7:()=>ie,Vf:()=>oe,X6:()=>N,S:()=>H,Gd:()=>ge,mu:()=>ae,XV:()=>se,we:()=>ne,xT:()=>U,bW:()=>J,FK:()=>re,aL:()=>Be});var n=o(695),t=o(389),a=o(123),i=function(e){var r;return null!==(r=(0,n.JU)()[a.kI[e]])&&void 0!==r?r:{borderWidth:0}},s=function(e){var r;return null!==(r=(0,n.JU)()[a.g9[e]])&&void 0!==r?r:{borderTopWidth:void 0}},d=function(e){var r;return null!==(r=(0,n.JU)()[a.Er[e]])&&void 0!==r?r:{borderLeftWidth:void 0}},g=function(e){var r;return null!==(r=(0,n.JU)()[a.Rw[e]])&&void 0!==r?r:{borderRightWidth:void 0}},B=function(e){var r;return null!==(r=(0,n.JU)()[a.ce[e]])&&void 0!==r?r:{borderBottomWidth:void 0}},u=function(e){var r=(0,n.wR)();return void 0===e?"0px":"".concat(r[a.kI[e]],"px")},l=t.StyleSheet.create({borderRadiusMax:{borderRadius:"50%"}}),c=function(e){var r=(0,n.JU)();return e===a.uC.MAX?l.borderRadiusMax:r[a.yQ[e]]},f=function(e){var r=(0,n.wR)();if(void 0!==e)return e===a.uC.MAX?"50%":"".concat(r[a.yQ[e]],"px")},S=function(e){return(0,n.JU)()[a.J2[e]]},p=function(e){return(0,n.wR)()[a.J2[e]]},L=function(e){var r=(0,n.JU)();if(void 0!==e)return e in a.TI?r[a.b8[e]]:{backgroundColor:e}},m=function(e){var r=(0,n.wR)();if(void 0!==e)return e in a.TI?r[a.b8[e]]:e};function X(e){return X="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},X(e)}function b(e,r,o){return(r=function(e){var r=function(e){if("object"!=X(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=X(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==X(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var h=t.StyleSheet.create({flexDirectionColumn:{flexDirection:"column"},flexDirectionRow:{flexDirection:"row"}}),E=b(b({},a.uY.COLUMN,h.flexDirectionColumn),a.uY.ROW,h.flexDirectionRow),y=function(e){return E[e]},v=t.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"}}),R=b(b(b(b(b(b({},a.b9.FLEX_START,v.justifuContentFlexStart),a.b9.FLEX_END,v.justifuContentFlexEnd),a.b9.CENTER,v.justifuContentCenter),a.b9.SPACE_BETWEEN,v.justifuContentSpaceBetween),a.b9.SPACE_AROUND,v.justifuContentSpaceAround),a.b9.SPACE_EVENLY,v.justifuContentSpaceEvenly),T=function(e){return R[e]},M=t.StyleSheet.create({alignItemsFlexStart:{alignItems:"flex-start"},alignItemsFlexEnd:{alignItems:"flex-end"},alignItemsCenter:{alignItems:"center"},alignItemsStretch:{alignItems:"stretch"},alignItemsBaseline:{alignItems:"baseline"}}),A=b(b(b(b(b({},a.th.FLEX_START,M.alignItemsFlexStart),a.th.FLEX_END,M.alignItemsFlexEnd),a.th.CENTER,M.alignItemsCenter),a.th.STRETCH,M.alignItemsStretch),a.th.BASELINE,M.alignItemsBaseline),I=function(e){return A[e]},F=t.StyleSheet.create({alignSelfFlexStart:{alignSelf:"flex-start"},alignSelfFlexEnd:{alignSelf:"flex-end"},alignSelfCenter:{alignSelf:"center"},alignSelfStretch:{alignSelf:"stretch"},alignSelfBaseline:{alignSelf:"baseline"}}),C=b(b(b(b(b({},a.F5.FLEX_START,F.alignSelfFlexStart),a.F5.FLEX_END,F.alignSelfFlexEnd),a.F5.CENTER,F.alignSelfCenter),a.F5.STRETCH,F.alignSelfStretch),a.F5.BASELINE,F.alignSelfBaseline),W=function(e){return C[e]},_=t.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"}}),D=b(b(b(b(b(b({},a.CN.FLEX_START,_.alignContentFlexStart),a.CN.FLEX_END,_.alignContentFlexEnd),a.CN.CENTER,_.alignContentCenter),a.CN.STRETCH,_.alignContentStretch),a.CN.SPACE_BETWEEN,_.alignContentSpaceBetween),a.CN.SPACE_AROUND,_.alignContentSpaceAround),x=function(e){return D[e]},N=function(e){if(e)return e.toValue()};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 G(e,r,o){return(r=function(e){var r=function(e){if("object"!=w(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=w(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==w(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var P=t.StyleSheet.create({overflowVisible:{overflow:"visible"},overflowHidden:{overflow:"hidden"}}),k=G(G({},a.Ie.VISIBLE,P.overflowVisible),a.Ie.HIDDEN,P.overflowHidden),H=function(e){return k[e]};function O(e){return O="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},O(e)}function j(e,r,o){return(r=function(e){var r=function(e){if("object"!=O(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=O(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==O(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var z=t.StyleSheet.create({positionRelative:{position:"relative"},positionAbsolute:{position:"absolute"}}),V=j(j({},a.JT.RELATIVE,z.positionRelative),a.JT.ABSOLUTE,z.positionAbsolute),U=function(e){return V[e]},J=function(e){if(e)return e.toValue()};function K(e){return K="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},K(e)}function Y(e,r,o){return(r=function(e){var r=function(e){if("object"!=K(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=K(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==K(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var Q=Y(Y(Y({},a.lo.SM,"0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1)"),a.lo.MD,"0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1)"),a.lo.LG,"0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1)"),q=function(e){return Q[e]},$=t.StyleSheet.create({boxShadowSM:{boxShadow:Q[a.lo.SM]},boxShadowMD:{boxShadow:Q[a.lo.MD]},boxShadowLG:{boxShadow:Q[a.lo.LG]}}),Z=Y(Y(Y({},a.lo.SM,$.boxShadowSM),a.lo.MD,$.boxShadowMD),a.lo.LG,$.boxShadowLG),ee=function(e){return Z[e]},re=function(e){if(e)return e.toValue()},oe=function(e){return(0,n.JU)()[a.Dz[e]]},ne=function(e){return(0,n.JU)()[a.Wi[e]]},te=function(e){return(0,n.JU)()[a.DK[e]]},ae=function(e){return(0,n.JU)()[a.Wk[e]]},ie=function(e){return(0,n.JU)()[a.iq[e]]},se=function(e){return(0,n.JU)()[a.l2[e]]},de=function(e){return(0,n.JU)()[a.X1[e]]},ge=function(e){return(0,n.JU)()[a.mN[e]]},Be=function(e){var r=(0,n.wR)();if(void 0!==r[a.wu[e]])return"".concat(r[a.wu[e]],"px")}},689:(e,r,o)=>{o.d(r,{A:()=>g});var n=o(389),t=o(123),a=o(579),i=o(848),s=n.StyleSheet.create({default:{display:"flex",margin:0,padding:0,zIndex:0,position:"relative",listStyle:"none",borderStyle:"solid",textDecoration:"none",boxSizing:"border-box"}}),d=function(e){var r=e.testId,o=e.position,d=void 0===o?t.JT.RELATIVE:o,g=e.top,B=e.left,u=e.right,l=e.bottom,c=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,h=void 0===b?t.th.STRETCH:b,E=e.alignSelf,y=e.alignContent,v=void 0===y?t.CN.FLEX_START:y,R=e.marginTop,T=e.paddingTop,M=e.marginLeft,A=e.paddingLeft,I=e.marginRight,F=e.paddingRight,C=e.marginBottom,W=e.paddingBottom,_=e.minWidth,D=e.width,x=e.maxWidth,N=e.minHeight,w=e.height,G=e.maxHeight,P=e.boxShadow,k=e.borderColor,H=e.borderWidth,O=e.borderWidthTop,j=e.borderWidthLeft,z=e.borderWidthRight,V=e.borderWidthBottom,U=e.borderRadius,J=e.backgroundColor,K=e.children;return(0,i.jsx)(n.View,{testID:r,style:[s.default,(0,a.xT)(d),{top:(0,a.bW)(g),left:(0,a.bW)(B),right:(0,a.bW)(u),bottom:(0,a.bW)(l)},{opacity:(0,a.X6)(c)},(0,a.S)(S),(0,a.kP)(L),(0,a.VW)(X),(0,a.lF)(h),(0,a.r1)(E),(0,a.GK)(v),(0,a.Vf)(R),(0,a.we)(T),(0,a.hX)(M),(0,a.mu)(A),(0,a.w7)(I),(0,a.XV)(F),(0,a.vD)(C),(0,a.Gd)(W),{minWidth:(0,a.FK)(_),width:(0,a.FK)(D),maxWidth:(0,a.FK)(x),minHeight:(0,a.FK)(N),height:(0,a.FK)(w),maxHeight:(0,a.FK)(G)},(0,a.Ps)(P),(0,a.TY)(k),(0,a.ud)(H),(0,a.LN)(O),(0,a.TX)(j),(0,a.Ei)(z),(0,a.bS)(V),(0,a.UI)(U),(0,a.vd)(J)],children:K})};d.Tag=t.SQ,d.Position=t.JT,d.Overflow=t.Ie,d.FlexDirection=t.uY,d.JustifyContent=t.b9,d.AlignItems=t.th,d.AlignSelf=t.F5,d.AlignContent=t.CN,d.Spacing=t.TL,d.BoxShadow=t.lo,d.BorderColor=t.Vc,d.BorderWidth=t.s_,d.BorderRadius=t.uC,d.BackgroundColor=t.TI;const g=d},741:(e,r,o)=>{o.d(r,{A:()=>E});var n,t=o(729),a=o.n(t),i=o(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 d(e,r,o){return(r=function(e){var r=function(e){if("object"!=s(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=s(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==s(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var g,B,u=d(d({},i.JT.RELATIVE,"relative"),i.JT.ABSOLUTE,"absolute"),l=d(d({},i.Ie.VISIBLE,"visible"),i.Ie.HIDDEN,"hidden"),c=d(d({},i.uY.COLUMN,"column"),i.uY.ROW,"row"),f=d(d(d(d(d(d({},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=d(d(d(d(d({},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=d(d(d(d(d({},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=d(d(d(d(d(d({},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||(g=["\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: ",";\n padding-top: ",";\n margin-left: ",";\n padding-left: ",";\n margin-right: ",";\n padding-right: ",";\n margin-bottom: ",";\n padding-bottom: ",";\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: ",";\n border-top-width: ",";\n border-left-width: ",";\n border-right-width: ",";\n border-bottom-width: ",";\n border-radius: ",";\n background-color: ",";\n"],B||(B=g.slice(0)),n=Object.freeze(Object.defineProperties(g,{raw:{value:Object.freeze(B)}}))),(function(e){var r=e.position;return u[r]}),(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 r=e.overflow;return l[r]}),(function(e){var r=e.flexDirection;return c[r]}),(function(e){var r=e.justifyContent;return f[r]}),(function(e){var r=e.alignItems;return S[r]}),(function(e){var r=e.alignSelf;return p[r]}),(function(e){var r=e.alignContent;return L[r]}),(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.borderWidthTop}),(function(e){return e.borderWidthLeft}),(function(e){return e.borderWidthRight}),(function(e){return e.borderWidthBottom}),(function(e){return e.borderRadius}),(function(e){return e.backgroundColor})),X=o(579),b=o(848),h=function(e){var r=e.testId,o=e.tag,n=void 0===o?i.SQ.DIV:o,t=e.position,a=void 0===t?i.JT.RELATIVE:t,s=e.top,d=e.left,g=e.right,B=e.bottom,u=e.opacity,l=e.overflow,c=void 0===l?i.Ie.VISIBLE:l,f=e.flexDirection,S=void 0===f?i.uY.COLUMN:f,p=e.justifyContent,L=void 0===p?i.b9.FLEX_START:p,h=e.alignItems,E=void 0===h?i.th.STRETCH:h,y=e.alignSelf,v=e.alignContent,R=void 0===v?i.CN.FLEX_START:v,T=e.marginTop,M=e.paddingTop,A=e.marginLeft,I=e.paddingLeft,F=e.marginRight,C=e.paddingRight,W=e.marginBottom,_=e.paddingBottom,D=e.minWidth,x=e.width,N=e.maxWidth,w=e.minHeight,G=e.height,P=e.maxHeight,k=e.boxShadow,H=e.borderColor,O=e.borderWidth,j=e.borderWidthTop,z=e.borderWidthLeft,V=e.borderWidthRight,U=e.borderWidthBottom,J=e.borderRadius,K=e.backgroundColor,Y=e.children;return(0,b.jsx)(m,{"data-testid":r,as:i.l5[n],position:a,top:(0,X.bW)(s),left:(0,X.bW)(d),right:(0,X.bW)(g),bottom:(0,X.bW)(B),opacity:(0,X.X6)(u),overflow:c,flexDirection:S,justifyContent:L,alignItems:E,alignSelf:y,alignContent:R,marginTop:(0,X.aL)(T),paddingTop:(0,X.aL)(M),marginLeft:(0,X.aL)(A),paddingLeft:(0,X.aL)(I),marginRight:(0,X.aL)(F),paddingRight:(0,X.aL)(C),marginBottom:(0,X.aL)(W),paddingBottom:(0,X.aL)(_),minWidth:(0,X.FK)(D),width:(0,X.FK)(x),maxWidth:(0,X.FK)(N),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.ft)(O),borderWidthTop:(0,X.ft)(j),borderWidthLeft:(0,X.ft)(z),borderWidthRight:(0,X.ft)(V),borderWidthBottom:(0,X.ft)(U),borderRadius:(0,X.v5)(J),backgroundColor:(0,X.QR)(K),children:Y})};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 E=h},695:(e,r,o)=>{o.d(r,{JU:()=>n.JU,wR:()=>n.wR}),o(410);var n=o(506)},410:(e,r,o)=>{o.d(r,{$U:()=>S,tZ:()=>d,$c:()=>g});var n=o(155),t=o(389),a=function(e){return e[e.MD=0]="MD",e[e.LG=1]="LG",e[e.XL=2]="XL",e}({}),i=o(848),s=(0,n.createContext)({}),d=function(e){var r=e.breakpointMD,o=e.breakpointLG,d=e.breakpointXL,g=e.children,B=function(e,r,o){var i=(0,t.useWindowDimensions)().width;return(0,n.useMemo)((function(){return i>=o?a.XL:i>=r?a.LG:i>=e?a.MD:void 0}),[i>=o,i>=r,i>=e])}(null!=r?r:768,null!=o?o:1024,null!=d?d:1280),u=(0,n.useMemo)((function(){return{breakpoint:B}}),[B]);return(0,i.jsx)(s.Provider,{value:u,children:(0,i.jsx)(L,{children:g})})},g=function(){return(0,n.useContext)(s)};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 u(e,r){(null==r||r>e.length)&&(r=e.length);for(var o=0,n=Array(r);o<r;o++)n[o]=e[o];return n}function l(e,r,o){return(r=function(e){var r=function(e){if("object"!=B(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=B(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==B(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o,e}var c=l(l(l({},a.MD,1),a.LG,2),a.XL,3),f=function(e,r){return c[e]>c[r]},S=t.Platform.select({web:function(e){var r=e.isDefault,o=e.isOtherwise,t=e.breakpoint,a=e.children,i=g(),s=function(e,r){return function(e){if(Array.isArray(e))return e}(e)||function(e,r){var o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var n,t,a,i,s=[],d=!0,g=!1;try{if(a=(o=o.call(e)).next,0===r){if(Object(o)!==o)return;d=!1}else for(;!(d=(n=a.call(o)).done)&&(s.push(n.value),s.length!==r);d=!0);}catch(e){g=!0,t=e}finally{try{if(!d&&null!=o.return&&(i=o.return(),Object(i)!==i))return}finally{if(g)throw t}}return s}}(e,r)||function(e,r){if(e){if("string"==typeof e)return u(e,r);var o={}.toString.call(e).slice(8,-1);return"Object"===o&&e.constructor&&(o=e.constructor.name),"Map"===o||"Set"===o?Array.from(e):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?u(e,r):void 0}}(e,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.")}()}((0,n.useState)(!1),2),d=s[0],B=s[1];if((0,n.useEffect)((function(){B(!0)}),[]),d){if(r&&void 0===i.breakpoint)return a;if(i.breakpoint===t)return a;if(o&&f(i.breakpoint,t))return a}else if(r)return a},default:function(e){var r=e.isDefault,o=e.isOtherwise,n=e.breakpoint,t=e.children,a=g();return r&&void 0===a.breakpoint||a.breakpoint===n||o&&f(a.breakpoint,n)?t:void 0}});function p(e,r){(null==r||r>e.length)&&(r=e.length);for(var o=0,n=Array(r);o<r;o++)n[o]=e[o];return n}S.Breakpoint=a;var L=t.Platform.select({web:function(e){var r=e.children,o=(0,n.useRef)(),t=function(e,r){return function(e){if(Array.isArray(e))return e}(e)||function(e,r){var o=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=o){var n,t,a,i,s=[],d=!0,g=!1;try{if(a=(o=o.call(e)).next,0===r){if(Object(o)!==o)return;d=!1}else for(;!(d=(n=a.call(o)).done)&&(s.push(n.value),s.length!==r);d=!0);}catch(e){g=!0,t=e}finally{try{if(!d&&null!=o.return&&(i=o.return(),Object(i)!==i))return}finally{if(g)throw t}}return s}}(e,r)||function(e,r){if(e){if("string"==typeof e)return p(e,r);var o={}.toString.call(e).slice(8,-1);return"Object"===o&&e.constructor&&(o=e.constructor.name),"Map"===o||"Set"===o?Array.from(e):"Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o)?p(e,r):void 0}}(e,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.")}()}((0,n.useState)(!1),2),a=t[0],s=t[1];(0,n.useEffect)((function(){s(!0)}),[]);var d=(0,n.useMemo)((function(){return a||"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"}}),[a]);return(0,i.jsxs)("div",{ref:o,style:d,suppressHydrationWarning:!0,children:[(0,i.jsx)("script",{dangerouslySetInnerHTML:{__html:'document.currentScript.parentElement.style.display="none"'}}),r]})},default:function(e){return e.children}})},506:(e,r,o)=>{o.d(r,{wX:()=>V,wR:()=>U,JU:()=>a});var n=o(155),t=o(389),a=function(){var e=U();return(0,n.useMemo)((function(){return t.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},marginTopBaseX6S:{marginTop:e.spacingBaseX6S},paddingTopBaseX6S:{paddingTop:e.spacingBaseX6S},marginLeftBaseX6S:{marginLeft:e.spacingBaseX6S},paddingLeftBaseX6S:{paddingLeft:e.spacingBaseX6S},marginRightBaseX6S:{marginRight:e.spacingBaseX6S},paddingRightBaseX6S:{paddingRight:e.spacingBaseX6S},marginBottomBaseX6S:{marginBottom:e.spacingBaseX6S},paddingBottomBaseX6S:{paddingBottom:e.spacingBaseX6S},marginTopBaseX5S:{marginTop:e.spacingBaseX5S},paddingTopBaseX5S:{paddingTop:e.spacingBaseX5S},marginLeftBaseX5S:{marginLeft:e.spacingBaseX5S},paddingLeftBaseX5S:{paddingLeft:e.spacingBaseX5S},marginRightBaseX5S:{marginRight:e.spacingBaseX5S},paddingRightBaseX5S:{paddingRight:e.spacingBaseX5S},marginBottomBaseX5S:{marginBottom:e.spacingBaseX5S},paddingBottomBaseX5S:{paddingBottom:e.spacingBaseX5S},marginTopBaseX4S:{marginTop:e.spacingBaseX4S},paddingTopBaseX4S:{paddingTop:e.spacingBaseX4S},marginLeftBaseX4S:{marginLeft:e.spacingBaseX4S},paddingLeftBaseX4S:{paddingLeft:e.spacingBaseX4S},marginRightBaseX4S:{marginRight:e.spacingBaseX4S},paddingRightBaseX4S:{paddingRight:e.spacingBaseX4S},marginBottomBaseX4S:{marginBottom:e.spacingBaseX4S},paddingBottomBaseX4S:{paddingBottom:e.spacingBaseX4S},marginTopBaseX3S:{marginTop:e.spacingBaseX3S},paddingTopBaseX3S:{paddingTop:e.spacingBaseX3S},marginLeftBaseX3S:{marginLeft:e.spacingBaseX3S},paddingLeftBaseX3S:{paddingLeft:e.spacingBaseX3S},marginRightBaseX3S:{marginRight:e.spacingBaseX3S},paddingRightBaseX3S:{paddingRight:e.spacingBaseX3S},marginBottomBaseX3S:{marginBottom:e.spacingBaseX3S},paddingBottomBaseX3S:{paddingBottom:e.spacingBaseX3S},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},borderWidthBaseSM:{borderWidth:e.borderWidthBaseSM},borderWidthBaseMD:{borderWidth:e.borderWidthBaseMD},borderWidthBaseLG:{borderWidth:e.borderWidthBaseLG},borderWidthTopBaseSM:{borderTopWidth:e.borderWidthBaseSM},borderWidthTopBaseMD:{borderTopWidth:e.borderWidthBaseMD},borderWidthTopBaseLG:{borderTopWidth:e.borderWidthBaseLG},borderWidthLeftBaseSM:{borderLeftWidth:e.borderWidthBaseSM},borderWidthLeftBaseMD:{borderLeftWidth:e.borderWidthBaseMD},borderWidthLeftBaseLG:{borderLeftWidth:e.borderWidthBaseLG},borderWidthRightBaseSM:{borderRightWidth:e.borderWidthBaseSM},borderWidthRightBaseMD:{borderRightWidth:e.borderWidthBaseMD},borderWidthRightBaseLG:{borderRightWidth:e.borderWidthBaseLG},borderWidthBottomBaseSM:{borderBottomWidth:e.borderWidthBaseSM},borderWidthBottomBaseMD:{borderBottomWidth:e.borderWidthBaseMD},borderWidthBottomBaseLG:{borderBottomWidth:e.borderWidthBaseLG},borderRadiusBaseXS:{borderRadius:e.borderRadiusBaseXS},borderRadiusBaseSM:{borderRadius:e.borderRadiusBaseSM},borderRadiusBaseMD:{borderRadius:e.borderRadiusBaseMD},borderRadiusBaseLG:{borderRadius:e.borderRadiusBaseLG},borderRadiusBaseXL:{borderRadius:e.borderRadiusBaseXL}})}),[e])},i="rgb(198,198,202)",s="rgb(212,212,216)",d="rgb(216,216,228)",g="rgb(218,218,234)",B="rgb(224,224,238)",u="rgb(244,244,245)",l="rgb(247,247,249)",c="rgb(249,249,250)",f="rgb(254,254,255)",S="rgb(253,252,254)",p="rgb(249,249,250)",L="rgb(247,247,249)",m="rgb(244,244,245)",X="rgb(224,224,238)",b="rgb(218,218,234)",h="rgb(216,216,228)",E="rgb(212,212,216)",y="rgb(198,198,202)",v="rgb(102,102,116)",R="rgb(82,82,92)",T="rgb(74,74,88)",M="rgb(63,63,70)",A="rgb(49,49,56)",I="rgb(39,39,42)",F="rgb(30,30,34)",C="rgb(24,24,27)",W="rgb(6,6,14)",_="rgb(198,198,202)",D="rgb(212,212,216)",x="rgb(216,216,228)",N="rgb(218,218,234)",w="rgb(224,224,238)",G="rgb(244,244,245)",P="rgb(247,247,249)",k="rgb(249,249,250)",H="rgb(254,254,255)",O=["ui-sans-serif","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto","Helvetica","Arial","sans-serif"].join(","),j=o(848),z=(0,n.createContext)({colorBackgroundBase100:i,colorBackgroundBase200:s,colorBackgroundBase300:d,colorBackgroundBase400:g,colorBackgroundBase500:B,colorBackgroundBase600:u,colorBackgroundBase700:l,colorBackgroundBase800:c,colorBackgroundBase900:f,colorBorderBase100:S,colorBorderBase200:p,colorBorderBase300:L,colorBorderBase400:m,colorBorderBase500:X,colorBorderBase600:b,colorBorderBase700:h,colorBorderBase800:E,colorBorderBase900:y,colorForegroundBase100:v,colorForegroundBase200:R,colorForegroundBase300:T,colorForegroundBase400:M,colorForegroundBase500:A,colorForegroundBase600:I,colorForegroundBase700:F,colorForegroundBase800:C,colorForegroundBase900:W,colorForegroundInverse100:_,colorForegroundInverse200:D,colorForegroundInverse300:x,colorForegroundInverse400:N,colorForegroundInverse500:w,colorForegroundInverse600:G,colorForegroundInverse700:P,colorForegroundInverse800:k,colorForegroundInverse900:H,fontFamilyBase:O,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,spacingBaseX6S:2,spacingBaseX5S:4,spacingBaseX4S:6,spacingBaseX3S:8,spacingBaseX2S:10,spacingBaseXS:12,spacingBaseSM:14,spacingBaseMD:16,spacingBaseLG:18,spacingBaseXL:20,spacingBaseX2L:24,spacingBaseX3L:28,spacingBaseX4L:32,spacingBaseX5L:36,spacingBaseX6L:40,borderWidthBaseSM:.5,borderWidthBaseMD:1,borderWidthBaseLG:1.5,borderRadiusBaseXS:2,borderRadiusBaseSM:4,borderRadiusBaseMD:6,borderRadiusBaseLG:8,borderRadiusBaseXL:10}),V=function(e){var r=e.colorBackgroundBase100,o=e.colorBackgroundBase200,t=e.colorBackgroundBase300,a=e.colorBackgroundBase400,V=e.colorBackgroundBase500,U=e.colorBackgroundBase600,J=e.colorBackgroundBase700,K=e.colorBackgroundBase800,Y=e.colorBackgroundBase900,Q=e.colorBorderBase100,q=e.colorBorderBase200,$=e.colorBorderBase300,Z=e.colorBorderBase400,ee=e.colorBorderBase500,re=e.colorBorderBase600,oe=e.colorBorderBase700,ne=e.colorBorderBase800,te=e.colorBorderBase900,ae=e.colorForegroundBase100,ie=e.colorForegroundBase200,se=e.colorForegroundBase300,de=e.colorForegroundBase400,ge=e.colorForegroundBase500,Be=e.colorForegroundBase600,ue=e.colorForegroundBase700,le=e.colorForegroundBase800,ce=e.colorForegroundBase900,fe=e.colorForegroundInverse100,Se=e.colorForegroundInverse200,pe=e.colorForegroundInverse300,Le=e.colorForegroundInverse400,me=e.colorForegroundInverse500,Xe=e.colorForegroundInverse600,be=e.colorForegroundInverse700,he=e.colorForegroundInverse800,Ee=e.colorForegroundInverse900,ye=e.fontFamilyBase,ve=e.fontWeightBaseThin,Re=e.fontWeightBaseExtraLight,Te=e.fontWeightBaseLight,Me=e.fontWeightBaseRegular,Ae=e.fontWeightBaseMedium,Ie=e.fontWeightBaseSemibold,Fe=e.fontWeightBaseBold,Ce=e.fontWeightBaseExtraBold,We=e.fontWeightBaseBlack,_e=e.fontSizeBaseX2S,De=e.fontSizeBaseXS,xe=e.fontSizeBaseSM,Ne=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,Ke=e.lineHeightBaseLoose,Ye=e.spacingBaseX6S,Qe=e.spacingBaseX5S,qe=e.spacingBaseX4S,$e=e.spacingBaseX3S,Ze=e.spacingBaseX2S,er=e.spacingBaseXS,rr=e.spacingBaseSM,or=e.spacingBaseMD,nr=e.spacingBaseLG,tr=e.spacingBaseXL,ar=e.spacingBaseX2L,ir=e.spacingBaseX3L,sr=e.spacingBaseX4L,dr=e.spacingBaseX5L,gr=e.spacingBaseX6L,Br=e.borderWidthBaseSM,ur=e.borderWidthBaseMD,lr=e.borderWidthBaseLG,cr=e.borderRadiusBaseXS,fr=e.borderRadiusBaseSM,Sr=e.borderRadiusBaseMD,pr=e.borderRadiusBaseLG,Lr=e.borderRadiusBaseXL,mr=e.children,Xr=(0,n.useMemo)((function(){return{colorBackgroundBase100:null!=r?r:i,colorBackgroundBase200:null!=o?o:s,colorBackgroundBase300:null!=t?t:d,colorBackgroundBase400:null!=a?a:g,colorBackgroundBase500:null!=V?V:B,colorBackgroundBase600:null!=U?U:u,colorBackgroundBase700:null!=J?J:l,colorBackgroundBase800:null!=K?K:c,colorBackgroundBase900:null!=Y?Y:f,colorBorderBase100:null!=Q?Q:S,colorBorderBase200:null!=q?q:p,colorBorderBase300:null!=$?$:L,colorBorderBase400:null!=Z?Z:m,colorBorderBase500:null!=ee?ee:X,colorBorderBase600:null!=re?re:b,colorBorderBase700:null!=oe?oe:h,colorBorderBase800:null!=ne?ne:E,colorBorderBase900:null!=te?te:y,colorForegroundBase100:null!=ae?ae:v,colorForegroundBase200:null!=ie?ie:R,colorForegroundBase300:null!=se?se:T,colorForegroundBase400:null!=de?de:M,colorForegroundBase500:null!=ge?ge:A,colorForegroundBase600:null!=Be?Be:I,colorForegroundBase700:null!=ue?ue:F,colorForegroundBase800:null!=le?le:C,colorForegroundBase900:null!=ce?ce:W,colorForegroundInverse100:null!=fe?fe:_,colorForegroundInverse200:null!=Se?Se:D,colorForegroundInverse300:null!=pe?pe:x,colorForegroundInverse400:null!=Le?Le:N,colorForegroundInverse500:null!=me?me:w,colorForegroundInverse600:null!=Xe?Xe:G,colorForegroundInverse700:null!=be?be:P,colorForegroundInverse800:null!=he?he:k,colorForegroundInverse900:null!=Ee?Ee:H,fontFamilyBase:null!=ye?ye:O,fontWeightBaseThin:null!=ve?ve:100,fontWeightBaseExtraLight:null!=Re?Re:200,fontWeightBaseLight:null!=Te?Te:300,fontWeightBaseRegular:null!=Me?Me:400,fontWeightBaseMedium:null!=Ae?Ae:500,fontWeightBaseSemibold:null!=Ie?Ie:600,fontWeightBaseBold:null!=Fe?Fe:700,fontWeightBaseExtraBold:null!=Ce?Ce:800,fontWeightBaseBlack:null!=We?We:900,fontSizeBaseX2S:null!=_e?_e:12,fontSizeBaseXS:null!=De?De:14,fontSizeBaseSM:null!=xe?xe:16,fontSizeBaseMD:null!=Ne?Ne: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!=Ke?Ke:2,spacingBaseX6S:null!=Ye?Ye:2,spacingBaseX5S:null!=Qe?Qe:4,spacingBaseX4S:null!=qe?qe:6,spacingBaseX3S:null!=$e?$e:8,spacingBaseX2S:null!=Ze?Ze:10,spacingBaseXS:null!=er?er:12,spacingBaseSM:null!=rr?rr:14,spacingBaseMD:null!=or?or:16,spacingBaseLG:null!=nr?nr:18,spacingBaseXL:null!=tr?tr:20,spacingBaseX2L:null!=ar?ar:24,spacingBaseX3L:null!=ir?ir:28,spacingBaseX4L:null!=sr?sr:32,spacingBaseX5L:null!=dr?dr:36,spacingBaseX6L:null!=gr?gr:40,borderWidthBaseSM:null!=Br?Br:.5,borderWidthBaseMD:null!=ur?ur:1,borderWidthBaseLG:null!=lr?lr:1.5,borderRadiusBaseXS:null!=cr?cr:2,borderRadiusBaseSM:null!=fr?fr:4,borderRadiusBaseMD:null!=Sr?Sr:6,borderRadiusBaseLG:null!=pr?pr:8,borderRadiusBaseXL:null!=Lr?Lr:10}}),[r,o,t,a,V,U,J,K,Y,Q,q,$,Z,ee,re,oe,ne,te,ae,ie,se,de,ge,Be,ue,le,ce,fe,Se,pe,Le,me,Xe,be,he,Ee,ye,ve,Re,Te,Me,Ae,Ie,Fe,Ce,We,_e,De,xe,Ne,we,Ge,Pe,ke,He,Oe,je,ze,Ve,Ue,Je,Ke,Ye,Qe,qe,$e,Ze,er,rr,or,nr,tr,ar,ir,sr,dr,gr,Br,ur,lr,cr,fr,Sr,pr,Lr]);return(0,j.jsx)(z.Provider,{value:Xr,children:mr})},U=function(){return(0,n.useContext)(z)}},20:(e,r,o)=>{var n=o(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 d(e,r,o){var n,d={},g=null,B=null;for(n in void 0!==o&&(g=""+o),void 0!==r.key&&(g=""+r.key),void 0!==r.ref&&(B=r.ref),r)a.call(r,n)&&!s.hasOwnProperty(n)&&(d[n]=r[n]);if(e&&e.defaultProps)for(n in r=e.defaultProps)void 0===d[n]&&(d[n]=r[n]);return{$$typeof:t,type:e,key:g,ref:B,props:d,_owner:i.current}}r.jsx=d,r.jsxs=d},848:(e,r,o)=>{e.exports=o(20)},729:e=>{e.exports=o},155:r=>{r.exports=e},389:e=>{e.exports=r}},t={};function a(e){var r=t[e];if(void 0!==r)return r.exports;var o=t[e]={exports:{}};return n[e](o,o.exports,a),o.exports}a.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return a.d(r,{a:r}),r},a.d=(e,r)=>{for(var o in r)a.o(r,o)&&!a.o(e,o)&&Object.defineProperty(e,o,{enumerable:!0,get:r[o]})},a.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),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,Media:()=>G.$U,MediaContextProvider:()=>G.tZ,Opacity:()=>j,POSITION_MAX:()=>C,POSITION_MIN:()=>W,Position:()=>F,SIZE_FULL:()=>w,Size:()=>N,Text:()=>h,ThemeContextProvider:()=>P.wX,View:()=>E,useMediaContext:()=>G.$c,useThemeContext:()=>P.wR,useThemeStyleSheet:()=>P.JU});var s=a(695),d=a(155),g=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}({}),u=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}({}),l=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}({}),c=function(e){return e.HEADING="heading",e.PARAGRAPH="paragraph",e}({}),f=function(e){return e[e.LEFT=0]="LEFT",e[e.CENTER=1]="CENTER",e[e.RIGHT=2]="RIGHT",e}({}),S=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}({}),p=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}({}),L=[p.H1,p.H2,p.H3,p.H4,p.H5,p.H6],m=a(848),X=g.StyleSheet.create({textPositionStatic:{position:"static"},textAlignLeft:{textAlign:"left"},textAlignCenter:{textAlign:"center"},textAlignRight:{textAlign:"right"},textColorTransparent:{color:"transparent"}}),b=new Map,h=function(e){var r=e.type,o=e.align,n=void 0===o?f.LEFT:o,t=e.fontWeight,a=void 0===t?u.REGULAR:t,i=e.fontSize,h=void 0===i?l.MD:i,E=e.lineHeight,y=void 0===E?S.NONE:E,v=e.maxLines,R=e.color,T=void 0===R?B.BASE_800:R,M=e.children,A=(0,s.wR)(),I=(0,s.JU)(),F=(0,d.useMemo)((function(){var e=function(e,r){var o=[e,r].join("-");if(b.has(o))return b.get(o);var n=g.StyleSheet.create({textLineHeight:{lineHeight:e*r}});return b.set(o,n),n}(function(){switch(h){case l.X2S:return A.fontSizeBaseX2S;case l.XS:return A.fontSizeBaseXS;case l.SM:return A.fontSizeBaseSM;case l.MD:return A.fontSizeBaseMD;case l.LG:return A.fontSizeBaseLG;case l.XL:return A.fontSizeBaseXL;case l.X2L:return A.fontSizeBaseX2L;case l.X3L:return A.fontSizeBaseX3L;case l.X4L:return A.fontSizeBaseX4L;case l.X5L:return A.fontSizeBaseX5L}}(),function(){switch(y){case S.NONE:return A.lineHeightBaseNone;case S.TIGHT:return A.lineHeightBaseTight;case S.SNUG:return A.lineHeightBaseSnug;case S.NORMAL:return A.lineHeightBaseNormal;case S.RELAXED:return A.lineHeightBaseRelaxed;case S.LOOSE:return A.lineHeightBaseLoose}}());return e.textLineHeight}),[h,y,A]);return(0,m.jsx)(g.Text,{role:p.P===r?c.PARAGRAPH:L.includes(r)?c.HEADING:void 0,"aria-level":function(){if(L.includes(r)){if(r===p.H1)return 1;if(r===p.H2)return 2;if(r===p.H3)return 3;if(r===p.H4)return 4;if(r===p.H5)return 5;if(r===p.H6)return 6}}(),style:[X.textPositionStatic,I.fontFamilyBase,function(){switch(n){case f.LEFT:return X.textAlignLeft;case f.CENTER:return X.textAlignCenter;case f.RIGHT:return X.textAlignRight}}(),function(){switch(a){case u.THIN:return I.fontWeightBaseThin;case u.EXTRA_LIGHT:return I.fontWeightBaseExtraLight;case u.LIGHT:return I.fontWeightBaseLight;case u.REGULAR:return I.fontWeightBaseRegular;case u.MEDIUM:return I.fontWeightBaseMedium;case u.SEMIBOLD:return I.fontWeightBaseSemibold;case u.BOLD:return I.fontWeightBaseBold;case u.EXTRA_BOLD:return I.fontWeightBaseExtraBold;case u.BLACK:return I.fontWeightBaseBlack}}(),function(){switch(h){case l.X2S:return I.fontSizeBaseX2S;case l.XS:return I.fontSizeBaseXS;case l.SM:return I.fontSizeBaseSM;case l.MD:return I.fontSizeBaseMD;case l.LG:return I.fontSizeBaseLG;case l.XL:return I.fontSizeBaseXL;case l.X2L:return I.fontSizeBaseX2L;case l.X3L:return I.fontSizeBaseX3L;case l.X4L:return I.fontSizeBaseX4L;case l.X5L:return I.fontSizeBaseX5L}}(),F,function(){switch(T){case B.TRANSPARENT:return X.textColorTransparent;case B.BASE_100:return I.colorForegroundBase100;case B.BASE_200:return I.colorForegroundBase200;case B.BASE_300:return I.colorForegroundBase300;case B.BASE_400:return I.colorForegroundBase400;case B.BASE_500:return I.colorForegroundBase500;case B.BASE_600:return I.colorForegroundBase600;case B.BASE_700:return I.colorForegroundBase700;case B.BASE_800:return I.colorForegroundBase800;case B.BASE_900:return I.colorForegroundBase900;case B.INVERSE_100:return I.colorForegroundInverse100;case B.INVERSE_200:return I.colorForegroundInverse200;case B.INVERSE_300:return I.colorForegroundInverse300;case B.INVERSE_400:return I.colorForegroundInverse400;case B.INVERSE_500:return I.colorForegroundInverse500;case B.INVERSE_600:return I.colorForegroundInverse600;case B.INVERSE_700:return I.colorForegroundInverse700;case B.INVERSE_800:return I.colorForegroundInverse800;case B.INVERSE_900:return I.colorForegroundInverse900}}()],numberOfLines:v,children:M})};h.Type=p,h.Align=f,h.FontWeight=u,h.FontSize=l,h.LineHeight=S,h.Color=B;var E=g.Platform.select({native:function(){return a(689).A},web:function(){return a(741).A}})(),y=function(e){return e[e.PIXEL=0]="PIXEL",e[e.PERCENT=1]="PERCENT",e}({});function v(e){return v="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},v(e)}function R(e,r){for(var o=0;o<r.length;o++){var n=r[o];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,T(n.key),n)}}function T(e){var r=function(e){if("object"!=v(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=v(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==v(r)?r:r+""}var M,A,I,F=function(){return e=function e(r){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:y.PIXEL;!function(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=r,this.dimension=o},(r=[{key:"toValue",value:function(){return this.dimension===y.PIXEL?g.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])&&R(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,r}();M=F,I=y,(A=T(A="Dimension"))in M?Object.defineProperty(M,A,{value:I,enumerable:!0,configurable:!0,writable:!0}):M[A]=I;var C=new F(100,F.Dimension.PERCENT),W=new F(0,F.Dimension.PIXEL);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 D(e,r){for(var o=0;o<r.length;o++){var n=r[o];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,x(n.key),n)}}function x(e){var r=function(e){if("object"!=_(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=_(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==_(r)?r:r+""}var N=function(){return function(e,r){return r&&D(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),e}((function e(r){var o=arguments.length>1&&void 0!==arguments[1]?arguments[1]:y.PIXEL;!function(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}(this,e),this.amount=r,this.dimension=o}),[{key:"toValue",value:function(){return this.dimension===y.PIXEL?g.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])}();!function(e,r,o){(r=x(r))in e?Object.defineProperty(e,r,{value:o,enumerable:!0,configurable:!0,writable:!0}):e[r]=o}(N,"Dimension",y);var w=new N(100,N.Dimension.PERCENT),G=a(410),P=a(506);function k(e){return k="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},k(e)}function H(e,r){for(var o=0;o<r.length;o++){var n=r[o];n.enumerable=n.enumerable||!1,n.configurable=!0,"value"in n&&(n.writable=!0),Object.defineProperty(e,O(n.key),n)}}function O(e){var r=function(e){if("object"!=k(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var o=r.call(e,"string");if("object"!=k(o))return o;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==k(r)?r:r+""}var j=function(){return function(e,r){return r&&H(e.prototype,r),Object.defineProperty(e,"prototype",{writable:!1}),e}((function e(r){!function(e,r){if(!(e instanceof r))throw new TypeError("Cannot call a class as a function")}(this,e),this.value=r}),[{key:"toValue",value:function(){return this.value}}])}();return i})()));
|
|
2
|
+
!function(e,o){"object"==typeof exports&&"object"==typeof module?module.exports=o(require("react-native"),require("react"),require("@emotion/styled")):"function"==typeof define&&define.amd?define("creactive",["react-native","react","@emotion/styled"],o):"object"==typeof exports?exports.creactive=o(require("react-native"),require("react"),require("@emotion/styled")):e.creactive=o(e["react-native"],e.react,e["@emotion/styled"])}(this,((e,o,r)=>(()=>{"use strict";var n={661:(e,o,r)=>{var n;function t(e){return t="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},t(e)}function i(e,o,r){return(o=function(e){var o=function(e){if("object"!=t(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=t(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==t(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,{SS:()=>s,TP:()=>m,sV:()=>B,LN:()=>g,PI:()=>y,nO:()=>X,r7:()=>a,k8:()=>c,rq:()=>d,lF:()=>h,Wh:()=>p});var a=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}({}),s=(i(i(i(i(i(i(i(i(i(i(n={},a.BASE_100,"colorForegroundBase100"),a.BASE_200,"colorForegroundBase200"),a.BASE_300,"colorForegroundBase300"),a.BASE_400,"colorForegroundBase400"),a.BASE_500,"colorForegroundBase500"),a.BASE_600,"colorForegroundBase600"),a.BASE_700,"colorForegroundBase700"),a.BASE_800,"colorForegroundBase800"),a.BASE_900,"colorForegroundBase900"),a.INVERSE_100,"colorForegroundInverse100"),i(i(i(i(i(i(i(i(n,a.INVERSE_200,"colorForegroundInverse200"),a.INVERSE_300,"colorForegroundInverse300"),a.INVERSE_400,"colorForegroundInverse400"),a.INVERSE_500,"colorForegroundInverse500"),a.INVERSE_600,"colorForegroundInverse600"),a.INVERSE_700,"colorForegroundInverse700"),a.INVERSE_800,"colorForegroundInverse800"),a.INVERSE_900,"colorForegroundInverse900"));function l(e){return l="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},l(e)}function u(e,o,r){return(o=function(e){var o=function(e){if("object"!=l(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=l(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==l(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var d=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}({}),g=u(u(u(u(u(u(u(u(u({},d.THIN,"fontWeightBaseThin"),d.EXTRA_LIGHT,"fontWeightBaseExtraLight"),d.LIGHT,"fontWeightBaseLight"),d.REGULAR,"fontWeightBaseRegular"),d.MEDIUM,"fontWeightBaseMedium"),d.SEMIBOLD,"fontWeightBaseSemiBold"),d.BOLD,"fontWeightBaseBold"),d.EXTRA_BOLD,"fontWeightBaseExtraBold"),d.BLACK,"fontWeightBaseBlack"),c=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}({}),B=u(u(u(u(u(u(u(u(u(u({},c.X2S,"fontSizeBaseX2S"),c.XS,"fontSizeBaseXS"),c.SM,"fontSizeBaseSM"),c.MD,"fontSizeBaseMD"),c.LG,"fontSizeBaseLG"),c.XL,"fontSizeBaseXL"),c.X2L,"fontSizeBaseX2L"),c.X3L,"fontSizeBaseX3L"),c.X4L,"fontSizeBaseX4L"),c.X5L,"fontSizeBaseX5L");function f(e){return f="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},f(e)}function S(e,o,r){return(o=function(e){var o=function(e){if("object"!=f(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=f(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==f(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var p=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[e.SPAN=7]="SPAN",e}({}),m=S(S(S(S(S(S(S(S({},p.H1,"h1"),p.H2,"h2"),p.H3,"h3"),p.H4,"h4"),p.H5,"h5"),p.H6,"h6"),p.P,"p"),p.SPAN,"span");function L(e){return L="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},L(e)}function b(e,o,r){return(o=function(e){var o=function(e){if("object"!=L(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=L(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==L(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var X=function(e){return e[e.LEFT=0]="LEFT",e[e.CENTER=1]="CENTER",e[e.RIGHT=2]="RIGHT",e}({}),h=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}({}),y=b(b(b(b(b(b({},h.NONE,"lineHeightBaseNone"),h.TIGHT,"lineHeightBaseTight"),h.SNUG,"lineHeightBaseSnug"),h.NORMAL,"lineHeightBaseNormal"),h.RELAXED,"lineHeightBaseRelaxed"),h.LOOSE,"lineHeightBaseLoose")},231:(e,o,r)=>{r.d(o,{Fu:()=>b,yx:()=>l,ZZ:()=>s,yg:()=>B,jh:()=>f,EM:()=>c,LG:()=>g,ts:()=>d,EO:()=>u,iW:()=>X});var n=r(695),t=r(389),i=r(661),a=t.StyleSheet.create({transparent:{color:"transparent"}}),s=function(e){var o=(0,n.JU)();return e===i.r7.TRANSPARENT?a.transparent:o[i.SS[e]]},l=function(e){var o=(0,n.wR)();return e===i.r7.TRANSPARENT?"transparent":o[i.SS[e]]},u=function(){return(0,n.JU)().fontFamilyBase},d=function(){return(0,n.wR)().fontFamilyBase},g=function(e){return(0,n.JU)()[i.LN[e]]},c=function(e){return(0,n.wR)()[i.LN[e]]},B=function(e){return(0,n.JU)()[i.sV[e]]},f=function(e){return(0,n.wR)()[i.sV[e]]};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 p(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 m=t.StyleSheet.create({textAlignLeft:{textAlign:"left"},textAlignCenter:{textAlign:"center"},textAlignRight:{textAlign:"right"}}),L=p(p(p({},i.nO.LEFT,m.textAlignLeft),i.nO.CENTER,m.textAlignCenter),i.nO.RIGHT,m.textAlignRight),b=function(e){return L[e]},X=function(e){return(0,n.wR)()[i.PI[e]]}},79:(e,o,r)=>{r.d(o,{A:()=>g});var n=r(389),t=r(661),i=new Map,a=function(e,o){var r=[e,o].join("-");if(i.has(r))return i.get(r);var t=n.StyleSheet.create({textLineHeight:{lineHeight:e*o}});return i.set(r,t),t},s=r(231),l=r(848),u=n.StyleSheet.create({default:{display:"inline",margin:0,padding:0,zIndex:0,position:"relative",listStyle:"none",borderStyle:"solid",boxSizing:"border-box",textDecoration:"none",whiteSpace:"pre-wrap",overflowWrap:"break-word",borderWidth:0}}),d=function(e){var o=e.align,r=void 0===o?t.nO.LEFT:o,i=e.fontWeight,d=void 0===i?t.rq.REGULAR:i,g=e.fontSize,c=void 0===g?t.k8.MD:g,B=e.lineHeight,f=void 0===B?t.lF.NORMAL:B,S=e.maxLines,p=e.color,m=void 0===p?t.r7.BASE_800:p,L=e.children;return(0,l.jsx)(n.Text,{style:[u.default,(0,s.Fu)(r),(0,s.EO)(),(0,s.LG)(d),(0,s.yg)(c),a((0,s.jh)(c),(0,s.iW)(f)),(0,s.ZZ)(m)],numberOfLines:S,children:L})};d.Tag=t.Wh,d.Align=t.nO,d.FontWeight=t.rq,d.FontSize=t.k8,d.LineHeight=t.lF,d.Color=t.r7;const g=d},54:(e,o,r)=>{r.d(o,{A:()=>p});var n,t=r(729),i=r.n(t),a=r(661);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,d,g=l(l(l({},a.nO.LEFT,"left"),a.nO.CENTER,"center"),a.nO.RIGHT,"right"),c=i().span(n||(u=["\n display: ",";\n margin: 0;\n padding: 0;\n z-index: 0;\n position: relative;\n list-style: none;\n border-style: solid;\n box-sizing: border-box;\n text-decoration: none;\n white-space: pre-wrap;\n overflow: hidden;\n overflow-wrap: break-word;\n text-overflow: ellipsis;\n text-align: ",";\n font-family: ",";\n font-weight: ",";\n font-size: ","px;\n line-height: ","px;\n -webkit-box-orient: vertical;\n -webkit-line-clamp: ",";\n color: ",";\n border-width: 0;\n"],d||(d=u.slice(0)),n=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(d)}}))),(function(e){return void 0===e.maxLines?"inline":"-webkit-box"}),(function(e){var o=e.align;return g[o]}),(function(e){return e.fontFamily}),(function(e){return e.fontWeight}),(function(e){return e.fontSize}),(function(e){return e.lineHeight}),(function(e){return e.maxLines}),(function(e){return e.color})),B=r(231),f=r(848),S=function(e){var o=e.tag,r=e.align,n=void 0===r?a.nO.LEFT:r,t=e.fontWeight,i=void 0===t?a.rq.REGULAR:t,s=e.fontSize,l=void 0===s?a.k8.MD:s,u=e.lineHeight,d=void 0===u?a.lF.NORMAL:u,g=e.maxLines,S=e.color,p=void 0===S?a.r7.BASE_800:S,m=e.children,L=(0,B.jh)(l),b=(0,B.iW)(d);return(0,f.jsx)(c,{as:a.TP[o],align:n,fontFamily:(0,B.ts)(),fontWeight:(0,B.EM)(i),fontSize:L,lineHeight:L*b,color:(0,B.yx)(p),maxLines:g,children:m})};S.Tag=a.Wh,S.Align=a.nO,S.FontWeight=a.rq,S.FontSize=a.k8,S.LineHeight=a.lF,S.Color=a.r7;const p=S},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,{l5:()=>Q,wu:()=>J,b8:()=>A,J2:()=>T,yQ:()=>c,ce:()=>d,kI:()=>a,Er:()=>l,Rw:()=>u,g9:()=>s,X1:()=>V,DK:()=>j,iq:()=>H,Dz:()=>G,mN:()=>U,Wk:()=>k,l2:()=>z,Wi:()=>O,CN:()=>C,th:()=>I,F5:()=>W,TI:()=>R,Vc:()=>v,uC:()=>g,s_:()=>i,lo:()=>w,uY:()=>M,b9:()=>F,Ie:()=>x,JT:()=>_,TL:()=>P,SQ:()=>q});var i=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({}),a=t(t(t({},i.SM,"borderWidthBaseSM"),i.MD,"borderWidthBaseMD"),i.LG,"borderWidthBaseLG"),s=t(t(t({},i.SM,"borderWidthTopBaseSM"),i.MD,"borderWidthTopBaseMD"),i.LG,"borderWidthTopBaseLG"),l=t(t(t({},i.SM,"borderWidthLeftBaseSM"),i.MD,"borderWidthLeftBaseMD"),i.LG,"borderWidthLeftBaseLG"),u=t(t(t({},i.SM,"borderWidthRightBaseSM"),i.MD,"borderWidthRightBaseMD"),i.LG,"borderWidthRightBaseLG"),d=t(t(t({},i.SM,"borderWidthBottomBaseSM"),i.MD,"borderWidthBottomBaseMD"),i.LG,"borderWidthBottomBaseLG"),g=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}({}),c=t(t(t(t(t({},g.XS,"borderRadiusBaseXS"),g.SM,"borderRadiusBaseSM"),g.MD,"borderRadiusBaseMD"),g.LG,"borderRadiusBaseLG"),g.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 f(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 S,p,m,L,b,X,h,y,E,v=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=f(f(f(f(f(f(f(f(f({},v.BASE_100,"colorBorderBase100"),v.BASE_200,"colorBorderBase200"),v.BASE_300,"colorBorderBase300"),v.BASE_400,"colorBorderBase400"),v.BASE_500,"colorBorderBase500"),v.BASE_600,"colorBorderBase600"),v.BASE_700,"colorBorderBase700"),v.BASE_800,"colorBorderBase800"),v.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}({}),A=f(f(f(f(f(f(f(f(f({},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"),M=function(e){return e[e.COLUMN=0]="COLUMN",e[e.ROW=1]="ROW",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.SPACE_BETWEEN=3]="SPACE_BETWEEN",e[e.SPACE_AROUND=4]="SPACE_AROUND",e[e.SPACE_EVENLY=5]="SPACE_EVENLY",e}({}),I=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}({}),W=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}({}),_=function(e){return e[e.RELATIVE=0]="RELATIVE",e[e.ABSOLUTE=1]="ABSOLUTE",e}({}),w=function(e){return e[e.SM=0]="SM",e[e.MD=1]="MD",e[e.LG=2]="LG",e}({});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 N(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 P=function(e){return e[e.X6S=0]="X6S",e[e.X5S=1]="X5S",e[e.X4S=2]="X4S",e[e.X3S=3]="X3S",e[e.X2S=4]="X2S",e[e.XS=5]="XS",e[e.SM=6]="SM",e[e.MD=7]="MD",e[e.LG=8]="LG",e[e.XL=9]="XL",e[e.X2L=10]="X2L",e[e.X3L=11]="X3L",e[e.X4L=12]="X4L",e[e.X5L=13]="X5L",e[e.X6L=14]="X6L",e}({}),G=(N(N(N(N(N(N(N(N(N(N(S={},P.X6S,"marginTopBaseX6S"),P.X5S,"marginTopBaseX5S"),P.X4S,"marginTopBaseX4S"),P.X3S,"marginTopBaseX3S"),P.X2S,"marginTopBaseX2S"),P.XS,"marginTopBaseXS"),P.SM,"marginTopBaseSM"),P.MD,"marginTopBaseMD"),P.LG,"marginTopBaseLG"),P.XL,"marginTopBaseXL"),N(N(N(N(N(S,P.X2L,"marginTopBaseX2L"),P.X3L,"marginTopBaseX3L"),P.X4L,"marginTopBaseX4L"),P.X5L,"marginTopBaseX5L"),P.X6L,"marginTopBaseX6L")),O=(N(N(N(N(N(N(N(N(N(N(p={},P.X6S,"paddingTopBaseX6S"),P.X5S,"paddingTopBaseX5S"),P.X4S,"paddingTopBaseX4S"),P.X3S,"paddingTopBaseX3S"),P.X2S,"paddingTopBaseX2S"),P.XS,"paddingTopBaseXS"),P.SM,"paddingTopBaseSM"),P.MD,"paddingTopBaseMD"),P.LG,"paddingTopBaseLG"),P.XL,"paddingTopBaseXL"),N(N(N(N(N(p,P.X2L,"paddingTopBaseX2L"),P.X3L,"paddingTopBaseX3L"),P.X4L,"paddingTopBaseX4L"),P.X5L,"paddingTopBaseX5L"),P.X6L,"paddingTopBaseX6L")),j=(N(N(N(N(N(N(N(N(N(N(m={},P.X6S,"marginLeftBaseX6S"),P.X5S,"marginLeftBaseX5S"),P.X4S,"marginLeftBaseX4S"),P.X3S,"marginLeftBaseX3S"),P.X2S,"marginLeftBaseX2S"),P.XS,"marginLeftBaseXS"),P.SM,"marginLeftBaseSM"),P.MD,"marginLeftBaseMD"),P.LG,"marginLeftBaseLG"),P.XL,"marginLeftBaseXL"),N(N(N(N(N(m,P.X2L,"marginLeftBaseX2L"),P.X3L,"marginLeftBaseX3L"),P.X4L,"marginLeftBaseX4L"),P.X5L,"marginLeftBaseX5L"),P.X6L,"marginLeftBaseX6L")),k=(N(N(N(N(N(N(N(N(N(N(L={},P.X6S,"paddingLeftBaseX6S"),P.X5S,"paddingLeftBaseX5S"),P.X4S,"paddingLeftBaseX4S"),P.X3S,"paddingLeftBaseX3S"),P.X2S,"paddingLeftBaseX2S"),P.XS,"paddingLeftBaseXS"),P.SM,"paddingLeftBaseSM"),P.MD,"paddingLeftBaseMD"),P.LG,"paddingLeftBaseLG"),P.XL,"paddingLeftBaseXL"),N(N(N(N(N(L,P.X2L,"paddingLeftBaseX2L"),P.X3L,"paddingLeftBaseX3L"),P.X4L,"paddingLeftBaseX4L"),P.X5L,"paddingLeftBaseX5L"),P.X6L,"paddingLeftBaseX6L")),H=(N(N(N(N(N(N(N(N(N(N(b={},P.X6S,"marginRightBaseX6S"),P.X5S,"marginRightBaseX5S"),P.X4S,"marginRightBaseX4S"),P.X3S,"marginRightBaseX3S"),P.X2S,"marginRightBaseX2S"),P.XS,"marginRightBaseXS"),P.SM,"marginRightBaseSM"),P.MD,"marginRightBaseMD"),P.LG,"marginRightBaseLG"),P.XL,"marginRightBaseXL"),N(N(N(N(N(b,P.X2L,"marginRightBaseX2L"),P.X3L,"marginRightBaseX3L"),P.X4L,"marginRightBaseX4L"),P.X5L,"marginRightBaseX5L"),P.X6L,"marginRightBaseX6L")),z=(N(N(N(N(N(N(N(N(N(N(X={},P.X6S,"paddingRightBaseX6S"),P.X5S,"paddingRightBaseX5S"),P.X4S,"paddingRightBaseX4S"),P.X3S,"paddingRightBaseX3S"),P.X2S,"paddingRightBaseX2S"),P.XS,"paddingRightBaseXS"),P.SM,"paddingRightBaseSM"),P.MD,"paddingRightBaseMD"),P.LG,"paddingRightBaseLG"),P.XL,"paddingRightBaseXL"),N(N(N(N(N(X,P.X2L,"paddingRightBaseX2L"),P.X3L,"paddingRightBaseX3L"),P.X4L,"paddingRightBaseX4L"),P.X5L,"paddingRightBaseX5L"),P.X6L,"paddingRightBaseX6L")),V=(N(N(N(N(N(N(N(N(N(N(h={},P.X6S,"marginBottomBaseX6S"),P.X5S,"marginBottomBaseX5S"),P.X4S,"marginBottomBaseX4S"),P.X3S,"marginBottomBaseX3S"),P.X2S,"marginBottomBaseX2S"),P.XS,"marginBottomBaseXS"),P.SM,"marginBottomBaseSM"),P.MD,"marginBottomBaseMD"),P.LG,"marginBottomBaseLG"),P.XL,"marginBottomBaseXL"),N(N(N(N(N(h,P.X2L,"marginBottomBaseX2L"),P.X3L,"marginBottomBaseX3L"),P.X4L,"marginBottomBaseX4L"),P.X5L,"marginBottomBaseX5L"),P.X6L,"marginBottomBaseX6L")),U=(N(N(N(N(N(N(N(N(N(N(y={},P.X6S,"paddingBottomBaseX6S"),P.X5S,"paddingBottomBaseX5S"),P.X4S,"paddingBottomBaseX4S"),P.X3S,"paddingBottomBaseX3S"),P.X2S,"paddingBottomBaseX2S"),P.XS,"paddingBottomBaseXS"),P.SM,"paddingBottomBaseSM"),P.MD,"paddingBottomBaseMD"),P.LG,"paddingBottomBaseLG"),P.XL,"paddingBottomBaseXL"),N(N(N(N(N(y,P.X2L,"paddingBottomBaseX2L"),P.X3L,"paddingBottomBaseX3L"),P.X4L,"paddingBottomBaseX4L"),P.X5L,"paddingBottomBaseX5L"),P.X6L,"paddingBottomBaseX6L")),J=(N(N(N(N(N(N(N(N(N(N(E={},P.X6S,"spacingBaseX6S"),P.X5S,"spacingBaseX5S"),P.X4S,"spacingBaseX4S"),P.X3S,"spacingBaseX3S"),P.X2S,"spacingBaseX2S"),P.XS,"spacingBaseXS"),P.SM,"spacingBaseSM"),P.MD,"spacingBaseMD"),P.LG,"spacingBaseLG"),P.XL,"spacingBaseXL"),N(N(N(N(N(E,P.X2L,"spacingBaseX2L"),P.X3L,"spacingBaseX3L"),P.X4L,"spacingBaseX4L"),P.X5L,"spacingBaseX5L"),P.X6L,"spacingBaseX6L"));function K(e){return K="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},K(e)}function Y(e,o,r){return(o=function(e){var o=function(e){if("object"!=K(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=K(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==K(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var q=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=Y(Y(Y(Y(Y(Y(Y(Y({},q.DIV,"div"),q.FIGURE,"figure"),q.FIGCAPTION,"figcaption"),q.ARTICLE,"article"),q.SECTION,"section"),q.HEADER,"header"),q.MAIN,"main"),q.FOOTER,"footer")},579:(e,o,r)=>{r.d(o,{GK:()=>w,lF:()=>F,r1:()=>C,QR:()=>L,vd:()=>m,M4:()=>p,TY:()=>S,v5:()=>f,UI:()=>B,bS:()=>d,ft:()=>g,TX:()=>l,Ei:()=>u,ud:()=>a,LN:()=>s,ev:()=>Q,Ps:()=>ee,kP:()=>E,VW:()=>R,vD:()=>le,hX:()=>te,w7:()=>ae,Vf:()=>re,X6:()=>D,S:()=>j,Gd:()=>ue,mu:()=>ie,XV:()=>se,we:()=>ne,xT:()=>U,bW:()=>J,FK:()=>oe,aL:()=>de});var n=r(695),t=r(389),i=r(123),a=function(e){var o;return null!==(o=(0,n.JU)()[i.kI[e]])&&void 0!==o?o:{borderWidth:0}},s=function(e){var o;return null!==(o=(0,n.JU)()[i.g9[e]])&&void 0!==o?o:{borderTopWidth:void 0}},l=function(e){var o;return null!==(o=(0,n.JU)()[i.Er[e]])&&void 0!==o?o:{borderLeftWidth:void 0}},u=function(e){var o;return null!==(o=(0,n.JU)()[i.Rw[e]])&&void 0!==o?o:{borderRightWidth:void 0}},d=function(e){var o;return null!==(o=(0,n.JU)()[i.ce[e]])&&void 0!==o?o:{borderBottomWidth:void 0}},g=function(e){var o=(0,n.wR)();return void 0===e?"0px":"".concat(o[i.kI[e]],"px")},c=t.StyleSheet.create({borderRadiusMax:{borderRadius:"50%"}}),B=function(e){var o=(0,n.JU)();return e===i.uC.MAX?c.borderRadiusMax:o[i.yQ[e]]},f=function(e){var o=(0,n.wR)();if(void 0!==e)return e===i.uC.MAX?"50%":"".concat(o[i.yQ[e]],"px")},S=function(e){return(0,n.JU)()[i.J2[e]]},p=function(e){return(0,n.wR)()[i.J2[e]]},m=function(e){var o=(0,n.JU)();if(void 0!==e)return e in i.TI?o[i.b8[e]]:{backgroundColor:e}},L=function(e){var o=(0,n.wR)();if(void 0!==e)return e in i.TI?o[i.b8[e]]:e};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 X(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 h=t.StyleSheet.create({flexDirectionColumn:{flexDirection:"column"},flexDirectionRow:{flexDirection:"row"}}),y=X(X({},i.uY.COLUMN,h.flexDirectionColumn),i.uY.ROW,h.flexDirectionRow),E=function(e){return y[e]},v=t.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"}}),T=X(X(X(X(X(X({},i.b9.FLEX_START,v.justifuContentFlexStart),i.b9.FLEX_END,v.justifuContentFlexEnd),i.b9.CENTER,v.justifuContentCenter),i.b9.SPACE_BETWEEN,v.justifuContentSpaceBetween),i.b9.SPACE_AROUND,v.justifuContentSpaceAround),i.b9.SPACE_EVENLY,v.justifuContentSpaceEvenly),R=function(e){return T[e]},A=t.StyleSheet.create({alignItemsFlexStart:{alignItems:"flex-start"},alignItemsFlexEnd:{alignItems:"flex-end"},alignItemsCenter:{alignItems:"center"},alignItemsStretch:{alignItems:"stretch"},alignItemsBaseline:{alignItems:"baseline"}}),M=X(X(X(X(X({},i.th.FLEX_START,A.alignItemsFlexStart),i.th.FLEX_END,A.alignItemsFlexEnd),i.th.CENTER,A.alignItemsCenter),i.th.STRETCH,A.alignItemsStretch),i.th.BASELINE,A.alignItemsBaseline),F=function(e){return M[e]},I=t.StyleSheet.create({alignSelfFlexStart:{alignSelf:"flex-start"},alignSelfFlexEnd:{alignSelf:"flex-end"},alignSelfCenter:{alignSelf:"center"},alignSelfStretch:{alignSelf:"stretch"},alignSelfBaseline:{alignSelf:"baseline"}}),W=X(X(X(X(X({},i.F5.FLEX_START,I.alignSelfFlexStart),i.F5.FLEX_END,I.alignSelfFlexEnd),i.F5.CENTER,I.alignSelfCenter),i.F5.STRETCH,I.alignSelfStretch),i.F5.BASELINE,I.alignSelfBaseline),C=function(e){return W[e]},x=t.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"}}),_=X(X(X(X(X(X({},i.CN.FLEX_START,x.alignContentFlexStart),i.CN.FLEX_END,x.alignContentFlexEnd),i.CN.CENTER,x.alignContentCenter),i.CN.STRETCH,x.alignContentStretch),i.CN.SPACE_BETWEEN,x.alignContentSpaceBetween),i.CN.SPACE_AROUND,x.alignContentSpaceAround),w=function(e){return _[e]},D=function(e){if(e)return e.toValue()};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 P(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}var G=t.StyleSheet.create({overflowVisible:{overflow:"visible"},overflowHidden:{overflow:"hidden"}}),O=P(P({},i.Ie.VISIBLE,G.overflowVisible),i.Ie.HIDDEN,G.overflowHidden),j=function(e){return O[e]};function k(e){return k="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},k(e)}function H(e,o,r){return(o=function(e){var o=function(e){if("object"!=k(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=k(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==k(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var z=t.StyleSheet.create({positionRelative:{position:"relative"},positionAbsolute:{position:"absolute"}}),V=H(H({},i.JT.RELATIVE,z.positionRelative),i.JT.ABSOLUTE,z.positionAbsolute),U=function(e){return V[e]},J=function(e){if(e)return e.toValue()};function K(e){return K="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},K(e)}function Y(e,o,r){return(o=function(e){var o=function(e){if("object"!=K(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=K(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==K(o)?o:o+""}(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r,e}var q=Y(Y(Y({},i.lo.SM,"0 1px 3px 0 rgba(0,0,0,0.1),0 1px 2px -1px rgba(0,0,0,0.1)"),i.lo.MD,"0 4px 6px -1px rgba(0,0,0,0.1),0 2px 4px -2px rgba(0,0,0,0.1)"),i.lo.LG,"0 10px 15px -3px rgba(0,0,0,0.1),0 4px 6px -4px rgba(0,0,0,0.1)"),Q=function(e){return q[e]},$=t.StyleSheet.create({boxShadowSM:{boxShadow:q[i.lo.SM]},boxShadowMD:{boxShadow:q[i.lo.MD]},boxShadowLG:{boxShadow:q[i.lo.LG]}}),Z=Y(Y(Y({},i.lo.SM,$.boxShadowSM),i.lo.MD,$.boxShadowMD),i.lo.LG,$.boxShadowLG),ee=function(e){return Z[e]},oe=function(e){if(e)return e.toValue()},re=function(e){return(0,n.JU)()[i.Dz[e]]},ne=function(e){return(0,n.JU)()[i.Wi[e]]},te=function(e){return(0,n.JU)()[i.DK[e]]},ie=function(e){return(0,n.JU)()[i.Wk[e]]},ae=function(e){return(0,n.JU)()[i.iq[e]]},se=function(e){return(0,n.JU)()[i.l2[e]]},le=function(e){return(0,n.JU)()[i.X1[e]]},ue=function(e){return(0,n.JU)()[i.mN[e]]},de=function(e){var o=(0,n.wR)();if(void 0!==o[i.wu[e]])return"".concat(o[i.wu[e]],"px")}},689:(e,o,r)=>{r.d(o,{A:()=>u});var n=r(389),t=r(123),i=r(579),a=r(848),s=n.StyleSheet.create({default:{display:"flex",margin:0,padding:0,zIndex:0,position:"relative",listStyle:"none",borderStyle:"solid",textDecoration:"none",boxSizing:"border-box"}}),l=function(e){var o=e.testId,r=e.position,l=void 0===r?t.JT.RELATIVE:r,u=e.top,d=e.left,g=e.right,c=e.bottom,B=e.opacity,f=e.overflow,S=void 0===f?t.Ie.VISIBLE:f,p=e.flexDirection,m=void 0===p?t.uY.COLUMN:p,L=e.justifyContent,b=void 0===L?t.b9.FLEX_START:L,X=e.alignItems,h=void 0===X?t.th.STRETCH:X,y=e.alignSelf,E=e.alignContent,v=void 0===E?t.CN.FLEX_START:E,T=e.marginTop,R=e.paddingTop,A=e.marginLeft,M=e.paddingLeft,F=e.marginRight,I=e.paddingRight,W=e.marginBottom,C=e.paddingBottom,x=e.minWidth,_=e.width,w=e.maxWidth,D=e.minHeight,N=e.height,P=e.maxHeight,G=e.boxShadow,O=e.borderColor,j=e.borderWidth,k=e.borderWidthTop,H=e.borderWidthLeft,z=e.borderWidthRight,V=e.borderWidthBottom,U=e.borderRadius,J=e.backgroundColor,K=e.children;return(0,a.jsx)(n.View,{testID:o,style:[s.default,(0,i.xT)(l),{top:(0,i.bW)(u),left:(0,i.bW)(d),right:(0,i.bW)(g),bottom:(0,i.bW)(c)},{opacity:(0,i.X6)(B)},(0,i.S)(S),(0,i.kP)(m),(0,i.VW)(b),(0,i.lF)(h),(0,i.r1)(y),(0,i.GK)(v),(0,i.Vf)(T),(0,i.we)(R),(0,i.hX)(A),(0,i.mu)(M),(0,i.w7)(F),(0,i.XV)(I),(0,i.vD)(W),(0,i.Gd)(C),{minWidth:(0,i.FK)(x),width:(0,i.FK)(_),maxWidth:(0,i.FK)(w),minHeight:(0,i.FK)(D),height:(0,i.FK)(N),maxHeight:(0,i.FK)(P)},(0,i.Ps)(G),(0,i.TY)(O),(0,i.ud)(j),(0,i.LN)(k),(0,i.TX)(H),(0,i.Ei)(z),(0,i.bS)(V),(0,i.UI)(U),(0,i.vd)(J)],children:K})};l.Tag=t.SQ,l.Position=t.JT,l.Overflow=t.Ie,l.FlexDirection=t.uY,l.JustifyContent=t.b9,l.AlignItems=t.th,l.AlignSelf=t.F5,l.AlignContent=t.CN,l.Spacing=t.TL,l.BoxShadow=t.lo,l.BorderColor=t.Vc,l.BorderWidth=t.s_,l.BorderRadius=t.uC,l.BackgroundColor=t.TI;const u=l},741:(e,o,r)=>{r.d(o,{A:()=>y});var n,t=r(729),i=r.n(t),a=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,d,g=l(l({},a.JT.RELATIVE,"relative"),a.JT.ABSOLUTE,"absolute"),c=l(l({},a.Ie.VISIBLE,"visible"),a.Ie.HIDDEN,"hidden"),B=l(l({},a.uY.COLUMN,"column"),a.uY.ROW,"row"),f=l(l(l(l(l(l({},a.b9.FLEX_START,"flex-start"),a.b9.FLEX_END,"flex-end"),a.b9.CENTER,"center"),a.b9.SPACE_BETWEEN,"space-between"),a.b9.SPACE_AROUND,"space-around"),a.b9.SPACE_EVENLY,"space-evenly"),S=l(l(l(l(l({},a.th.FLEX_START,"flex-start"),a.th.FLEX_END,"flex-end"),a.th.STRETCH,"stretch"),a.th.CENTER,"center"),a.th.BASELINE,"baseline"),p=l(l(l(l(l({},a.F5.FLEX_START,"flex-start"),a.F5.FLEX_END,"flex-end"),a.F5.CENTER,"center"),a.F5.STRETCH,"stretch"),a.F5.BASELINE,"baseline"),m=l(l(l(l(l(l({},a.CN.FLEX_START,"flex-start"),a.CN.FLEX_END,"flex-end"),a.CN.CENTER,"center"),a.CN.STRETCH,"stretch"),a.CN.SPACE_BETWEEN,"space-between"),a.CN.SPACE_AROUND,"space-around"),L=i().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: ",";\n padding-top: ",";\n margin-left: ",";\n padding-left: ",";\n margin-right: ",";\n padding-right: ",";\n margin-bottom: ",";\n padding-bottom: ",";\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: ",";\n border-top-width: ",";\n border-left-width: ",";\n border-right-width: ",";\n border-bottom-width: ",";\n border-radius: ",";\n background-color: ",";\n"],d||(d=u.slice(0)),n=Object.freeze(Object.defineProperties(u,{raw:{value:Object.freeze(d)}}))),(function(e){var o=e.position;return g[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 c[o]}),(function(e){var o=e.flexDirection;return B[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 m[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.borderWidthTop}),(function(e){return e.borderWidthLeft}),(function(e){return e.borderWidthRight}),(function(e){return e.borderWidthBottom}),(function(e){return e.borderRadius}),(function(e){return e.backgroundColor})),b=r(579),X=r(848),h=function(e){var o=e.testId,r=e.tag,n=void 0===r?a.SQ.DIV:r,t=e.position,i=void 0===t?a.JT.RELATIVE:t,s=e.top,l=e.left,u=e.right,d=e.bottom,g=e.opacity,c=e.overflow,B=void 0===c?a.Ie.VISIBLE:c,f=e.flexDirection,S=void 0===f?a.uY.COLUMN:f,p=e.justifyContent,m=void 0===p?a.b9.FLEX_START:p,h=e.alignItems,y=void 0===h?a.th.STRETCH:h,E=e.alignSelf,v=e.alignContent,T=void 0===v?a.CN.FLEX_START:v,R=e.marginTop,A=e.paddingTop,M=e.marginLeft,F=e.paddingLeft,I=e.marginRight,W=e.paddingRight,C=e.marginBottom,x=e.paddingBottom,_=e.minWidth,w=e.width,D=e.maxWidth,N=e.minHeight,P=e.height,G=e.maxHeight,O=e.boxShadow,j=e.borderColor,k=e.borderWidth,H=e.borderWidthTop,z=e.borderWidthLeft,V=e.borderWidthRight,U=e.borderWidthBottom,J=e.borderRadius,K=e.backgroundColor,Y=e.children;return(0,X.jsx)(L,{"data-testid":o,as:a.l5[n],position:i,top:(0,b.bW)(s),left:(0,b.bW)(l),right:(0,b.bW)(u),bottom:(0,b.bW)(d),opacity:(0,b.X6)(g),overflow:B,flexDirection:S,justifyContent:m,alignItems:y,alignSelf:E,alignContent:T,marginTop:(0,b.aL)(R),paddingTop:(0,b.aL)(A),marginLeft:(0,b.aL)(M),paddingLeft:(0,b.aL)(F),marginRight:(0,b.aL)(I),paddingRight:(0,b.aL)(W),marginBottom:(0,b.aL)(C),paddingBottom:(0,b.aL)(x),minWidth:(0,b.FK)(_),width:(0,b.FK)(w),maxWidth:(0,b.FK)(D),minHeight:(0,b.FK)(N),height:(0,b.FK)(P),maxHeight:(0,b.FK)(G),boxShadow:(0,b.ev)(O),borderColor:(0,b.M4)(j),borderWidth:(0,b.ft)(k),borderWidthTop:(0,b.ft)(H),borderWidthLeft:(0,b.ft)(z),borderWidthRight:(0,b.ft)(V),borderWidthBottom:(0,b.ft)(U),borderRadius:(0,b.v5)(J),backgroundColor:(0,b.QR)(K),children:Y})};h.Tag=a.SQ,h.Position=a.JT,h.Overflow=a.Ie,h.FlexDirection=a.uY,h.JustifyContent=a.b9,h.AlignItems=a.th,h.AlignSelf=a.F5,h.AlignContent=a.CN,h.Spacing=a.TL,h.BoxShadow=a.lo,h.BorderColor=a.Vc,h.BorderWidth=a.s_,h.BorderRadius=a.uC,h.BackgroundColor=a.TI;const y=h},695:(e,o,r)=>{r.d(o,{JU:()=>n.JU,wR:()=>n.wR}),r(410);var n=r(506)},410:(e,o,r)=>{r.d(o,{$U:()=>S,tZ:()=>l,$c:()=>u});var n=r(155),t=r(389),i=function(e){return e[e.MD=0]="MD",e[e.LG=1]="LG",e[e.XL=2]="XL",e}({}),a=r(848),s=(0,n.createContext)({}),l=function(e){var o=e.breakpointMD,r=e.breakpointLG,l=e.breakpointXL,u=e.children,d=function(e,o,r){var a=(0,t.useWindowDimensions)().width;return(0,n.useMemo)((function(){return a>=r?i.XL:a>=o?i.LG:a>=e?i.MD:void 0}),[a>=r,a>=o,a>=e])}(null!=o?o:768,null!=r?r:1024,null!=l?l:1280),g=(0,n.useMemo)((function(){return{breakpoint:d}}),[d]);return(0,a.jsx)(s.Provider,{value:g,children:(0,a.jsx)(m,{children:u})})},u=function(){return(0,n.useContext)(s)};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 g(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 c(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 B=c(c(c({},i.MD,1),i.LG,2),i.XL,3),f=function(e,o){return B[e]>B[o]},S=t.Platform.select({web:function(e){var o=e.isDefault,r=e.isOtherwise,t=e.breakpoint,i=e.children,a=u(),s=function(e,o){return function(e){if(Array.isArray(e))return e}(e)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,i,a,s=[],l=!0,u=!1;try{if(i=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.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&&(a=r.return(),Object(a)!==a))return}finally{if(u)throw t}}return s}}(e,o)||function(e,o){if(e){if("string"==typeof e)return g(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)?g(e,o):void 0}}(e,o)||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.")}()}((0,n.useState)(!1),2),l=s[0],d=s[1];if((0,n.useEffect)((function(){d(!0)}),[]),l){if(o&&void 0===a.breakpoint)return i;if(a.breakpoint===t)return i;if(r&&f(a.breakpoint,t))return i}else if(o)return i},default:function(e){var o=e.isDefault,r=e.isOtherwise,n=e.breakpoint,t=e.children,i=u();return o&&void 0===i.breakpoint||i.breakpoint===n||r&&f(i.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=i;var m=t.Platform.select({web:function(e){var o=e.children,r=(0,n.useRef)(),t=function(e,o){return function(e){if(Array.isArray(e))return e}(e)||function(e,o){var r=null==e?null:"undefined"!=typeof Symbol&&e[Symbol.iterator]||e["@@iterator"];if(null!=r){var n,t,i,a,s=[],l=!0,u=!1;try{if(i=(r=r.call(e)).next,0===o){if(Object(r)!==r)return;l=!1}else for(;!(l=(n=i.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&&(a=r.return(),Object(a)!==a))return}finally{if(u)throw t}}return s}}(e,o)||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}}(e,o)||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.")}()}((0,n.useState)(!1),2),i=t[0],s=t[1];(0,n.useEffect)((function(){s(!0)}),[]);var l=(0,n.useMemo)((function(){return i||"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"}}),[i]);return(0,a.jsxs)("div",{ref:r,style:l,suppressHydrationWarning:!0,children:[(0,a.jsx)("script",{dangerouslySetInnerHTML:{__html:'document.currentScript.parentElement.style.display="none"'}}),o]})},default:function(e){return e.children}})},506:(e,o,r)=>{r.d(o,{wX:()=>V,wR:()=>U,JU:()=>i});var n=r(155),t=r(389),i=function(){var e=U();return(0,n.useMemo)((function(){return t.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},marginTopBaseX6S:{marginTop:e.spacingBaseX6S},paddingTopBaseX6S:{paddingTop:e.spacingBaseX6S},marginLeftBaseX6S:{marginLeft:e.spacingBaseX6S},paddingLeftBaseX6S:{paddingLeft:e.spacingBaseX6S},marginRightBaseX6S:{marginRight:e.spacingBaseX6S},paddingRightBaseX6S:{paddingRight:e.spacingBaseX6S},marginBottomBaseX6S:{marginBottom:e.spacingBaseX6S},paddingBottomBaseX6S:{paddingBottom:e.spacingBaseX6S},marginTopBaseX5S:{marginTop:e.spacingBaseX5S},paddingTopBaseX5S:{paddingTop:e.spacingBaseX5S},marginLeftBaseX5S:{marginLeft:e.spacingBaseX5S},paddingLeftBaseX5S:{paddingLeft:e.spacingBaseX5S},marginRightBaseX5S:{marginRight:e.spacingBaseX5S},paddingRightBaseX5S:{paddingRight:e.spacingBaseX5S},marginBottomBaseX5S:{marginBottom:e.spacingBaseX5S},paddingBottomBaseX5S:{paddingBottom:e.spacingBaseX5S},marginTopBaseX4S:{marginTop:e.spacingBaseX4S},paddingTopBaseX4S:{paddingTop:e.spacingBaseX4S},marginLeftBaseX4S:{marginLeft:e.spacingBaseX4S},paddingLeftBaseX4S:{paddingLeft:e.spacingBaseX4S},marginRightBaseX4S:{marginRight:e.spacingBaseX4S},paddingRightBaseX4S:{paddingRight:e.spacingBaseX4S},marginBottomBaseX4S:{marginBottom:e.spacingBaseX4S},paddingBottomBaseX4S:{paddingBottom:e.spacingBaseX4S},marginTopBaseX3S:{marginTop:e.spacingBaseX3S},paddingTopBaseX3S:{paddingTop:e.spacingBaseX3S},marginLeftBaseX3S:{marginLeft:e.spacingBaseX3S},paddingLeftBaseX3S:{paddingLeft:e.spacingBaseX3S},marginRightBaseX3S:{marginRight:e.spacingBaseX3S},paddingRightBaseX3S:{paddingRight:e.spacingBaseX3S},marginBottomBaseX3S:{marginBottom:e.spacingBaseX3S},paddingBottomBaseX3S:{paddingBottom:e.spacingBaseX3S},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},borderWidthBaseSM:{borderWidth:e.borderWidthBaseSM},borderWidthBaseMD:{borderWidth:e.borderWidthBaseMD},borderWidthBaseLG:{borderWidth:e.borderWidthBaseLG},borderWidthTopBaseSM:{borderTopWidth:e.borderWidthBaseSM},borderWidthTopBaseMD:{borderTopWidth:e.borderWidthBaseMD},borderWidthTopBaseLG:{borderTopWidth:e.borderWidthBaseLG},borderWidthLeftBaseSM:{borderLeftWidth:e.borderWidthBaseSM},borderWidthLeftBaseMD:{borderLeftWidth:e.borderWidthBaseMD},borderWidthLeftBaseLG:{borderLeftWidth:e.borderWidthBaseLG},borderWidthRightBaseSM:{borderRightWidth:e.borderWidthBaseSM},borderWidthRightBaseMD:{borderRightWidth:e.borderWidthBaseMD},borderWidthRightBaseLG:{borderRightWidth:e.borderWidthBaseLG},borderWidthBottomBaseSM:{borderBottomWidth:e.borderWidthBaseSM},borderWidthBottomBaseMD:{borderBottomWidth:e.borderWidthBaseMD},borderWidthBottomBaseLG:{borderBottomWidth:e.borderWidthBaseLG},borderRadiusBaseXS:{borderRadius:e.borderRadiusBaseXS},borderRadiusBaseSM:{borderRadius:e.borderRadiusBaseSM},borderRadiusBaseMD:{borderRadius:e.borderRadiusBaseMD},borderRadiusBaseLG:{borderRadius:e.borderRadiusBaseLG},borderRadiusBaseXL:{borderRadius:e.borderRadiusBaseXL}})}),[e])},a="rgb(198,198,202)",s="rgb(212,212,216)",l="rgb(216,216,228)",u="rgb(218,218,234)",d="rgb(224,224,238)",g="rgb(244,244,245)",c="rgb(247,247,249)",B="rgb(249,249,250)",f="rgb(254,254,255)",S="rgb(253,252,254)",p="rgb(249,249,250)",m="rgb(247,247,249)",L="rgb(244,244,245)",b="rgb(224,224,238)",X="rgb(218,218,234)",h="rgb(216,216,228)",y="rgb(212,212,216)",E="rgb(198,198,202)",v="rgb(102,102,116)",T="rgb(82,82,92)",R="rgb(74,74,88)",A="rgb(63,63,70)",M="rgb(49,49,56)",F="rgb(39,39,42)",I="rgb(30,30,34)",W="rgb(24,24,27)",C="rgb(6,6,14)",x="rgb(198,198,202)",_="rgb(212,212,216)",w="rgb(216,216,228)",D="rgb(218,218,234)",N="rgb(224,224,238)",P="rgb(244,244,245)",G="rgb(247,247,249)",O="rgb(249,249,250)",j="rgb(254,254,255)",k=["ui-sans-serif","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto","Helvetica","Arial","sans-serif"].join(","),H=r(848),z=(0,n.createContext)({colorBackgroundBase100:a,colorBackgroundBase200:s,colorBackgroundBase300:l,colorBackgroundBase400:u,colorBackgroundBase500:d,colorBackgroundBase600:g,colorBackgroundBase700:c,colorBackgroundBase800:B,colorBackgroundBase900:f,colorBorderBase100:S,colorBorderBase200:p,colorBorderBase300:m,colorBorderBase400:L,colorBorderBase500:b,colorBorderBase600:X,colorBorderBase700:h,colorBorderBase800:y,colorBorderBase900:E,colorForegroundBase100:v,colorForegroundBase200:T,colorForegroundBase300:R,colorForegroundBase400:A,colorForegroundBase500:M,colorForegroundBase600:F,colorForegroundBase700:I,colorForegroundBase800:W,colorForegroundBase900:C,colorForegroundInverse100:x,colorForegroundInverse200:_,colorForegroundInverse300:w,colorForegroundInverse400:D,colorForegroundInverse500:N,colorForegroundInverse600:P,colorForegroundInverse700:G,colorForegroundInverse800:O,colorForegroundInverse900:j,fontFamilyBase:k,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,spacingBaseX6S:2,spacingBaseX5S:4,spacingBaseX4S:6,spacingBaseX3S:8,spacingBaseX2S:10,spacingBaseXS:12,spacingBaseSM:14,spacingBaseMD:16,spacingBaseLG:18,spacingBaseXL:20,spacingBaseX2L:24,spacingBaseX3L:28,spacingBaseX4L:32,spacingBaseX5L:36,spacingBaseX6L:40,borderWidthBaseSM:.5,borderWidthBaseMD:1,borderWidthBaseLG:1.5,borderRadiusBaseXS:2,borderRadiusBaseSM:4,borderRadiusBaseMD:6,borderRadiusBaseLG:8,borderRadiusBaseXL:10}),V=function(e){var o=e.colorBackgroundBase100,r=e.colorBackgroundBase200,t=e.colorBackgroundBase300,i=e.colorBackgroundBase400,V=e.colorBackgroundBase500,U=e.colorBackgroundBase600,J=e.colorBackgroundBase700,K=e.colorBackgroundBase800,Y=e.colorBackgroundBase900,q=e.colorBorderBase100,Q=e.colorBorderBase200,$=e.colorBorderBase300,Z=e.colorBorderBase400,ee=e.colorBorderBase500,oe=e.colorBorderBase600,re=e.colorBorderBase700,ne=e.colorBorderBase800,te=e.colorBorderBase900,ie=e.colorForegroundBase100,ae=e.colorForegroundBase200,se=e.colorForegroundBase300,le=e.colorForegroundBase400,ue=e.colorForegroundBase500,de=e.colorForegroundBase600,ge=e.colorForegroundBase700,ce=e.colorForegroundBase800,Be=e.colorForegroundBase900,fe=e.colorForegroundInverse100,Se=e.colorForegroundInverse200,pe=e.colorForegroundInverse300,me=e.colorForegroundInverse400,Le=e.colorForegroundInverse500,be=e.colorForegroundInverse600,Xe=e.colorForegroundInverse700,he=e.colorForegroundInverse800,ye=e.colorForegroundInverse900,Ee=e.fontFamilyBase,ve=e.fontWeightBaseThin,Te=e.fontWeightBaseExtraLight,Re=e.fontWeightBaseLight,Ae=e.fontWeightBaseRegular,Me=e.fontWeightBaseMedium,Fe=e.fontWeightBaseSemiBold,Ie=e.fontWeightBaseBold,We=e.fontWeightBaseExtraBold,Ce=e.fontWeightBaseBlack,xe=e.fontSizeBaseX2S,_e=e.fontSizeBaseXS,we=e.fontSizeBaseSM,De=e.fontSizeBaseMD,Ne=e.fontSizeBaseLG,Pe=e.fontSizeBaseXL,Ge=e.fontSizeBaseX2L,Oe=e.fontSizeBaseX3L,je=e.fontSizeBaseX4L,ke=e.fontSizeBaseX5L,He=e.lineHeightBaseNone,ze=e.lineHeightBaseTight,Ve=e.lineHeightBaseSnug,Ue=e.lineHeightBaseNormal,Je=e.lineHeightBaseRelaxed,Ke=e.lineHeightBaseLoose,Ye=e.spacingBaseX6S,qe=e.spacingBaseX5S,Qe=e.spacingBaseX4S,$e=e.spacingBaseX3S,Ze=e.spacingBaseX2S,eo=e.spacingBaseXS,oo=e.spacingBaseSM,ro=e.spacingBaseMD,no=e.spacingBaseLG,to=e.spacingBaseXL,io=e.spacingBaseX2L,ao=e.spacingBaseX3L,so=e.spacingBaseX4L,lo=e.spacingBaseX5L,uo=e.spacingBaseX6L,go=e.borderWidthBaseSM,co=e.borderWidthBaseMD,Bo=e.borderWidthBaseLG,fo=e.borderRadiusBaseXS,So=e.borderRadiusBaseSM,po=e.borderRadiusBaseMD,mo=e.borderRadiusBaseLG,Lo=e.borderRadiusBaseXL,bo=e.children,Xo=(0,n.useMemo)((function(){return{colorBackgroundBase100:null!=o?o:a,colorBackgroundBase200:null!=r?r:s,colorBackgroundBase300:null!=t?t:l,colorBackgroundBase400:null!=i?i:u,colorBackgroundBase500:null!=V?V:d,colorBackgroundBase600:null!=U?U:g,colorBackgroundBase700:null!=J?J:c,colorBackgroundBase800:null!=K?K:B,colorBackgroundBase900:null!=Y?Y:f,colorBorderBase100:null!=q?q:S,colorBorderBase200:null!=Q?Q:p,colorBorderBase300:null!=$?$:m,colorBorderBase400:null!=Z?Z:L,colorBorderBase500:null!=ee?ee:b,colorBorderBase600:null!=oe?oe:X,colorBorderBase700:null!=re?re:h,colorBorderBase800:null!=ne?ne:y,colorBorderBase900:null!=te?te:E,colorForegroundBase100:null!=ie?ie:v,colorForegroundBase200:null!=ae?ae:T,colorForegroundBase300:null!=se?se:R,colorForegroundBase400:null!=le?le:A,colorForegroundBase500:null!=ue?ue:M,colorForegroundBase600:null!=de?de:F,colorForegroundBase700:null!=ge?ge:I,colorForegroundBase800:null!=ce?ce:W,colorForegroundBase900:null!=Be?Be:C,colorForegroundInverse100:null!=fe?fe:x,colorForegroundInverse200:null!=Se?Se:_,colorForegroundInverse300:null!=pe?pe:w,colorForegroundInverse400:null!=me?me:D,colorForegroundInverse500:null!=Le?Le:N,colorForegroundInverse600:null!=be?be:P,colorForegroundInverse700:null!=Xe?Xe:G,colorForegroundInverse800:null!=he?he:O,colorForegroundInverse900:null!=ye?ye:j,fontFamilyBase:null!=Ee?Ee:k,fontWeightBaseThin:null!=ve?ve:100,fontWeightBaseExtraLight:null!=Te?Te:200,fontWeightBaseLight:null!=Re?Re:300,fontWeightBaseRegular:null!=Ae?Ae:400,fontWeightBaseMedium:null!=Me?Me:500,fontWeightBaseSemiBold:null!=Fe?Fe:600,fontWeightBaseBold:null!=Ie?Ie:700,fontWeightBaseExtraBold:null!=We?We:800,fontWeightBaseBlack:null!=Ce?Ce:900,fontSizeBaseX2S:null!=xe?xe:12,fontSizeBaseXS:null!=_e?_e:14,fontSizeBaseSM:null!=we?we:16,fontSizeBaseMD:null!=De?De:18,fontSizeBaseLG:null!=Ne?Ne:20,fontSizeBaseXL:null!=Pe?Pe:24,fontSizeBaseX2L:null!=Ge?Ge:30,fontSizeBaseX3L:null!=Oe?Oe:36,fontSizeBaseX4L:null!=je?je:48,fontSizeBaseX5L:null!=ke?ke:60,lineHeightBaseNone:null!=He?He: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!=Ke?Ke:2,spacingBaseX6S:null!=Ye?Ye:2,spacingBaseX5S:null!=qe?qe:4,spacingBaseX4S:null!=Qe?Qe:6,spacingBaseX3S:null!=$e?$e:8,spacingBaseX2S:null!=Ze?Ze:10,spacingBaseXS:null!=eo?eo:12,spacingBaseSM:null!=oo?oo:14,spacingBaseMD:null!=ro?ro:16,spacingBaseLG:null!=no?no:18,spacingBaseXL:null!=to?to:20,spacingBaseX2L:null!=io?io:24,spacingBaseX3L:null!=ao?ao:28,spacingBaseX4L:null!=so?so:32,spacingBaseX5L:null!=lo?lo:36,spacingBaseX6L:null!=uo?uo:40,borderWidthBaseSM:null!=go?go:.5,borderWidthBaseMD:null!=co?co:1,borderWidthBaseLG:null!=Bo?Bo:1.5,borderRadiusBaseXS:null!=fo?fo:2,borderRadiusBaseSM:null!=So?So:4,borderRadiusBaseMD:null!=po?po:6,borderRadiusBaseLG:null!=mo?mo:8,borderRadiusBaseXL:null!=Lo?Lo:10}}),[o,r,t,i,V,U,J,K,Y,q,Q,$,Z,ee,oe,re,ne,te,ie,ae,se,le,ue,de,ge,ce,Be,fe,Se,pe,me,Le,be,Xe,he,ye,Ee,ve,Te,Re,Ae,Me,Fe,Ie,We,Ce,xe,_e,we,De,Ne,Pe,Ge,Oe,je,ke,He,ze,Ve,Ue,Je,Ke,Ye,qe,Qe,$e,Ze,eo,oo,ro,no,to,io,ao,so,lo,uo,go,co,Bo,fo,So,po,mo,Lo]);return(0,H.jsx)(z.Provider,{value:Xo,children:bo})},U=function(){return(0,n.useContext)(z)}},20:(e,o,r)=>{var n=r(155),t=Symbol.for("react.element"),i=(Symbol.for("react.fragment"),Object.prototype.hasOwnProperty),a=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,d=null;for(n in void 0!==r&&(u=""+r),void 0!==o.key&&(u=""+o.key),void 0!==o.ref&&(d=o.ref),o)i.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:d,props:l,_owner:a.current}}o.jsx=l,o.jsxs=l},848:(e,o,r)=>{e.exports=r(20)},729:e=>{e.exports=r},155:e=>{e.exports=o},389:o=>{o.exports=e}},t={};function i(e){var o=t[e];if(void 0!==o)return o.exports;var r=t[e]={exports:{}};return n[e](r,r.exports,i),r.exports}i.n=e=>{var o=e&&e.__esModule?()=>e.default:()=>e;return i.d(o,{a:o}),o},i.d=(e,o)=>{for(var r in o)i.o(o,r)&&!i.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:o[r]})},i.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),i.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};i.r(a),i.d(a,{Dimension:()=>d,Media:()=>T.$U,MediaContextProvider:()=>T.tZ,Opacity:()=>I,POSITION_MAX:()=>L,POSITION_MIN:()=>b,Position:()=>m,SIZE_FULL:()=>v,Size:()=>E,Text:()=>l,ThemeContextProvider:()=>R.wX,View:()=>u,useMediaContext:()=>T.$c,useThemeContext:()=>R.wR,useThemeStyleSheet:()=>R.JU});var s=i(389),l=s.Platform.select({native:function(){return i(79).A},web:function(){return i(54).A}})(),u=s.Platform.select({native:function(){return i(689).A},web:function(){return i(741).A}})(),d=function(e){return e[e.PIXEL=0]="PIXEL",e[e.PERCENT=1]="PERCENT",e}({});function g(e){return g="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},g(e)}function c(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,B(n.key),n)}}function B(e){var o=function(e){if("object"!=g(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=g(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==g(o)?o:o+""}var f,S,p,m=function(){return e=function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.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===d.PIXEL?s.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])&&c(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e;var e,o}();f=m,p=d,(S=B(S="Dimension"))in f?Object.defineProperty(f,S,{value:p,enumerable:!0,configurable:!0,writable:!0}):f[S]=p;var L=new m(100,m.Dimension.PERCENT),b=new m(0,m.Dimension.PIXEL);function X(e){return X="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},X(e)}function h(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,y(n.key),n)}}function y(e){var o=function(e){if("object"!=X(e)||!e)return e;var o=e[Symbol.toPrimitive];if(void 0!==o){var r=o.call(e,"string");if("object"!=X(r))return r;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==X(o)?o:o+""}var E=function(){return function(e,o){return o&&h(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),e}((function e(o){var r=arguments.length>1&&void 0!==arguments[1]?arguments[1]:d.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}),[{key:"toValue",value:function(){return this.dimension===d.PIXEL?s.Platform.select({web:"".concat(this.amount,"px"),default:this.amount}):"".concat(this.amount,"%")}}])}();!function(e,o,r){(o=y(o))in e?Object.defineProperty(e,o,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[o]=r}(E,"Dimension",d);var v=new E(100,E.Dimension.PERCENT),T=i(410),R=i(506);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 M(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,F(n.key),n)}}function F(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 I=function(){return function(e,o){return o&&M(e.prototype,o),Object.defineProperty(e,"prototype",{writable:!1}),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}),[{key:"toValue",value:function(){return this.value}}])}();return a})()));
|
package/package.json
CHANGED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Text role enum (for inner usage).
|
|
3
|
-
* A part of react-native role type, used by text.
|
|
4
|
-
*/
|
|
5
|
-
export declare const enum TextRole {
|
|
6
|
-
HEADING = "heading",
|
|
7
|
-
/**
|
|
8
|
-
* There is no paragraph role in react-native types.
|
|
9
|
-
* But thats how we render text to paragraph tag in react-native-web.
|
|
10
|
-
*/
|
|
11
|
-
PARAGRAPH = "paragraph"
|
|
12
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Supported specific text types enum.
|
|
3
|
-
* Responsible for text appearance, accessibility and semantics.
|
|
4
|
-
*/
|
|
5
|
-
export declare enum TextType {
|
|
6
|
-
H1 = 0,
|
|
7
|
-
H2 = 1,
|
|
8
|
-
H3 = 2,
|
|
9
|
-
H4 = 3,
|
|
10
|
-
H5 = 4,
|
|
11
|
-
H6 = 5,
|
|
12
|
-
P = 6
|
|
13
|
-
}
|
|
14
|
-
/**
|
|
15
|
-
* Types, that are considered as heading types.
|
|
16
|
-
* We convert them into heading text role.
|
|
17
|
-
* This types comes with aria-level attribute.
|
|
18
|
-
*/
|
|
19
|
-
export declare const TEXT_TYPE_HEADING: TextType[];
|