creactive 0.0.36 → 0.0.37

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.
@@ -0,0 +1,17 @@
1
+ /**
2
+ * Supported text color constants.
3
+ * Part of theme colors, suitable for text coloring.
4
+ * Some extra constants like transparent for example are also included.
5
+ */
6
+ export declare enum TextColor {
7
+ TRANSPARENT = 0,
8
+ FOREGROUND_100 = 1,
9
+ FOREGROUND_200 = 2,
10
+ FOREGROUND_300 = 3,
11
+ FOREGROUND_400 = 4,
12
+ FOREGROUND_500 = 5,
13
+ FOREGROUND_600 = 6,
14
+ FOREGROUND_700 = 7,
15
+ FOREGROUND_800 = 8,
16
+ FOREGROUND_900 = 9
17
+ }
@@ -1,22 +1,21 @@
1
1
  /**
2
2
  * Supported by text component font weights enum.
3
3
  * Should be used to control the weight of the text.
4
- * This enum is not exported, use Text.FontWeight to access available types.
5
4
  */
6
5
  export declare enum TextFontWeight {
7
6
  THIN = 0,
8
7
  EXTRA_LIGHT = 1,
9
8
  LIGHT = 2,
10
9
  REGULAR = 3,
11
- SEMIBOLD = 4,
12
- BOLD = 5,
13
- EXTRA_BOLD = 6,
14
- BLACK = 7
10
+ MEDIUM = 4,
11
+ SEMIBOLD = 5,
12
+ BOLD = 6,
13
+ EXTRA_BOLD = 7,
14
+ BLACK = 8
15
15
  }
16
16
  /**
17
17
  * Supported text font sizes enum.
18
18
  * Should be used to control the size of the text.
19
- * This enum is not exported, use Text.FontSize to access available types.
20
19
  */
