@tamagui/checkbox 1.88.8 → 1.88.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +15 -15
- package/types/Checkbox.d.ts +27 -61
- package/types/Checkbox.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/checkbox",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.9",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -24,19 +24,19 @@
|
|
|
24
24
|
"clean:build": "tamagui-build clean:build"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tamagui/compose-refs": "1.88.
|
|
28
|
-
"@tamagui/constants": "1.88.
|
|
29
|
-
"@tamagui/core": "1.88.
|
|
30
|
-
"@tamagui/create-context": "1.88.
|
|
31
|
-
"@tamagui/focusable": "1.88.
|
|
32
|
-
"@tamagui/font-size": "1.88.
|
|
33
|
-
"@tamagui/get-token": "1.88.
|
|
34
|
-
"@tamagui/helpers": "1.88.
|
|
35
|
-
"@tamagui/helpers-tamagui": "1.88.
|
|
36
|
-
"@tamagui/label": "1.88.
|
|
37
|
-
"@tamagui/stacks": "1.88.
|
|
38
|
-
"@tamagui/use-controllable-state": "1.88.
|
|
39
|
-
"@tamagui/use-previous": "1.88.
|
|
27
|
+
"@tamagui/compose-refs": "1.88.9",
|
|
28
|
+
"@tamagui/constants": "1.88.9",
|
|
29
|
+
"@tamagui/core": "1.88.9",
|
|
30
|
+
"@tamagui/create-context": "1.88.9",
|
|
31
|
+
"@tamagui/focusable": "1.88.9",
|
|
32
|
+
"@tamagui/font-size": "1.88.9",
|
|
33
|
+
"@tamagui/get-token": "1.88.9",
|
|
34
|
+
"@tamagui/helpers": "1.88.9",
|
|
35
|
+
"@tamagui/helpers-tamagui": "1.88.9",
|
|
36
|
+
"@tamagui/label": "1.88.9",
|
|
37
|
+
"@tamagui/stacks": "1.88.9",
|
|
38
|
+
"@tamagui/use-controllable-state": "1.88.9",
|
|
39
|
+
"@tamagui/use-previous": "1.88.9"
|
|
40
40
|
},
|
|
41
41
|
"exports": {
|
|
42
42
|
"./package.json": "./package.json",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"react": "*"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@tamagui/build": "1.88.
|
|
54
|
+
"@tamagui/build": "1.88.9",
|
|
55
55
|
"react": "^18.2.0"
|
|
56
56
|
},
|
|
57
57
|
"publishConfig": {
|
package/types/Checkbox.d.ts
CHANGED
|
@@ -44,8 +44,8 @@ export type CheckboxIndicatorProps = CheckboxIndicatorFrameProps & {
|
|
|
44
44
|
};
|
|
45
45
|
export declare const CheckboxFrame: import("@tamagui/core").TamaguiComponent<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase, {
|
|
46
46
|
size?: SizeTokens | undefined;
|
|
47
|
-
elevation?: number | SizeTokens | undefined;
|
|
48
47
|
disabled?: boolean | undefined;
|
|
48
|
+
elevation?: number | SizeTokens | undefined;
|
|
49
49
|
transparent?: boolean | undefined;
|
|
50
50
|
fullscreen?: boolean | undefined;
|
|
51
51
|
circular?: boolean | undefined;
|
|
@@ -80,27 +80,10 @@ type CheckboxExtraProps = {
|
|
|
80
80
|
sizeAdjust?: number;
|
|
81
81
|
};
|
|
82
82
|
export type CheckboxProps = Omit<CheckboxFrameProps, 'checked' | 'defaultChecked'> & CheckboxExtraProps;
|
|
83
|
-
export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").
|
|
83
|
+
export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
84
84
|
size?: SizeTokens | undefined;
|
|
85
|
-
elevation?: number | SizeTokens | undefined;
|
|
86
85
|
disabled?: boolean | undefined;
|
|
87
|
-
transparent?: boolean | undefined;
|
|
88
|
-
fullscreen?: boolean | undefined;
|
|
89
|
-
circular?: boolean | undefined;
|
|
90
|
-
hoverTheme?: boolean | undefined;
|
|
91
|
-
pressTheme?: boolean | undefined;
|
|
92
|
-
focusTheme?: boolean | undefined;
|
|
93
|
-
elevate?: boolean | undefined;
|
|
94
|
-
bordered?: number | boolean | undefined;
|
|
95
|
-
backgrounded?: boolean | undefined;
|
|
96
|
-
radiused?: boolean | undefined;
|
|
97
|
-
padded?: boolean | undefined;
|
|
98
|
-
chromeless?: boolean | "all" | undefined;
|
|
99
|
-
unstyled?: boolean | undefined;
|
|
100
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<Omit<import("@tamagui/core").StackStyleBase, keyof CheckboxExtraProps>, {
|
|
101
|
-
size?: SizeTokens | undefined;
|
|
102
86
|
elevation?: number | SizeTokens | undefined;
|
|
103
|
-
disabled?: boolean | undefined;
|
|
104
87
|
transparent?: boolean | undefined;
|
|
105
88
|
fullscreen?: boolean | undefined;
|
|
106
89
|
circular?: boolean | undefined;
|
|
@@ -114,27 +97,10 @@ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
114
97
|
padded?: boolean | undefined;
|
|
115
98
|
chromeless?: boolean | "all" | undefined;
|
|
116
99
|
unstyled?: boolean | undefined;
|
|
117
|
-
}>> & import("@tamagui/core").
|
|
100
|
+
}>, keyof CheckboxExtraProps> & CheckboxExtraProps & React.RefAttributes<TamaguiElement>> & import("@tamagui/core").StaticComponentObject<Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
118
101
|
size?: SizeTokens | undefined;
|
|
119
|
-
elevation?: number | SizeTokens | undefined;
|
|
120
102
|
disabled?: boolean | undefined;
|
|
121
|
-
transparent?: boolean | undefined;
|
|
122
|
-
fullscreen?: boolean | undefined;
|
|
123
|
-
circular?: boolean | undefined;
|
|
124
|
-
hoverTheme?: boolean | undefined;
|
|
125
|
-
pressTheme?: boolean | undefined;
|
|
126
|
-
focusTheme?: boolean | undefined;
|
|
127
|
-
elevate?: boolean | undefined;
|
|
128
|
-
bordered?: number | boolean | undefined;
|
|
129
|
-
backgrounded?: boolean | undefined;
|
|
130
|
-
radiused?: boolean | undefined;
|
|
131
|
-
padded?: boolean | undefined;
|
|
132
|
-
chromeless?: boolean | "all" | undefined;
|
|
133
|
-
unstyled?: boolean | undefined;
|
|
134
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<Omit<import("@tamagui/core").StackStyleBase, keyof CheckboxExtraProps>, {
|
|
135
|
-
size?: SizeTokens | undefined;
|
|
136
103
|
elevation?: number | SizeTokens | undefined;
|
|
137
|
-
disabled?: boolean | undefined;
|
|
138
104
|
transparent?: boolean | undefined;
|
|
139
105
|
fullscreen?: boolean | undefined;
|
|
140
106
|
circular?: boolean | undefined;
|
|
@@ -148,27 +114,10 @@ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
148
114
|
padded?: boolean | undefined;
|
|
149
115
|
chromeless?: boolean | "all" | undefined;
|
|
150
116
|
unstyled?: boolean | undefined;
|
|
151
|
-
}
|
|
117
|
+
}>, keyof CheckboxExtraProps> & CheckboxExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & CheckboxExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
152
118
|
size?: SizeTokens | undefined;
|
|
153
|
-
elevation?: number | SizeTokens | undefined;
|
|
154
119
|
disabled?: boolean | undefined;
|
|
155
|
-
transparent?: boolean | undefined;
|
|
156
|
-
fullscreen?: boolean | undefined;
|
|
157
|
-
circular?: boolean | undefined;
|
|
158
|
-
hoverTheme?: boolean | undefined;
|
|
159
|
-
pressTheme?: boolean | undefined;
|
|
160
|
-
focusTheme?: boolean | undefined;
|
|
161
|
-
elevate?: boolean | undefined;
|
|
162
|
-
bordered?: number | boolean | undefined;
|
|
163
|
-
backgrounded?: boolean | undefined;
|
|
164
|
-
radiused?: boolean | undefined;
|
|
165
|
-
padded?: boolean | undefined;
|
|
166
|
-
chromeless?: boolean | "all" | undefined;
|
|
167
|
-
unstyled?: boolean | undefined;
|
|
168
|
-
}>> & React.RefAttributes<TamaguiElement>> & import("@tamagui/core").StaticComponentObject<import("@tamagui/core").TamaDefer, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & CheckboxExtraProps, Omit<import("@tamagui/core").StackStyleBase, keyof CheckboxExtraProps>, {
|
|
169
|
-
size?: SizeTokens | undefined;
|
|
170
120
|
elevation?: number | SizeTokens | undefined;
|
|
171
|
-
disabled?: boolean | undefined;
|
|
172
121
|
transparent?: boolean | undefined;
|
|
173
122
|
fullscreen?: boolean | undefined;
|
|
174
123
|
circular?: boolean | undefined;
|
|
@@ -183,10 +132,27 @@ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
183
132
|
chromeless?: boolean | "all" | undefined;
|
|
184
133
|
unstyled?: boolean | undefined;
|
|
185
134
|
}, {}> & Omit<{}, "staticConfig" | "extractable" | "styleable"> & {
|
|
186
|
-
__tama: [import("@tamagui/core").
|
|
135
|
+
__tama: [Omit<import("@tamagui/core").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/core").StackStyleBase & {
|
|
187
136
|
size?: SizeTokens | undefined;
|
|
137
|
+
disabled?: boolean | undefined;
|
|
188
138
|
elevation?: number | SizeTokens | undefined;
|
|
139
|
+
transparent?: boolean | undefined;
|
|
140
|
+
fullscreen?: boolean | undefined;
|
|
141
|
+
circular?: boolean | undefined;
|
|
142
|
+
hoverTheme?: boolean | undefined;
|
|
143
|
+
pressTheme?: boolean | undefined;
|
|
144
|
+
focusTheme?: boolean | undefined;
|
|
145
|
+
elevate?: boolean | undefined;
|
|
146
|
+
bordered?: number | boolean | undefined;
|
|
147
|
+
backgrounded?: boolean | undefined;
|
|
148
|
+
radiused?: boolean | undefined;
|
|
149
|
+
padded?: boolean | undefined;
|
|
150
|
+
chromeless?: boolean | "all" | undefined;
|
|
151
|
+
unstyled?: boolean | undefined;
|
|
152
|
+
}>, keyof CheckboxExtraProps> & CheckboxExtraProps, TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & CheckboxExtraProps, import("@tamagui/core").StackStyleBase, {
|
|
153
|
+
size?: SizeTokens | undefined;
|
|
189
154
|
disabled?: boolean | undefined;
|
|
155
|
+
elevation?: number | SizeTokens | undefined;
|
|
190
156
|
transparent?: boolean | undefined;
|
|
191
157
|
fullscreen?: boolean | undefined;
|
|
192
158
|
circular?: boolean | undefined;
|
|
@@ -202,7 +168,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
202
168
|
unstyled?: boolean | undefined;
|
|
203
169
|
}, {}];
|
|
204
170
|
} & {
|
|
205
|
-
Indicator: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, keyof import("@tamagui/core").StackStyleBase> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
171
|
+
Indicator: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps, "elevation" | keyof import("@tamagui/core").StackStyleBase | "transparent" | "fullscreen" | "circular" | "hoverTheme" | "pressTheme" | "focusTheme" | "elevate" | "bordered" | "backgrounded" | "radiused" | "padded" | "chromeless"> & import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
206
172
|
elevation?: number | SizeTokens | undefined;
|
|
207
173
|
transparent?: boolean | undefined;
|
|
208
174
|
fullscreen?: boolean | undefined;
|
|
@@ -216,7 +182,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
216
182
|
radiused?: boolean | undefined;
|
|
217
183
|
padded?: boolean | undefined;
|
|
218
184
|
chromeless?: boolean | "all" | undefined;
|
|
219
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
185
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
220
186
|
elevation?: number | SizeTokens | undefined;
|
|
221
187
|
transparent?: boolean | undefined;
|
|
222
188
|
fullscreen?: boolean | undefined;
|
|
@@ -230,7 +196,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
230
196
|
radiused?: boolean | undefined;
|
|
231
197
|
padded?: boolean | undefined;
|
|
232
198
|
chromeless?: boolean | "all" | undefined;
|
|
233
|
-
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
199
|
+
}>> & import("@tamagui/core").WithPseudoProps<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
234
200
|
elevation?: number | SizeTokens | undefined;
|
|
235
201
|
transparent?: boolean | undefined;
|
|
236
202
|
fullscreen?: boolean | undefined;
|
|
@@ -244,7 +210,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
244
210
|
radiused?: boolean | undefined;
|
|
245
211
|
padded?: boolean | undefined;
|
|
246
212
|
chromeless?: boolean | "all" | undefined;
|
|
247
|
-
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase
|
|
213
|
+
}> & import("@tamagui/core").WithShorthands<import("@tamagui/core").WithThemeValues<import("@tamagui/core").StackStyleBase & {
|
|
248
214
|
elevation?: number | SizeTokens | undefined;
|
|
249
215
|
transparent?: boolean | undefined;
|
|
250
216
|
fullscreen?: boolean | undefined;
|
|
@@ -258,7 +224,7 @@ export declare const Checkbox: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
258
224
|
radiused?: boolean | undefined;
|
|
259
225
|
padded?: boolean | undefined;
|
|
260
226
|
chromeless?: boolean | "all" | undefined;
|
|
261
|
-
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase
|
|
227
|
+
}>>> & import("@tamagui/core").WithMediaProps<import("@tamagui/core").WithThemeShorthandsAndPseudos<import("@tamagui/core").StackStyleBase & {
|
|
262
228
|
elevation?: number | SizeTokens | undefined;
|
|
263
229
|
transparent?: boolean | undefined;
|
|
264
230
|
fullscreen?: boolean | undefined;
|
package/types/Checkbox.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../src/Checkbox.tsx"],"names":[],"mappings":"AAKA,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EAMf,MAAM,eAAe,CAAA;AAYtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,eAAO,MAAM,qBAAqB;;;EAGhC,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,eAAe,CAAA;AAEpD,wBAAgB,eAAe,CAAC,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,IAAI,eAAe,CAElF;AAED,wBAAgB,QAAQ,CAAC,OAAO,EAAE,YAAY,6CAE7C;AAED,KAAK,UAAU,GAAG,GAAG,CAAA;AACrB,UAAU,gBAAiB,SAAQ,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC;IAC5D,OAAO,EAAE,YAAY,CAAA;IACrB,OAAO,EAAE,WAAW,GAAG,IAAI,CAAA;IAC3B,OAAO,EAAE,OAAO,CAAA;IAEhB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,eAAO,MAAM,WAAW,UAAW,gBAAgB,gBAkDlD,CAAA;AAQD,QAAA,MAAM,sBAAsB;;;;;;;;;;;;;;MAI1B,CAAA;AAEF,KAAK,2BAA2B,GAAG,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAE1E,MAAM,MAAM,sBAAsB,GAAG,2BAA2B,GAAG;IACjE;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;IACjB;;OAEG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAA;CAC5B,CAAA;AA4DD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;MAiExB,CAAA;AAGF,QAAA,MAA8B,mBAAmB,+CAAqC,CAAA;AAUtF,KAAK,kBAAkB,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,CAAA;AAExD,KAAK,kBAAkB,GAAG;IACxB,OAAO,CAAC,EAAE,YAAY,CAAA;IACtB,cAAc,CAAC,EAAE,YAAY,CAAA;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;;OAGG;IACH,eAAe,CAAC,CAAC,OAAO,EAAE,YAAY,GAAG,IAAI,CAAA;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC,kBAAkB,EAAE,SAAS,GAAG,gBAAgB,CAAC,GAChF,kBAAkB,CAAA;AA6IpB,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"Checkbox.d.ts","sourceRoot":"","sources":["../src/Checkbox.tsx"],"names":[],"mappings":"AAKA,OAAO,EACL,QAAQ,EACR,UAAU,EACV,cAAc,EAMf,MAAM,eAAe,CAAA;AAYtB,OAAO,KAAK,KAAK,MAAM,OAAO,CAAA;AAE9B,eAAO,MAAM,qBAAqB;;;EAGhC,CAAA;AAEF,MAAM,MAAM,YAAY,GAAG,OAAO,GAAG,eAAe,CAAA;AAEpD,wBAAgB,eAAe,CAAC,OAAO,CAAC,EAAE,YAAY,GAAG,OAAO,IAAI,eAAe,CAElF;AAED,wBAAgB,QAAQ,CAAC,OAAO,EAAE,YAAY,6CAE7C;AAED,KAAK,UAAU,GAAG,GAAG,CAAA;AACrB,UAAU,gBAAiB,SAAQ,IAAI,CAAC,UAAU,EAAE,SAAS,CAAC;IAC5D,OAAO,EAAE,YAAY,CAAA;IACrB,OAAO,EAAE,WAAW,GAAG,IAAI,CAAA;IAC3B,OAAO,EAAE,OAAO,CAAA;IAEhB,QAAQ,CAAC,EAAE,OAAO,CAAA;CACnB;AAED,eAAO,MAAM,WAAW,UAAW,gBAAgB,gBAkDlD,CAAA;AAQD,QAAA,MAAM,sBAAsB;;;;;;;;;;;;;;MAI1B,CAAA;AAEF,KAAK,2BAA2B,GAAG,QAAQ,CAAC,OAAO,sBAAsB,CAAC,CAAA;AAE1E,MAAM,MAAM,sBAAsB,GAAG,2BAA2B,GAAG;IACjE;;;OAGG;IACH,UAAU,CAAC,EAAE,IAAI,CAAA;IACjB;;OAEG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAA;CAC5B,CAAA;AA4DD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;MAiExB,CAAA;AAGF,QAAA,MAA8B,mBAAmB,+CAAqC,CAAA;AAUtF,KAAK,kBAAkB,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,CAAA;AAExD,KAAK,kBAAkB,GAAG;IACxB,OAAO,CAAC,EAAE,YAAY,CAAA;IACtB,cAAc,CAAC,EAAE,YAAY,CAAA;IAC7B,QAAQ,CAAC,EAAE,OAAO,CAAA;IAClB;;;OAGG;IACH,eAAe,CAAC,CAAC,OAAO,EAAE,YAAY,GAAG,IAAI,CAAA;IAC7C,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,MAAM,CAAA;IACd,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB,UAAU,CAAC,EAAE,MAAM,CAAA;CACpB,CAAA;AAED,MAAM,MAAM,aAAa,GAAG,IAAI,CAAC,kBAAkB,EAAE,SAAS,GAAG,gBAAgB,CAAC,GAChF,kBAAkB,CAAA;AA6IpB,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QArTnB;;;WAGG;;QAEH;;WAEG;;;;;;;;;;CAiTH,CAAA;AAEF,OAAO,EAAE,mBAAmB,EAAE,CAAA"}
|