21
20
  export declare enum TextFontSize {
22
21
  X2S = 0,
@@ -1,3 +1,5 @@
1
+ export { TextColor } from './color';
1
2
  export { TextFontSize, TextFontWeight } from './font';
2
3
  export { TextRole } from './role';
4
+ export { TextAlign, TextLineHeight } from './text';
3
5
  export { TEXT_TYPE_HEADING, TextType } from './type';
@@ -0,0 +1,21 @@
1
+ /**
2
+ * Text align enum supported by compoent.
3
+ * Allows to control text alignment if required.
4
+ */
5
+ export declare enum TextAlign {
6
+ LEFT = 0,
7
+ CENTER = 1,
8
+ RIGHT = 2
9
+ }
10
+ /**
11
+ * Available text line height enum.
12
+ * Should be used to control the line height of the text.
13
+ */
14
+ export declare enum TextLineHeight {
15
+ NONE = 0,
16
+ TIGHT = 1,
17
+ SNUG = 2,
18
+ NORMAL = 3,
19
+ RELAXED = 4,
20
+ LOOSE = 5
21
+ }
@@ -1,7 +1,6 @@
1
1
  /**
2
2
  * Supported specific text types enum.
3
3
  * Responsible for text appearance, accessibility and semantics.
4
- * This enum is not exported, use Text.Type to access available types.
5
4
  */
6
5
  export declare enum TextType {
7
6
  H1 = 0,
@@ -15,6 +14,6 @@ export declare enum TextType {
15
14
  /**
16
15
  * Types, that are considered as heading types.
17
16
  * We convert them into heading text role.
18
- * With This types we also use aria-levels
17
+ * This types comes with aria-level attribute.
19
18
  */
20
19
  export declare const TEXT_TYPE_HEADING: TextType[];
@@ -1,27 +1,53 @@
1
1
  import type { FunctionComponent, PropsWithChildren } from 'react';
2
- import type { TextFontSize, TextFontWeight, TextType } from './constants';
2
+ import type { TextAlign, TextColor, TextFontSize, TextFontWeight, TextLineHeight, TextType } from './constants';
3
3
  export interface TextProps extends PropsWithChildren {
4
4
  /**
5
5
  * Specific text type if required.
6
6
  * Affects appearance, accessibility and semantics.
7
- * To access types use Text.Type instead of trying to import TexType.
7
+ * Allows to control HTML element, that will be to rendered.
8
+ * @default undefined - renders into DIV element
8
9
  */
9
10
  type?: TextType;
10
11
  /**
11
- * Specific text font weight if required.
12
- * Will change text weight, depending on configured theme.
13
- * Component maps font weight into matching theme base font weight value.
12
+ * Text component align control property.
13
+ * Inner text will be aligned according to this value.
14
+ * @default Text.Align.LEFT
15
+ */
16
+ align?: TextAlign;
17
+ /**
18
+ * Font weight property.
19
+ * Changes font weight, depending on theme.
20
+ * Uses base font weight tokens for mapping.
21
+ * @default Text.FontWeight.REGULAR
14
22
  */
15
23
  fontWeight?: TextFontWeight;
16
24
  /**
17
25
  * Specific text size if required.
18
- * Will change text size, depending on configured theme.
19
- * Component maps font size into matching theme base font size value.
26
+ * Will change text size, depending on theme.
27
+ * Uses base font size tokens for mapping.
28
+ * @default Text.FontSize.MD
20
29
  */
21
30
  fontSize?: TextFontSize;
31
+ /**
32
+ * Text line height property.
33
+ * Depends on configured theme token.
34
+ * Calculates using base font size and base line height ratio.
35
+ * @default Text.LineHeight.NONE
36
+ */
37
+ lineHeight?: TextLineHeight;
38
+ /**
39
+ * Specifying text color property.
40
+ * Allows to change color, depending on theme.
41
+ * Theme independent colors and values may be also available.
42
+ * @default Text.Color.FOREGROUND_800
43
+ */
44
+ color?: TextColor;
22
45
  }
23
46
  export type TextComponent = FunctionComponent<TextProps> & {
24
47
  Type: Record<keyof typeof TextType, TextType>;
48
+ Align: Record<keyof typeof TextAlign, TextAlign>;
25
49
  FontWeight: Record<keyof typeof TextFontWeight, TextFontWeight>;
26
50
  FontSize: Record<keyof typeof TextFontSize, TextFontSize>;
51
+ LineHeight: Record<keyof typeof TextLineHeight, TextLineHeight>;
52
+ Color: Record<keyof typeof TextColor, TextColor>;
27
53
  };
@@ -1 +1 @@
1
- export { FONT_FAMILY_BASE, FONT_SIZE_BASE_LG, FONT_SIZE_BASE_MD, FONT_SIZE_BASE_SM, FONT_SIZE_BASE_X2L, FONT_SIZE_BASE_X2S, FONT_SIZE_BASE_X3L, FONT_SIZE_BASE_X4L, FONT_SIZE_BASE_X5L, FONT_SIZE_BASE_XL, FONT_SIZE_BASE_XS, FONT_WEIGHT_BASE_BLACK, FONT_WEIGHT_BASE_BOLD, FONT_WEIGHT_BASE_EXTRABOLD, FONT_WEIGHT_BASE_EXTRALIGHT, FONT_WEIGHT_BASE_LIGHT, FONT_WEIGHT_BASE_REGULAR, FONT_WEIGHT_BASE_SEMIBOLD, FONT_WEIGHT_BASE_THIN, } from '../constants/theme';
1
+ export { COLOR_FOREGROUND_BASE_100, COLOR_FOREGROUND_BASE_200, COLOR_FOREGROUND_BASE_300, COLOR_FOREGROUND_BASE_400, COLOR_FOREGROUND_BASE_500, COLOR_FOREGROUND_BASE_600, COLOR_FOREGROUND_BASE_700, COLOR_FOREGROUND_BASE_800, COLOR_FOREGROUND_BASE_900, FONT_FAMILY_BASE, FONT_SIZE_BASE_LG, FONT_SIZE_BASE_MD, FONT_SIZE_BASE_SM, FONT_SIZE_BASE_X2L, FONT_SIZE_BASE_X2S, FONT_SIZE_BASE_X3L, FONT_SIZE_BASE_X4L, FONT_SIZE_BASE_X5L, FONT_SIZE_BASE_XL, FONT_SIZE_BASE_XS, FONT_WEIGHT_BASE_BLACK, FONT_WEIGHT_BASE_BOLD, FONT_WEIGHT_BASE_EXTRABOLD, FONT_WEIGHT_BASE_EXTRALIGHT, FONT_WEIGHT_BASE_LIGHT, FONT_WEIGHT_BASE_MEDIUM, FONT_WEIGHT_BASE_REGULAR, FONT_WEIGHT_BASE_SEMIBOLD, FONT_WEIGHT_BASE_THIN, LINE_HEIGHT_BASE_LOOSE, LINE_HEIGHT_BASE_NONE, LINE_HEIGHT_BASE_NORMAL, LINE_HEIGHT_BASE_RELAXED, LINE_HEIGHT_BASE_SNUG, LINE_HEIGHT_BASE_TIGHT, } from '../constants/theme';
@@ -0,0 +1,13 @@
1
+ /**
2
+ * Base foreground color constants.
3
+ * Use it for coloring text, icons and etc.
4
+ */
5
+ export declare const COLOR_FOREGROUND_BASE_100 = "rgb(244,244,245)";
6
+ export declare const COLOR_FOREGROUND_BASE_200 = "rgb(228,228,231)";
7
+ export declare const COLOR_FOREGROUND_BASE_300 = "rgb(212,212,216)";
8
+ export declare const COLOR_FOREGROUND_BASE_400 = "rgb(159,159,169)";
9
+ export declare const COLOR_FOREGROUND_BASE_500 = "rgb(113,113,123)";
10
+ export declare const COLOR_FOREGROUND_BASE_600 = "rgb(82,82,92)";
11
+ export declare const COLOR_FOREGROUND_BASE_700 = "rgb(63,63,70)";
12
+ export declare const COLOR_FOREGROUND_BASE_800 = "rgb(39,39,42)";
13
+ export declare const COLOR_FOREGROUND_BASE_900 = "rgb(24,24,27)";
@@ -14,6 +14,7 @@ export declare const FONT_WEIGHT_BASE_THIN = 100;
14
14
  export declare const FONT_WEIGHT_BASE_EXTRALIGHT = 200;
15
15
  export declare const FONT_WEIGHT_BASE_LIGHT = 300;
16
16
  export declare const FONT_WEIGHT_BASE_REGULAR = 400;
17
+ export declare const FONT_WEIGHT_BASE_MEDIUM = 500;
17
18
  export declare const FONT_WEIGHT_BASE_SEMIBOLD = 600;
18
19
  export declare const FONT_WEIGHT_BASE_BOLD = 700;
19
20
  export declare const FONT_WEIGHT_BASE_EXTRABOLD = 800;
@@ -1 +1,3 @@
1
- export { FONT_FAMILY_BASE, FONT_SIZE_BASE_LG, FONT_SIZE_BASE_MD, FONT_SIZE_BASE_SM, FONT_SIZE_BASE_X2L, FONT_SIZE_BASE_X2S, FONT_SIZE_BASE_X3L, FONT_SIZE_BASE_X4L, FONT_SIZE_BASE_X5L, FONT_SIZE_BASE_XL, FONT_SIZE_BASE_XS, FONT_WEIGHT_BASE_BLACK, FONT_WEIGHT_BASE_BOLD, FONT_WEIGHT_BASE_EXTRABOLD, FONT_WEIGHT_BASE_EXTRALIGHT, FONT_WEIGHT_BASE_LIGHT, FONT_WEIGHT_BASE_REGULAR, FONT_WEIGHT_BASE_SEMIBOLD, FONT_WEIGHT_BASE_THIN, } from './font';
1
+ export { COLOR_FOREGROUND_BASE_100, COLOR_FOREGROUND_BASE_200, COLOR_FOREGROUND_BASE_300, COLOR_FOREGROUND_BASE_400, COLOR_FOREGROUND_BASE_500, COLOR_FOREGROUND_BASE_600, COLOR_FOREGROUND_BASE_700, COLOR_FOREGROUND_BASE_800, COLOR_FOREGROUND_BASE_900, } from './color';
2
+ export { FONT_FAMILY_BASE, FONT_SIZE_BASE_LG, FONT_SIZE_BASE_MD, FONT_SIZE_BASE_SM, FONT_SIZE_BASE_X2L, FONT_SIZE_BASE_X2S, FONT_SIZE_BASE_X3L, FONT_SIZE_BASE_X4L, FONT_SIZE_BASE_X5L, FONT_SIZE_BASE_XL, FONT_SIZE_BASE_XS, FONT_WEIGHT_BASE_BLACK, FONT_WEIGHT_BASE_BOLD, FONT_WEIGHT_BASE_EXTRABOLD, FONT_WEIGHT_BASE_EXTRALIGHT, FONT_WEIGHT_BASE_LIGHT, FONT_WEIGHT_BASE_MEDIUM, FONT_WEIGHT_BASE_REGULAR, FONT_WEIGHT_BASE_SEMIBOLD, FONT_WEIGHT_BASE_THIN, } from './font';
3
+ export { LINE_HEIGHT_BASE_LOOSE, LINE_HEIGHT_BASE_NONE, LINE_HEIGHT_BASE_NORMAL, LINE_HEIGHT_BASE_RELAXED, LINE_HEIGHT_BASE_SNUG, LINE_HEIGHT_BASE_TIGHT, } from './text';
@@ -0,0 +1,12 @@
1
+ /**
2
+ * Base text line height constants.
3
+ * Supposed to be used for styling text.
4
+ * It seems like we wont need an extra set of line heights.
5
+ * But we named them as base just in case also..
6
+ */
7
+ export declare const LINE_HEIGHT_BASE_NONE = 1;
8
+ export declare const LINE_HEIGHT_BASE_TIGHT = 1.25;
9
+ export declare const LINE_HEIGHT_BASE_SNUG = 1.375;
10
+ export declare const LINE_HEIGHT_BASE_NORMAL = 1.5;
11
+ export declare const LINE_HEIGHT_BASE_RELAXED = 1.625;
12
+ export declare const LINE_HEIGHT_BASE_LOOSE = 2;
@@ -0,0 +1,2 @@
1
+ export { ThemeContextProvider, useThemeContext } from '../contexts/theme';
2
+ export type { ThemeColorRGB, ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue, ThemeFontWeight, } from '../contexts/theme';
@@ -1,2 +1,2 @@
1
1
  export { ThemeContextProvider, useThemeContext } from './theme';
2
- export type { ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue, ThemeFontWeight, } from './theme.types';
2
+ export type { ThemeColorRGB, ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue, ThemeFontWeight, } from './theme.types';
@@ -1,4 +1,10 @@
1
1
  import type { FunctionComponent, PropsWithChildren } from 'react';
2
+ /**
3
+ * Theme RGB color type.
4
+ * Should be used to specify theme colors.
5
+ * Number instead of 0-255 union to avoid too complex union type.
6
+ */
7
+ export type ThemeColorRGB = `rgb(${number},${number},${number})`;
2
8
  /**
3
9
  * Theme font weight type.
4
10
  * Should be used to specify theme font weight.
@@ -11,6 +17,56 @@ export type ThemeFontWeight = 100 | 200 | 300 | 400 | 500 | 600 | 700 | 800 | 90
11
17
  * This tokens can be also accesed via theme context outside.
12
18
  */
13
19
  export interface ThemeContextValue {
20
+ /**
21
+ * Base foreground 100 color token.
22
+ * The least contrast color in the foreground palette.
23
+ * You are supposed to use it for almost invisible elements.
24
+ */
25
+ colorForegroundBase100: ThemeColorRGB;
26
+ /**
27
+ * Base foreground 200 color token.
28
+ * Still supposed to be almost invisible.
29
+ * Can be used to create som ierarchy illusion maybe.
30
+ */
31
+ colorForegroundBase200: ThemeColorRGB;
32
+ /**
33
+ * Base foreground 300 color token.
34
+ * For slightly readable text or elements.
35
+ */
36
+ colorForegroundBase300: ThemeColorRGB;
37
+ /**
38
+ * Base foreground 400 color token.
39
+ * A kind of secondary color for secondary elements.
40
+ * If your secondary element has two levels this color is for the second one.
41
+ */
42
+ colorForegroundBase400: ThemeColorRGB;
43
+ /**
44
+ * Base foreground 500 color token.
45
+ * Also good for secondary elements on less contrast background.
46
+ */
47
+ colorForegroundBase500: ThemeColorRGB;
48
+ /**
49
+ * Base foreground 600 color token.
50
+ * Ideal for secondary elements and less important text.
51
+ */
52
+ colorForegroundBase600: ThemeColorRGB;
53
+ /**
54
+ * Base foreground 700 color token.
55
+ * For default elements, placed on more contrast background.
56
+ * Is also suitable for just a little bit less contrast elements.
57
+ */
58
+ colorForegroundBase700: ThemeColorRGB;
59
+ /**
60
+ * Base foreground 800 color token.
61
+ * Used as default value for text component.
62
+ * Ideal for high-contrast text and key elements.
63
+ */
64
+ colorForegroundBase800: ThemeColorRGB;
65
+ /**
66
+ * Base foreground 900 color token.
67
+ * Almost the same sense as 800, but for less contrast backgrounds.
68
+ */
69
+ colorForegroundBase900: ThemeColorRGB;
14
70
  /**
15
71
  * Base font family token.
16
72
  * Supposed to be used by most components.
@@ -19,106 +75,145 @@ export interface ThemeContextValue {
19
75
  fontFamilyBase: string;
20
76
  /**
21
77
  * Base thin font weight token.
22
- * For the most delicate and subtle elements.
23
- * It should be kind of sleek and lightweight text.
78
+ * Ideal for very delicate and decorative, large, elegant hero text.
24
79
  */
25
80
  fontWeightBaseThin: ThemeFontWeight;
26
81
  /**
27
82
  * Base extra-light font weight token.
28
- * Slightly heavier than thin but still very light.
29
- * Suitable for subtle text elements that require a bit more presence.
83
+ * Use for large, airy headings or subtle interface elements.
84
+ * Slightly more readable than extra-thin, but still decorative.
30
85
  */
31
86
  fontWeightBaseExtraLight: ThemeFontWeight;
32
87
  /**
33
88
  * Base light font weight token.
34
- * Can be used for secondary text for example.
89
+ * Suitable for subheadings, muted captions, and soft labels.
35
90
  */
36
91
  fontWeightBaseLight: ThemeFontWeight;
37
92
  /**
38
93
  * Base regular font weight token.
39
- * For the most common text elements of your interface.
40
- * If you dont't known what font weight to use - use this one.
94
+ * For the most common text elements in your interface.
95
+ * When unsure about font weight, this is the default option.
41
96
  */
42
97
  fontWeightBaseRegular: ThemeFontWeight;
98
+ /**
99
+ * Base medium font weight token.
100
+ * Suitable for labels, buttons, and small subheadings.
101
+ * Slightly emphasized, providing better readability.
102
+ */
103
+ fontWeightBaseMedium: ThemeFontWeight;
43
104
  /**
44
105
  * Base semi-bold font weight token.
45
- * Variant for highlit regular text a bit.
46
- * Not as strong as bold, but still more noticeable.
106
+ * Provides stronger emphasis without being overwhelming.
107
+ * Ideal for section headers, emphasized text, and card titles.
47
108
  */
48
109
  fontWeightBaseSemibold: ThemeFontWeight;
49
110
  /**
50
111
  * Base bold font weight token.
51
- * Supposed to be used for titles and headings.
112
+ * For high emphasis on important elements.
113
+ * Use for main headings and strong call-to-action buttons.
52
114
  */
53
115
  fontWeightBaseBold: ThemeFontWeight;
54
116
  /**
55
117
  * Extra-bold font weight token.
56
- * Maybe if you need to highlight something inside title or heading.
118
+ * Perfect for promo banners and large impactful headings.
57
119
  */
58
120
  fontWeightBaseExtraBold: ThemeFontWeight;
59
121
  /**
60
- * Base black font wieght token.
61
- * The heaviest font weight variant.
62
- * Should be used for hudge text elements like hero title and etc.
122
+ * Base black font weight token.
123
+ * Extreme emphasis for rare, dramatic cases.
124
+ * Great for headlines in posters and highly attention-grabbing elements.
63
125
  */
64
126
  fontWeightBaseBlack: ThemeFontWeight;
65
127
  /**
66
128
  * Base 2 times extra-small font size token.
67
129
  * Use this size for tiny text elements like captions.
68
- * It is like the smallest readable text in your interface.
130
+ * It represents the smallest readable text in your interface.
69
131
  */
70
132
  fontSizeBaseX2S: number;
71
133
  /**
72
134
  * Base extra-small font size token.
73
- * Can be a kind of subtitle for smallest readable text for example.
135
+ * Suitable for subtitles or the smallest readable text, for example.
74
136
  */
75
137
  fontSizeBaseXS: number;
76
138
  /**
77
139
  * Base small font size token.
78
140
  * Can be used for smaller labels or captions among medium text.
79
- * It also can be used as a title font size for smaller 2 times small text.
141
+ * Also suitable for titles in smaller 2x small text.
80
142
  */
81
143
  fontSizeBaseSM: number;
82
144
  /**
83
145
  * Base medium font size token.
84
- * Supposed to be used for most of the text elements.
85
- * If you don't known what font size to use - use this one.
146
+ * Intended for most text elements.
147
+ * If unsure about which font size to use, this is the default option.
86
148
  */
87
149
  fontSizeBaseMD: number;
88
150
  /**
89
151
  * Base large font size token.
90
- * Can be used for fourth-level page title.
91
- * Can be used for some larger labels or captions among medium text.
152
+ * Suitable for fourth-level page titles.
153
+ * Can also be used for larger labels or captions among medium text.
92
154
  */
93
155
  fontSizeBaseLG: number;
94
156
  /**
95
157
  * Base extra-large font size token.
96
- * Can be used for third-level page title.
97
- * Also can be used for some larger labels or captions among medium text.
158
+ * Ideal for third-level page titles.
159
+ * Can also be used for larger labels or captions within medium text.
98
160
  */
99
161
  fontSizeBaseXL: number;
100
162
  /**
101
163
  * Base 2 times extra-large font size token.
102
- * Supposed to be used for second-level page title.
164
+ * Typically used for second-level page titles.
103
165
  */
104
166
  fontSizeBaseX2L: number;
105
167
  /**
106
168
  * Base 3 times extra-large font size token.
107
- * Supposed to be used for first-level page title.
108
- * Can be also used for labels or captions among hudge text.
169
+ * Designed for first-level page titles.
170
+ * Can also be used for labels or captions within huge text.
109
171
  */
110
172
  fontSizeBaseX3L: number;
111
173
  /**
112
174
  * Base 4 times extra-large font size token.
113
- * Can be used for hudge text labels and captions.
175
+ * Ideal for huge text labels and captions.
114
176
  */
115
177
  fontSizeBaseX4L: number;
116
178
  /**
117
179
  * Base 5 times extra-large font size token.
118
- * Use this size for huge text elements like hero title.
119
- * Supposed to be the largest font size in your interface.
180
+ * Use this size for enormous text elements like hero titles.
181
+ * It should be the largest font size in your interface.
120
182
  */
121
183
  fontSizeBaseX5L: number;
184
+ /**
185
+ * Base none line height token.
186
+ * Use for elements with no line height, like buttons, badges, and tags.
187
+ */
188
+ lineHeightBaseNone: number;
189
+ /**
190
+ * Base tight line height token.
191
+ * For compact text elements with closely packed lines.
192
+ */
193
+ lineHeightBaseTight: number;
194
+ /**
195
+ * Base snug line height token.
196
+ * Ideal for compact text that still needs some breathing room.
197
+ */
198
+ lineHeightBaseSnug: number;
199
+ /**
200
+ * Base normal line height token.
201
+ * Standard line height for most text elements.
202
+ * Use for general content in your interface.
203
+ */
204
+ lineHeightBaseNormal: number;
205
+ /**
206
+ * Base relaxed line height token.
207
+ * Provides more space between lines.
208
+ * Ideal for body text or large blocks of content.
209
+ */
210
+ lineHeightBaseRelaxed: number;
211
+ /**
212
+ * Base loose line height token.
213
+ * Very spacious and airy, great for large headings.
214
+ * Suitable for text elements that need a lot of breathing room.
215
+ */
216
+ lineHeightBaseLoose: number;
122
217
  }
123
218
  export type ThemeContextProviderProps = PropsWithChildren<Partial<ThemeContextValue>>;
124
219
  export type ThemeContextProviderComponent = FunctionComponent<ThemeContextProviderProps>;
@@ -1,4 +1,31 @@
1
1
  export declare const useThemeStyleSheet: () => {
2
+ colorForegroundBase100: {
3
+ color: `rgb(${number},${number},${number})`;
4
+ };
5
+ colorForegroundBase200: {
6
+ color: `rgb(${number},${number},${number})`;
7
+ };
8
+ colorForegroundBase300: {
9
+ color: `rgb(${number},${number},${number})`;
10
+ };
11
+ colorForegroundBase400: {
12
+ color: `rgb(${number},${number},${number})`;
13
+ };
14
+ colorForegroundBase500: {
15
+ color: `rgb(${number},${number},${number})`;
16
+ };
17
+ colorForegroundBase600: {
18
+ color: `rgb(${number},${number},${number})`;
19
+ };
20
+ colorForegroundBase700: {
21
+ color: `rgb(${number},${number},${number})`;
22
+ };
23
+ colorForegroundBase800: {
24
+ color: `rgb(${number},${number},${number})`;
25
+ };
26
+ colorForegroundBase900: {
27
+ color: `rgb(${number},${number},${number})`;
28
+ };
2
29
  fontFamilyBase: {
3
30
  fontFamily: string;
4
31
  };
@@ -14,6 +41,9 @@ export declare const useThemeStyleSheet: () => {
14
41
  fontWeightBaseRegular: {
15
42
  fontWeight: import("../contexts/theme").ThemeFontWeight;
16
43
  };
44
+ fontWeightBaseMedium: {
45
+ fontWeight: import("../contexts/theme").ThemeFontWeight;
46
+ };
17
47
  fontWeightBaseSemibold: {
18
48
  fontWeight: import("../contexts/theme").ThemeFontWeight;
19
49
  };
package/build/index.d.ts CHANGED
@@ -6,7 +6,7 @@ export { Text } from './components/text';
6
6
  export type { TextComponent, TextProps } from './components/text';
7
7
  export { FONT_FAMILY_BASE } from './constants/theme';
8
8
  export { ThemeContextProvider, useThemeContext } from './contexts/theme';
9
- export type { ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue, ThemeFontWeight, } from './contexts/theme';
9
+ export type { ThemeColorRGB, ThemeContextProviderComponent, ThemeContextProviderProps, ThemeContextValue, ThemeFontWeight, } from './contexts/theme';
10
10
  export { renderStyle } from './helpers/style';
11
11
  export type { RenderStyleHelper } from './helpers/style';
12
12
  export { useThemeStyleSheet } from './hooks/use-theme-style-sheet';
package/build/index.js CHANGED
@@ -1,2 +1,2 @@
1
1
  /*! For license information please see index.js.LICENSE.txt */
2
- !function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("react"),require("react-dom")):"function"==typeof define&&define.amd?define("creactive",["react","react-dom"],r):"object"==typeof exports?exports.creactive=r(require("react"),require("react-dom")):e.creactive=r(e.react,e["react-dom"])}(this,((e,r)=>(()=>{"use strict";var t={486:(e,r,t)=>{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 o(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=new Array(r);t<r;t++)n[t]=e[t];return n}function a(e){return e.filter((function(r,t){return e.lastIndexOf(r)===t}))}function i(e){for(var r=0,t=arguments.length<=1?0:arguments.length-1;r<t;++r){var l=r+1<1||arguments.length<=r+1?void 0:arguments[r+1];for(var s in l){var u=l[s],c=e[s];if(c&&u){if(Array.isArray(c)){e[s]=a(c.concat(u));continue}if(Array.isArray(u)){e[s]=a([c].concat(function(e){if(Array.isArray(e))return o(e)}(d=u)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(d)||function(e,r){if(e){if("string"==typeof e)return o(e,r);var t=Object.prototype.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(t):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?o(e,r):void 0}}(d)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()));continue}if("object"===n(u)){e[s]=i({},c,u);continue}}e[s]=u}}var d;return e}t.r(r),t.d(r,{assignStyle:()=>i,camelCaseProperty:()=>d,cssifyDeclaration:()=>h,cssifyObject:()=>b,hyphenateProperty:()=>p,isPrefixedProperty:()=>v,isPrefixedValue:()=>m,isUnitlessProperty:()=>A,normalizeProperty:()=>P,resolveArrayValue:()=>M,unprefixProperty:()=>L,unprefixValue:()=>z});var l=/-([a-z])/g,s=/^Ms/g,u={};function c(e){return e[1].toUpperCase()}function d(e){if(u.hasOwnProperty(e))return u[e];var r=e.replace(l,c).replace(s,"ms");return u[e]=r,r}var f=t(685);function p(e){return(0,f.default)(e)}function h(e,r){return p(e)+":"+r}function b(e){var r="";for(var t in e){var n=e[t];"string"!=typeof n&&"number"!=typeof n||(r&&(r+=";"),r+=h(t,n))}return r}var g=/^(Webkit|Moz|O|ms)/;function v(e){return g.test(e)}var y=/-webkit-|-moz-|-ms-/;function m(e){return"string"==typeof e&&y.test(e)}var S={borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},R=["animationIterationCount","boxFlex","boxFlexGroup","boxOrdinalGroup","columnCount","flex","flexGrow","flexPositive","flexShrink","flexNegative","flexOrder","gridColumn","gridColumnEnd","gridColumnStart","gridRow","gridRowEnd","gridRowStart","lineClamp","order"],w=["Webkit","ms","Moz","O"];function x(e,r){return e+r.charAt(0).toUpperCase()+r.slice(1)}for(var B=0,k=R.length;B<k;++B){var C=R[B];S[C]=!0;for(var E=0,O=w.length;E<O;++E)S[x(w[E],C)]=!0}for(var T in S)S[p(T)]=!0;function A(e){return S.hasOwnProperty(e)}var W=/^(ms|Webkit|Moz|O)/;function L(e){var r=e.replace(W,"");return r.charAt(0).toLowerCase()+r.slice(1)}function P(e){return L(d(e))}function M(e,r){return r.join(";"+p(e)+":")}var I=/(-ms-|-webkit-|-moz-|-o-)/g;function z(e){return"string"==typeof e?e.replace(I,""):e}},721:(e,r,t)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e){return(0,o.default)(e)};var n,o=(n=t(685))&&n.__esModule?n:{default:n}},14:(e,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e){return"string"==typeof e&&t.test(e)};var t=/-webkit-|-moz-|-ms-/},646:e=>{e.exports=function(e,r){for(var t=arguments.length,n=new Array(t>2?t-2:0),o=2;o<t;o++)n[o-2]=arguments[o];if(!e){var a;if(void 0===r)a=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var i=0;(a=new Error(r.replace(/%s/g,(function(){return String(n[i++])})))).name="Invariant Violation"}throw a.framesToPop=1,a}}},685:(e,r,t)=>{t.r(r),t.d(r,{default:()=>l});var n=/[A-Z]/g,o=/^ms-/,a={};function i(e){return"-"+e.toLowerCase()}const l=function(e){if(a.hasOwnProperty(e))return a[e];var r=e.replace(n,i);return a[e]=o.test(r)?"-"+r:r}},485:(e,r,t)=>{r.A=function(e){var r=e.prefixMap,t=e.plugins;return function e(l){for(var s in l){var u=l[s];if((0,i.default)(u))l[s]=e(u);else if(Array.isArray(u)){for(var c=[],d=0,f=u.length;d<f;++d){var p=(0,o.default)(t,s,u[d],l,r);(0,a.default)(c,p||u[d])}c.length>0&&(l[s]=c)}else{var h=(0,o.default)(t,s,u,l,r);h&&(l[s]=h),l=(0,n.default)(r,s,l)}}return l}};var n=l(t(49)),o=l(t(971)),a=l(t(863)),i=l(t(99));function l(e){return e&&e.__esModule?e:{default:e}}},217:(e,r)=>{r.A=function(){return null}},261:(e,r,t)=>{r.A=function(e,r){if("string"==typeof r&&!(0,n.isPrefixedValue)(r)&&-1!==r.indexOf("cross-fade("))return a.map((function(e){return r.replace(o,e+"cross-fade(")}))};var n=t(486),o=/cross-fade\(/g,a=["-webkit-",""]},41:(e,r)=>{r.A=function(e,r){if("cursor"===e&&n.hasOwnProperty(r))return t.map((function(e){return e+r}))};var t=["-webkit-","-moz-",""],n={"zoom-in":!0,"zoom-out":!0,grab:!0,grabbing:!0}},33:(e,r,t)=>{r.A=function(e,r){if("string"==typeof r&&!(0,n.isPrefixedValue)(r)&&-1!==r.indexOf("filter("))return a.map((function(e){return r.replace(o,e+"filter(")}))};var n=t(486),o=/filter\(/g,a=["-webkit-",""]},852:(e,r,t)=>{r.A=function(e,r){if("string"==typeof r&&!(0,o.default)(r)&&r.indexOf("image-set(")>-1)return a.map((function(e){return r.replace(/image-set\(/g,e+"image-set(")}))};var n,o=(n=t(14))&&n.__esModule?n:{default:n},a=["-webkit-",""]},639:(e,r)=>{r.A=function(e,r,n){if(Object.prototype.hasOwnProperty.call(t,e))for(var o=t[e],a=0,i=o.length;a<i;++a)n[o[a]]=r};var t={marginBlockStart:["WebkitMarginBefore"],marginBlockEnd:["WebkitMarginAfter"],marginInlineStart:["WebkitMarginStart","MozMarginStart"],marginInlineEnd:["WebkitMarginEnd","MozMarginEnd"],paddingBlockStart:["WebkitPaddingBefore"],paddingBlockEnd:["WebkitPaddingAfter"],paddingInlineStart:["WebkitPaddingStart","MozPaddingStart"],paddingInlineEnd:["WebkitPaddingEnd","MozPaddingEnd"],borderBlockStart:["WebkitBorderBefore"],borderBlockStartColor:["WebkitBorderBeforeColor"],borderBlockStartStyle:["WebkitBorderBeforeStyle"],borderBlockStartWidth:["WebkitBorderBeforeWidth"],borderBlockEnd:["WebkitBorderAfter"],borderBlockEndColor:["WebkitBorderAfterColor"],borderBlockEndStyle:["WebkitBorderAfterStyle"],borderBlockEndWidth:["WebkitBorderAfterWidth"],borderInlineStart:["WebkitBorderStart","MozBorderStart"],borderInlineStartColor:["WebkitBorderStartColor","MozBorderStartColor"],borderInlineStartStyle:["WebkitBorderStartStyle","MozBorderStartStyle"],borderInlineStartWidth:["WebkitBorderStartWidth","MozBorderStartWidth"],borderInlineEnd:["WebkitBorderEnd","MozBorderEnd"],borderInlineEndColor:["WebkitBorderEndColor","MozBorderEndColor"],borderInlineEndStyle:["WebkitBorderEndStyle","MozBorderEndStyle"],borderInlineEndWidth:["WebkitBorderEndWidth","MozBorderEndWidth"]}},996:(e,r)=>{r.A=function(e,r){if("position"===e&&"sticky"===r)return["-webkit-sticky","sticky"]}},129:(e,r)=>{r.A=function(e,r){if(n.hasOwnProperty(e)&&o.hasOwnProperty(r))return t.map((function(e){return e+r}))};var t=["-webkit-","-moz-",""],n={maxHeight:!0,maxWidth:!0,width:!0,height:!0,columnWidth:!0,minWidth:!0,minHeight:!0},o={"min-content":!0,"max-content":!0,"fill-available":!0,"fit-content":!0,"contain-floats":!0}},508:(e,r,t)=>{r.A=function(e,r,t,i){if("string"==typeof r&&l.hasOwnProperty(e)){var u=function(e,r){if((0,o.default)(e))return e;for(var t=e.split(/,(?![^()]*(?:\([^()]*\))?\))/g),a=0,i=t.length;a<i;++a){var l=t[a],u=[l];for(var c in r){var d=(0,n.default)(c);if(l.indexOf(d)>-1&&"order"!==d)for(var f=r[c],p=0,h=f.length;p<h;++p)u.unshift(l.replace(d,s[f[p]]+d))}t[a]=u.join(",")}return t.join(",")}(r,i),c=u.split(/,(?![^()]*(?:\([^()]*\))?\))/g).filter((function(e){return!/-moz-|-ms-/.test(e)})).join(",");if(e.indexOf("Webkit")>-1)return c;var d=u.split(/,(?![^()]*(?:\([^()]*\))?\))/g).filter((function(e){return!/-webkit-|-ms-/.test(e)})).join(",");return e.indexOf("Moz")>-1?d:(t["Webkit"+(0,a.default)(e)]=c,t["Moz"+(0,a.default)(e)]=d,u)}};var n=i(t(721)),o=i(t(14)),a=i(t(91));function i(e){return e&&e.__esModule?e:{default:e}}var l={transition:!0,transitionProperty:!0,WebkitTransition:!0,WebkitTransitionProperty:!0,MozTransition:!0,MozTransitionProperty:!0},s={Webkit:"-webkit-",Moz:"-moz-",ms:"-ms-"}},863:(e,r)=>{function t(e,r){-1===e.indexOf(r)&&e.push(r)}Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,r){if(Array.isArray(r))for(var n=0,o=r.length;n<o;++n)t(e,r[n]);else t(e,r)}},91:(e,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e){return e.charAt(0).toUpperCase()+e.slice(1)}},99:(e,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e){return e instanceof Object&&!Array.isArray(e)}},49:(e,r,t)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,r,t){var n=e[r];if(n&&t.hasOwnProperty(r))for(var a=(0,o.default)(r),i=0;i<n.length;++i){var l=n[i]+a;t[l]||(t[l]=t[r])}return t};var n,o=(n=t(91))&&n.__esModule?n:{default:n}},971:(e,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,r,t,n,o){for(var a=0,i=e.length;a<i;++a){var l=e[a](r,t,n,o);if(l)return l}}},338:(e,r,t)=>{var n=t(514);r.H=n.createRoot,r.c=n.hydrateRoot},515:e=>{function r(e,r,t){return t<0&&(t+=1),t>1&&(t-=1),t<1/6?e+6*(r-e)*t:t<.5?r:t<2/3?e+(r-e)*(2/3-t)*6:e}function t(e,t,n){const o=n<.5?n*(1+t):n+t-n*t,a=2*n-o,i=r(a,o,e+1/3),l=r(a,o,e),s=r(a,o,e-1/3);return Math.round(255*i)<<24|Math.round(255*l)<<16|Math.round(255*s)<<8}const n="[-+]?\\d*\\.?\\d+",o=n+"%";function a(...e){return"\\(\\s*("+e.join(")\\s*,?\\s*(")+")\\s*\\)"}function i(...e){return"\\(\\s*("+e.slice(0,e.length-1).join(")\\s*,?\\s*(")+")\\s*/\\s*("+e[e.length-1]+")\\s*\\)"}function l(...e){return"\\(\\s*("+e.join(")\\s*,\\s*(")+")\\s*\\)"}let s;function u(e){const r=parseInt(e,10);return r<0?0:r>255?255:r}function c(e){return(parseFloat(e)%360+360)%360/360}function d(e){const r=parseFloat(e);return r<0?0:r>1?255:Math.round(255*r)}function f(e){const r=parseFloat(e);return r<0?0:r>100?1:r/100}e.exports=function(e){if("number"==typeof e)return e>>>0===e&&e>=0&&e<=4294967295?e:null;if("string"!=typeof e)return null;const p=(void 0===s&&(s={rgb:new RegExp("rgb"+a(n,n,n)),rgba:new RegExp("rgba("+l(n,n,n,n)+"|"+i(n,n,n,n)+")"),hsl:new RegExp("hsl"+a(n,o,o)),hsla:new RegExp("hsla("+l(n,o,o,n)+"|"+i(n,o,o,n)+")"),hwb:new RegExp("hwb"+a(n,o,o)),hex3:/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex4:/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#([0-9a-fA-F]{6})$/,hex8:/^#([0-9a-fA-F]{8})$/}),s);let h;if(h=p.hex6.exec(e))return parseInt(h[1]+"ff",16)>>>0;const b=function(e){switch(e){case"transparent":return 0;case"aliceblue":return 4042850303;case"antiquewhite":return 4209760255;case"aqua":case"cyan":return 16777215;case"aquamarine":return 2147472639;case"azure":return 4043309055;case"beige":return 4126530815;case"bisque":return 4293182719;case"black":return 255;case"blanchedalmond":return 4293643775;case"blue":return 65535;case"blueviolet":return 2318131967;case"brown":return 2771004159;case"burlywood":return 3736635391;case"burntsienna":return 3934150143;case"cadetblue":return 1604231423;case"chartreuse":return 2147418367;case"chocolate":return 3530104575;case"coral":return 4286533887;case"cornflowerblue":return 1687547391;case"cornsilk":return 4294499583;case"crimson":return 3692313855;case"darkblue":return 35839;case"darkcyan":return 9145343;case"darkgoldenrod":return 3095792639;case"darkgray":case"darkgrey":return 2846468607;case"darkgreen":return 6553855;case"darkkhaki":return 3182914559;case"darkmagenta":return 2332068863;case"darkolivegreen":return 1433087999;case"darkorange":return 4287365375;case"darkorchid":return 2570243327;case"darkred":return 2332033279;case"darksalmon":return 3918953215;case"darkseagreen":return 2411499519;case"darkslateblue":return 1211993087;case"darkslategray":case"darkslategrey":return 793726975;case"darkturquoise":return 13554175;case"darkviolet":return 2483082239;case"deeppink":return 4279538687;case"deepskyblue":return 12582911;case"dimgray":case"dimgrey":return 1768516095;case"dodgerblue":return 512819199;case"firebrick":return 2988581631;case"floralwhite":return 4294635775;case"forestgreen":return 579543807;case"fuchsia":case"magenta":return 4278255615;case"gainsboro":return 3705462015;case"ghostwhite":return 4177068031;case"gold":return 4292280575;case"goldenrod":return 3668254975;case"gray":case"grey":return 2155905279;case"green":return 8388863;case"greenyellow":return 2919182335;case"honeydew":return 4043305215;case"hotpink":return 4285117695;case"indianred":return 3445382399;case"indigo":return 1258324735;case"ivory":return 4294963455;case"khaki":return 4041641215;case"lavender":return 3873897215;case"lavenderblush":return 4293981695;case"lawngreen":return 2096890111;case"lemonchiffon":return 4294626815;case"lightblue":return 2916673279;case"lightcoral":return 4034953471;case"lightcyan":return 3774873599;case"lightgoldenrodyellow":return 4210742015;case"lightgray":case"lightgrey":return 3553874943;case"lightgreen":return 2431553791;case"lightpink":return 4290167295;case"lightsalmon":return 4288707327;case"lightseagreen":return 548580095;case"lightskyblue":return 2278488831;case"lightslategray":case"lightslategrey":return 2005441023;case"lightsteelblue":return 2965692159;case"lightyellow":return 4294959359;case"lime":return 16711935;case"limegreen":return 852308735;case"linen":return 4210091775;case"maroon":return 2147483903;case"mediumaquamarine":return 1724754687;case"mediumblue":return 52735;case"mediumorchid":return 3126187007;case"mediumpurple":return 2473647103;case"mediumseagreen":return 1018393087;case"mediumslateblue":return 2070474495;case"mediumspringgreen":return 16423679;case"mediumturquoise":return 1221709055;case"mediumvioletred":return 3340076543;case"midnightblue":return 421097727;case"mintcream":return 4127193855;case"mistyrose":return 4293190143;case"moccasin":return 4293178879;case"navajowhite":return 4292783615;case"navy":return 33023;case"oldlace":return 4260751103;case"olive":return 2155872511;case"olivedrab":return 1804477439;case"orange":return 4289003775;case"orangered":return 4282712319;case"orchid":return 3664828159;case"palegoldenrod":return 4008225535;case"palegreen":return 2566625535;case"paleturquoise":return 2951671551;case"palevioletred":return 3681588223;case"papayawhip":return 4293907967;case"peachpuff":return 4292524543;case"peru":return 3448061951;case"pink":return 4290825215;case"plum":return 3718307327;case"powderblue":return 2967529215;case"purple":return 2147516671;case"rebeccapurple":return 1714657791;case"red":return 4278190335;case"rosybrown":return 3163525119;case"royalblue":return 1097458175;case"saddlebrown":return 2336560127;case"salmon":return 4202722047;case"sandybrown":return 4104413439;case"seagreen":return 780883967;case"seashell":return 4294307583;case"sienna":return 2689740287;case"silver":return 3233857791;case"skyblue":return 2278484991;case"slateblue":return 1784335871;case"slategray":case"slategrey":return 1887473919;case"snow":return 4294638335;case"springgreen":return 16744447;case"steelblue":return 1182971135;case"tan":return 3535047935;case"teal":return 8421631;case"thistle":return 3636451583;case"tomato":return 4284696575;case"turquoise":return 1088475391;case"violet":return 4001558271;case"wheat":return 4125012991;case"white":return 4294967295;case"whitesmoke":return 4126537215;case"yellow":return 4294902015;case"yellowgreen":return 2597139199}return null}(e);return null!=b?b:(h=p.rgb.exec(e))?(u(h[1])<<24|u(h[2])<<16|u(h[3])<<8|255)>>>0:(h=p.rgba.exec(e))?void 0!==h[6]?(u(h[6])<<24|u(h[7])<<16|u(h[8])<<8|d(h[9]))>>>0:(u(h[2])<<24|u(h[3])<<16|u(h[4])<<8|d(h[5]))>>>0:(h=p.hex3.exec(e))?parseInt(h[1]+h[1]+h[2]+h[2]+h[3]+h[3]+"ff",16)>>>0:(h=p.hex8.exec(e))?parseInt(h[1],16)>>>0:(h=p.hex4.exec(e))?parseInt(h[1]+h[1]+h[2]+h[2]+h[3]+h[3]+h[4]+h[4],16)>>>0:(h=p.hsl.exec(e))?(255|t(c(h[1]),f(h[2]),f(h[3])))>>>0:(h=p.hsla.exec(e))?void 0!==h[6]?(t(c(h[6]),f(h[7]),f(h[8]))|d(h[9]))>>>0:(t(c(h[2]),f(h[3]),f(h[4]))|d(h[5]))>>>0:(h=p.hwb.exec(e))?(255|function(e,t,n){if(t+n>=1){const e=Math.round(255*t/(t+n));return e<<24|e<<16|e<<8}const o=r(0,1,e+1/3)*(1-t-n)+t,a=r(0,1,e)*(1-t-n)+t,i=r(0,1,e-1/3)*(1-t-n)+t;return Math.round(255*o)<<24|Math.round(255*a)<<16|Math.round(255*i)<<8}(c(h[1]),f(h[2]),f(h[3])))>>>0:null}},20:(e,r,t)=>{var n=t(155),o=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,l={key:!0,ref:!0,__self:!0,__source:!0};r.jsx=function(e,r,t){var n,s={},u=null,c=null;for(n in void 0!==t&&(u=""+t),void 0!==r.key&&(u=""+r.key),void 0!==r.ref&&(c=r.ref),r)a.call(r,n)&&!l.hasOwnProperty(n)&&(s[n]=r[n]);if(e&&e.defaultProps)for(n in r=e.defaultProps)void 0===s[n]&&(s[n]=r[n]);return{$$typeof:o,type:e,key:u,ref:c,props:s,_owner:i.current}}},848:(e,r,t)=>{e.exports=t(20)},176:(e,r)=>{r.P=void 0;var t=new WeakMap;function n(e){var r,n,o;return null!=e&&(r=!0===e.disableCache,n=!0===e.disableMix,o=e.transform),function(){for(var e=[],a="",i=null,l=r?null:t,s=new Array(arguments.length),u=0;u<arguments.length;u++)s[u]=arguments[u];for(;s.length>0;){var c=s.pop();if(null!=c&&!1!==c)if(Array.isArray(c))for(var d=0;d<c.length;d++)s.push(c[d]);else{var f=null!=o?o(c):c;if(f.$$css){var p="";if(null!=l&&l.has(f)){var h=l.get(f);null!=h&&(p=h[0],e.push.apply(e,h[1]),l=h[2])}else{var b=[];for(var g in f){var v=f[g];"$$css"!==g&&("string"==typeof v||null===v?e.includes(g)||(e.push(g),null!=l&&b.push(g),"string"==typeof v&&(p+=p?" "+v:v)):console.error("styleq: ".concat(g," typeof ").concat(String(v),' is not "string" or "null".')))}if(null!=l){var y=new WeakMap;l.set(f,[p,b,y]),l=y}}p&&(a=a?p+" "+a:p)}else if(n)null==i&&(i={}),i=Object.assign({},f,i);else{var m=null;for(var S in f){var R=f[S];void 0!==R&&(e.includes(S)||(null!=R&&(null==i&&(i={}),null==m&&(m={}),m[S]=R),e.push(S),l=null))}null!=m&&(i=Object.assign(m,i))}}}return[a,i]}}var o=n();r.P=o,o.factory=n},336:(e,r)=>{r.n=function(e,r){if(null!=e[n]){var a=r?1:0;if(t.has(e)){var i=t.get(e),l=i[a];return null==l&&(l=o(e,r),i[a]=l,t.set(e,i)),l}var s=o(e,r),u=new Array(2);return u[a]=s,t.set(e,u),s}return e};var t=new WeakMap,n="$$css$localize";function o(e,r){var t={};for(var o in e)if(o!==n){var a=e[o];Array.isArray(a)?t[o]=r?a[1]:a[0]:t[o]=a}return t}},155:r=>{r.exports=e},514:e=>{e.exports=r}},n={};function o(e){var r=n[e];if(void 0!==r)return r.exports;var a=n[e]={exports:{}};return t[e](a,a.exports,o),a.exports}o.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return o.d(r,{a:r}),r},o.d=(e,r)=>{for(var t in r)o.o(r,t)&&!o.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},o.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};o.r(a),o.d(a,{FONT_FAMILY_BASE:()=>i,Text:()=>Nt,ThemeContextProvider:()=>d,renderStyle:()=>hn,useThemeContext:()=>f,useThemeStyleSheet:()=>Ze});const i=["ui-sans-serif","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto","Helvetica","Arial","sans-serif"].join(",");var l=o(155),s=o.n(l),u=o(848);const c=(0,l.createContext)({fontFamilyBase:i,fontWeightBaseThin:100,fontWeightBaseExtraLight:200,fontWeightBaseLight:300,fontWeightBaseRegular:400,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}),d=({fontFamilyBase:e,fontWeightBaseThin:r,fontWeightBaseExtraLight:t,fontWeightBaseLight:n,fontWeightBaseRegular:o,fontWeightBaseSemibold:a,fontWeightBaseBold:s,fontWeightBaseExtraBold:d,fontWeightBaseBlack:f,fontSizeBaseX2S:p,fontSizeBaseXS:h,fontSizeBaseSM:b,fontSizeBaseMD:g,fontSizeBaseLG:v,fontSizeBaseXL:y,fontSizeBaseX2L:m,fontSizeBaseX3L:S,fontSizeBaseX4L:R,fontSizeBaseX5L:w,children:x})=>{const B=(0,l.useMemo)((()=>({fontFamilyBase:e??i,fontWeightBaseThin:r??100,fontWeightBaseExtraLight:t??200,fontWeightBaseLight:n??300,fontWeightBaseRegular:o??400,fontWeightBaseSemibold:a??600,fontWeightBaseBold:s??700,fontWeightBaseExtraBold:d??800,fontWeightBaseBlack:f??900,fontSizeBaseX2S:p??12,fontSizeBaseXS:h??14,fontSizeBaseSM:b??16,fontSizeBaseMD:g??18,fontSizeBaseLG:v??20,fontSizeBaseXL:y??24,fontSizeBaseX2L:m??30,fontSizeBaseX3L:S??36,fontSizeBaseX4L:R??48,fontSizeBaseX5L:w??60})),[e,r,t,n,o,a,s,d,f,p,h,b,g,v,y,m,S,R,w]);return(0,u.jsx)(c.Provider,{value:B,children:x})},f=()=>(0,l.useContext)(c);function p(e){return p="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},p(e)}function h(e,r,t){return(r=function(e){var r=function(e){if("object"!=p(e)||!e)return e;var r=e[Symbol.toPrimitive];if(void 0!==r){var t=r.call(e,"string");if("object"!=p(t))return t;throw new TypeError("@@toPrimitive must return a primitive value.")}return String(e)}(e);return"symbol"==p(r)?r:r+""}(r))in e?Object.defineProperty(e,r,{value:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function b(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,n)}return t}function g(e){for(var r=1;r<arguments.length;r++){var t=null!=arguments[r]?arguments[r]:{};r%2?b(Object(t),!0).forEach((function(r){h(e,r,t[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):b(Object(t)).forEach((function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}))}return e}function v(e,r){if(null==e)return{};var t={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(r.includes(n))continue;t[n]=e[n]}return t}var y={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,flex:!0,flexGrow:!0,flexOrder:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,fontWeight:!0,gridRow:!0,gridRowEnd:!0,gridRowGap:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnGap:!0,gridColumnStart:!0,lineClamp:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0,scale:!0,scaleX:!0,scaleY:!0,scaleZ:!0,shadowOpacity:!0},m=["ms","Moz","O","Webkit"];Object.keys(y).forEach((e=>{m.forEach((r=>{y[((e,r)=>e+r.charAt(0).toUpperCase()+r.substring(1))(r,e)]=y[e]}))}));const S=y;var R=o(515),w=o.n(R);const x=function(e,r){if(void 0===r&&(r=1),null!=e){if("string"==typeof e&&(e=>"currentcolor"===e||"currentColor"===e||"inherit"===e||0===e.indexOf("var("))(e))return e;var t=(e=>{if(null==e)return e;var r=w()(e);return null!=r?r=(r<<24|r>>>8)>>>0:void 0})(e);if(null!=t)return"rgba("+(t>>16&255)+","+(t>>8&255)+","+(255&t)+","+((t>>24&255)/255*r).toFixed(2)+")"}};var B={backgroundColor:!0,borderColor:!0,borderTopColor:!0,borderRightColor:!0,borderBottomColor:!0,borderLeftColor:!0,color:!0,shadowColor:!0,textDecorationColor:!0,textShadowColor:!0};function k(e,r){var t=e;return null!=r&&S[r]||"number"!=typeof e?null!=r&&B[r]&&(t=x(e)):t=e+"px",t}const C=!("undefined"==typeof window||!window.document||!window.document.createElement);var E={},O=!C||null!=window.CSS&&null!=window.CSS.supports&&(window.CSS.supports("text-decoration-line","none")||window.CSS.supports("-webkit-text-decoration-line","none")),T='-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif',A={borderColor:["borderTopColor","borderRightColor","borderBottomColor","borderLeftColor"],borderBlockColor:["borderTopColor","borderBottomColor"],borderInlineColor:["borderRightColor","borderLeftColor"],borderRadius:["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"],borderStyle:["borderTopStyle","borderRightStyle","borderBottomStyle","borderLeftStyle"],borderBlockStyle:["borderTopStyle","borderBottomStyle"],borderInlineStyle:["borderRightStyle","borderLeftStyle"],borderWidth:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"],borderBlockWidth:["borderTopWidth","borderBottomWidth"],borderInlineWidth:["borderRightWidth","borderLeftWidth"],insetBlock:["top","bottom"],insetInline:["left","right"],marginBlock:["marginTop","marginBottom"],marginInline:["marginRight","marginLeft"],paddingBlock:["paddingTop","paddingBottom"],paddingInline:["paddingRight","paddingLeft"],overflow:["overflowX","overflowY"],overscrollBehavior:["overscrollBehaviorX","overscrollBehaviorY"],borderBlockStartColor:["borderTopColor"],borderBlockStartStyle:["borderTopStyle"],borderBlockStartWidth:["borderTopWidth"],borderBlockEndColor:["borderBottomColor"],borderBlockEndStyle:["borderBottomStyle"],borderBlockEndWidth:["borderBottomWidth"],borderEndStartRadius:["borderBottomLeftRadius"],borderEndEndRadius:["borderBottomRightRadius"],borderStartStartRadius:["borderTopLeftRadius"],borderStartEndRadius:["borderTopRightRadius"],insetBlockEnd:["bottom"],insetBlockStart:["top"],marginBlockStart:["marginTop"],marginBlockEnd:["marginBottom"],paddingBlockStart:["paddingTop"],paddingBlockEnd:["paddingBottom"]};const W=(e,r)=>{if(!e)return E;var t={},n=function(){var n=e[o];if(null==n)return"continue";if("backgroundClip"===o)"text"===n&&(t.backgroundClip=n,t.WebkitBackgroundClip=n);else if("flex"===o)-1===n?(t.flexGrow=0,t.flexShrink=1,t.flexBasis="auto"):t.flex=n;else if("font"===o)t[o]=n.replace("System",T);else if("fontFamily"===o)if(n.indexOf("System")>-1){var a=n.split(/,\s*/);a[a.indexOf("System")]=T,t[o]=a.join(",")}else t[o]="monospace"===n?"monospace,monospace":n;else if("textDecorationLine"===o)O?t.textDecorationLine=n:t.textDecoration=n;else if("writingDirection"===o)t.direction=n;else{var i=k(e[o],o),l=A[o];r&&"inset"===o?(null==e.insetInline&&(t.left=i,t.right=i),null==e.insetBlock&&(t.top=i,t.bottom=i)):r&&"margin"===o?(null==e.marginInline&&(t.marginLeft=i,t.marginRight=i),null==e.marginBlock&&(t.marginTop=i,t.marginBottom=i)):r&&"padding"===o?(null==e.paddingInline&&(t.paddingLeft=i,t.paddingRight=i),null==e.paddingBlock&&(t.paddingTop=i,t.paddingBottom=i)):l?l.forEach(((r,n)=>{null==e[r]&&(t[r]=i)})):t[o]=i}};for(var o in e)n();return t};var L=/[A-Z]/g,P=/^ms-/,M={};function I(e){return"-"+e.toLowerCase()}var z=o(485),X=o(217),j=o(261),D=o(41),_=o(33),H=o(852),N=o(639),G=o(996),F=o(129),Y=o(508),q=["Webkit"],$=["Webkit","ms"];const V={plugins:[X.A,j.A,D.A,_.A,H.A,N.A,G.A,F.A,Y.A],prefixMap:{appearance:["Webkit","Moz","ms"],userSelect:["Webkit","Moz"],textEmphasisPosition:$,textEmphasis:$,textEmphasisStyle:$,textEmphasisColor:$,boxDecorationBreak:$,clipPath:q,maskImage:$,maskMode:$,maskRepeat:$,maskPosition:$,maskClip:$,maskOrigin:$,maskSize:$,maskComposite:$,mask:$,maskBorderSource:$,maskBorderMode:$,maskBorderSlice:$,maskBorderWidth:$,maskBorderOutset:$,maskBorderRepeat:$,maskBorder:$,maskType:$,textDecorationStyle:q,textDecorationSkip:q,textDecorationLine:q,textDecorationColor:q,filter:q,breakAfter:q,breakBefore:q,breakInside:q,columnCount:q,columnFill:q,columnGap:q,columnRule:q,columnRuleColor:q,columnRuleStyle:q,columnRuleWidth:q,columns:q,columnSpan:q,columnWidth:q,backdropFilter:q,hyphens:q,flowInto:q,flowFrom:q,regionFragment:q,textOrientation:q,tabSize:["Moz"],fontKerning:q,textSizeAdjust:q}},K=(0,z.A)(V);var U=["animationKeyframes"],J=new Map,Z={},Q={borderColor:2,borderRadius:2,borderStyle:2,borderWidth:2,display:2,flex:2,inset:2,margin:2,overflow:2,overscrollBehavior:2,padding:2,insetBlock:2.1,insetInline:2.1,marginInline:2.1,marginBlock:2.1,paddingInline:2.1,paddingBlock:2.1,borderBlockStartColor:2.2,borderBlockStartStyle:2.2,borderBlockStartWidth:2.2,borderBlockEndColor:2.2,borderBlockEndStyle:2.2,borderBlockEndWidth:2.2,borderInlineStartColor:2.2,borderInlineStartStyle:2.2,borderInlineStartWidth:2.2,borderInlineEndColor:2.2,borderInlineEndStyle:2.2,borderInlineEndWidth:2.2,borderEndStartRadius:2.2,borderEndEndRadius:2.2,borderStartStartRadius:2.2,borderStartEndRadius:2.2,insetBlockEnd:2.2,insetBlockStart:2.2,insetInlineEnd:2.2,insetInlineStart:2.2,marginBlockStart:2.2,marginBlockEnd:2.2,marginInlineStart:2.2,marginInlineEnd:2.2,paddingBlockStart:2.2,paddingBlockEnd:2.2,paddingInlineStart:2.2,paddingInlineEnd:2.2},ee="borderTopLeftRadius",re="borderTopRightRadius",te="borderBottomLeftRadius",ne="borderBottomRightRadius",oe="borderLeftColor",ae="borderLeftStyle",ie="borderLeftWidth",le="borderRightColor",se="borderRightStyle",ue="borderRightWidth",ce="right",de="marginLeft",fe="marginRight",pe="paddingLeft",he="paddingRight",be="left",ge={[ee]:re,[re]:ee,[te]:ne,[ne]:te,[oe]:le,[ae]:se,[ie]:ue,[le]:oe,[se]:ae,[ue]:ie,[be]:ce,[de]:fe,[fe]:de,[pe]:he,[he]:pe,[ce]:be},ve={borderStartStartRadius:ee,borderStartEndRadius:re,borderEndStartRadius:te,borderEndEndRadius:ne,borderInlineStartColor:oe,borderInlineStartStyle:ae,borderInlineStartWidth:ie,borderInlineEndColor:le,borderInlineEndStyle:se,borderInlineEndWidth:ue,insetInlineEnd:ce,insetInlineStart:be,marginInlineStart:de,marginInlineEnd:fe,paddingInlineStart:pe,paddingInlineEnd:he},ye=["clear","float","textAlign"];function me(e){var r=K(W(e));return"{"+Object.keys(r).map((e=>{var t=r[e],n=function(e){if(e in M)return M[e];var r=e.replace(L,I);return M[e]=P.test(r)?"-"+r:r}(e);return Array.isArray(t)?t.map((e=>n+":"+e)).join(";"):n+":"+t})).sort().join(";")+";}"}function Se(e,r,t){return e+"-"+function(e){for(var r,t=e.length,n=1^t,o=0;t>=4;)r=1540483477*(65535&(r=255&e.charCodeAt(o)|(255&e.charCodeAt(++o))<<8|(255&e.charCodeAt(++o))<<16|(255&e.charCodeAt(++o))<<24))+((1540483477*(r>>>16)&65535)<<16),n=1540483477*(65535&n)+((1540483477*(n>>>16)&65535)<<16)^(r=1540483477*(65535&(r^=r>>>24))+((1540483477*(r>>>16)&65535)<<16)),t-=4,++o;switch(t){case 3:n^=(255&e.charCodeAt(o+2))<<16;case 2:n^=(255&e.charCodeAt(o+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(o)))+((1540483477*(n>>>16)&65535)<<16)}return n=1540483477*(65535&(n^=n>>>13))+((1540483477*(n>>>16)&65535)<<16),(n^=n>>>15)>>>0}(r+t).toString(36)}function Re(e){if("number"==typeof e)throw new Error("Invalid CSS keyframes type: "+typeof e);var r=[],t=[];return(Array.isArray(e)?e:[e]).forEach((e=>{if("string"==typeof e)r.push(e);else{var n=function(e){var r=Se("r","animation",JSON.stringify(e)),t="{"+Object.keys(e).map((r=>""+r+me(e[r]))).join("")+"}",n=["-webkit-",""].map((e=>"@"+e+"keyframes "+r+t));return[r,n]}(e),o=n[0],a=n[1];r.push(o),t.push(...a)}})),[r,t]}function we(e,r,t){if(C){var n=null!=r?r:document,o=n.getElementById(e);if(null==o)if((o=document.createElement("style")).setAttribute("id",e),"string"==typeof t&&o.appendChild(document.createTextNode(t)),n instanceof ShadowRoot)n.insertBefore(o,n.firstChild);else{var a=n.head;a&&a.insertBefore(o,a.firstChild)}return o.sheet}return null}var xe=Array.prototype.slice;function Be(e){var r,t={},n={};function o(e,r,n){var o=Ce(t),a=o.indexOf(r)+1,i=o[a],l=null!=i&&null!=t[i].start?t[i].start:e.cssRules.length,s=function(e,r,t){try{return e.insertRule(r,t),!0}catch(e){return!1}}(e,n,l);if(s){null==t[r].start&&(t[r].start=l);for(var u=a;u<o.length;u+=1){var c=o[u],d=t[c].start||0;t[c].start=d+1}}return s}null!=e&&xe.call(e.cssRules).forEach(((e,o)=>{var a=e.cssText;if(a.indexOf("stylesheet-group")>-1)r=function(e){return Number(e.selectorText.split(ke)[1])}(e),t[r]={start:o,rules:[a]};else{var i=Oe(a);null!=i&&(n[i]=!0,t[r].rules.push(a))}}));var a={getTextContent:()=>Ce(t).map((e=>{var r=t[e].rules,n=r.shift();return r.sort(),r.unshift(n),r.join("\n")})).join("\n"),insert(r,a){var i=Number(a);if(null==t[i]){var l=function(e){return'[stylesheet-group="'+e+'"]{}'}(i);t[i]={start:null,rules:[l]},null!=e&&o(e,i,l)}var s=Oe(r);null!=s&&null==n[s]&&(n[s]=!0,t[i].rules.push(r),null!=e&&(o(e,i,r)||t[i].rules.pop()))}};return a}var ke=/["']/g;function Ce(e){return Object.keys(e).map(Number).sort(((e,r)=>e>r?1:-1))}var Ee=/\s*([,])\s*/g;function Oe(e){var r=e.split("{")[0].trim();return""!==r?r.replace(Ee,"$1"):null}var Te=new WeakMap,Ae=[],We=["html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);}","body{margin:0;}","button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}","input::-webkit-search-cancel-button,input::-webkit-search-decoration,input::-webkit-search-results-button,input::-webkit-search-results-decoration{display:none;}"];function Le(e,r){var t;if(void 0===r&&(r="react-native-stylesheet"),C){var n=null!=e?e.getRootNode():document;if(0===Ae.length)t=Be(we(r)),We.forEach((e=>{t.insert(e,0)})),Te.set(n,Ae.length),Ae.push(t);else{var o=Te.get(n);if(null==o){var a=Ae[0],i=null!=a?a.getTextContent():"";t=Be(we(r,n,i)),Te.set(n,Ae.length),Ae.push(t)}else t=Ae[o]}}else 0===Ae.length?(t=Be(we(r)),We.forEach((e=>{t.insert(e,0)})),Ae.push(t)):t=Ae[0];return{getTextContent:()=>t.getTextContent(),id:r,insert(e,r){Ae.forEach((t=>{t.insert(e,r)}))}}}var Pe=o(336);var Me={},Ie={height:0,width:0},ze=e=>{var r=Object.keys(e)[0],t=e[r];return"matrix"===r||"matrix3d"===r?r+"("+t.join(",")+")":r+"("+k(t,r)+")"},Xe=e=>e.map(ze).join(" "),je={borderBottomEndRadius:"borderEndEndRadius",borderBottomStartRadius:"borderEndStartRadius",borderTopEndRadius:"borderStartEndRadius",borderTopStartRadius:"borderStartStartRadius",borderEndColor:"borderInlineEndColor",borderEndStyle:"borderInlineEndStyle",borderEndWidth:"borderInlineEndWidth",borderStartColor:"borderInlineStartColor",borderStartStyle:"borderInlineStartStyle",borderStartWidth:"borderInlineStartWidth",end:"insetInlineEnd",marginEnd:"marginInlineEnd",marginHorizontal:"marginInline",marginStart:"marginInlineStart",marginVertical:"marginBlock",paddingEnd:"paddingInlineEnd",paddingHorizontal:"paddingInline",paddingStart:"paddingInlineStart",paddingVertical:"paddingBlock",start:"insetInlineStart"},De={elevation:!0,overlayColor:!0,resizeMode:!0,tintColor:!0},_e=function(e,r){void 0===r&&(r={});var t=e||Me,n={};if(r.shadow,null!=t.shadowColor||null!=t.shadowOffset||null!=t.shadowOpacity||null!=t.shadowRadius){var o=(e=>{var r=e.shadowColor,t=e.shadowOffset,n=e.shadowOpacity,o=e.shadowRadius,a=t||Ie,i=a.height,l=k(a.width),s=k(i),u=k(o||0),c=x(r||"black",n);if(null!=c&&null!=l&&null!=s&&null!=u)return l+" "+s+" "+u+" "+c})(t);if(null!=o&&null==n.boxShadow){var a=t.boxShadow,i=a?a+", "+o:o;n.boxShadow=i}}if(r.textShadow,null!=t.textShadowColor||null!=t.textShadowOffset||null!=t.textShadowRadius){var l=(e=>{var r=e.textShadowColor,t=e.textShadowOffset,n=e.textShadowRadius,o=t||Ie,a=o.height,i=o.width,l=n||0,s=k(i),u=k(a),c=k(l),d=k(r,"textShadowColor");if(d&&(0!==a||0!==i||0!==l)&&null!=s&&null!=u&&null!=c)return s+" "+u+" "+c+" "+d})(t);if(null!=l&&null==n.textShadow){var s=t.textShadow,u=s?s+", "+l:l;n.textShadow=u}}for(var c in t)if(null==De[c]&&"shadowColor"!==c&&"shadowOffset"!==c&&"shadowOpacity"!==c&&"shadowRadius"!==c&&"textShadowColor"!==c&&"textShadowOffset"!==c&&"textShadowRadius"!==c){var d=t[c],f=je[c]||c,p=d;!Object.prototype.hasOwnProperty.call(t,c)||f!==c&&null!=t[f]||("aspectRatio"===f&&"number"==typeof p?n[f]=p.toString():"fontVariant"===f?(Array.isArray(p)&&p.length>0&&(p=p.join(" ")),n[f]=p):"textAlignVertical"===f?null==t.verticalAlign&&(n.verticalAlign="center"===p?"middle":p):"transform"===f?(Array.isArray(p)&&(p=Xe(p)),n.transform=p):n[f]=p)}return n},He=o(176),Ne=["writingDirection"],Ge=new WeakMap,Fe=Le(),Ye={shadow:!0,textShadow:!0};function qe(e){e.forEach((e=>{var r=e[0],t=e[1];null!=Fe&&r.forEach((e=>{Fe.insert(e,t)}))}))}var $e={position:"absolute",left:0,right:0,top:0,bottom:0},Ve=Ke({x:g({},$e)}).x;function Ke(e){return Object.keys(e).forEach((r=>{var t,n,o,a=e[r];null!=a&&!0!==a.$$css&&(r.indexOf("$raw")>-1?t=function(e,r){var t=function(e,r){var t,n={$$css:!0},o=[],a=e.animationKeyframes,i=v(e,U),l=Se("css",r,JSON.stringify(e)),s="."+l;if(null!=a){var u=Re(a),c=u[0],d=u[1];t=c.join(","),o.push(...d)}var f=me(g(g({},i),{},{animationName:t}));return o.push(""+s+f),n[l]=l,[n,[[o,1]]]}(e,r),n=t[0];return qe(t[1]),n}(a,r.split("$raw")[0]):(n=function(e){var r={$$css:!0},t=[];function n(e,r,n){var o,a=function(e,r){var t=k(e,r);return"string"!=typeof t?JSON.stringify(t||""):t}(n,r),i=r+a,l=J.get(i);if(null!=l)o=l[0],t.push(l[1]);else{o=Se("r",e,e!==r?i:a);var s=Q[e]||3,u=function(e,r,t){var n=[],o="."+e;switch(r){case"animationKeyframes":var a=Re(t),i=a[0],l=a[1],s=me({animationName:i.join(",")});n.push(""+o+s,...l);break;case"placeholderTextColor":var u=me({color:t,opacity:1});n.push(o+"::-webkit-input-placeholder"+u,o+"::-moz-placeholder"+u,o+":-ms-input-placeholder"+u,o+"::placeholder"+u);break;case"pointerEvents":var c=t;if("auto"===t||"box-only"===t){if(c="auto!important","box-only"===t){var d=me({pointerEvents:"none"});n.push(o+">*"+d)}}else if(("none"===t||"box-none"===t)&&(c="none!important","box-none"===t)){var f=me({pointerEvents:"auto"});n.push(o+">*"+f)}var p=me({pointerEvents:c});n.push(""+o+p);break;case"scrollbarWidth":"none"===t&&n.push(o+"::-webkit-scrollbar{display:none}");var h=me({scrollbarWidth:t});n.push(""+o+h);break;default:var b=me({[r]:t});n.push(""+o+b)}return n}(o,r,n),c=[u,s];t.push(c),J.set(i,[o,c])}return o}return Object.keys(e).sort().forEach((t=>{var o=e[t];if(null!=o){var a;if(ye.indexOf(t)>-1){var i=n(t,t,"left"),l=n(t,t,"right");"start"===o?a=[i,l]:"end"===o&&(a=[l,i])}var s=ve[t];if(null!=s){var u=n(t,s,o),c=n(t,ge[s],o);a=[u,c]}if("transitionProperty"===t){for(var d=Array.isArray(o)?o:[o],f=[],p=0;p<d.length;p++){var h=d[p];"string"==typeof h&&null!=ve[h]&&f.push(p)}if(f.length>0){var b=[...d],g=[...d];f.forEach((e=>{var r=b[e];if("string"==typeof r){var o=ve[r],i=ge[o];b[e]=o,g[e]=i;var l=n(t,t,b),s=n(t,t,g);a=[l,s]}}))}}null==a?a=n(t,t,o):r.$$css$localize=!0,r[t]=a}})),[r,t]}(_e(a,Ye)),o=n[0],qe(n[1]),t=o),Ge.set(a,t))})),e}function Ue(e,r){void 0===r&&(r={});var t="rtl"===r.writingDirection,n=function(e,r){void 0===r&&(r={});var t=r,n=t.writingDirection,o=v(t,Ne),a="rtl"===n;return He.P.factory({transform(e){var r=Ge.get(e);return null!=r?(0,Pe.n)(r,a):_e(e,g(g({},Ye),o))}})(e)}(e,r);return Array.isArray(n)&&null!=n[1]&&(n[1]=function(e,r){var t=e||Z,n={},o={},a=function(){var e=t[i],a=i,l=e;if(!Object.prototype.hasOwnProperty.call(t,i)||null==e)return"continue";ye.indexOf(i)>-1&&("start"===e?l=r?"right":"left":"end"===e&&(l=r?"left":"right"));var s=ve[i];if(null!=s&&(a=r?ge[s]:s),"transitionProperty"===i){var u=Array.isArray(e)?e:[e];u.forEach(((e,t)=>{if("string"==typeof e){var n=ve[e];null!=n&&(u[t]=r?ge[n]:n,l=u.join(" "))}}))}n[a]||(o[a]=l),a===i&&(n[a]=!0)};for(var i in t)a();return W(o,!0)}(n[1],t)),n}Ue.absoluteFill=Ve,Ue.absoluteFillObject=$e,Ue.create=Ke,Ue.compose=function(e,r){return[e,r]},Ue.flatten=function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];for(var n=r.flat(1/0),o={},a=0;a<n.length;a++){var i=n[a];null!=i&&"object"==typeof i&&Object.assign(o,i)}return o},Ue.getSheet=function(){return{id:Fe.id,textContent:Fe.getTextContent()}},Ue.hairlineWidth=1,C&&window.__REACT_DEVTOOLS_GLOBAL_HOOK__&&(window.__REACT_DEVTOOLS_GLOBAL_HOOK__.resolveRNStyle=Ue.flatten);const Je=Ue,Ze=()=>{const e=f();return(0,l.useMemo)((()=>Je.create({fontFamilyBase:{fontFamily:e.fontFamilyBase},fontWeightBaseThin:{fontWeight:e.fontWeightBaseThin},fontWeightBaseExtraLight:{fontWeight:e.fontWeightBaseExtraLight},fontWeightBaseLight:{fontWeight:e.fontWeightBaseLight},fontWeightBaseRegular:{fontWeight:e.fontWeightBaseRegular},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}})),[e])};var Qe={adjustable:"slider",button:"button",header:"heading",image:"img",imagebutton:null,keyboardkey:null,label:null,link:"link",none:"presentation",search:"search",summary:"region",text:null};const er=e=>{var r=e.accessibilityRole,t=e.role||r;if(t){var n=Qe[t];if(null!==n)return n||t}};var rr={article:"article",banner:"header",blockquote:"blockquote",button:"button",code:"code",complementary:"aside",contentinfo:"footer",deletion:"del",emphasis:"em",figure:"figure",insertion:"ins",form:"form",list:"ul",listitem:"li",main:"main",navigation:"nav",paragraph:"p",region:"section",strong:"strong"},tr={};const nr=function(e){if(void 0===e&&(e=tr),"label"===(e.role||e.accessibilityRole))return"label";var r=er(e);if(r){if("heading"===r){var t=e.accessibilityLevel||e["aria-level"];return null!=t?"h"+t:"h1"}return rr[r]}},or=er;var ar=["aria-activedescendant","accessibilityActiveDescendant","aria-atomic","accessibilityAtomic","aria-autocomplete","accessibilityAutoComplete","aria-busy","accessibilityBusy","aria-checked","accessibilityChecked","aria-colcount","accessibilityColumnCount","aria-colindex","accessibilityColumnIndex","aria-colspan","accessibilityColumnSpan","aria-controls","accessibilityControls","aria-current","accessibilityCurrent","aria-describedby","accessibilityDescribedBy","aria-details","accessibilityDetails","aria-disabled","accessibilityDisabled","aria-errormessage","accessibilityErrorMessage","aria-expanded","accessibilityExpanded","aria-flowto","accessibilityFlowTo","aria-haspopup","accessibilityHasPopup","aria-hidden","accessibilityHidden","aria-invalid","accessibilityInvalid","aria-keyshortcuts","accessibilityKeyShortcuts","aria-label","accessibilityLabel","aria-labelledby","accessibilityLabelledBy","aria-level","accessibilityLevel","aria-live","accessibilityLiveRegion","aria-modal","accessibilityModal","aria-multiline","accessibilityMultiline","aria-multiselectable","accessibilityMultiSelectable","aria-orientation","accessibilityOrientation","aria-owns","accessibilityOwns","aria-placeholder","accessibilityPlaceholder","aria-posinset","accessibilityPosInSet","aria-pressed","accessibilityPressed","aria-readonly","accessibilityReadOnly","aria-required","accessibilityRequired","role","accessibilityRole","aria-roledescription","accessibilityRoleDescription","aria-rowcount","accessibilityRowCount","aria-rowindex","accessibilityRowIndex","aria-rowspan","accessibilityRowSpan","aria-selected","accessibilitySelected","aria-setsize","accessibilitySetSize","aria-sort","accessibilitySort","aria-valuemax","accessibilityValueMax","aria-valuemin","accessibilityValueMin","aria-valuenow","accessibilityValueNow","aria-valuetext","accessibilityValueText","dataSet","focusable","id","nativeID","pointerEvents","style","tabIndex","testID"],ir={},lr=Object.prototype.hasOwnProperty,sr=Array.isArray,ur=/[A-Z]/g;function cr(e){return"-"+e.toLowerCase()}function dr(e){return sr(e)?e.join(" "):e}var fr=Je.create({auto:{pointerEvents:"auto"},"box-none":{pointerEvents:"box-none"},"box-only":{pointerEvents:"box-only"},none:{pointerEvents:"none"}});var pr=new Set(["Arab","Syrc","Samr","Mand","Thaa","Mend","Nkoo","Adlm","Rohg","Hebr"]),hr=new Set(["ae","ar","arc","bcc","bqi","ckb","dv","fa","far","glk","he","iw","khw","ks","ku","mzn","nqo","pnb","ps","sd","ug","ur","yi"]),br=new Map,gr={direction:"ltr",locale:"en-US"},vr=(0,l.createContext)(gr);function yr(e){return function(e){var r=br.get(e);if(r)return r;var t=!1;if(Intl.Locale)try{var n=new Intl.Locale(e).maximize().script;t=pr.has(n)}catch(r){var o=e.split("-")[0];t=hr.has(o)}else{var a=e.split("-")[0];t=hr.has(a)}return br.set(e,t),t}(e)?"rtl":"ltr"}function mr(e){var r=e.direction,t=e.locale,n=e.children;return r||t?s().createElement(vr.Provider,{children:n,value:{direction:t?yr(t):r,locale:t}}):n}function Sr(){return(0,l.useContext)(vr)}const Rr=(e,r,t)=>{var n;e&&e.constructor===String&&(n=nr(r));var o=n||e,a=((e,r,t)=>{r||(r=ir);var n=r,o=n["aria-activedescendant"],a=n.accessibilityActiveDescendant,i=n["aria-atomic"],l=n.accessibilityAtomic,s=n["aria-autocomplete"],u=n.accessibilityAutoComplete,c=n["aria-busy"],d=n.accessibilityBusy,f=n["aria-checked"],p=n.accessibilityChecked,h=n["aria-colcount"],b=n.accessibilityColumnCount,y=n["aria-colindex"],m=n.accessibilityColumnIndex,S=n["aria-colspan"],R=n.accessibilityColumnSpan,w=n["aria-controls"],x=n.accessibilityControls,B=n["aria-current"],k=n.accessibilityCurrent,C=n["aria-describedby"],E=n.accessibilityDescribedBy,O=n["aria-details"],T=n.accessibilityDetails,A=n["aria-disabled"],W=n.accessibilityDisabled,L=n["aria-errormessage"],P=n.accessibilityErrorMessage,M=n["aria-expanded"],I=n.accessibilityExpanded,z=n["aria-flowto"],X=n.accessibilityFlowTo,j=n["aria-haspopup"],D=n.accessibilityHasPopup,_=n["aria-hidden"],H=n.accessibilityHidden,N=n["aria-invalid"],G=n.accessibilityInvalid,F=n["aria-keyshortcuts"],Y=n.accessibilityKeyShortcuts,q=n["aria-label"],$=n.accessibilityLabel,V=n["aria-labelledby"],K=n.accessibilityLabelledBy,U=n["aria-level"],J=n.accessibilityLevel,Z=n["aria-live"],Q=n.accessibilityLiveRegion,ee=n["aria-modal"],re=n.accessibilityModal,te=n["aria-multiline"],ne=n.accessibilityMultiline,oe=n["aria-multiselectable"],ae=n.accessibilityMultiSelectable,ie=n["aria-orientation"],le=n.accessibilityOrientation,se=n["aria-owns"],ue=n.accessibilityOwns,ce=n["aria-placeholder"],de=n.accessibilityPlaceholder,fe=n["aria-posinset"],pe=n.accessibilityPosInSet,he=n["aria-pressed"],be=n.accessibilityPressed,ge=n["aria-readonly"],ve=n.accessibilityReadOnly,ye=n["aria-required"],me=n.accessibilityRequired,Se=(n.role,n.accessibilityRole,n["aria-roledescription"]),Re=n.accessibilityRoleDescription,we=n["aria-rowcount"],xe=n.accessibilityRowCount,Be=n["aria-rowindex"],ke=n.accessibilityRowIndex,Ce=n["aria-rowspan"],Ee=n.accessibilityRowSpan,Oe=n["aria-selected"],Te=n.accessibilitySelected,Ae=n["aria-setsize"],We=n.accessibilitySetSize,Le=n["aria-sort"],Pe=n.accessibilitySort,Me=n["aria-valuemax"],Ie=n.accessibilityValueMax,ze=n["aria-valuemin"],Xe=n.accessibilityValueMin,je=n["aria-valuenow"],De=n.accessibilityValueNow,_e=n["aria-valuetext"],He=n.accessibilityValueText,Ne=n.dataSet,Ge=n.focusable,Fe=n.id,Ye=n.nativeID,qe=n.pointerEvents,$e=n.style,Ve=n.tabIndex,Ke=n.testID,Ue=v(n,ar),Ze=A||W,Qe=or(r),er=null!=o?o:a;null!=er&&(Ue["aria-activedescendant"]=er);var rr=null!=i?o:l;null!=rr&&(Ue["aria-atomic"]=rr);var tr=null!=s?s:u;null!=tr&&(Ue["aria-autocomplete"]=tr);var nr=null!=c?c:d;null!=nr&&(Ue["aria-busy"]=nr);var sr=null!=f?f:p;null!=sr&&(Ue["aria-checked"]=sr);var pr=null!=h?h:b;null!=pr&&(Ue["aria-colcount"]=pr);var hr=null!=y?y:m;null!=hr&&(Ue["aria-colindex"]=hr);var br=null!=S?S:R;null!=br&&(Ue["aria-colspan"]=br);var gr=null!=w?w:x;null!=gr&&(Ue["aria-controls"]=dr(gr));var vr=null!=B?B:k;null!=vr&&(Ue["aria-current"]=vr);var yr=null!=C?C:E;null!=yr&&(Ue["aria-describedby"]=dr(yr));var mr=null!=O?O:T;null!=mr&&(Ue["aria-details"]=mr),!0===Ze&&(Ue["aria-disabled"]=!0,"button"!==e&&"form"!==e&&"input"!==e&&"select"!==e&&"textarea"!==e||(Ue.disabled=!0));var Sr=null!=L?L:P;null!=Sr&&(Ue["aria-errormessage"]=Sr);var Rr=null!=M?M:I;null!=Rr&&(Ue["aria-expanded"]=Rr);var wr=null!=z?z:X;null!=wr&&(Ue["aria-flowto"]=dr(wr));var xr=null!=j?j:D;null!=xr&&(Ue["aria-haspopup"]=xr);var Br=null!=_?_:H;!0===Br&&(Ue["aria-hidden"]=Br);var kr=null!=N?N:G;null!=kr&&(Ue["aria-invalid"]=kr);var Cr=null!=F?F:Y;null!=Cr&&(Ue["aria-keyshortcuts"]=dr(Cr));var Er=null!=q?q:$;null!=Er&&(Ue["aria-label"]=Er);var Or=null!=V?V:K;null!=Or&&(Ue["aria-labelledby"]=dr(Or));var Tr=null!=U?U:J;null!=Tr&&(Ue["aria-level"]=Tr);var Ar=null!=Z?Z:Q;null!=Ar&&(Ue["aria-live"]="none"===Ar?"off":Ar);var Wr=null!=ee?ee:re;null!=Wr&&(Ue["aria-modal"]=Wr);var Lr=null!=te?te:ne;null!=Lr&&(Ue["aria-multiline"]=Lr);var Pr=null!=oe?oe:ae;null!=Pr&&(Ue["aria-multiselectable"]=Pr);var Mr=null!=ie?ie:le;null!=Mr&&(Ue["aria-orientation"]=Mr);var Ir=null!=se?se:ue;null!=Ir&&(Ue["aria-owns"]=dr(Ir));var zr=null!=ce?ce:de;null!=zr&&(Ue["aria-placeholder"]=zr);var Xr=null!=fe?fe:pe;null!=Xr&&(Ue["aria-posinset"]=Xr);var jr=null!=he?he:be;null!=jr&&(Ue["aria-pressed"]=jr);var Dr=null!=ge?ge:ve;null!=Dr&&(Ue["aria-readonly"]=Dr,"input"!==e&&"select"!==e&&"textarea"!==e||(Ue.readOnly=!0));var _r=null!=ye?ye:me;null!=_r&&(Ue["aria-required"]=_r,"input"!==e&&"select"!==e&&"textarea"!==e||(Ue.required=me)),null!=Qe&&(Ue.role="none"===Qe?"presentation":Qe);var Hr=null!=Se?Se:Re;null!=Hr&&(Ue["aria-roledescription"]=Hr);var Nr=null!=we?we:xe;null!=Nr&&(Ue["aria-rowcount"]=Nr);var Gr=null!=Be?Be:ke;null!=Gr&&(Ue["aria-rowindex"]=Gr);var Fr=null!=Ce?Ce:Ee;null!=Fr&&(Ue["aria-rowspan"]=Fr);var Yr=null!=Oe?Oe:Te;null!=Yr&&(Ue["aria-selected"]=Yr);var qr=null!=Ae?Ae:We;null!=qr&&(Ue["aria-setsize"]=qr);var $r=null!=Le?Le:Pe;null!=$r&&(Ue["aria-sort"]=$r);var Vr=null!=Me?Me:Ie;null!=Vr&&(Ue["aria-valuemax"]=Vr);var Kr=null!=ze?ze:Xe;null!=Kr&&(Ue["aria-valuemin"]=Kr);var Ur=null!=je?je:De;null!=Ur&&(Ue["aria-valuenow"]=Ur);var Jr=null!=_e?_e:He;if(null!=Jr&&(Ue["aria-valuetext"]=Jr),null!=Ne)for(var Zr in Ne)if(lr.call(Ne,Zr)){var Qr=Zr.replace(ur,cr),et=Ne[Zr];null!=et&&(Ue["data-"+Qr]=et)}0===Ve||"0"===Ve||-1===Ve||"-1"===Ve?Ue.tabIndex=Ve:(!1===Ge&&(Ue.tabIndex="-1"),"a"===e||"button"===e||"input"===e||"select"===e||"textarea"===e?!1!==Ge&&!0!==W||(Ue.tabIndex="-1"):"button"===Qe||"checkbox"===Qe||"link"===Qe||"radio"===Qe||"textbox"===Qe||"switch"===Qe?!1!==Ge&&(Ue.tabIndex="0"):!0===Ge&&(Ue.tabIndex="0"));var rt=Je([$e,qe&&fr[qe]],g({writingDirection:"ltr"},t)),tt=rt[0],nt=rt[1];tt&&(Ue.className=tt),nt&&(Ue.style=nt);var ot=null!=Fe?Fe:Ye;return null!=ot&&(Ue.id=ot),null!=Ke&&(Ue["data-testid"]=Ke),null==Ue.type&&"button"===e&&(Ue.type="button"),Ue})(o,r,t),i=s().createElement(o,a);return a.dir?s().createElement(mr,{children:i,direction:a.dir,locale:a.lang}):i};var wr={children:!0,dataSet:!0,dir:!0,id:!0,ref:!0,suppressHydrationWarning:!0,tabIndex:!0,testID:!0,focusable:!0,nativeID:!0},xr={"aria-activedescendant":!0,"aria-atomic":!0,"aria-autocomplete":!0,"aria-busy":!0,"aria-checked":!0,"aria-colcount":!0,"aria-colindex":!0,"aria-colspan":!0,"aria-controls":!0,"aria-current":!0,"aria-describedby":!0,"aria-details":!0,"aria-disabled":!0,"aria-errormessage":!0,"aria-expanded":!0,"aria-flowto":!0,"aria-haspopup":!0,"aria-hidden":!0,"aria-invalid":!0,"aria-keyshortcuts":!0,"aria-label":!0,"aria-labelledby":!0,"aria-level":!0,"aria-live":!0,"aria-modal":!0,"aria-multiline":!0,"aria-multiselectable":!0,"aria-orientation":!0,"aria-owns":!0,"aria-placeholder":!0,"aria-posinset":!0,"aria-pressed":!0,"aria-readonly":!0,"aria-required":!0,role:!0,"aria-roledescription":!0,"aria-rowcount":!0,"aria-rowindex":!0,"aria-rowspan":!0,"aria-selected":!0,"aria-setsize":!0,"aria-sort":!0,"aria-valuemax":!0,"aria-valuemin":!0,"aria-valuenow":!0,"aria-valuetext":!0,accessibilityActiveDescendant:!0,accessibilityAtomic:!0,accessibilityAutoComplete:!0,accessibilityBusy:!0,accessibilityChecked:!0,accessibilityColumnCount:!0,accessibilityColumnIndex:!0,accessibilityColumnSpan:!0,accessibilityControls:!0,accessibilityCurrent:!0,accessibilityDescribedBy:!0,accessibilityDetails:!0,accessibilityDisabled:!0,accessibilityErrorMessage:!0,accessibilityExpanded:!0,accessibilityFlowTo:!0,accessibilityHasPopup:!0,accessibilityHidden:!0,accessibilityInvalid:!0,accessibilityKeyShortcuts:!0,accessibilityLabel:!0,accessibilityLabelledBy:!0,accessibilityLevel:!0,accessibilityLiveRegion:!0,accessibilityModal:!0,accessibilityMultiline:!0,accessibilityMultiSelectable:!0,accessibilityOrientation:!0,accessibilityOwns:!0,accessibilityPlaceholder:!0,accessibilityPosInSet:!0,accessibilityPressed:!0,accessibilityReadOnly:!0,accessibilityRequired:!0,accessibilityRole:!0,accessibilityRoleDescription:!0,accessibilityRowCount:!0,accessibilityRowIndex:!0,accessibilityRowSpan:!0,accessibilitySelected:!0,accessibilitySetSize:!0,accessibilitySort:!0,accessibilityValueMax:!0,accessibilityValueMin:!0,accessibilityValueNow:!0,accessibilityValueText:!0},Br={onClick:!0,onAuxClick:!0,onContextMenu:!0,onGotPointerCapture:!0,onLostPointerCapture:!0,onPointerCancel:!0,onPointerDown:!0,onPointerEnter:!0,onPointerMove:!0,onPointerLeave:!0,onPointerOut:!0,onPointerOver:!0,onPointerUp:!0},kr={onBlur:!0,onFocus:!0},Cr={onKeyDown:!0,onKeyDownCapture:!0,onKeyUp:!0,onKeyUpCapture:!0},Er={onMouseDown:!0,onMouseEnter:!0,onMouseLeave:!0,onMouseMove:!0,onMouseOver:!0,onMouseOut:!0,onMouseUp:!0},Or={onTouchCancel:!0,onTouchCancelCapture:!0,onTouchEnd:!0,onTouchEndCapture:!0,onTouchMove:!0,onTouchMoveCapture:!0,onTouchStart:!0,onTouchStartCapture:!0},Tr={style:!0};function Ar(e,r){var t={};for(var n in e)e.hasOwnProperty(n)&&!0===r[n]&&(t[n]=e[n]);return t}const Wr=C?l.useLayoutEffect:l.useEffect,Lr=e=>{if(null!=e&&1===e.nodeType&&"function"==typeof e.getBoundingClientRect)return e.getBoundingClientRect()};var Pr={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,flex:!0,flexGrow:!0,flexOrder:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,fontWeight:!0,gridRow:!0,gridRowEnd:!0,gridRowGap:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnGap:!0,gridColumnStart:!0,lineClamp:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0,scale:!0,scaleX:!0,scaleY:!0,scaleZ:!0,shadowOpacity:!0},Mr=["ms","Moz","O","Webkit"];Object.keys(Pr).forEach((e=>{Mr.forEach((r=>{Pr[((e,r)=>e+r.charAt(0).toUpperCase()+r.substring(1))(r,e)]=Pr[e]}))}));const Ir=Pr,zr=function(e,r,t){return null==r||"boolean"==typeof r||""===r?"":t||"number"!=typeof r||0===r||Ir.hasOwnProperty(e)&&Ir[e]?(""+r).trim():r+"px"},Xr=function(e,r){var t=e.style;for(var n in r)if(r.hasOwnProperty(n)){var o=0===n.indexOf("--"),a=zr(n,r[n],o);"float"===n&&(n="cssFloat"),o?t.setProperty(n,a):t[n]=a}};var jr=e=>{var r=e.offsetHeight,t=e.offsetWidth,n=e.offsetLeft,o=e.offsetTop;for(e=e.offsetParent;e&&1===e.nodeType;)n+=e.offsetLeft+e.clientLeft-e.scrollLeft,o+=e.offsetTop+e.clientTop-e.scrollTop,e=e.offsetParent;return{width:t,height:r,top:o-=window.scrollY,left:n-=window.scrollX}},Dr=(e,r,t)=>{var n=r||e&&e.parentNode;e&&n&&setTimeout((()=>{if(e.isConnected&&n.isConnected){var r=jr(n),o=jr(e),a=o.height,i=o.left,l=o.top,s=o.width,u=i-r.left,c=l-r.top;t(u,c,s,a,i,l)}}),0)},_r={A:!0,BODY:!0,INPUT:!0,SELECT:!0,TEXTAREA:!0},Hr={blur(e){try{e.blur()}catch(e){}},focus(e){try{var r=e.nodeName;null==e.getAttribute("tabIndex")&&!0!==e.isContentEditable&&null==_r[r]&&e.setAttribute("tabIndex","-1"),e.focus()}catch(e){}},measure(e,r){Dr(e,null,r)},measureInWindow(e,r){e&&setTimeout((()=>{var t=Lr(e),n=t.height,o=t.left,a=t.top,i=t.width;r(o,a,i,n)}),0)},measureLayout(e,r,t,n){Dr(e,r,n)},updateView(e,r){for(var t in r)if(Object.prototype.hasOwnProperty.call(r,t)){var n=r[t];switch(t){case"style":Xr(e,n);break;case"class":case"className":e.setAttribute("class",n);break;case"text":case"value":e.value=n;break;default:e.setAttribute(t,n)}}},configureNextLayoutAnimation(e,r){r()},setLayoutAnimationEnabledExperimental(){}};const Nr=Hr;var Gr="__reactLayoutHandler",Fr=null;function Yr(e,r){var t=(C&&void 0!==window.ResizeObserver&&null==Fr&&(Fr=new window.ResizeObserver((function(e){e.forEach((e=>{var r=e.target,t=r[Gr];"function"==typeof t&&Nr.measure(r,((r,n,o,a,i,l)=>{var s={nativeEvent:{layout:{x:r,y:n,width:o,height:a,left:i,top:l}},timeStamp:Date.now()};Object.defineProperty(s.nativeEvent,"target",{enumerable:!0,get:()=>e.target}),t(s)}))}))}))),Fr);Wr((()=>{var t=e.current;null!=t&&(t[Gr]=r)}),[e,r]),Wr((()=>{var r=e.current;return null!=r&&null!=t&&("function"==typeof r[Gr]?t.observe(r):t.unobserve(r)),()=>{null!=r&&null!=t&&t.unobserve(r)}}),[e,t])}function qr(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return l.useMemo((()=>function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return function(e){r.forEach((r=>{null!=r&&("function"!=typeof r?"object"!=typeof r?console.error("mergeRefs cannot handle Refs of type boolean, number or string, received ref "+String(r)):r.current=e:r(e))}))}}(...r)),[...r])}var $r="function"==typeof Symbol&&"symbol"==typeof Symbol()?Symbol():Object.freeze({});function Vr(e){return e.pointerEvents,e.style,(r=l.useRef($r)).current===$r&&(r.current=e=>{null!=e&&(e.measure=r=>Nr.measure(e,r),e.measureLayout=(r,t,n)=>Nr.measureLayout(e,r,n,t),e.measureInWindow=r=>Nr.measureInWindow(e,r))}),r.current;var r}var Kr=()=>{},Ur={},Jr=[];function Zr(e){return e>20?e%20:e}function Qr(e,r){var t,n,o,a=!1,i=e.changedTouches,l=e.type,s=!0===e.metaKey,u=!0===e.shiftKey,c=i&&i[0].force||0,d=Zr(i&&i[0].identifier||0),f=i&&i[0].clientX||e.clientX,p=i&&i[0].clientY||e.clientY,h=i&&i[0].pageX||e.pageX,b=i&&i[0].pageY||e.pageY,g="function"==typeof e.preventDefault?e.preventDefault.bind(e):Kr,v=e.timeStamp;function y(e){return Array.prototype.slice.call(e).map((e=>({force:e.force,identifier:Zr(e.identifier),get locationX(){return R(e.clientX)},get locationY(){return w(e.clientY)},pageX:e.pageX,pageY:e.pageY,target:e.target,timestamp:v})))}if(null!=i)n=y(i),o=y(e.touches);else{var m=[{force:c,identifier:d,get locationX(){return R(f)},get locationY(){return w(p)},pageX:h,pageY:b,target:e.target,timestamp:v}];n=m,o="mouseup"===l||"dragstart"===l?Jr:m}var S={bubbles:!0,cancelable:!0,currentTarget:null,defaultPrevented:e.defaultPrevented,dispatchConfig:Ur,eventPhase:e.eventPhase,isDefaultPrevented:()=>e.defaultPrevented,isPropagationStopped:()=>a,isTrusted:e.isTrusted,nativeEvent:{altKey:!1,ctrlKey:!1,metaKey:s,shiftKey:u,changedTouches:n,force:c,identifier:d,get locationX(){return R(f)},get locationY(){return w(p)},pageX:h,pageY:b,target:e.target,timestamp:v,touches:o,type:l},persist:Kr,preventDefault:g,stopPropagation(){a=!0},target:e.target,timeStamp:v,touchHistory:r.touchHistory};function R(e){if(t=t||Lr(S.currentTarget))return e-t.left}function w(e){if(t=t||Lr(S.currentTarget))return e-t.top}return S}function et(e){return"touchstart"===e||"mousedown"===e}function rt(e){return"touchmove"===e||"mousemove"===e}function tt(e){return"touchend"===e||"mouseup"===e||nt(e)}function nt(e){return"touchcancel"===e||"dragstart"===e}var ot="__reactResponderId";function at(e){for(var r=[];null!=e&&e!==document.body;)r.push(e),e=e.parentNode;return r}function it(e){return null!=e?e[ot]:null}function lt(e){return e.timeStamp||e.timestamp}function st(e){var r=e.identifier;return null==r&&console.error("Touch object is missing identifier."),r}function ut(e){return JSON.stringify({identifier:e.identifier,pageX:e.pageX,pageY:e.pageY,timestamp:lt(e)})}function ct(e){var r=e.touchBank,t=JSON.stringify(r.slice(0,20));return r.length>20&&(t+=" (original size: "+r.length+")"),t}var dt={},ft=["onStartShouldSetResponderCapture","onStartShouldSetResponder",{bubbles:!0}],pt=["onMoveShouldSetResponderCapture","onMoveShouldSetResponder",{bubbles:!0}],ht={touchstart:ft,mousedown:ft,touchmove:pt,mousemove:pt,scroll:["onScrollShouldSetResponderCapture","onScrollShouldSetResponder",{bubbles:!1}]},bt={id:null,idPath:null,node:null},gt=new Map,vt=!1,yt=0,mt={id:null,node:null,idPath:null},St=new class{constructor(){this._touchHistory={touchBank:[],numberActiveTouches:0,indexOfSingleActiveTouch:-1,mostRecentTimeStamp:0}}recordTouchTrack(e,r){var t=this._touchHistory;if(rt(e))r.changedTouches.forEach((e=>function(e,r){var t=r.touchBank[st(e)];t?(t.touchActive=!0,t.previousPageX=t.currentPageX,t.previousPageY=t.currentPageY,t.previousTimeStamp=t.currentTimeStamp,t.currentPageX=e.pageX,t.currentPageY=e.pageY,t.currentTimeStamp=lt(e),r.mostRecentTimeStamp=lt(e)):console.warn("Cannot record touch move without a touch start.\n","Touch Move: "+ut(e)+"\n","Touch Bank: "+ct(r))}(e,t)));else if(et(e))r.changedTouches.forEach((e=>function(e,r){var t=st(e),n=r.touchBank[t];n?function(e,r){e.touchActive=!0,e.startPageX=r.pageX,e.startPageY=r.pageY,e.startTimeStamp=lt(r),e.currentPageX=r.pageX,e.currentPageY=r.pageY,e.currentTimeStamp=lt(r),e.previousPageX=r.pageX,e.previousPageY=r.pageY,e.previousTimeStamp=lt(r)}(n,e):r.touchBank[t]=function(e){return{touchActive:!0,startPageX:e.pageX,startPageY:e.pageY,startTimeStamp:lt(e),currentPageX:e.pageX,currentPageY:e.pageY,currentTimeStamp:lt(e),previousPageX:e.pageX,previousPageY:e.pageY,previousTimeStamp:lt(e)}}(e),r.mostRecentTimeStamp=lt(e)}(e,t))),t.numberActiveTouches=r.touches.length,1===t.numberActiveTouches&&(t.indexOfSingleActiveTouch=r.touches[0].identifier);else if(tt(e)&&(r.changedTouches.forEach((e=>function(e,r){var t=r.touchBank[st(e)];t?(t.touchActive=!1,t.previousPageX=t.currentPageX,t.previousPageY=t.currentPageY,t.previousTimeStamp=t.currentTimeStamp,t.currentPageX=e.pageX,t.currentPageY=e.pageY,t.currentTimeStamp=lt(e),r.mostRecentTimeStamp=lt(e)):console.warn("Cannot record touch end without a touch start.\n","Touch End: "+ut(e)+"\n","Touch Bank: "+ct(r))}(e,t))),t.numberActiveTouches=r.touches.length,1===t.numberActiveTouches))for(var n=t.touchBank,o=0;o<n.length;o++){var a=n[o];if(null!=a&&a.touchActive){t.indexOfSingleActiveTouch=o;break}}}get touchHistory(){return this._touchHistory}};function Rt(e){mt=e}function wt(e){var r=gt.get(e);return null!=r?r:dt}function xt(e){var r=e.type,t=e.target;if("touchstart"===r&&(vt=!0),("touchmove"===r||yt>1)&&(vt=!1),!("mousedown"===r&&vt||"mousemove"===r&&vt||"mousemove"===r&&yt<1))if(vt&&"mouseup"===r)0===yt&&(vt=!1);else{var n=et(r)&&function(e){var r=e.altKey,t=e.button,n=e.buttons,o=e.ctrlKey,a=e.type,i=!1===r&&!1===o;return!!("touchstart"===a||"touchmove"===a||"mousedown"===a&&(0===t||1===n)&&i||"mousemove"===a&&1===n&&i)}(e),o=rt(r),a=tt(r),i=function(e){return"scroll"===e}(r),l=function(e){return"select"===e||"selectionchange"===e}(r),s=Qr(e,St);(n||o||a)&&(e.touches?yt=e.touches.length:n?yt=1:a&&(yt=0),St.recordTouchTrack(r,s.nativeEvent));var u,c=function(e){for(var r=[],t=[],n=function(e){return"selectionchange"===e.type?at(window.getSelection().anchorNode):null!=e.composedPath?e.composedPath():at(e.target)}(e),o=0;o<n.length;o++){var a=n[o],i=it(a);null!=i&&(r.push(i),t.push(a))}return{idPath:r,nodePath:t}}(e),d=!1;if(n||o||i&&yt>0){var f=mt.idPath,p=c.idPath;if(null!=f&&null!=p){var h=function(e,r){var t=e.length,n=r.length;if(0===t||0===n||e[t-1]!==r[n-1])return null;var o=e[0],a=0,i=r[0],l=0;t-n>0&&(o=e[a=t-n],t=n),n-t>0&&(i=r[l=n-t],n=t);for(var s=t;s--;){if(o===i)return o;o=e[a++],i=r[l++]}return null}(f,p);if(null!=h){var b=p.indexOf(h)+(h===mt.id?1:0);c={idPath:p.slice(b),nodePath:c.nodePath.slice(b)}}else c=null}null!=c&&(u=function(e,r,t){var n=ht[r.type];if(null!=n){for(var o=e.idPath,a=e.nodePath,i=n[0],l=n[1],s=n[2].bubbles,u=function(e,r,n){var a=wt(e)[n];if(null!=a&&(t.currentTarget=r,!0===a(t)))return{id:e,node:r,idPath:o.slice(o.indexOf(e))}},c=o.length-1;c>=0;c--){var d=u(o[c],a[c],i);if(null!=d)return d;if(!0===t.isPropagationStopped())return}if(s)for(var f=0;f<o.length;f++){var p=u(o[f],a[f],l);if(null!=p)return p;if(!0===t.isPropagationStopped())return}else{var h=o[0],b=a[0];if(r.target===b)return u(h,b,l)}}}(c,e,s),null!=u&&(function(e,r){var t=mt,n=t.id,o=t.node,a=r.id,i=r.node,l=wt(a),s=l.onResponderGrant,u=l.onResponderReject;if(e.bubbles=!1,e.cancelable=!1,e.currentTarget=i,null==n)null!=s&&(e.currentTarget=i,e.dispatchConfig.registrationName="onResponderGrant",s(e)),Rt(r);else{var c=wt(n),d=c.onResponderTerminate,f=c.onResponderTerminationRequest,p=!0;null!=f&&(e.currentTarget=o,e.dispatchConfig.registrationName="onResponderTerminationRequest",!1===f(e)&&(p=!1)),p?(null!=d&&(e.currentTarget=o,e.dispatchConfig.registrationName="onResponderTerminate",d(e)),null!=s&&(e.currentTarget=i,e.dispatchConfig.registrationName="onResponderGrant",s(e)),Rt(r)):null!=u&&(e.currentTarget=i,e.dispatchConfig.registrationName="onResponderReject",u(e))}}(s,u),d=!0))}if(null!=mt.id&&null!=mt.node){var g=mt,v=g.id,y=g.node,m=wt(v),S=m.onResponderStart,R=m.onResponderMove,w=m.onResponderEnd,x=m.onResponderRelease,B=m.onResponderTerminate,k=m.onResponderTerminationRequest;if(s.bubbles=!1,s.cancelable=!1,s.currentTarget=y,n)null!=S&&(s.dispatchConfig.registrationName="onResponderStart",S(s));else if(o)null!=R&&(s.dispatchConfig.registrationName="onResponderMove",R(s));else{var C=nt(r)||"contextmenu"===r||"blur"===r&&t===window||"blur"===r&&t.contains(y)&&e.relatedTarget!==y||i&&0===yt||i&&t.contains(y)&&t!==y||l&&function(e){return"selectionchange"===e.type?(t=(r=window.getSelection()).toString(),n=r.anchorNode,o=r.focusNode,a=n&&n.nodeType===window.Node.TEXT_NODE||o&&o.nodeType===window.Node.TEXT_NODE,t.length>=1&&"\n"!==t&&a):"select"===e.type;var r,t,n,o,a}(e),E=a&&!C&&!function(e,r){if(!r||0===r.length)return!1;for(var t=0;t<r.length;t++){var n=r[t].target;if(null!=n&&e.contains(n))return!0}return!1}(y,e.touches);if(a&&null!=w&&(s.dispatchConfig.registrationName="onResponderEnd",w(s)),E&&(null!=x&&(s.dispatchConfig.registrationName="onResponderRelease",x(s)),Rt(bt)),C){var O=!0;"contextmenu"!==r&&"scroll"!==r&&"selectionchange"!==r||(d?O=!1:null!=k&&(s.dispatchConfig.registrationName="onResponderTerminationRequest",!1===k(s)&&(O=!1))),O&&(null!=B&&(s.dispatchConfig.registrationName="onResponderTerminate",B(s)),Rt(bt),vt=!1,yt=0)}}}}}var Bt=["blur","scroll"],kt=["mousedown","mousemove","mouseup","dragstart","touchstart","touchmove","touchend","touchcancel","contextmenu","select","selectionchange"];function Ct(e){mt.id===e&&function(){var e=mt,r=e.id,t=e.node;if(null!=r&&null!=t){var n=wt(r).onResponderTerminate;if(null!=n){var o=Qr({},St);o.currentTarget=t,n(o)}Rt(bt)}vt=!1,yt=0}(),gt.has(e)&&gt.delete(e)}var Et={},Ot=0;function Tt(e,r){void 0===r&&(r=Et);var t,n,o=(t=()=>Ot++,null==(n=l.useRef(null)).current&&(n.current=t()),n.current),a=l.useRef(!1);l.useEffect((()=>(C&&null==window.__reactResponderSystemActive&&(window.addEventListener("blur",xt),kt.forEach((e=>{document.addEventListener(e,xt)})),Bt.forEach((e=>{document.addEventListener(e,xt,!0)})),window.__reactResponderSystemActive=!0),()=>{Ct(o)})),[o]),l.useEffect((()=>{var t=r,n=t.onMoveShouldSetResponder,i=t.onMoveShouldSetResponderCapture,l=t.onScrollShouldSetResponder,s=t.onScrollShouldSetResponderCapture,u=t.onSelectionChangeShouldSetResponder,c=t.onSelectionChangeShouldSetResponderCapture,d=t.onStartShouldSetResponder,f=t.onStartShouldSetResponderCapture,p=null!=n||null!=i||null!=l||null!=s||null!=u||null!=c||null!=d||null!=f,h=e.current;p?(function(e,r,t){!function(e,r){null!=e&&(e[ot]=r)}(r,e),gt.set(e,t)}(o,h,r),a.current=!0):a.current&&(Ct(o),a.current=!1)}),[r,e,o]),l.useDebugValue({isResponder:e.current===mt.node}),l.useDebugValue(r)}const At=(0,l.createContext)(!1);var Wt=["hrefAttrs","numberOfLines","onClick","onLayout","onPress","onMoveShouldSetResponder","onMoveShouldSetResponderCapture","onResponderEnd","onResponderGrant","onResponderMove","onResponderReject","onResponderRelease","onResponderStart","onResponderTerminate","onResponderTerminationRequest","onScrollShouldSetResponder","onScrollShouldSetResponderCapture","onSelectionChangeShouldSetResponder","onSelectionChangeShouldSetResponderCapture","onStartShouldSetResponder","onStartShouldSetResponderCapture","selectable"],Lt=Object.assign({},wr,xr,Br,kr,Cr,Er,Or,Tr,{href:!0,lang:!0,pointerEvents:!0}),Pt=l.forwardRef(((e,r)=>{var t=e.hrefAttrs,n=e.numberOfLines,o=e.onClick,a=e.onLayout,i=e.onPress,s=e.onMoveShouldSetResponder,u=e.onMoveShouldSetResponderCapture,c=e.onResponderEnd,d=e.onResponderGrant,f=e.onResponderMove,p=e.onResponderReject,h=e.onResponderRelease,b=e.onResponderStart,g=e.onResponderTerminate,y=e.onResponderTerminationRequest,m=e.onScrollShouldSetResponder,S=e.onScrollShouldSetResponderCapture,R=e.onSelectionChangeShouldSetResponder,w=e.onSelectionChangeShouldSetResponderCapture,x=e.onStartShouldSetResponder,B=e.onStartShouldSetResponderCapture,k=e.selectable,C=v(e,Wt),E=l.useContext(At),O=l.useRef(null),T=Sr().direction;Yr(O,a),Tt(O,{onMoveShouldSetResponder:s,onMoveShouldSetResponderCapture:u,onResponderEnd:c,onResponderGrant:d,onResponderMove:f,onResponderReject:p,onResponderRelease:h,onResponderStart:b,onResponderTerminate:g,onResponderTerminationRequest:y,onScrollShouldSetResponder:m,onScrollShouldSetResponderCapture:S,onSelectionChangeShouldSetResponder:R,onSelectionChangeShouldSetResponderCapture:w,onStartShouldSetResponder:x,onStartShouldSetResponderCapture:B});var A=l.useCallback((e=>{null!=o?o(e):null!=i&&(e.stopPropagation(),i(e))}),[o,i]),W=E?"span":"div",L=null!=e.lang?yr(e.lang):null,P=e.dir||L,M=P||T,I=(e=>Ar(e,Lt))(C);if(I.dir=P,E||(I.dir=null!=P?P:"auto"),(o||i)&&(I.onClick=A),I.style=[null!=n&&n>1&&{WebkitLineClamp:n},!0===E?It.textHasAncestor$raw:It.text$raw,1===n&&It.textOneLine,null!=n&&n>1&&It.textMultiLine,e.style,!0===k&&It.selectable,!1===k&&It.notSelectable,i&&It.pressable],null!=e.href&&(W="a",null!=t)){var z=t.download,X=t.rel,j=t.target;null!=z&&(I.download=z),null!=X&&(I.rel=X),"string"==typeof j&&(I.target="_"!==j.charAt(0)?"_"+j:j)}var D=qr(O,Vr(I),r);I.ref=D;var _=Rr(W,I,{writingDirection:M});return E?_:l.createElement(At.Provider,{value:!0},_)}));Pt.displayName="Text";var Mt={backgroundColor:"transparent",border:"0 solid black",boxSizing:"border-box",color:"black",display:"inline",font:"14px System",listStyle:"none",margin:0,padding:0,position:"relative",textAlign:"start",textDecoration:"none",whiteSpace:"pre-wrap",wordWrap:"break-word"},It=Je.create({text$raw:Mt,textHasAncestor$raw:g(g({},Mt),{},{color:"inherit",font:"inherit",textAlign:"inherit",whiteSpace:"inherit"}),textOneLine:{maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap",wordWrap:"normal"},textMultiLine:{display:"-webkit-box",maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",WebkitBoxOrient:"vertical"},notSelectable:{userSelect:"none"},selectable:{userSelect:"text"},pressable:{cursor:"pointer"}});const zt=Pt;let Xt=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.SEMIBOLD=4]="SEMIBOLD",e[e.BOLD=5]="BOLD",e[e.EXTRA_BOLD=6]="EXTRA_BOLD",e[e.BLACK=7]="BLACK",e}({}),jt=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}({}),Dt=function(e){return e.HEADING="heading",e.PARAGRAPH="paragraph",e}({}),_t=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}({});const Ht=[_t.H1,_t.H2,_t.H3,_t.H4,_t.H5,_t.H6],Nt=({type:e,fontWeight:r=Xt.REGULAR,fontSize:t=jt.MD,children:n})=>{const o=Ze();return(0,u.jsx)(zt,{role:_t.P===e?Dt.PARAGRAPH:Ht.includes(e)?Dt.HEADING:void 0,"aria-level":(()=>{if(Ht.includes(e)){if(e===_t.H1)return 1;if(e===_t.H2)return 2;if(e===_t.H3)return 3;if(e===_t.H4)return 4;if(e===_t.H5)return 5;if(e===_t.H6)return 6}})(),style:[o.fontFamilyBase,(()=>{switch(r){case Xt.THIN:return o.fontWeightBaseThin;case Xt.EXTRA_LIGHT:return o.fontWeightBaseExtraLight;case Xt.LIGHT:return o.fontWeightBaseLight;case Xt.REGULAR:return o.fontWeightBaseRegular;case Xt.SEMIBOLD:return o.fontWeightBaseSemibold;case Xt.BOLD:return o.fontWeightBaseBold;case Xt.EXTRA_BOLD:return o.fontWeightBaseExtraBold;case Xt.BLACK:return o.fontWeightBaseBlack}})(),(()=>{switch(t){case jt.X2S:return o.fontSizeBaseX2S;case jt.XS:return o.fontSizeBaseXS;case jt.SM:return o.fontSizeBaseSM;case jt.MD:return o.fontSizeBaseMD;case jt.LG:return o.fontSizeBaseLG;case jt.XL:return o.fontSizeBaseXL;case jt.X2L:return o.fontSizeBaseX2L;case jt.X3L:return o.fontSizeBaseX3L;case jt.X4L:return o.fontSizeBaseX4L;case jt.X5L:return o.fontSizeBaseX5L}})()],children:n})};Nt.Type=_t,Nt.FontWeight=Xt,Nt.FontSize=jt;var Gt=o(646),Ft=o.n(Gt),Yt=o(514);const qt=Yt.unmountComponentAtNode;function $t(){return $t=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)({}).hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},$t.apply(null,arguments)}var Vt=["hrefAttrs","onLayout","onMoveShouldSetResponder","onMoveShouldSetResponderCapture","onResponderEnd","onResponderGrant","onResponderMove","onResponderReject","onResponderRelease","onResponderStart","onResponderTerminate","onResponderTerminationRequest","onScrollShouldSetResponder","onScrollShouldSetResponderCapture","onSelectionChangeShouldSetResponder","onSelectionChangeShouldSetResponderCapture","onStartShouldSetResponder","onStartShouldSetResponderCapture"],Kt=Object.assign({},wr,xr,Br,kr,Cr,Er,Or,Tr,{href:!0,lang:!0,onScroll:!0,onWheel:!0,pointerEvents:!0}),Ut=l.forwardRef(((e,r)=>{var t=e.hrefAttrs,n=e.onLayout,o=e.onMoveShouldSetResponder,a=e.onMoveShouldSetResponderCapture,i=e.onResponderEnd,s=e.onResponderGrant,u=e.onResponderMove,c=e.onResponderReject,d=e.onResponderRelease,f=e.onResponderStart,p=e.onResponderTerminate,h=e.onResponderTerminationRequest,b=e.onScrollShouldSetResponder,g=e.onScrollShouldSetResponderCapture,y=e.onSelectionChangeShouldSetResponder,m=e.onSelectionChangeShouldSetResponderCapture,S=e.onStartShouldSetResponder,R=e.onStartShouldSetResponderCapture,w=v(e,Vt),x=l.useContext(At),B=l.useRef(null),k=Sr().direction;Yr(B,n),Tt(B,{onMoveShouldSetResponder:o,onMoveShouldSetResponderCapture:a,onResponderEnd:i,onResponderGrant:s,onResponderMove:u,onResponderReject:c,onResponderRelease:d,onResponderStart:f,onResponderTerminate:p,onResponderTerminationRequest:h,onScrollShouldSetResponder:b,onScrollShouldSetResponderCapture:g,onSelectionChangeShouldSetResponder:y,onSelectionChangeShouldSetResponderCapture:m,onStartShouldSetResponder:S,onStartShouldSetResponderCapture:R});var C="div",E=null!=e.lang?yr(e.lang):null,O=e.dir||E,T=O||k,A=(e=>Ar(e,Kt))(w);if(A.dir=O,A.style=[Jt.view$raw,x&&Jt.inline,e.style],null!=e.href&&(C="a",null!=t)){var W=t.download,L=t.rel,P=t.target;null!=W&&(A.download=W),null!=L&&(A.rel=L),"string"==typeof P&&(A.target="_"!==P.charAt(0)?"_"+P:P)}var M=qr(B,Vr(A),r);return A.ref=M,Rr(C,A,{writingDirection:T})}));Ut.displayName="View";var Jt=Je.create({view$raw:{alignItems:"stretch",backgroundColor:"transparent",border:"0 solid black",boxSizing:"border-box",display:"flex",flexBasis:"auto",flexDirection:"column",flexShrink:0,listStyle:"none",margin:0,minHeight:0,minWidth:0,padding:0,position:"relative",textDecoration:"none",zIndex:0},inline:{display:"inline-flex"}});const Zt=Ut;var Qt=l.createContext(null),en=l.forwardRef(((e,r)=>{var t=e.children,n=e.WrapperComponent,o=l.createElement(Zt,{children:t,key:1,style:tn.appContainer});return n&&(o=l.createElement(n,null,o)),l.createElement(Qt.Provider,{value:e.rootTag},l.createElement(Zt,{ref:r,style:tn.appContainer},o))}));en.displayName="AppContainer";const rn=en;var tn=Je.create({appContainer:{flex:1,pointerEvents:"box-none"}}),nn=o(338);function on(e,r){return Le(r),(0,nn.c)(r,e)}function an(e,r){Le(r);var t=(0,nn.H)(r);return t.render(e),t}function ln(e,r,t){return Le(r),(0,Yt.hydrate)(e,r,t),{unmount:function(){return qt(r)}}}function sn(e,r,t){return Le(r),(0,Yt.render)(e,r,t),{unmount:function(){return qt(r)}}}var un,cn={},dn={},fn=e=>e();class pn{static getAppKeys(){return Object.keys(dn)}static getApplication(e,r){return Ft()(dn[e]&&dn[e].getApplication,"Application "+e+" has not been registered. This is either due to an import error during initialization or failure to call AppRegistry.registerComponent."),dn[e].getApplication(r)}static registerComponent(e,r){return dn[e]={getApplication:e=>{return t=fn(r),n=e?e.initialProps:cn,o=un&&un(e),{element:s().createElement(rn,{WrapperComponent:o,rootTag:{}},s().createElement(t,n)),getStyleElement:e=>{var r=Je.getSheet();return s().createElement("style",$t({},e,{dangerouslySetInnerHTML:{__html:r.textContent},id:r.id}))}};var t,n,o},run:e=>{return t=fn(r),n=un&&un(e),o=e.callback,i=(a={hydrate:e.hydrate||!1,initialProps:e.initialProps||cn,mode:e.mode||"concurrent",rootTag:e.rootTag}).initialProps,l=a.mode,u=a.rootTag,c=a.hydrate?"concurrent"===l?on:ln:"concurrent"===l?an:sn,Ft()(u,"Expect to have a valid rootTag, instead got ",u),c(s().createElement(rn,{WrapperComponent:n,ref:o,rootTag:u},s().createElement(t,i)),u);var t,n,o,a,i,l,u,c}},e}static registerConfig(e){e.forEach((e=>{var r=e.appKey,t=e.component,n=e.run;n?pn.registerRunnable(r,n):(Ft()(t,"No component provider passed in"),pn.registerComponent(r,t))}))}static registerRunnable(e,r){return dn[e]={run:r},e}static runApplication(e,r){return Ft()(dn[e]&&dn[e].run,'Application "'+e+'" has not been registered. This is either due to an import error during initialization or failure to call AppRegistry.registerComponent.'),dn[e].run(r)}static setComponentProviderInstrumentationHook(e){fn=e}static setWrapperComponentProvider(e){un=e}static unmountApplicationComponentAtRootTag(e){qt(e)}}const hn=(e,r="main")=>{const t=pn;t.registerComponent(r,(()=>e));const n=t.getApplication(r,null).getStyleElement();if((0,l.isValidElement)(n))return n};return a})()));
2
+ !function(e,r){"object"==typeof exports&&"object"==typeof module?module.exports=r(require("react"),require("react-dom")):"function"==typeof define&&define.amd?define("creactive",["react","react-dom"],r):"object"==typeof exports?exports.creactive=r(require("react"),require("react-dom")):e.creactive=r(e.react,e["react-dom"])}(this,((e,r)=>(()=>{"use strict";var t={486:(e,r,t)=>{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 o(e,r){(null==r||r>e.length)&&(r=e.length);for(var t=0,n=new Array(r);t<r;t++)n[t]=e[t];return n}function a(e){return e.filter((function(r,t){return e.lastIndexOf(r)===t}))}function i(e){for(var r=0,t=arguments.length<=1?0:arguments.length-1;r<t;++r){var l=r+1<1||arguments.length<=r+1?void 0:arguments[r+1];for(var s in l){var u=l[s],c=e[s];if(c&&u){if(Array.isArray(c)){e[s]=a(c.concat(u));continue}if(Array.isArray(u)){e[s]=a([c].concat(function(e){if(Array.isArray(e))return o(e)}(d=u)||function(e){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(e))return Array.from(e)}(d)||function(e,r){if(e){if("string"==typeof e)return o(e,r);var t=Object.prototype.toString.call(e).slice(8,-1);return"Object"===t&&e.constructor&&(t=e.constructor.name),"Map"===t||"Set"===t?Array.from(t):"Arguments"===t||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(t)?o(e,r):void 0}}(d)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()));continue}if("object"===n(u)){e[s]=i({},c,u);continue}}e[s]=u}}var d;return e}t.r(r),t.d(r,{assignStyle:()=>i,camelCaseProperty:()=>d,cssifyDeclaration:()=>g,cssifyObject:()=>h,hyphenateProperty:()=>p,isPrefixedProperty:()=>m,isPrefixedValue:()=>y,isUnitlessProperty:()=>A,normalizeProperty:()=>W,resolveArrayValue:()=>P,unprefixProperty:()=>M,unprefixValue:()=>z});var l=/-([a-z])/g,s=/^Ms/g,u={};function c(e){return e[1].toUpperCase()}function d(e){if(u.hasOwnProperty(e))return u[e];var r=e.replace(l,c).replace(s,"ms");return u[e]=r,r}var f=t(685);function p(e){return(0,f.default)(e)}function g(e,r){return p(e)+":"+r}function h(e){var r="";for(var t in e){var n=e[t];"string"!=typeof n&&"number"!=typeof n||(r&&(r+=";"),r+=g(t,n))}return r}var b=/^(Webkit|Moz|O|ms)/;function m(e){return b.test(e)}var v=/-webkit-|-moz-|-ms-/;function y(e){return"string"==typeof e&&v.test(e)}var S={borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,fontWeight:!0,lineHeight:!0,opacity:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0},R=["animationIterationCount","boxFlex","boxFlexGroup","boxOrdinalGroup","columnCount","flex","flexGrow","flexPositive","flexShrink","flexNegative","flexOrder","gridColumn","gridColumnEnd","gridColumnStart","gridRow","gridRowEnd","gridRowStart","lineClamp","order"],B=["Webkit","ms","Moz","O"];function w(e,r){return e+r.charAt(0).toUpperCase()+r.slice(1)}for(var x=0,E=R.length;x<E;++x){var k=R[x];S[k]=!0;for(var C=0,O=B.length;C<O;++C)S[w(B[C],k)]=!0}for(var T in S)S[p(T)]=!0;function A(e){return S.hasOwnProperty(e)}var L=/^(ms|Webkit|Moz|O)/;function M(e){var r=e.replace(L,"");return r.charAt(0).toLowerCase()+r.slice(1)}function W(e){return M(d(e))}function P(e,r){return r.join(";"+p(e)+":")}var I=/(-ms-|-webkit-|-moz-|-o-)/g;function z(e){return"string"==typeof e?e.replace(I,""):e}},721:(e,r,t)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e){return(0,o.default)(e)};var n,o=(n=t(685))&&n.__esModule?n:{default:n}},14:(e,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e){return"string"==typeof e&&t.test(e)};var t=/-webkit-|-moz-|-ms-/},646:e=>{e.exports=function(e,r){for(var t=arguments.length,n=new Array(t>2?t-2:0),o=2;o<t;o++)n[o-2]=arguments[o];if(!e){var a;if(void 0===r)a=new Error("Minified exception occurred; use the non-minified dev environment for the full error message and additional helpful warnings.");else{var i=0;(a=new Error(r.replace(/%s/g,(function(){return String(n[i++])})))).name="Invariant Violation"}throw a.framesToPop=1,a}}},685:(e,r,t)=>{t.r(r),t.d(r,{default:()=>l});var n=/[A-Z]/g,o=/^ms-/,a={};function i(e){return"-"+e.toLowerCase()}const l=function(e){if(a.hasOwnProperty(e))return a[e];var r=e.replace(n,i);return a[e]=o.test(r)?"-"+r:r}},485:(e,r,t)=>{r.A=function(e){var r=e.prefixMap,t=e.plugins;return function e(l){for(var s in l){var u=l[s];if((0,i.default)(u))l[s]=e(u);else if(Array.isArray(u)){for(var c=[],d=0,f=u.length;d<f;++d){var p=(0,o.default)(t,s,u[d],l,r);(0,a.default)(c,p||u[d])}c.length>0&&(l[s]=c)}else{var g=(0,o.default)(t,s,u,l,r);g&&(l[s]=g),l=(0,n.default)(r,s,l)}}return l}};var n=l(t(49)),o=l(t(971)),a=l(t(863)),i=l(t(99));function l(e){return e&&e.__esModule?e:{default:e}}},217:(e,r)=>{r.A=function(){return null}},261:(e,r,t)=>{r.A=function(e,r){if("string"==typeof r&&!(0,n.isPrefixedValue)(r)&&-1!==r.indexOf("cross-fade("))return a.map((function(e){return r.replace(o,e+"cross-fade(")}))};var n=t(486),o=/cross-fade\(/g,a=["-webkit-",""]},41:(e,r)=>{r.A=function(e,r){if("cursor"===e&&n.hasOwnProperty(r))return t.map((function(e){return e+r}))};var t=["-webkit-","-moz-",""],n={"zoom-in":!0,"zoom-out":!0,grab:!0,grabbing:!0}},33:(e,r,t)=>{r.A=function(e,r){if("string"==typeof r&&!(0,n.isPrefixedValue)(r)&&-1!==r.indexOf("filter("))return a.map((function(e){return r.replace(o,e+"filter(")}))};var n=t(486),o=/filter\(/g,a=["-webkit-",""]},852:(e,r,t)=>{r.A=function(e,r){if("string"==typeof r&&!(0,o.default)(r)&&r.indexOf("image-set(")>-1)return a.map((function(e){return r.replace(/image-set\(/g,e+"image-set(")}))};var n,o=(n=t(14))&&n.__esModule?n:{default:n},a=["-webkit-",""]},639:(e,r)=>{r.A=function(e,r,n){if(Object.prototype.hasOwnProperty.call(t,e))for(var o=t[e],a=0,i=o.length;a<i;++a)n[o[a]]=r};var t={marginBlockStart:["WebkitMarginBefore"],marginBlockEnd:["WebkitMarginAfter"],marginInlineStart:["WebkitMarginStart","MozMarginStart"],marginInlineEnd:["WebkitMarginEnd","MozMarginEnd"],paddingBlockStart:["WebkitPaddingBefore"],paddingBlockEnd:["WebkitPaddingAfter"],paddingInlineStart:["WebkitPaddingStart","MozPaddingStart"],paddingInlineEnd:["WebkitPaddingEnd","MozPaddingEnd"],borderBlockStart:["WebkitBorderBefore"],borderBlockStartColor:["WebkitBorderBeforeColor"],borderBlockStartStyle:["WebkitBorderBeforeStyle"],borderBlockStartWidth:["WebkitBorderBeforeWidth"],borderBlockEnd:["WebkitBorderAfter"],borderBlockEndColor:["WebkitBorderAfterColor"],borderBlockEndStyle:["WebkitBorderAfterStyle"],borderBlockEndWidth:["WebkitBorderAfterWidth"],borderInlineStart:["WebkitBorderStart","MozBorderStart"],borderInlineStartColor:["WebkitBorderStartColor","MozBorderStartColor"],borderInlineStartStyle:["WebkitBorderStartStyle","MozBorderStartStyle"],borderInlineStartWidth:["WebkitBorderStartWidth","MozBorderStartWidth"],borderInlineEnd:["WebkitBorderEnd","MozBorderEnd"],borderInlineEndColor:["WebkitBorderEndColor","MozBorderEndColor"],borderInlineEndStyle:["WebkitBorderEndStyle","MozBorderEndStyle"],borderInlineEndWidth:["WebkitBorderEndWidth","MozBorderEndWidth"]}},996:(e,r)=>{r.A=function(e,r){if("position"===e&&"sticky"===r)return["-webkit-sticky","sticky"]}},129:(e,r)=>{r.A=function(e,r){if(n.hasOwnProperty(e)&&o.hasOwnProperty(r))return t.map((function(e){return e+r}))};var t=["-webkit-","-moz-",""],n={maxHeight:!0,maxWidth:!0,width:!0,height:!0,columnWidth:!0,minWidth:!0,minHeight:!0},o={"min-content":!0,"max-content":!0,"fill-available":!0,"fit-content":!0,"contain-floats":!0}},508:(e,r,t)=>{r.A=function(e,r,t,i){if("string"==typeof r&&l.hasOwnProperty(e)){var u=function(e,r){if((0,o.default)(e))return e;for(var t=e.split(/,(?![^()]*(?:\([^()]*\))?\))/g),a=0,i=t.length;a<i;++a){var l=t[a],u=[l];for(var c in r){var d=(0,n.default)(c);if(l.indexOf(d)>-1&&"order"!==d)for(var f=r[c],p=0,g=f.length;p<g;++p)u.unshift(l.replace(d,s[f[p]]+d))}t[a]=u.join(",")}return t.join(",")}(r,i),c=u.split(/,(?![^()]*(?:\([^()]*\))?\))/g).filter((function(e){return!/-moz-|-ms-/.test(e)})).join(",");if(e.indexOf("Webkit")>-1)return c;var d=u.split(/,(?![^()]*(?:\([^()]*\))?\))/g).filter((function(e){return!/-webkit-|-ms-/.test(e)})).join(",");return e.indexOf("Moz")>-1?d:(t["Webkit"+(0,a.default)(e)]=c,t["Moz"+(0,a.default)(e)]=d,u)}};var n=i(t(721)),o=i(t(14)),a=i(t(91));function i(e){return e&&e.__esModule?e:{default:e}}var l={transition:!0,transitionProperty:!0,WebkitTransition:!0,WebkitTransitionProperty:!0,MozTransition:!0,MozTransitionProperty:!0},s={Webkit:"-webkit-",Moz:"-moz-",ms:"-ms-"}},863:(e,r)=>{function t(e,r){-1===e.indexOf(r)&&e.push(r)}Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,r){if(Array.isArray(r))for(var n=0,o=r.length;n<o;++n)t(e,r[n]);else t(e,r)}},91:(e,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e){return e.charAt(0).toUpperCase()+e.slice(1)}},99:(e,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e){return e instanceof Object&&!Array.isArray(e)}},49:(e,r,t)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,r,t){var n=e[r];if(n&&t.hasOwnProperty(r))for(var a=(0,o.default)(r),i=0;i<n.length;++i){var l=n[i]+a;t[l]||(t[l]=t[r])}return t};var n,o=(n=t(91))&&n.__esModule?n:{default:n}},971:(e,r)=>{Object.defineProperty(r,"__esModule",{value:!0}),r.default=function(e,r,t,n,o){for(var a=0,i=e.length;a<i;++a){var l=e[a](r,t,n,o);if(l)return l}}},338:(e,r,t)=>{var n=t(514);r.H=n.createRoot,r.c=n.hydrateRoot},515:e=>{function r(e,r,t){return t<0&&(t+=1),t>1&&(t-=1),t<1/6?e+6*(r-e)*t:t<.5?r:t<2/3?e+(r-e)*(2/3-t)*6:e}function t(e,t,n){const o=n<.5?n*(1+t):n+t-n*t,a=2*n-o,i=r(a,o,e+1/3),l=r(a,o,e),s=r(a,o,e-1/3);return Math.round(255*i)<<24|Math.round(255*l)<<16|Math.round(255*s)<<8}const n="[-+]?\\d*\\.?\\d+",o=n+"%";function a(...e){return"\\(\\s*("+e.join(")\\s*,?\\s*(")+")\\s*\\)"}function i(...e){return"\\(\\s*("+e.slice(0,e.length-1).join(")\\s*,?\\s*(")+")\\s*/\\s*("+e[e.length-1]+")\\s*\\)"}function l(...e){return"\\(\\s*("+e.join(")\\s*,\\s*(")+")\\s*\\)"}let s;function u(e){const r=parseInt(e,10);return r<0?0:r>255?255:r}function c(e){return(parseFloat(e)%360+360)%360/360}function d(e){const r=parseFloat(e);return r<0?0:r>1?255:Math.round(255*r)}function f(e){const r=parseFloat(e);return r<0?0:r>100?1:r/100}e.exports=function(e){if("number"==typeof e)return e>>>0===e&&e>=0&&e<=4294967295?e:null;if("string"!=typeof e)return null;const p=(void 0===s&&(s={rgb:new RegExp("rgb"+a(n,n,n)),rgba:new RegExp("rgba("+l(n,n,n,n)+"|"+i(n,n,n,n)+")"),hsl:new RegExp("hsl"+a(n,o,o)),hsla:new RegExp("hsla("+l(n,o,o,n)+"|"+i(n,o,o,n)+")"),hwb:new RegExp("hwb"+a(n,o,o)),hex3:/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex4:/^#([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,hex6:/^#([0-9a-fA-F]{6})$/,hex8:/^#([0-9a-fA-F]{8})$/}),s);let g;if(g=p.hex6.exec(e))return parseInt(g[1]+"ff",16)>>>0;const h=function(e){switch(e){case"transparent":return 0;case"aliceblue":return 4042850303;case"antiquewhite":return 4209760255;case"aqua":case"cyan":return 16777215;case"aquamarine":return 2147472639;case"azure":return 4043309055;case"beige":return 4126530815;case"bisque":return 4293182719;case"black":return 255;case"blanchedalmond":return 4293643775;case"blue":return 65535;case"blueviolet":return 2318131967;case"brown":return 2771004159;case"burlywood":return 3736635391;case"burntsienna":return 3934150143;case"cadetblue":return 1604231423;case"chartreuse":return 2147418367;case"chocolate":return 3530104575;case"coral":return 4286533887;case"cornflowerblue":return 1687547391;case"cornsilk":return 4294499583;case"crimson":return 3692313855;case"darkblue":return 35839;case"darkcyan":return 9145343;case"darkgoldenrod":return 3095792639;case"darkgray":case"darkgrey":return 2846468607;case"darkgreen":return 6553855;case"darkkhaki":return 3182914559;case"darkmagenta":return 2332068863;case"darkolivegreen":return 1433087999;case"darkorange":return 4287365375;case"darkorchid":return 2570243327;case"darkred":return 2332033279;case"darksalmon":return 3918953215;case"darkseagreen":return 2411499519;case"darkslateblue":return 1211993087;case"darkslategray":case"darkslategrey":return 793726975;case"darkturquoise":return 13554175;case"darkviolet":return 2483082239;case"deeppink":return 4279538687;case"deepskyblue":return 12582911;case"dimgray":case"dimgrey":return 1768516095;case"dodgerblue":return 512819199;case"firebrick":return 2988581631;case"floralwhite":return 4294635775;case"forestgreen":return 579543807;case"fuchsia":case"magenta":return 4278255615;case"gainsboro":return 3705462015;case"ghostwhite":return 4177068031;case"gold":return 4292280575;case"goldenrod":return 3668254975;case"gray":case"grey":return 2155905279;case"green":return 8388863;case"greenyellow":return 2919182335;case"honeydew":return 4043305215;case"hotpink":return 4285117695;case"indianred":return 3445382399;case"indigo":return 1258324735;case"ivory":return 4294963455;case"khaki":return 4041641215;case"lavender":return 3873897215;case"lavenderblush":return 4293981695;case"lawngreen":return 2096890111;case"lemonchiffon":return 4294626815;case"lightblue":return 2916673279;case"lightcoral":return 4034953471;case"lightcyan":return 3774873599;case"lightgoldenrodyellow":return 4210742015;case"lightgray":case"lightgrey":return 3553874943;case"lightgreen":return 2431553791;case"lightpink":return 4290167295;case"lightsalmon":return 4288707327;case"lightseagreen":return 548580095;case"lightskyblue":return 2278488831;case"lightslategray":case"lightslategrey":return 2005441023;case"lightsteelblue":return 2965692159;case"lightyellow":return 4294959359;case"lime":return 16711935;case"limegreen":return 852308735;case"linen":return 4210091775;case"maroon":return 2147483903;case"mediumaquamarine":return 1724754687;case"mediumblue":return 52735;case"mediumorchid":return 3126187007;case"mediumpurple":return 2473647103;case"mediumseagreen":return 1018393087;case"mediumslateblue":return 2070474495;case"mediumspringgreen":return 16423679;case"mediumturquoise":return 1221709055;case"mediumvioletred":return 3340076543;case"midnightblue":return 421097727;case"mintcream":return 4127193855;case"mistyrose":return 4293190143;case"moccasin":return 4293178879;case"navajowhite":return 4292783615;case"navy":return 33023;case"oldlace":return 4260751103;case"olive":return 2155872511;case"olivedrab":return 1804477439;case"orange":return 4289003775;case"orangered":return 4282712319;case"orchid":return 3664828159;case"palegoldenrod":return 4008225535;case"palegreen":return 2566625535;case"paleturquoise":return 2951671551;case"palevioletred":return 3681588223;case"papayawhip":return 4293907967;case"peachpuff":return 4292524543;case"peru":return 3448061951;case"pink":return 4290825215;case"plum":return 3718307327;case"powderblue":return 2967529215;case"purple":return 2147516671;case"rebeccapurple":return 1714657791;case"red":return 4278190335;case"rosybrown":return 3163525119;case"royalblue":return 1097458175;case"saddlebrown":return 2336560127;case"salmon":return 4202722047;case"sandybrown":return 4104413439;case"seagreen":return 780883967;case"seashell":return 4294307583;case"sienna":return 2689740287;case"silver":return 3233857791;case"skyblue":return 2278484991;case"slateblue":return 1784335871;case"slategray":case"slategrey":return 1887473919;case"snow":return 4294638335;case"springgreen":return 16744447;case"steelblue":return 1182971135;case"tan":return 3535047935;case"teal":return 8421631;case"thistle":return 3636451583;case"tomato":return 4284696575;case"turquoise":return 1088475391;case"violet":return 4001558271;case"wheat":return 4125012991;case"white":return 4294967295;case"whitesmoke":return 4126537215;case"yellow":return 4294902015;case"yellowgreen":return 2597139199}return null}(e);return null!=h?h:(g=p.rgb.exec(e))?(u(g[1])<<24|u(g[2])<<16|u(g[3])<<8|255)>>>0:(g=p.rgba.exec(e))?void 0!==g[6]?(u(g[6])<<24|u(g[7])<<16|u(g[8])<<8|d(g[9]))>>>0:(u(g[2])<<24|u(g[3])<<16|u(g[4])<<8|d(g[5]))>>>0:(g=p.hex3.exec(e))?parseInt(g[1]+g[1]+g[2]+g[2]+g[3]+g[3]+"ff",16)>>>0:(g=p.hex8.exec(e))?parseInt(g[1],16)>>>0:(g=p.hex4.exec(e))?parseInt(g[1]+g[1]+g[2]+g[2]+g[3]+g[3]+g[4]+g[4],16)>>>0:(g=p.hsl.exec(e))?(255|t(c(g[1]),f(g[2]),f(g[3])))>>>0:(g=p.hsla.exec(e))?void 0!==g[6]?(t(c(g[6]),f(g[7]),f(g[8]))|d(g[9]))>>>0:(t(c(g[2]),f(g[3]),f(g[4]))|d(g[5]))>>>0:(g=p.hwb.exec(e))?(255|function(e,t,n){if(t+n>=1){const e=Math.round(255*t/(t+n));return e<<24|e<<16|e<<8}const o=r(0,1,e+1/3)*(1-t-n)+t,a=r(0,1,e)*(1-t-n)+t,i=r(0,1,e-1/3)*(1-t-n)+t;return Math.round(255*o)<<24|Math.round(255*a)<<16|Math.round(255*i)<<8}(c(g[1]),f(g[2]),f(g[3])))>>>0:null}},20:(e,r,t)=>{var n=t(155),o=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,l={key:!0,ref:!0,__self:!0,__source:!0};r.jsx=function(e,r,t){var n,s={},u=null,c=null;for(n in void 0!==t&&(u=""+t),void 0!==r.key&&(u=""+r.key),void 0!==r.ref&&(c=r.ref),r)a.call(r,n)&&!l.hasOwnProperty(n)&&(s[n]=r[n]);if(e&&e.defaultProps)for(n in r=e.defaultProps)void 0===s[n]&&(s[n]=r[n]);return{$$typeof:o,type:e,key:u,ref:c,props:s,_owner:i.current}}},848:(e,r,t)=>{e.exports=t(20)},176:(e,r)=>{r.P=void 0;var t=new WeakMap;function n(e){var r,n,o;return null!=e&&(r=!0===e.disableCache,n=!0===e.disableMix,o=e.transform),function(){for(var e=[],a="",i=null,l=r?null:t,s=new Array(arguments.length),u=0;u<arguments.length;u++)s[u]=arguments[u];for(;s.length>0;){var c=s.pop();if(null!=c&&!1!==c)if(Array.isArray(c))for(var d=0;d<c.length;d++)s.push(c[d]);else{var f=null!=o?o(c):c;if(f.$$css){var p="";if(null!=l&&l.has(f)){var g=l.get(f);null!=g&&(p=g[0],e.push.apply(e,g[1]),l=g[2])}else{var h=[];for(var b in f){var m=f[b];"$$css"!==b&&("string"==typeof m||null===m?e.includes(b)||(e.push(b),null!=l&&h.push(b),"string"==typeof m&&(p+=p?" "+m:m)):console.error("styleq: ".concat(b," typeof ").concat(String(m),' is not "string" or "null".')))}if(null!=l){var v=new WeakMap;l.set(f,[p,h,v]),l=v}}p&&(a=a?p+" "+a:p)}else if(n)null==i&&(i={}),i=Object.assign({},f,i);else{var y=null;for(var S in f){var R=f[S];void 0!==R&&(e.includes(S)||(null!=R&&(null==i&&(i={}),null==y&&(y={}),y[S]=R),e.push(S),l=null))}null!=y&&(i=Object.assign(y,i))}}}return[a,i]}}var o=n();r.P=o,o.factory=n},336:(e,r)=>{r.n=function(e,r){if(null!=e[n]){var a=r?1:0;if(t.has(e)){var i=t.get(e),l=i[a];return null==l&&(l=o(e,r),i[a]=l,t.set(e,i)),l}var s=o(e,r),u=new Array(2);return u[a]=s,t.set(e,u),s}return e};var t=new WeakMap,n="$$css$localize";function o(e,r){var t={};for(var o in e)if(o!==n){var a=e[o];Array.isArray(a)?t[o]=r?a[1]:a[0]:t[o]=a}return t}},155:r=>{r.exports=e},514:e=>{e.exports=r}},n={};function o(e){var r=n[e];if(void 0!==r)return r.exports;var a=n[e]={exports:{}};return t[e](a,a.exports,o),a.exports}o.n=e=>{var r=e&&e.__esModule?()=>e.default:()=>e;return o.d(r,{a:r}),r},o.d=(e,r)=>{for(var t in r)o.o(r,t)&&!o.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:r[t]})},o.o=(e,r)=>Object.prototype.hasOwnProperty.call(e,r),o.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var a={};o.r(a),o.d(a,{FONT_FAMILY_BASE:()=>h,Text:()=>tn,ThemeContextProvider:()=>S,renderStyle:()=>On,useThemeContext:()=>R,useThemeStyleSheet:()=>lr});const i="rgb(244,244,245)",l="rgb(228,228,231)",s="rgb(212,212,216)",u="rgb(159,159,169)",c="rgb(113,113,123)",d="rgb(82,82,92)",f="rgb(63,63,70)",p="rgb(39,39,42)",g="rgb(24,24,27)",h=["ui-sans-serif","-apple-system","BlinkMacSystemFont",'"Segoe UI"',"Roboto","Helvetica","Arial","sans-serif"].join(",");var b=o(155),m=o.n(b),v=o(848);const y=(0,b.createContext)({colorForegroundBase100:i,colorForegroundBase200:l,colorForegroundBase300:s,colorForegroundBase400:u,colorForegroundBase500:c,colorForegroundBase600:d,colorForegroundBase700:f,colorForegroundBase800:p,colorForegroundBase900:g,fontFamilyBase:h,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}),S=({colorForegroundBase100:e,colorForegroundBase200:r,colorForegroundBase300:t,colorForegroundBase400:n,colorForegroundBase500:o,colorForegroundBase600:a,colorForegroundBase700:m,colorForegroundBase800:S,colorForegroundBase900:R,fontFamilyBase:B,fontWeightBaseThin:w,fontWeightBaseExtraLight:x,fontWeightBaseLight:E,fontWeightBaseRegular:k,fontWeightBaseMedium:C,fontWeightBaseSemibold:O,fontWeightBaseBold:T,fontWeightBaseExtraBold:A,fontWeightBaseBlack:L,fontSizeBaseX2S:M,fontSizeBaseXS:W,fontSizeBaseSM:P,fontSizeBaseMD:I,fontSizeBaseLG:z,fontSizeBaseXL:F,fontSizeBaseX2L:X,fontSizeBaseX3L:D,fontSizeBaseX4L:N,fontSizeBaseX5L:_,lineHeightBaseNone:H,lineHeightBaseTight:j,lineHeightBaseSnug:G,lineHeightBaseNormal:U,lineHeightBaseRelaxed:Y,lineHeightBaseLoose:q,children:$})=>{const V=(0,b.useMemo)((()=>({colorForegroundBase100:e??i,colorForegroundBase200:r??l,colorForegroundBase300:t??s,colorForegroundBase400:n??u,colorForegroundBase500:o??c,colorForegroundBase600:a??d,colorForegroundBase700:m??f,colorForegroundBase800:S??p,colorForegroundBase900:R??g,fontFamilyBase:B??h,fontWeightBaseThin:w??100,fontWeightBaseExtraLight:x??200,fontWeightBaseLight:E??300,fontWeightBaseRegular:k??400,fontWeightBaseMedium:C??500,fontWeightBaseSemibold:O??600,fontWeightBaseBold:T??700,fontWeightBaseExtraBold:A??800,fontWeightBaseBlack:L??900,fontSizeBaseX2S:M??12,fontSizeBaseXS:W??14,fontSizeBaseSM:P??16,fontSizeBaseMD:I??18,fontSizeBaseLG:z??20,fontSizeBaseXL:F??24,fontSizeBaseX2L:X??30,fontSizeBaseX3L:D??36,fontSizeBaseX4L:N??48,fontSizeBaseX5L:_??60,lineHeightBaseNone:H??1,lineHeightBaseTight:j??1.25,lineHeightBaseSnug:G??1.375,lineHeightBaseNormal:U??1.5,lineHeightBaseRelaxed:Y??1.625,lineHeightBaseLoose:q??2})),[e,r,t,n,o,a,m,S,R,B,w,x,E,k,C,O,T,A,L,M,W,P,I,z,F,X,D,N,_,H,j,G,U,Y,q]);return(0,v.jsx)(y.Provider,{value:V,children:$})},R=()=>(0,b.useContext)(y);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 w(e,r,t){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 t=r.call(e,"string");if("object"!=B(t))return t;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:t,enumerable:!0,configurable:!0,writable:!0}):e[r]=t,e}function x(e,r){var t=Object.keys(e);if(Object.getOwnPropertySymbols){var n=Object.getOwnPropertySymbols(e);r&&(n=n.filter((function(r){return Object.getOwnPropertyDescriptor(e,r).enumerable}))),t.push.apply(t,n)}return t}function E(e){for(var r=1;r<arguments.length;r++){var t=null!=arguments[r]?arguments[r]:{};r%2?x(Object(t),!0).forEach((function(r){w(e,r,t[r])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(t)):x(Object(t)).forEach((function(r){Object.defineProperty(e,r,Object.getOwnPropertyDescriptor(t,r))}))}return e}function k(e,r){if(null==e)return{};var t={};for(var n in e)if({}.hasOwnProperty.call(e,n)){if(r.includes(n))continue;t[n]=e[n]}return t}var C={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,flex:!0,flexGrow:!0,flexOrder:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,fontWeight:!0,gridRow:!0,gridRowEnd:!0,gridRowGap:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnGap:!0,gridColumnStart:!0,lineClamp:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0,scale:!0,scaleX:!0,scaleY:!0,scaleZ:!0,shadowOpacity:!0},O=["ms","Moz","O","Webkit"];Object.keys(C).forEach((e=>{O.forEach((r=>{C[((e,r)=>e+r.charAt(0).toUpperCase()+r.substring(1))(r,e)]=C[e]}))}));const T=C;var A=o(515),L=o.n(A);const M=function(e,r){if(void 0===r&&(r=1),null!=e){if("string"==typeof e&&(e=>"currentcolor"===e||"currentColor"===e||"inherit"===e||0===e.indexOf("var("))(e))return e;var t=(e=>{if(null==e)return e;var r=L()(e);return null!=r?r=(r<<24|r>>>8)>>>0:void 0})(e);if(null!=t)return"rgba("+(t>>16&255)+","+(t>>8&255)+","+(255&t)+","+((t>>24&255)/255*r).toFixed(2)+")"}};var W={backgroundColor:!0,borderColor:!0,borderTopColor:!0,borderRightColor:!0,borderBottomColor:!0,borderLeftColor:!0,color:!0,shadowColor:!0,textDecorationColor:!0,textShadowColor:!0};function P(e,r){var t=e;return null!=r&&T[r]||"number"!=typeof e?null!=r&&W[r]&&(t=M(e)):t=e+"px",t}const I=!("undefined"==typeof window||!window.document||!window.document.createElement);var z={},F=!I||null!=window.CSS&&null!=window.CSS.supports&&(window.CSS.supports("text-decoration-line","none")||window.CSS.supports("-webkit-text-decoration-line","none")),X='-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif',D={borderColor:["borderTopColor","borderRightColor","borderBottomColor","borderLeftColor"],borderBlockColor:["borderTopColor","borderBottomColor"],borderInlineColor:["borderRightColor","borderLeftColor"],borderRadius:["borderTopLeftRadius","borderTopRightRadius","borderBottomRightRadius","borderBottomLeftRadius"],borderStyle:["borderTopStyle","borderRightStyle","borderBottomStyle","borderLeftStyle"],borderBlockStyle:["borderTopStyle","borderBottomStyle"],borderInlineStyle:["borderRightStyle","borderLeftStyle"],borderWidth:["borderTopWidth","borderRightWidth","borderBottomWidth","borderLeftWidth"],borderBlockWidth:["borderTopWidth","borderBottomWidth"],borderInlineWidth:["borderRightWidth","borderLeftWidth"],insetBlock:["top","bottom"],insetInline:["left","right"],marginBlock:["marginTop","marginBottom"],marginInline:["marginRight","marginLeft"],paddingBlock:["paddingTop","paddingBottom"],paddingInline:["paddingRight","paddingLeft"],overflow:["overflowX","overflowY"],overscrollBehavior:["overscrollBehaviorX","overscrollBehaviorY"],borderBlockStartColor:["borderTopColor"],borderBlockStartStyle:["borderTopStyle"],borderBlockStartWidth:["borderTopWidth"],borderBlockEndColor:["borderBottomColor"],borderBlockEndStyle:["borderBottomStyle"],borderBlockEndWidth:["borderBottomWidth"],borderEndStartRadius:["borderBottomLeftRadius"],borderEndEndRadius:["borderBottomRightRadius"],borderStartStartRadius:["borderTopLeftRadius"],borderStartEndRadius:["borderTopRightRadius"],insetBlockEnd:["bottom"],insetBlockStart:["top"],marginBlockStart:["marginTop"],marginBlockEnd:["marginBottom"],paddingBlockStart:["paddingTop"],paddingBlockEnd:["paddingBottom"]};const N=(e,r)=>{if(!e)return z;var t={},n=function(){var n=e[o];if(null==n)return"continue";if("backgroundClip"===o)"text"===n&&(t.backgroundClip=n,t.WebkitBackgroundClip=n);else if("flex"===o)-1===n?(t.flexGrow=0,t.flexShrink=1,t.flexBasis="auto"):t.flex=n;else if("font"===o)t[o]=n.replace("System",X);else if("fontFamily"===o)if(n.indexOf("System")>-1){var a=n.split(/,\s*/);a[a.indexOf("System")]=X,t[o]=a.join(",")}else t[o]="monospace"===n?"monospace,monospace":n;else if("textDecorationLine"===o)F?t.textDecorationLine=n:t.textDecoration=n;else if("writingDirection"===o)t.direction=n;else{var i=P(e[o],o),l=D[o];r&&"inset"===o?(null==e.insetInline&&(t.left=i,t.right=i),null==e.insetBlock&&(t.top=i,t.bottom=i)):r&&"margin"===o?(null==e.marginInline&&(t.marginLeft=i,t.marginRight=i),null==e.marginBlock&&(t.marginTop=i,t.marginBottom=i)):r&&"padding"===o?(null==e.paddingInline&&(t.paddingLeft=i,t.paddingRight=i),null==e.paddingBlock&&(t.paddingTop=i,t.paddingBottom=i)):l?l.forEach(((r,n)=>{null==e[r]&&(t[r]=i)})):t[o]=i}};for(var o in e)n();return t};var _=/[A-Z]/g,H=/^ms-/,j={};function G(e){return"-"+e.toLowerCase()}var U=o(485),Y=o(217),q=o(261),$=o(41),V=o(33),K=o(852),J=o(639),Z=o(996),Q=o(129),ee=o(508),re=["Webkit"],te=["Webkit","ms"];const ne={plugins:[Y.A,q.A,$.A,V.A,K.A,J.A,Z.A,Q.A,ee.A],prefixMap:{appearance:["Webkit","Moz","ms"],userSelect:["Webkit","Moz"],textEmphasisPosition:te,textEmphasis:te,textEmphasisStyle:te,textEmphasisColor:te,boxDecorationBreak:te,clipPath:re,maskImage:te,maskMode:te,maskRepeat:te,maskPosition:te,maskClip:te,maskOrigin:te,maskSize:te,maskComposite:te,mask:te,maskBorderSource:te,maskBorderMode:te,maskBorderSlice:te,maskBorderWidth:te,maskBorderOutset:te,maskBorderRepeat:te,maskBorder:te,maskType:te,textDecorationStyle:re,textDecorationSkip:re,textDecorationLine:re,textDecorationColor:re,filter:re,breakAfter:re,breakBefore:re,breakInside:re,columnCount:re,columnFill:re,columnGap:re,columnRule:re,columnRuleColor:re,columnRuleStyle:re,columnRuleWidth:re,columns:re,columnSpan:re,columnWidth:re,backdropFilter:re,hyphens:re,flowInto:re,flowFrom:re,regionFragment:re,textOrientation:re,tabSize:["Moz"],fontKerning:re,textSizeAdjust:re}},oe=(0,U.A)(ne);var ae=["animationKeyframes"],ie=new Map,le={},se={borderColor:2,borderRadius:2,borderStyle:2,borderWidth:2,display:2,flex:2,inset:2,margin:2,overflow:2,overscrollBehavior:2,padding:2,insetBlock:2.1,insetInline:2.1,marginInline:2.1,marginBlock:2.1,paddingInline:2.1,paddingBlock:2.1,borderBlockStartColor:2.2,borderBlockStartStyle:2.2,borderBlockStartWidth:2.2,borderBlockEndColor:2.2,borderBlockEndStyle:2.2,borderBlockEndWidth:2.2,borderInlineStartColor:2.2,borderInlineStartStyle:2.2,borderInlineStartWidth:2.2,borderInlineEndColor:2.2,borderInlineEndStyle:2.2,borderInlineEndWidth:2.2,borderEndStartRadius:2.2,borderEndEndRadius:2.2,borderStartStartRadius:2.2,borderStartEndRadius:2.2,insetBlockEnd:2.2,insetBlockStart:2.2,insetInlineEnd:2.2,insetInlineStart:2.2,marginBlockStart:2.2,marginBlockEnd:2.2,marginInlineStart:2.2,marginInlineEnd:2.2,paddingBlockStart:2.2,paddingBlockEnd:2.2,paddingInlineStart:2.2,paddingInlineEnd:2.2},ue="borderTopLeftRadius",ce="borderTopRightRadius",de="borderBottomLeftRadius",fe="borderBottomRightRadius",pe="borderLeftColor",ge="borderLeftStyle",he="borderLeftWidth",be="borderRightColor",me="borderRightStyle",ve="borderRightWidth",ye="right",Se="marginLeft",Re="marginRight",Be="paddingLeft",we="paddingRight",xe="left",Ee={[ue]:ce,[ce]:ue,[de]:fe,[fe]:de,[pe]:be,[ge]:me,[he]:ve,[be]:pe,[me]:ge,[ve]:he,[xe]:ye,[Se]:Re,[Re]:Se,[Be]:we,[we]:Be,[ye]:xe},ke={borderStartStartRadius:ue,borderStartEndRadius:ce,borderEndStartRadius:de,borderEndEndRadius:fe,borderInlineStartColor:pe,borderInlineStartStyle:ge,borderInlineStartWidth:he,borderInlineEndColor:be,borderInlineEndStyle:me,borderInlineEndWidth:ve,insetInlineEnd:ye,insetInlineStart:xe,marginInlineStart:Se,marginInlineEnd:Re,paddingInlineStart:Be,paddingInlineEnd:we},Ce=["clear","float","textAlign"];function Oe(e){var r=oe(N(e));return"{"+Object.keys(r).map((e=>{var t=r[e],n=function(e){if(e in j)return j[e];var r=e.replace(_,G);return j[e]=H.test(r)?"-"+r:r}(e);return Array.isArray(t)?t.map((e=>n+":"+e)).join(";"):n+":"+t})).sort().join(";")+";}"}function Te(e,r,t){return e+"-"+function(e){for(var r,t=e.length,n=1^t,o=0;t>=4;)r=1540483477*(65535&(r=255&e.charCodeAt(o)|(255&e.charCodeAt(++o))<<8|(255&e.charCodeAt(++o))<<16|(255&e.charCodeAt(++o))<<24))+((1540483477*(r>>>16)&65535)<<16),n=1540483477*(65535&n)+((1540483477*(n>>>16)&65535)<<16)^(r=1540483477*(65535&(r^=r>>>24))+((1540483477*(r>>>16)&65535)<<16)),t-=4,++o;switch(t){case 3:n^=(255&e.charCodeAt(o+2))<<16;case 2:n^=(255&e.charCodeAt(o+1))<<8;case 1:n=1540483477*(65535&(n^=255&e.charCodeAt(o)))+((1540483477*(n>>>16)&65535)<<16)}return n=1540483477*(65535&(n^=n>>>13))+((1540483477*(n>>>16)&65535)<<16),(n^=n>>>15)>>>0}(r+t).toString(36)}function Ae(e){if("number"==typeof e)throw new Error("Invalid CSS keyframes type: "+typeof e);var r=[],t=[];return(Array.isArray(e)?e:[e]).forEach((e=>{if("string"==typeof e)r.push(e);else{var n=function(e){var r=Te("r","animation",JSON.stringify(e)),t="{"+Object.keys(e).map((r=>""+r+Oe(e[r]))).join("")+"}",n=["-webkit-",""].map((e=>"@"+e+"keyframes "+r+t));return[r,n]}(e),o=n[0],a=n[1];r.push(o),t.push(...a)}})),[r,t]}function Le(e,r,t){if(I){var n=null!=r?r:document,o=n.getElementById(e);if(null==o)if((o=document.createElement("style")).setAttribute("id",e),"string"==typeof t&&o.appendChild(document.createTextNode(t)),n instanceof ShadowRoot)n.insertBefore(o,n.firstChild);else{var a=n.head;a&&a.insertBefore(o,a.firstChild)}return o.sheet}return null}var Me=Array.prototype.slice;function We(e){var r,t={},n={};function o(e,r,n){var o=Ie(t),a=o.indexOf(r)+1,i=o[a],l=null!=i&&null!=t[i].start?t[i].start:e.cssRules.length,s=function(e,r,t){try{return e.insertRule(r,t),!0}catch(e){return!1}}(e,n,l);if(s){null==t[r].start&&(t[r].start=l);for(var u=a;u<o.length;u+=1){var c=o[u],d=t[c].start||0;t[c].start=d+1}}return s}null!=e&&Me.call(e.cssRules).forEach(((e,o)=>{var a=e.cssText;if(a.indexOf("stylesheet-group")>-1)r=function(e){return Number(e.selectorText.split(Pe)[1])}(e),t[r]={start:o,rules:[a]};else{var i=Fe(a);null!=i&&(n[i]=!0,t[r].rules.push(a))}}));var a={getTextContent:()=>Ie(t).map((e=>{var r=t[e].rules,n=r.shift();return r.sort(),r.unshift(n),r.join("\n")})).join("\n"),insert(r,a){var i=Number(a);if(null==t[i]){var l=function(e){return'[stylesheet-group="'+e+'"]{}'}(i);t[i]={start:null,rules:[l]},null!=e&&o(e,i,l)}var s=Fe(r);null!=s&&null==n[s]&&(n[s]=!0,t[i].rules.push(r),null!=e&&(o(e,i,r)||t[i].rules.pop()))}};return a}var Pe=/["']/g;function Ie(e){return Object.keys(e).map(Number).sort(((e,r)=>e>r?1:-1))}var ze=/\s*([,])\s*/g;function Fe(e){var r=e.split("{")[0].trim();return""!==r?r.replace(ze,"$1"):null}var Xe=new WeakMap,De=[],Ne=["html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:rgba(0,0,0,0);}","body{margin:0;}","button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}","input::-webkit-search-cancel-button,input::-webkit-search-decoration,input::-webkit-search-results-button,input::-webkit-search-results-decoration{display:none;}"];function _e(e,r){var t;if(void 0===r&&(r="react-native-stylesheet"),I){var n=null!=e?e.getRootNode():document;if(0===De.length)t=We(Le(r)),Ne.forEach((e=>{t.insert(e,0)})),Xe.set(n,De.length),De.push(t);else{var o=Xe.get(n);if(null==o){var a=De[0],i=null!=a?a.getTextContent():"";t=We(Le(r,n,i)),Xe.set(n,De.length),De.push(t)}else t=De[o]}}else 0===De.length?(t=We(Le(r)),Ne.forEach((e=>{t.insert(e,0)})),De.push(t)):t=De[0];return{getTextContent:()=>t.getTextContent(),id:r,insert(e,r){De.forEach((t=>{t.insert(e,r)}))}}}var He=o(336);var je={},Ge={height:0,width:0},Ue=e=>{var r=Object.keys(e)[0],t=e[r];return"matrix"===r||"matrix3d"===r?r+"("+t.join(",")+")":r+"("+P(t,r)+")"},Ye=e=>e.map(Ue).join(" "),qe={borderBottomEndRadius:"borderEndEndRadius",borderBottomStartRadius:"borderEndStartRadius",borderTopEndRadius:"borderStartEndRadius",borderTopStartRadius:"borderStartStartRadius",borderEndColor:"borderInlineEndColor",borderEndStyle:"borderInlineEndStyle",borderEndWidth:"borderInlineEndWidth",borderStartColor:"borderInlineStartColor",borderStartStyle:"borderInlineStartStyle",borderStartWidth:"borderInlineStartWidth",end:"insetInlineEnd",marginEnd:"marginInlineEnd",marginHorizontal:"marginInline",marginStart:"marginInlineStart",marginVertical:"marginBlock",paddingEnd:"paddingInlineEnd",paddingHorizontal:"paddingInline",paddingStart:"paddingInlineStart",paddingVertical:"paddingBlock",start:"insetInlineStart"},$e={elevation:!0,overlayColor:!0,resizeMode:!0,tintColor:!0},Ve=function(e,r){void 0===r&&(r={});var t=e||je,n={};if(r.shadow,null!=t.shadowColor||null!=t.shadowOffset||null!=t.shadowOpacity||null!=t.shadowRadius){var o=(e=>{var r=e.shadowColor,t=e.shadowOffset,n=e.shadowOpacity,o=e.shadowRadius,a=t||Ge,i=a.height,l=P(a.width),s=P(i),u=P(o||0),c=M(r||"black",n);if(null!=c&&null!=l&&null!=s&&null!=u)return l+" "+s+" "+u+" "+c})(t);if(null!=o&&null==n.boxShadow){var a=t.boxShadow,i=a?a+", "+o:o;n.boxShadow=i}}if(r.textShadow,null!=t.textShadowColor||null!=t.textShadowOffset||null!=t.textShadowRadius){var l=(e=>{var r=e.textShadowColor,t=e.textShadowOffset,n=e.textShadowRadius,o=t||Ge,a=o.height,i=o.width,l=n||0,s=P(i),u=P(a),c=P(l),d=P(r,"textShadowColor");if(d&&(0!==a||0!==i||0!==l)&&null!=s&&null!=u&&null!=c)return s+" "+u+" "+c+" "+d})(t);if(null!=l&&null==n.textShadow){var s=t.textShadow,u=s?s+", "+l:l;n.textShadow=u}}for(var c in t)if(null==$e[c]&&"shadowColor"!==c&&"shadowOffset"!==c&&"shadowOpacity"!==c&&"shadowRadius"!==c&&"textShadowColor"!==c&&"textShadowOffset"!==c&&"textShadowRadius"!==c){var d=t[c],f=qe[c]||c,p=d;!Object.prototype.hasOwnProperty.call(t,c)||f!==c&&null!=t[f]||("aspectRatio"===f&&"number"==typeof p?n[f]=p.toString():"fontVariant"===f?(Array.isArray(p)&&p.length>0&&(p=p.join(" ")),n[f]=p):"textAlignVertical"===f?null==t.verticalAlign&&(n.verticalAlign="center"===p?"middle":p):"transform"===f?(Array.isArray(p)&&(p=Ye(p)),n.transform=p):n[f]=p)}return n},Ke=o(176),Je=["writingDirection"],Ze=new WeakMap,Qe=_e(),er={shadow:!0,textShadow:!0};function rr(e){e.forEach((e=>{var r=e[0],t=e[1];null!=Qe&&r.forEach((e=>{Qe.insert(e,t)}))}))}var tr={position:"absolute",left:0,right:0,top:0,bottom:0},nr=or({x:E({},tr)}).x;function or(e){return Object.keys(e).forEach((r=>{var t,n,o,a=e[r];null!=a&&!0!==a.$$css&&(r.indexOf("$raw")>-1?t=function(e,r){var t=function(e,r){var t,n={$$css:!0},o=[],a=e.animationKeyframes,i=k(e,ae),l=Te("css",r,JSON.stringify(e)),s="."+l;if(null!=a){var u=Ae(a),c=u[0],d=u[1];t=c.join(","),o.push(...d)}var f=Oe(E(E({},i),{},{animationName:t}));return o.push(""+s+f),n[l]=l,[n,[[o,1]]]}(e,r),n=t[0];return rr(t[1]),n}(a,r.split("$raw")[0]):(n=function(e){var r={$$css:!0},t=[];function n(e,r,n){var o,a=function(e,r){var t=P(e,r);return"string"!=typeof t?JSON.stringify(t||""):t}(n,r),i=r+a,l=ie.get(i);if(null!=l)o=l[0],t.push(l[1]);else{o=Te("r",e,e!==r?i:a);var s=se[e]||3,u=function(e,r,t){var n=[],o="."+e;switch(r){case"animationKeyframes":var a=Ae(t),i=a[0],l=a[1],s=Oe({animationName:i.join(",")});n.push(""+o+s,...l);break;case"placeholderTextColor":var u=Oe({color:t,opacity:1});n.push(o+"::-webkit-input-placeholder"+u,o+"::-moz-placeholder"+u,o+":-ms-input-placeholder"+u,o+"::placeholder"+u);break;case"pointerEvents":var c=t;if("auto"===t||"box-only"===t){if(c="auto!important","box-only"===t){var d=Oe({pointerEvents:"none"});n.push(o+">*"+d)}}else if(("none"===t||"box-none"===t)&&(c="none!important","box-none"===t)){var f=Oe({pointerEvents:"auto"});n.push(o+">*"+f)}var p=Oe({pointerEvents:c});n.push(""+o+p);break;case"scrollbarWidth":"none"===t&&n.push(o+"::-webkit-scrollbar{display:none}");var g=Oe({scrollbarWidth:t});n.push(""+o+g);break;default:var h=Oe({[r]:t});n.push(""+o+h)}return n}(o,r,n),c=[u,s];t.push(c),ie.set(i,[o,c])}return o}return Object.keys(e).sort().forEach((t=>{var o=e[t];if(null!=o){var a;if(Ce.indexOf(t)>-1){var i=n(t,t,"left"),l=n(t,t,"right");"start"===o?a=[i,l]:"end"===o&&(a=[l,i])}var s=ke[t];if(null!=s){var u=n(t,s,o),c=n(t,Ee[s],o);a=[u,c]}if("transitionProperty"===t){for(var d=Array.isArray(o)?o:[o],f=[],p=0;p<d.length;p++){var g=d[p];"string"==typeof g&&null!=ke[g]&&f.push(p)}if(f.length>0){var h=[...d],b=[...d];f.forEach((e=>{var r=h[e];if("string"==typeof r){var o=ke[r],i=Ee[o];h[e]=o,b[e]=i;var l=n(t,t,h),s=n(t,t,b);a=[l,s]}}))}}null==a?a=n(t,t,o):r.$$css$localize=!0,r[t]=a}})),[r,t]}(Ve(a,er)),o=n[0],rr(n[1]),t=o),Ze.set(a,t))})),e}function ar(e,r){void 0===r&&(r={});var t="rtl"===r.writingDirection,n=function(e,r){void 0===r&&(r={});var t=r,n=t.writingDirection,o=k(t,Je),a="rtl"===n;return Ke.P.factory({transform(e){var r=Ze.get(e);return null!=r?(0,He.n)(r,a):Ve(e,E(E({},er),o))}})(e)}(e,r);return Array.isArray(n)&&null!=n[1]&&(n[1]=function(e,r){var t=e||le,n={},o={},a=function(){var e=t[i],a=i,l=e;if(!Object.prototype.hasOwnProperty.call(t,i)||null==e)return"continue";Ce.indexOf(i)>-1&&("start"===e?l=r?"right":"left":"end"===e&&(l=r?"left":"right"));var s=ke[i];if(null!=s&&(a=r?Ee[s]:s),"transitionProperty"===i){var u=Array.isArray(e)?e:[e];u.forEach(((e,t)=>{if("string"==typeof e){var n=ke[e];null!=n&&(u[t]=r?Ee[n]:n,l=u.join(" "))}}))}n[a]||(o[a]=l),a===i&&(n[a]=!0)};for(var i in t)a();return N(o,!0)}(n[1],t)),n}ar.absoluteFill=nr,ar.absoluteFillObject=tr,ar.create=or,ar.compose=function(e,r){return[e,r]},ar.flatten=function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];for(var n=r.flat(1/0),o={},a=0;a<n.length;a++){var i=n[a];null!=i&&"object"==typeof i&&Object.assign(o,i)}return o},ar.getSheet=function(){return{id:Qe.id,textContent:Qe.getTextContent()}},ar.hairlineWidth=1,I&&window.__REACT_DEVTOOLS_GLOBAL_HOOK__&&(window.__REACT_DEVTOOLS_GLOBAL_HOOK__.resolveRNStyle=ar.flatten);const ir=ar,lr=()=>{const e=R();return(0,b.useMemo)((()=>ir.create({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},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}})),[e])};var sr={adjustable:"slider",button:"button",header:"heading",image:"img",imagebutton:null,keyboardkey:null,label:null,link:"link",none:"presentation",search:"search",summary:"region",text:null};const ur=e=>{var r=e.accessibilityRole,t=e.role||r;if(t){var n=sr[t];if(null!==n)return n||t}};var cr={article:"article",banner:"header",blockquote:"blockquote",button:"button",code:"code",complementary:"aside",contentinfo:"footer",deletion:"del",emphasis:"em",figure:"figure",insertion:"ins",form:"form",list:"ul",listitem:"li",main:"main",navigation:"nav",paragraph:"p",region:"section",strong:"strong"},dr={};const fr=function(e){if(void 0===e&&(e=dr),"label"===(e.role||e.accessibilityRole))return"label";var r=ur(e);if(r){if("heading"===r){var t=e.accessibilityLevel||e["aria-level"];return null!=t?"h"+t:"h1"}return cr[r]}},pr=ur;var gr=["aria-activedescendant","accessibilityActiveDescendant","aria-atomic","accessibilityAtomic","aria-autocomplete","accessibilityAutoComplete","aria-busy","accessibilityBusy","aria-checked","accessibilityChecked","aria-colcount","accessibilityColumnCount","aria-colindex","accessibilityColumnIndex","aria-colspan","accessibilityColumnSpan","aria-controls","accessibilityControls","aria-current","accessibilityCurrent","aria-describedby","accessibilityDescribedBy","aria-details","accessibilityDetails","aria-disabled","accessibilityDisabled","aria-errormessage","accessibilityErrorMessage","aria-expanded","accessibilityExpanded","aria-flowto","accessibilityFlowTo","aria-haspopup","accessibilityHasPopup","aria-hidden","accessibilityHidden","aria-invalid","accessibilityInvalid","aria-keyshortcuts","accessibilityKeyShortcuts","aria-label","accessibilityLabel","aria-labelledby","accessibilityLabelledBy","aria-level","accessibilityLevel","aria-live","accessibilityLiveRegion","aria-modal","accessibilityModal","aria-multiline","accessibilityMultiline","aria-multiselectable","accessibilityMultiSelectable","aria-orientation","accessibilityOrientation","aria-owns","accessibilityOwns","aria-placeholder","accessibilityPlaceholder","aria-posinset","accessibilityPosInSet","aria-pressed","accessibilityPressed","aria-readonly","accessibilityReadOnly","aria-required","accessibilityRequired","role","accessibilityRole","aria-roledescription","accessibilityRoleDescription","aria-rowcount","accessibilityRowCount","aria-rowindex","accessibilityRowIndex","aria-rowspan","accessibilityRowSpan","aria-selected","accessibilitySelected","aria-setsize","accessibilitySetSize","aria-sort","accessibilitySort","aria-valuemax","accessibilityValueMax","aria-valuemin","accessibilityValueMin","aria-valuenow","accessibilityValueNow","aria-valuetext","accessibilityValueText","dataSet","focusable","id","nativeID","pointerEvents","style","tabIndex","testID"],hr={},br=Object.prototype.hasOwnProperty,mr=Array.isArray,vr=/[A-Z]/g;function yr(e){return"-"+e.toLowerCase()}function Sr(e){return mr(e)?e.join(" "):e}var Rr=ir.create({auto:{pointerEvents:"auto"},"box-none":{pointerEvents:"box-none"},"box-only":{pointerEvents:"box-only"},none:{pointerEvents:"none"}});var Br=new Set(["Arab","Syrc","Samr","Mand","Thaa","Mend","Nkoo","Adlm","Rohg","Hebr"]),wr=new Set(["ae","ar","arc","bcc","bqi","ckb","dv","fa","far","glk","he","iw","khw","ks","ku","mzn","nqo","pnb","ps","sd","ug","ur","yi"]),xr=new Map,Er={direction:"ltr",locale:"en-US"},kr=(0,b.createContext)(Er);function Cr(e){return function(e){var r=xr.get(e);if(r)return r;var t=!1;if(Intl.Locale)try{var n=new Intl.Locale(e).maximize().script;t=Br.has(n)}catch(r){var o=e.split("-")[0];t=wr.has(o)}else{var a=e.split("-")[0];t=wr.has(a)}return xr.set(e,t),t}(e)?"rtl":"ltr"}function Or(e){var r=e.direction,t=e.locale,n=e.children;return r||t?m().createElement(kr.Provider,{children:n,value:{direction:t?Cr(t):r,locale:t}}):n}function Tr(){return(0,b.useContext)(kr)}const Ar=(e,r,t)=>{var n;e&&e.constructor===String&&(n=fr(r));var o=n||e,a=((e,r,t)=>{r||(r=hr);var n=r,o=n["aria-activedescendant"],a=n.accessibilityActiveDescendant,i=n["aria-atomic"],l=n.accessibilityAtomic,s=n["aria-autocomplete"],u=n.accessibilityAutoComplete,c=n["aria-busy"],d=n.accessibilityBusy,f=n["aria-checked"],p=n.accessibilityChecked,g=n["aria-colcount"],h=n.accessibilityColumnCount,b=n["aria-colindex"],m=n.accessibilityColumnIndex,v=n["aria-colspan"],y=n.accessibilityColumnSpan,S=n["aria-controls"],R=n.accessibilityControls,B=n["aria-current"],w=n.accessibilityCurrent,x=n["aria-describedby"],C=n.accessibilityDescribedBy,O=n["aria-details"],T=n.accessibilityDetails,A=n["aria-disabled"],L=n.accessibilityDisabled,M=n["aria-errormessage"],W=n.accessibilityErrorMessage,P=n["aria-expanded"],I=n.accessibilityExpanded,z=n["aria-flowto"],F=n.accessibilityFlowTo,X=n["aria-haspopup"],D=n.accessibilityHasPopup,N=n["aria-hidden"],_=n.accessibilityHidden,H=n["aria-invalid"],j=n.accessibilityInvalid,G=n["aria-keyshortcuts"],U=n.accessibilityKeyShortcuts,Y=n["aria-label"],q=n.accessibilityLabel,$=n["aria-labelledby"],V=n.accessibilityLabelledBy,K=n["aria-level"],J=n.accessibilityLevel,Z=n["aria-live"],Q=n.accessibilityLiveRegion,ee=n["aria-modal"],re=n.accessibilityModal,te=n["aria-multiline"],ne=n.accessibilityMultiline,oe=n["aria-multiselectable"],ae=n.accessibilityMultiSelectable,ie=n["aria-orientation"],le=n.accessibilityOrientation,se=n["aria-owns"],ue=n.accessibilityOwns,ce=n["aria-placeholder"],de=n.accessibilityPlaceholder,fe=n["aria-posinset"],pe=n.accessibilityPosInSet,ge=n["aria-pressed"],he=n.accessibilityPressed,be=n["aria-readonly"],me=n.accessibilityReadOnly,ve=n["aria-required"],ye=n.accessibilityRequired,Se=(n.role,n.accessibilityRole,n["aria-roledescription"]),Re=n.accessibilityRoleDescription,Be=n["aria-rowcount"],we=n.accessibilityRowCount,xe=n["aria-rowindex"],Ee=n.accessibilityRowIndex,ke=n["aria-rowspan"],Ce=n.accessibilityRowSpan,Oe=n["aria-selected"],Te=n.accessibilitySelected,Ae=n["aria-setsize"],Le=n.accessibilitySetSize,Me=n["aria-sort"],We=n.accessibilitySort,Pe=n["aria-valuemax"],Ie=n.accessibilityValueMax,ze=n["aria-valuemin"],Fe=n.accessibilityValueMin,Xe=n["aria-valuenow"],De=n.accessibilityValueNow,Ne=n["aria-valuetext"],_e=n.accessibilityValueText,He=n.dataSet,je=n.focusable,Ge=n.id,Ue=n.nativeID,Ye=n.pointerEvents,qe=n.style,$e=n.tabIndex,Ve=n.testID,Ke=k(n,gr),Je=A||L,Ze=pr(r),Qe=null!=o?o:a;null!=Qe&&(Ke["aria-activedescendant"]=Qe);var er=null!=i?o:l;null!=er&&(Ke["aria-atomic"]=er);var rr=null!=s?s:u;null!=rr&&(Ke["aria-autocomplete"]=rr);var tr=null!=c?c:d;null!=tr&&(Ke["aria-busy"]=tr);var nr=null!=f?f:p;null!=nr&&(Ke["aria-checked"]=nr);var or=null!=g?g:h;null!=or&&(Ke["aria-colcount"]=or);var ar=null!=b?b:m;null!=ar&&(Ke["aria-colindex"]=ar);var lr=null!=v?v:y;null!=lr&&(Ke["aria-colspan"]=lr);var sr=null!=S?S:R;null!=sr&&(Ke["aria-controls"]=Sr(sr));var ur=null!=B?B:w;null!=ur&&(Ke["aria-current"]=ur);var cr=null!=x?x:C;null!=cr&&(Ke["aria-describedby"]=Sr(cr));var dr=null!=O?O:T;null!=dr&&(Ke["aria-details"]=dr),!0===Je&&(Ke["aria-disabled"]=!0,"button"!==e&&"form"!==e&&"input"!==e&&"select"!==e&&"textarea"!==e||(Ke.disabled=!0));var fr=null!=M?M:W;null!=fr&&(Ke["aria-errormessage"]=fr);var mr=null!=P?P:I;null!=mr&&(Ke["aria-expanded"]=mr);var Br=null!=z?z:F;null!=Br&&(Ke["aria-flowto"]=Sr(Br));var wr=null!=X?X:D;null!=wr&&(Ke["aria-haspopup"]=wr);var xr=null!=N?N:_;!0===xr&&(Ke["aria-hidden"]=xr);var Er=null!=H?H:j;null!=Er&&(Ke["aria-invalid"]=Er);var kr=null!=G?G:U;null!=kr&&(Ke["aria-keyshortcuts"]=Sr(kr));var Cr=null!=Y?Y:q;null!=Cr&&(Ke["aria-label"]=Cr);var Or=null!=$?$:V;null!=Or&&(Ke["aria-labelledby"]=Sr(Or));var Tr=null!=K?K:J;null!=Tr&&(Ke["aria-level"]=Tr);var Ar=null!=Z?Z:Q;null!=Ar&&(Ke["aria-live"]="none"===Ar?"off":Ar);var Lr=null!=ee?ee:re;null!=Lr&&(Ke["aria-modal"]=Lr);var Mr=null!=te?te:ne;null!=Mr&&(Ke["aria-multiline"]=Mr);var Wr=null!=oe?oe:ae;null!=Wr&&(Ke["aria-multiselectable"]=Wr);var Pr=null!=ie?ie:le;null!=Pr&&(Ke["aria-orientation"]=Pr);var Ir=null!=se?se:ue;null!=Ir&&(Ke["aria-owns"]=Sr(Ir));var zr=null!=ce?ce:de;null!=zr&&(Ke["aria-placeholder"]=zr);var Fr=null!=fe?fe:pe;null!=Fr&&(Ke["aria-posinset"]=Fr);var Xr=null!=ge?ge:he;null!=Xr&&(Ke["aria-pressed"]=Xr);var Dr=null!=be?be:me;null!=Dr&&(Ke["aria-readonly"]=Dr,"input"!==e&&"select"!==e&&"textarea"!==e||(Ke.readOnly=!0));var Nr=null!=ve?ve:ye;null!=Nr&&(Ke["aria-required"]=Nr,"input"!==e&&"select"!==e&&"textarea"!==e||(Ke.required=ye)),null!=Ze&&(Ke.role="none"===Ze?"presentation":Ze);var _r=null!=Se?Se:Re;null!=_r&&(Ke["aria-roledescription"]=_r);var Hr=null!=Be?Be:we;null!=Hr&&(Ke["aria-rowcount"]=Hr);var jr=null!=xe?xe:Ee;null!=jr&&(Ke["aria-rowindex"]=jr);var Gr=null!=ke?ke:Ce;null!=Gr&&(Ke["aria-rowspan"]=Gr);var Ur=null!=Oe?Oe:Te;null!=Ur&&(Ke["aria-selected"]=Ur);var Yr=null!=Ae?Ae:Le;null!=Yr&&(Ke["aria-setsize"]=Yr);var qr=null!=Me?Me:We;null!=qr&&(Ke["aria-sort"]=qr);var $r=null!=Pe?Pe:Ie;null!=$r&&(Ke["aria-valuemax"]=$r);var Vr=null!=ze?ze:Fe;null!=Vr&&(Ke["aria-valuemin"]=Vr);var Kr=null!=Xe?Xe:De;null!=Kr&&(Ke["aria-valuenow"]=Kr);var Jr=null!=Ne?Ne:_e;if(null!=Jr&&(Ke["aria-valuetext"]=Jr),null!=He)for(var Zr in He)if(br.call(He,Zr)){var Qr=Zr.replace(vr,yr),et=He[Zr];null!=et&&(Ke["data-"+Qr]=et)}0===$e||"0"===$e||-1===$e||"-1"===$e?Ke.tabIndex=$e:(!1===je&&(Ke.tabIndex="-1"),"a"===e||"button"===e||"input"===e||"select"===e||"textarea"===e?!1!==je&&!0!==L||(Ke.tabIndex="-1"):"button"===Ze||"checkbox"===Ze||"link"===Ze||"radio"===Ze||"textbox"===Ze||"switch"===Ze?!1!==je&&(Ke.tabIndex="0"):!0===je&&(Ke.tabIndex="0"));var rt=ir([qe,Ye&&Rr[Ye]],E({writingDirection:"ltr"},t)),tt=rt[0],nt=rt[1];tt&&(Ke.className=tt),nt&&(Ke.style=nt);var ot=null!=Ge?Ge:Ue;return null!=ot&&(Ke.id=ot),null!=Ve&&(Ke["data-testid"]=Ve),null==Ke.type&&"button"===e&&(Ke.type="button"),Ke})(o,r,t),i=m().createElement(o,a);return a.dir?m().createElement(Or,{children:i,direction:a.dir,locale:a.lang}):i};var Lr={children:!0,dataSet:!0,dir:!0,id:!0,ref:!0,suppressHydrationWarning:!0,tabIndex:!0,testID:!0,focusable:!0,nativeID:!0},Mr={"aria-activedescendant":!0,"aria-atomic":!0,"aria-autocomplete":!0,"aria-busy":!0,"aria-checked":!0,"aria-colcount":!0,"aria-colindex":!0,"aria-colspan":!0,"aria-controls":!0,"aria-current":!0,"aria-describedby":!0,"aria-details":!0,"aria-disabled":!0,"aria-errormessage":!0,"aria-expanded":!0,"aria-flowto":!0,"aria-haspopup":!0,"aria-hidden":!0,"aria-invalid":!0,"aria-keyshortcuts":!0,"aria-label":!0,"aria-labelledby":!0,"aria-level":!0,"aria-live":!0,"aria-modal":!0,"aria-multiline":!0,"aria-multiselectable":!0,"aria-orientation":!0,"aria-owns":!0,"aria-placeholder":!0,"aria-posinset":!0,"aria-pressed":!0,"aria-readonly":!0,"aria-required":!0,role:!0,"aria-roledescription":!0,"aria-rowcount":!0,"aria-rowindex":!0,"aria-rowspan":!0,"aria-selected":!0,"aria-setsize":!0,"aria-sort":!0,"aria-valuemax":!0,"aria-valuemin":!0,"aria-valuenow":!0,"aria-valuetext":!0,accessibilityActiveDescendant:!0,accessibilityAtomic:!0,accessibilityAutoComplete:!0,accessibilityBusy:!0,accessibilityChecked:!0,accessibilityColumnCount:!0,accessibilityColumnIndex:!0,accessibilityColumnSpan:!0,accessibilityControls:!0,accessibilityCurrent:!0,accessibilityDescribedBy:!0,accessibilityDetails:!0,accessibilityDisabled:!0,accessibilityErrorMessage:!0,accessibilityExpanded:!0,accessibilityFlowTo:!0,accessibilityHasPopup:!0,accessibilityHidden:!0,accessibilityInvalid:!0,accessibilityKeyShortcuts:!0,accessibilityLabel:!0,accessibilityLabelledBy:!0,accessibilityLevel:!0,accessibilityLiveRegion:!0,accessibilityModal:!0,accessibilityMultiline:!0,accessibilityMultiSelectable:!0,accessibilityOrientation:!0,accessibilityOwns:!0,accessibilityPlaceholder:!0,accessibilityPosInSet:!0,accessibilityPressed:!0,accessibilityReadOnly:!0,accessibilityRequired:!0,accessibilityRole:!0,accessibilityRoleDescription:!0,accessibilityRowCount:!0,accessibilityRowIndex:!0,accessibilityRowSpan:!0,accessibilitySelected:!0,accessibilitySetSize:!0,accessibilitySort:!0,accessibilityValueMax:!0,accessibilityValueMin:!0,accessibilityValueNow:!0,accessibilityValueText:!0},Wr={onClick:!0,onAuxClick:!0,onContextMenu:!0,onGotPointerCapture:!0,onLostPointerCapture:!0,onPointerCancel:!0,onPointerDown:!0,onPointerEnter:!0,onPointerMove:!0,onPointerLeave:!0,onPointerOut:!0,onPointerOver:!0,onPointerUp:!0},Pr={onBlur:!0,onFocus:!0},Ir={onKeyDown:!0,onKeyDownCapture:!0,onKeyUp:!0,onKeyUpCapture:!0},zr={onMouseDown:!0,onMouseEnter:!0,onMouseLeave:!0,onMouseMove:!0,onMouseOver:!0,onMouseOut:!0,onMouseUp:!0},Fr={onTouchCancel:!0,onTouchCancelCapture:!0,onTouchEnd:!0,onTouchEndCapture:!0,onTouchMove:!0,onTouchMoveCapture:!0,onTouchStart:!0,onTouchStartCapture:!0},Xr={style:!0};function Dr(e,r){var t={};for(var n in e)e.hasOwnProperty(n)&&!0===r[n]&&(t[n]=e[n]);return t}const Nr=I?b.useLayoutEffect:b.useEffect,_r=e=>{if(null!=e&&1===e.nodeType&&"function"==typeof e.getBoundingClientRect)return e.getBoundingClientRect()};var Hr={animationIterationCount:!0,aspectRatio:!0,borderImageOutset:!0,borderImageSlice:!0,borderImageWidth:!0,boxFlex:!0,boxFlexGroup:!0,boxOrdinalGroup:!0,columnCount:!0,flex:!0,flexGrow:!0,flexOrder:!0,flexPositive:!0,flexShrink:!0,flexNegative:!0,fontWeight:!0,gridRow:!0,gridRowEnd:!0,gridRowGap:!0,gridRowStart:!0,gridColumn:!0,gridColumnEnd:!0,gridColumnGap:!0,gridColumnStart:!0,lineClamp:!0,opacity:!0,order:!0,orphans:!0,tabSize:!0,widows:!0,zIndex:!0,zoom:!0,fillOpacity:!0,floodOpacity:!0,stopOpacity:!0,strokeDasharray:!0,strokeDashoffset:!0,strokeMiterlimit:!0,strokeOpacity:!0,strokeWidth:!0,scale:!0,scaleX:!0,scaleY:!0,scaleZ:!0,shadowOpacity:!0},jr=["ms","Moz","O","Webkit"];Object.keys(Hr).forEach((e=>{jr.forEach((r=>{Hr[((e,r)=>e+r.charAt(0).toUpperCase()+r.substring(1))(r,e)]=Hr[e]}))}));const Gr=Hr,Ur=function(e,r,t){return null==r||"boolean"==typeof r||""===r?"":t||"number"!=typeof r||0===r||Gr.hasOwnProperty(e)&&Gr[e]?(""+r).trim():r+"px"},Yr=function(e,r){var t=e.style;for(var n in r)if(r.hasOwnProperty(n)){var o=0===n.indexOf("--"),a=Ur(n,r[n],o);"float"===n&&(n="cssFloat"),o?t.setProperty(n,a):t[n]=a}};var qr=e=>{var r=e.offsetHeight,t=e.offsetWidth,n=e.offsetLeft,o=e.offsetTop;for(e=e.offsetParent;e&&1===e.nodeType;)n+=e.offsetLeft+e.clientLeft-e.scrollLeft,o+=e.offsetTop+e.clientTop-e.scrollTop,e=e.offsetParent;return{width:t,height:r,top:o-=window.scrollY,left:n-=window.scrollX}},$r=(e,r,t)=>{var n=r||e&&e.parentNode;e&&n&&setTimeout((()=>{if(e.isConnected&&n.isConnected){var r=qr(n),o=qr(e),a=o.height,i=o.left,l=o.top,s=o.width,u=i-r.left,c=l-r.top;t(u,c,s,a,i,l)}}),0)},Vr={A:!0,BODY:!0,INPUT:!0,SELECT:!0,TEXTAREA:!0},Kr={blur(e){try{e.blur()}catch(e){}},focus(e){try{var r=e.nodeName;null==e.getAttribute("tabIndex")&&!0!==e.isContentEditable&&null==Vr[r]&&e.setAttribute("tabIndex","-1"),e.focus()}catch(e){}},measure(e,r){$r(e,null,r)},measureInWindow(e,r){e&&setTimeout((()=>{var t=_r(e),n=t.height,o=t.left,a=t.top,i=t.width;r(o,a,i,n)}),0)},measureLayout(e,r,t,n){$r(e,r,n)},updateView(e,r){for(var t in r)if(Object.prototype.hasOwnProperty.call(r,t)){var n=r[t];switch(t){case"style":Yr(e,n);break;case"class":case"className":e.setAttribute("class",n);break;case"text":case"value":e.value=n;break;default:e.setAttribute(t,n)}}},configureNextLayoutAnimation(e,r){r()},setLayoutAnimationEnabledExperimental(){}};const Jr=Kr;var Zr="__reactLayoutHandler",Qr=null;function et(e,r){var t=(I&&void 0!==window.ResizeObserver&&null==Qr&&(Qr=new window.ResizeObserver((function(e){e.forEach((e=>{var r=e.target,t=r[Zr];"function"==typeof t&&Jr.measure(r,((r,n,o,a,i,l)=>{var s={nativeEvent:{layout:{x:r,y:n,width:o,height:a,left:i,top:l}},timeStamp:Date.now()};Object.defineProperty(s.nativeEvent,"target",{enumerable:!0,get:()=>e.target}),t(s)}))}))}))),Qr);Nr((()=>{var t=e.current;null!=t&&(t[Zr]=r)}),[e,r]),Nr((()=>{var r=e.current;return null!=r&&null!=t&&("function"==typeof r[Zr]?t.observe(r):t.unobserve(r)),()=>{null!=r&&null!=t&&t.unobserve(r)}}),[e,t])}function rt(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return b.useMemo((()=>function(){for(var e=arguments.length,r=new Array(e),t=0;t<e;t++)r[t]=arguments[t];return function(e){r.forEach((r=>{null!=r&&("function"!=typeof r?"object"!=typeof r?console.error("mergeRefs cannot handle Refs of type boolean, number or string, received ref "+String(r)):r.current=e:r(e))}))}}(...r)),[...r])}var tt="function"==typeof Symbol&&"symbol"==typeof Symbol()?Symbol():Object.freeze({});function nt(e){return e.pointerEvents,e.style,(r=b.useRef(tt)).current===tt&&(r.current=e=>{null!=e&&(e.measure=r=>Jr.measure(e,r),e.measureLayout=(r,t,n)=>Jr.measureLayout(e,r,n,t),e.measureInWindow=r=>Jr.measureInWindow(e,r))}),r.current;var r}var ot=()=>{},at={},it=[];function lt(e){return e>20?e%20:e}function st(e,r){var t,n,o,a=!1,i=e.changedTouches,l=e.type,s=!0===e.metaKey,u=!0===e.shiftKey,c=i&&i[0].force||0,d=lt(i&&i[0].identifier||0),f=i&&i[0].clientX||e.clientX,p=i&&i[0].clientY||e.clientY,g=i&&i[0].pageX||e.pageX,h=i&&i[0].pageY||e.pageY,b="function"==typeof e.preventDefault?e.preventDefault.bind(e):ot,m=e.timeStamp;function v(e){return Array.prototype.slice.call(e).map((e=>({force:e.force,identifier:lt(e.identifier),get locationX(){return R(e.clientX)},get locationY(){return B(e.clientY)},pageX:e.pageX,pageY:e.pageY,target:e.target,timestamp:m})))}if(null!=i)n=v(i),o=v(e.touches);else{var y=[{force:c,identifier:d,get locationX(){return R(f)},get locationY(){return B(p)},pageX:g,pageY:h,target:e.target,timestamp:m}];n=y,o="mouseup"===l||"dragstart"===l?it:y}var S={bubbles:!0,cancelable:!0,currentTarget:null,defaultPrevented:e.defaultPrevented,dispatchConfig:at,eventPhase:e.eventPhase,isDefaultPrevented:()=>e.defaultPrevented,isPropagationStopped:()=>a,isTrusted:e.isTrusted,nativeEvent:{altKey:!1,ctrlKey:!1,metaKey:s,shiftKey:u,changedTouches:n,force:c,identifier:d,get locationX(){return R(f)},get locationY(){return B(p)},pageX:g,pageY:h,target:e.target,timestamp:m,touches:o,type:l},persist:ot,preventDefault:b,stopPropagation(){a=!0},target:e.target,timeStamp:m,touchHistory:r.touchHistory};function R(e){if(t=t||_r(S.currentTarget))return e-t.left}function B(e){if(t=t||_r(S.currentTarget))return e-t.top}return S}function ut(e){return"touchstart"===e||"mousedown"===e}function ct(e){return"touchmove"===e||"mousemove"===e}function dt(e){return"touchend"===e||"mouseup"===e||ft(e)}function ft(e){return"touchcancel"===e||"dragstart"===e}var pt="__reactResponderId";function gt(e){for(var r=[];null!=e&&e!==document.body;)r.push(e),e=e.parentNode;return r}function ht(e){return null!=e?e[pt]:null}function bt(e){return e.timeStamp||e.timestamp}function mt(e){var r=e.identifier;return null==r&&console.error("Touch object is missing identifier."),r}function vt(e){return JSON.stringify({identifier:e.identifier,pageX:e.pageX,pageY:e.pageY,timestamp:bt(e)})}function yt(e){var r=e.touchBank,t=JSON.stringify(r.slice(0,20));return r.length>20&&(t+=" (original size: "+r.length+")"),t}var St={},Rt=["onStartShouldSetResponderCapture","onStartShouldSetResponder",{bubbles:!0}],Bt=["onMoveShouldSetResponderCapture","onMoveShouldSetResponder",{bubbles:!0}],wt={touchstart:Rt,mousedown:Rt,touchmove:Bt,mousemove:Bt,scroll:["onScrollShouldSetResponderCapture","onScrollShouldSetResponder",{bubbles:!1}]},xt={id:null,idPath:null,node:null},Et=new Map,kt=!1,Ct=0,Ot={id:null,node:null,idPath:null},Tt=new class{constructor(){this._touchHistory={touchBank:[],numberActiveTouches:0,indexOfSingleActiveTouch:-1,mostRecentTimeStamp:0}}recordTouchTrack(e,r){var t=this._touchHistory;if(ct(e))r.changedTouches.forEach((e=>function(e,r){var t=r.touchBank[mt(e)];t?(t.touchActive=!0,t.previousPageX=t.currentPageX,t.previousPageY=t.currentPageY,t.previousTimeStamp=t.currentTimeStamp,t.currentPageX=e.pageX,t.currentPageY=e.pageY,t.currentTimeStamp=bt(e),r.mostRecentTimeStamp=bt(e)):console.warn("Cannot record touch move without a touch start.\n","Touch Move: "+vt(e)+"\n","Touch Bank: "+yt(r))}(e,t)));else if(ut(e))r.changedTouches.forEach((e=>function(e,r){var t=mt(e),n=r.touchBank[t];n?function(e,r){e.touchActive=!0,e.startPageX=r.pageX,e.startPageY=r.pageY,e.startTimeStamp=bt(r),e.currentPageX=r.pageX,e.currentPageY=r.pageY,e.currentTimeStamp=bt(r),e.previousPageX=r.pageX,e.previousPageY=r.pageY,e.previousTimeStamp=bt(r)}(n,e):r.touchBank[t]=function(e){return{touchActive:!0,startPageX:e.pageX,startPageY:e.pageY,startTimeStamp:bt(e),currentPageX:e.pageX,currentPageY:e.pageY,currentTimeStamp:bt(e),previousPageX:e.pageX,previousPageY:e.pageY,previousTimeStamp:bt(e)}}(e),r.mostRecentTimeStamp=bt(e)}(e,t))),t.numberActiveTouches=r.touches.length,1===t.numberActiveTouches&&(t.indexOfSingleActiveTouch=r.touches[0].identifier);else if(dt(e)&&(r.changedTouches.forEach((e=>function(e,r){var t=r.touchBank[mt(e)];t?(t.touchActive=!1,t.previousPageX=t.currentPageX,t.previousPageY=t.currentPageY,t.previousTimeStamp=t.currentTimeStamp,t.currentPageX=e.pageX,t.currentPageY=e.pageY,t.currentTimeStamp=bt(e),r.mostRecentTimeStamp=bt(e)):console.warn("Cannot record touch end without a touch start.\n","Touch End: "+vt(e)+"\n","Touch Bank: "+yt(r))}(e,t))),t.numberActiveTouches=r.touches.length,1===t.numberActiveTouches))for(var n=t.touchBank,o=0;o<n.length;o++){var a=n[o];if(null!=a&&a.touchActive){t.indexOfSingleActiveTouch=o;break}}}get touchHistory(){return this._touchHistory}};function At(e){Ot=e}function Lt(e){var r=Et.get(e);return null!=r?r:St}function Mt(e){var r=e.type,t=e.target;if("touchstart"===r&&(kt=!0),("touchmove"===r||Ct>1)&&(kt=!1),!("mousedown"===r&&kt||"mousemove"===r&&kt||"mousemove"===r&&Ct<1))if(kt&&"mouseup"===r)0===Ct&&(kt=!1);else{var n=ut(r)&&function(e){var r=e.altKey,t=e.button,n=e.buttons,o=e.ctrlKey,a=e.type,i=!1===r&&!1===o;return!!("touchstart"===a||"touchmove"===a||"mousedown"===a&&(0===t||1===n)&&i||"mousemove"===a&&1===n&&i)}(e),o=ct(r),a=dt(r),i=function(e){return"scroll"===e}(r),l=function(e){return"select"===e||"selectionchange"===e}(r),s=st(e,Tt);(n||o||a)&&(e.touches?Ct=e.touches.length:n?Ct=1:a&&(Ct=0),Tt.recordTouchTrack(r,s.nativeEvent));var u,c=function(e){for(var r=[],t=[],n=function(e){return"selectionchange"===e.type?gt(window.getSelection().anchorNode):null!=e.composedPath?e.composedPath():gt(e.target)}(e),o=0;o<n.length;o++){var a=n[o],i=ht(a);null!=i&&(r.push(i),t.push(a))}return{idPath:r,nodePath:t}}(e),d=!1;if(n||o||i&&Ct>0){var f=Ot.idPath,p=c.idPath;if(null!=f&&null!=p){var g=function(e,r){var t=e.length,n=r.length;if(0===t||0===n||e[t-1]!==r[n-1])return null;var o=e[0],a=0,i=r[0],l=0;t-n>0&&(o=e[a=t-n],t=n),n-t>0&&(i=r[l=n-t],n=t);for(var s=t;s--;){if(o===i)return o;o=e[a++],i=r[l++]}return null}(f,p);if(null!=g){var h=p.indexOf(g)+(g===Ot.id?1:0);c={idPath:p.slice(h),nodePath:c.nodePath.slice(h)}}else c=null}null!=c&&(u=function(e,r,t){var n=wt[r.type];if(null!=n){for(var o=e.idPath,a=e.nodePath,i=n[0],l=n[1],s=n[2].bubbles,u=function(e,r,n){var a=Lt(e)[n];if(null!=a&&(t.currentTarget=r,!0===a(t)))return{id:e,node:r,idPath:o.slice(o.indexOf(e))}},c=o.length-1;c>=0;c--){var d=u(o[c],a[c],i);if(null!=d)return d;if(!0===t.isPropagationStopped())return}if(s)for(var f=0;f<o.length;f++){var p=u(o[f],a[f],l);if(null!=p)return p;if(!0===t.isPropagationStopped())return}else{var g=o[0],h=a[0];if(r.target===h)return u(g,h,l)}}}(c,e,s),null!=u&&(function(e,r){var t=Ot,n=t.id,o=t.node,a=r.id,i=r.node,l=Lt(a),s=l.onResponderGrant,u=l.onResponderReject;if(e.bubbles=!1,e.cancelable=!1,e.currentTarget=i,null==n)null!=s&&(e.currentTarget=i,e.dispatchConfig.registrationName="onResponderGrant",s(e)),At(r);else{var c=Lt(n),d=c.onResponderTerminate,f=c.onResponderTerminationRequest,p=!0;null!=f&&(e.currentTarget=o,e.dispatchConfig.registrationName="onResponderTerminationRequest",!1===f(e)&&(p=!1)),p?(null!=d&&(e.currentTarget=o,e.dispatchConfig.registrationName="onResponderTerminate",d(e)),null!=s&&(e.currentTarget=i,e.dispatchConfig.registrationName="onResponderGrant",s(e)),At(r)):null!=u&&(e.currentTarget=i,e.dispatchConfig.registrationName="onResponderReject",u(e))}}(s,u),d=!0))}if(null!=Ot.id&&null!=Ot.node){var b=Ot,m=b.id,v=b.node,y=Lt(m),S=y.onResponderStart,R=y.onResponderMove,B=y.onResponderEnd,w=y.onResponderRelease,x=y.onResponderTerminate,E=y.onResponderTerminationRequest;if(s.bubbles=!1,s.cancelable=!1,s.currentTarget=v,n)null!=S&&(s.dispatchConfig.registrationName="onResponderStart",S(s));else if(o)null!=R&&(s.dispatchConfig.registrationName="onResponderMove",R(s));else{var k=ft(r)||"contextmenu"===r||"blur"===r&&t===window||"blur"===r&&t.contains(v)&&e.relatedTarget!==v||i&&0===Ct||i&&t.contains(v)&&t!==v||l&&function(e){return"selectionchange"===e.type?(t=(r=window.getSelection()).toString(),n=r.anchorNode,o=r.focusNode,a=n&&n.nodeType===window.Node.TEXT_NODE||o&&o.nodeType===window.Node.TEXT_NODE,t.length>=1&&"\n"!==t&&a):"select"===e.type;var r,t,n,o,a}(e),C=a&&!k&&!function(e,r){if(!r||0===r.length)return!1;for(var t=0;t<r.length;t++){var n=r[t].target;if(null!=n&&e.contains(n))return!0}return!1}(v,e.touches);if(a&&null!=B&&(s.dispatchConfig.registrationName="onResponderEnd",B(s)),C&&(null!=w&&(s.dispatchConfig.registrationName="onResponderRelease",w(s)),At(xt)),k){var O=!0;"contextmenu"!==r&&"scroll"!==r&&"selectionchange"!==r||(d?O=!1:null!=E&&(s.dispatchConfig.registrationName="onResponderTerminationRequest",!1===E(s)&&(O=!1))),O&&(null!=x&&(s.dispatchConfig.registrationName="onResponderTerminate",x(s)),At(xt),kt=!1,Ct=0)}}}}}var Wt=["blur","scroll"],Pt=["mousedown","mousemove","mouseup","dragstart","touchstart","touchmove","touchend","touchcancel","contextmenu","select","selectionchange"];function It(e){Ot.id===e&&function(){var e=Ot,r=e.id,t=e.node;if(null!=r&&null!=t){var n=Lt(r).onResponderTerminate;if(null!=n){var o=st({},Tt);o.currentTarget=t,n(o)}At(xt)}kt=!1,Ct=0}(),Et.has(e)&&Et.delete(e)}var zt={},Ft=0;function Xt(e,r){void 0===r&&(r=zt);var t,n,o=(t=()=>Ft++,null==(n=b.useRef(null)).current&&(n.current=t()),n.current),a=b.useRef(!1);b.useEffect((()=>(I&&null==window.__reactResponderSystemActive&&(window.addEventListener("blur",Mt),Pt.forEach((e=>{document.addEventListener(e,Mt)})),Wt.forEach((e=>{document.addEventListener(e,Mt,!0)})),window.__reactResponderSystemActive=!0),()=>{It(o)})),[o]),b.useEffect((()=>{var t=r,n=t.onMoveShouldSetResponder,i=t.onMoveShouldSetResponderCapture,l=t.onScrollShouldSetResponder,s=t.onScrollShouldSetResponderCapture,u=t.onSelectionChangeShouldSetResponder,c=t.onSelectionChangeShouldSetResponderCapture,d=t.onStartShouldSetResponder,f=t.onStartShouldSetResponderCapture,p=null!=n||null!=i||null!=l||null!=s||null!=u||null!=c||null!=d||null!=f,g=e.current;p?(function(e,r,t){!function(e,r){null!=e&&(e[pt]=r)}(r,e),Et.set(e,t)}(o,g,r),a.current=!0):a.current&&(It(o),a.current=!1)}),[r,e,o]),b.useDebugValue({isResponder:e.current===Ot.node}),b.useDebugValue(r)}const Dt=(0,b.createContext)(!1);var Nt=["hrefAttrs","numberOfLines","onClick","onLayout","onPress","onMoveShouldSetResponder","onMoveShouldSetResponderCapture","onResponderEnd","onResponderGrant","onResponderMove","onResponderReject","onResponderRelease","onResponderStart","onResponderTerminate","onResponderTerminationRequest","onScrollShouldSetResponder","onScrollShouldSetResponderCapture","onSelectionChangeShouldSetResponder","onSelectionChangeShouldSetResponderCapture","onStartShouldSetResponder","onStartShouldSetResponderCapture","selectable"],_t=Object.assign({},Lr,Mr,Wr,Pr,Ir,zr,Fr,Xr,{href:!0,lang:!0,pointerEvents:!0}),Ht=b.forwardRef(((e,r)=>{var t=e.hrefAttrs,n=e.numberOfLines,o=e.onClick,a=e.onLayout,i=e.onPress,l=e.onMoveShouldSetResponder,s=e.onMoveShouldSetResponderCapture,u=e.onResponderEnd,c=e.onResponderGrant,d=e.onResponderMove,f=e.onResponderReject,p=e.onResponderRelease,g=e.onResponderStart,h=e.onResponderTerminate,m=e.onResponderTerminationRequest,v=e.onScrollShouldSetResponder,y=e.onScrollShouldSetResponderCapture,S=e.onSelectionChangeShouldSetResponder,R=e.onSelectionChangeShouldSetResponderCapture,B=e.onStartShouldSetResponder,w=e.onStartShouldSetResponderCapture,x=e.selectable,E=k(e,Nt),C=b.useContext(Dt),O=b.useRef(null),T=Tr().direction;et(O,a),Xt(O,{onMoveShouldSetResponder:l,onMoveShouldSetResponderCapture:s,onResponderEnd:u,onResponderGrant:c,onResponderMove:d,onResponderReject:f,onResponderRelease:p,onResponderStart:g,onResponderTerminate:h,onResponderTerminationRequest:m,onScrollShouldSetResponder:v,onScrollShouldSetResponderCapture:y,onSelectionChangeShouldSetResponder:S,onSelectionChangeShouldSetResponderCapture:R,onStartShouldSetResponder:B,onStartShouldSetResponderCapture:w});var A=b.useCallback((e=>{null!=o?o(e):null!=i&&(e.stopPropagation(),i(e))}),[o,i]),L=C?"span":"div",M=null!=e.lang?Cr(e.lang):null,W=e.dir||M,P=W||T,I=(e=>Dr(e,_t))(E);if(I.dir=W,C||(I.dir=null!=W?W:"auto"),(o||i)&&(I.onClick=A),I.style=[null!=n&&n>1&&{WebkitLineClamp:n},!0===C?Gt.textHasAncestor$raw:Gt.text$raw,1===n&&Gt.textOneLine,null!=n&&n>1&&Gt.textMultiLine,e.style,!0===x&&Gt.selectable,!1===x&&Gt.notSelectable,i&&Gt.pressable],null!=e.href&&(L="a",null!=t)){var z=t.download,F=t.rel,X=t.target;null!=z&&(I.download=z),null!=F&&(I.rel=F),"string"==typeof X&&(I.target="_"!==X.charAt(0)?"_"+X:X)}var D=rt(O,nt(I),r);I.ref=D;var N=Ar(L,I,{writingDirection:P});return C?N:b.createElement(Dt.Provider,{value:!0},N)}));Ht.displayName="Text";var jt={backgroundColor:"transparent",border:"0 solid black",boxSizing:"border-box",color:"black",display:"inline",font:"14px System",listStyle:"none",margin:0,padding:0,position:"relative",textAlign:"start",textDecoration:"none",whiteSpace:"pre-wrap",wordWrap:"break-word"},Gt=ir.create({text$raw:jt,textHasAncestor$raw:E(E({},jt),{},{color:"inherit",font:"inherit",textAlign:"inherit",whiteSpace:"inherit"}),textOneLine:{maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap",wordWrap:"normal"},textMultiLine:{display:"-webkit-box",maxWidth:"100%",overflow:"hidden",textOverflow:"ellipsis",WebkitBoxOrient:"vertical"},notSelectable:{userSelect:"none"},selectable:{userSelect:"text"},pressable:{cursor:"pointer"}});const Ut=Ht;let Yt=function(e){return e[e.TRANSPARENT=0]="TRANSPARENT",e[e.FOREGROUND_100=1]="FOREGROUND_100",e[e.FOREGROUND_200=2]="FOREGROUND_200",e[e.FOREGROUND_300=3]="FOREGROUND_300",e[e.FOREGROUND_400=4]="FOREGROUND_400",e[e.FOREGROUND_500=5]="FOREGROUND_500",e[e.FOREGROUND_600=6]="FOREGROUND_600",e[e.FOREGROUND_700=7]="FOREGROUND_700",e[e.FOREGROUND_800=8]="FOREGROUND_800",e[e.FOREGROUND_900=9]="FOREGROUND_900",e}({}),qt=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}({}),$t=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}({}),Vt=function(e){return e.HEADING="heading",e.PARAGRAPH="paragraph",e}({}),Kt=function(e){return e[e.LEFT=0]="LEFT",e[e.CENTER=1]="CENTER",e[e.RIGHT=2]="RIGHT",e}({}),Jt=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}({}),Zt=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}({});const Qt=[Zt.H1,Zt.H2,Zt.H3,Zt.H4,Zt.H5,Zt.H6],en=ir.create({textAlignLeft:{textAlign:"left"},textAlignCenter:{textAlign:"center"},textAlignRight:{textAlign:"right"},textColorTransparent:{color:"transparent"}}),rn=new Map,tn=({type:e,align:r=Kt.LEFT,fontWeight:t=qt.REGULAR,fontSize:n=$t.MD,lineHeight:o=Jt.NONE,color:a=Yt.FOREGROUND_800,children:i})=>{const l=R(),s=lr(),u=(0,b.useMemo)((()=>{const e=((e,r)=>{const t=[e,r].join("-");if(rn.has(t))return rn.get(t);const n=ir.create({textLineHeight:{lineHeight:e*r}});return rn.set(t,n),n})((()=>{switch(n){case $t.X2S:return l.fontSizeBaseX2S;case $t.XS:return l.fontSizeBaseXS;case $t.SM:return l.fontSizeBaseSM;case $t.MD:return l.fontSizeBaseMD;case $t.LG:return l.fontSizeBaseLG;case $t.XL:return l.fontSizeBaseXL;case $t.X2L:return l.fontSizeBaseX2L;case $t.X3L:return l.fontSizeBaseX3L;case $t.X4L:return l.fontSizeBaseX4L;case $t.X5L:return l.fontSizeBaseX5L}})(),(()=>{switch(o){case Jt.NONE:return l.lineHeightBaseNone;case Jt.TIGHT:return l.lineHeightBaseTight;case Jt.SNUG:return l.lineHeightBaseSnug;case Jt.NORMAL:return l.lineHeightBaseNormal;case Jt.RELAXED:return l.lineHeightBaseRelaxed;case Jt.LOOSE:return l.lineHeightBaseLoose}})());return e.textLineHeight}),[n,o,l]);return(0,v.jsx)(Ut,{role:Zt.P===e?Vt.PARAGRAPH:Qt.includes(e)?Vt.HEADING:void 0,"aria-level":(()=>{if(Qt.includes(e)){if(e===Zt.H1)return 1;if(e===Zt.H2)return 2;if(e===Zt.H3)return 3;if(e===Zt.H4)return 4;if(e===Zt.H5)return 5;if(e===Zt.H6)return 6}})(),style:[s.fontFamilyBase,(()=>{switch(r){case Kt.LEFT:return en.textAlignLeft;case Kt.CENTER:return en.textAlignCenter;case Kt.RIGHT:return en.textAlignRight}})(),(()=>{switch(t){case qt.THIN:return s.fontWeightBaseThin;case qt.EXTRA_LIGHT:return s.fontWeightBaseExtraLight;case qt.LIGHT:return s.fontWeightBaseLight;case qt.REGULAR:return s.fontWeightBaseRegular;case qt.MEDIUM:return s.fontWeightBaseMedium;case qt.SEMIBOLD:return s.fontWeightBaseSemibold;case qt.BOLD:return s.fontWeightBaseBold;case qt.EXTRA_BOLD:return s.fontWeightBaseExtraBold;case qt.BLACK:return s.fontWeightBaseBlack}})(),(()=>{switch(n){case $t.X2S:return s.fontSizeBaseX2S;case $t.XS:return s.fontSizeBaseXS;case $t.SM:return s.fontSizeBaseSM;case $t.MD:return s.fontSizeBaseMD;case $t.LG:return s.fontSizeBaseLG;case $t.XL:return s.fontSizeBaseXL;case $t.X2L:return s.fontSizeBaseX2L;case $t.X3L:return s.fontSizeBaseX3L;case $t.X4L:return s.fontSizeBaseX4L;case $t.X5L:return s.fontSizeBaseX5L}})(),u,(()=>{switch(a){case Yt.TRANSPARENT:return en.textColorTransparent;case Yt.FOREGROUND_100:return s.colorForegroundBase100;case Yt.FOREGROUND_200:return s.colorForegroundBase200;case Yt.FOREGROUND_300:return s.colorForegroundBase300;case Yt.FOREGROUND_400:return s.colorForegroundBase400;case Yt.FOREGROUND_500:return s.colorForegroundBase500;case Yt.FOREGROUND_600:return s.colorForegroundBase600;case Yt.FOREGROUND_700:return s.colorForegroundBase700;case Yt.FOREGROUND_800:return s.colorForegroundBase800;case Yt.FOREGROUND_900:return s.colorForegroundBase900}})()],children:i})};tn.Type=Zt,tn.Align=Kt,tn.FontWeight=qt,tn.FontSize=$t,tn.LineHeight=Jt,tn.Color=Yt;var nn=o(646),on=o.n(nn),an=o(514);const ln=an.unmountComponentAtNode;function sn(){return sn=Object.assign?Object.assign.bind():function(e){for(var r=1;r<arguments.length;r++){var t=arguments[r];for(var n in t)({}).hasOwnProperty.call(t,n)&&(e[n]=t[n])}return e},sn.apply(null,arguments)}var un=["hrefAttrs","onLayout","onMoveShouldSetResponder","onMoveShouldSetResponderCapture","onResponderEnd","onResponderGrant","onResponderMove","onResponderReject","onResponderRelease","onResponderStart","onResponderTerminate","onResponderTerminationRequest","onScrollShouldSetResponder","onScrollShouldSetResponderCapture","onSelectionChangeShouldSetResponder","onSelectionChangeShouldSetResponderCapture","onStartShouldSetResponder","onStartShouldSetResponderCapture"],cn=Object.assign({},Lr,Mr,Wr,Pr,Ir,zr,Fr,Xr,{href:!0,lang:!0,onScroll:!0,onWheel:!0,pointerEvents:!0}),dn=b.forwardRef(((e,r)=>{var t=e.hrefAttrs,n=e.onLayout,o=e.onMoveShouldSetResponder,a=e.onMoveShouldSetResponderCapture,i=e.onResponderEnd,l=e.onResponderGrant,s=e.onResponderMove,u=e.onResponderReject,c=e.onResponderRelease,d=e.onResponderStart,f=e.onResponderTerminate,p=e.onResponderTerminationRequest,g=e.onScrollShouldSetResponder,h=e.onScrollShouldSetResponderCapture,m=e.onSelectionChangeShouldSetResponder,v=e.onSelectionChangeShouldSetResponderCapture,y=e.onStartShouldSetResponder,S=e.onStartShouldSetResponderCapture,R=k(e,un),B=b.useContext(Dt),w=b.useRef(null),x=Tr().direction;et(w,n),Xt(w,{onMoveShouldSetResponder:o,onMoveShouldSetResponderCapture:a,onResponderEnd:i,onResponderGrant:l,onResponderMove:s,onResponderReject:u,onResponderRelease:c,onResponderStart:d,onResponderTerminate:f,onResponderTerminationRequest:p,onScrollShouldSetResponder:g,onScrollShouldSetResponderCapture:h,onSelectionChangeShouldSetResponder:m,onSelectionChangeShouldSetResponderCapture:v,onStartShouldSetResponder:y,onStartShouldSetResponderCapture:S});var E="div",C=null!=e.lang?Cr(e.lang):null,O=e.dir||C,T=O||x,A=(e=>Dr(e,cn))(R);if(A.dir=O,A.style=[fn.view$raw,B&&fn.inline,e.style],null!=e.href&&(E="a",null!=t)){var L=t.download,M=t.rel,W=t.target;null!=L&&(A.download=L),null!=M&&(A.rel=M),"string"==typeof W&&(A.target="_"!==W.charAt(0)?"_"+W:W)}var P=rt(w,nt(A),r);return A.ref=P,Ar(E,A,{writingDirection:T})}));dn.displayName="View";var fn=ir.create({view$raw:{alignItems:"stretch",backgroundColor:"transparent",border:"0 solid black",boxSizing:"border-box",display:"flex",flexBasis:"auto",flexDirection:"column",flexShrink:0,listStyle:"none",margin:0,minHeight:0,minWidth:0,padding:0,position:"relative",textDecoration:"none",zIndex:0},inline:{display:"inline-flex"}});const pn=dn;var gn=b.createContext(null),hn=b.forwardRef(((e,r)=>{var t=e.children,n=e.WrapperComponent,o=b.createElement(pn,{children:t,key:1,style:mn.appContainer});return n&&(o=b.createElement(n,null,o)),b.createElement(gn.Provider,{value:e.rootTag},b.createElement(pn,{ref:r,style:mn.appContainer},o))}));hn.displayName="AppContainer";const bn=hn;var mn=ir.create({appContainer:{flex:1,pointerEvents:"box-none"}}),vn=o(338);function yn(e,r){return _e(r),(0,vn.c)(r,e)}function Sn(e,r){_e(r);var t=(0,vn.H)(r);return t.render(e),t}function Rn(e,r,t){return _e(r),(0,an.hydrate)(e,r,t),{unmount:function(){return ln(r)}}}function Bn(e,r,t){return _e(r),(0,an.render)(e,r,t),{unmount:function(){return ln(r)}}}var wn,xn={},En={},kn=e=>e();class Cn{static getAppKeys(){return Object.keys(En)}static getApplication(e,r){return on()(En[e]&&En[e].getApplication,"Application "+e+" has not been registered. This is either due to an import error during initialization or failure to call AppRegistry.registerComponent."),En[e].getApplication(r)}static registerComponent(e,r){return En[e]={getApplication:e=>{return t=kn(r),n=e?e.initialProps:xn,o=wn&&wn(e),{element:m().createElement(bn,{WrapperComponent:o,rootTag:{}},m().createElement(t,n)),getStyleElement:e=>{var r=ir.getSheet();return m().createElement("style",sn({},e,{dangerouslySetInnerHTML:{__html:r.textContent},id:r.id}))}};var t,n,o},run:e=>{return t=kn(r),n=wn&&wn(e),o=e.callback,i=(a={hydrate:e.hydrate||!1,initialProps:e.initialProps||xn,mode:e.mode||"concurrent",rootTag:e.rootTag}).initialProps,l=a.mode,s=a.rootTag,u=a.hydrate?"concurrent"===l?yn:Rn:"concurrent"===l?Sn:Bn,on()(s,"Expect to have a valid rootTag, instead got ",s),u(m().createElement(bn,{WrapperComponent:n,ref:o,rootTag:s},m().createElement(t,i)),s);var t,n,o,a,i,l,s,u}},e}static registerConfig(e){e.forEach((e=>{var r=e.appKey,t=e.component,n=e.run;n?Cn.registerRunnable(r,n):(on()(t,"No component provider passed in"),Cn.registerComponent(r,t))}))}static registerRunnable(e,r){return En[e]={run:r},e}static runApplication(e,r){return on()(En[e]&&En[e].run,'Application "'+e+'" has not been registered. This is either due to an import error during initialization or failure to call AppRegistry.registerComponent.'),En[e].run(r)}static setComponentProviderInstrumentationHook(e){kn=e}static setWrapperComponentProvider(e){wn=e}static unmountApplicationComponentAtRootTag(e){ln(e)}}const On=(e,r="main")=>{const t=Cn;t.registerComponent(r,(()=>e));const n=t.getApplication(r,null).getStyleElement();if((0,b.isValidElement)(n))return n};return a})()));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "creactive",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "main": "build/index.js",
5
5
  "files": [
6
6
  "build/**"