@tamagui/list-item 1.88.7 → 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 +10 -10
- package/types/ListItem.d.ts +119 -83
- package/types/ListItem.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tamagui/list-item",
|
|
3
|
-
"version": "1.88.
|
|
3
|
+
"version": "1.88.9",
|
|
4
4
|
"sideEffects": [
|
|
5
5
|
"*.css"
|
|
6
6
|
],
|
|
@@ -23,20 +23,20 @@
|
|
|
23
23
|
"clean:build": "tamagui-build clean:build"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
|
-
"@tamagui/font-size": "1.88.
|
|
27
|
-
"@tamagui/get-font-sized": "1.88.
|
|
28
|
-
"@tamagui/get-token": "1.88.
|
|
29
|
-
"@tamagui/helpers": "1.88.
|
|
30
|
-
"@tamagui/helpers-tamagui": "1.88.
|
|
31
|
-
"@tamagui/stacks": "1.88.
|
|
32
|
-
"@tamagui/text": "1.88.
|
|
33
|
-
"@tamagui/web": "1.88.
|
|
26
|
+
"@tamagui/font-size": "1.88.9",
|
|
27
|
+
"@tamagui/get-font-sized": "1.88.9",
|
|
28
|
+
"@tamagui/get-token": "1.88.9",
|
|
29
|
+
"@tamagui/helpers": "1.88.9",
|
|
30
|
+
"@tamagui/helpers-tamagui": "1.88.9",
|
|
31
|
+
"@tamagui/stacks": "1.88.9",
|
|
32
|
+
"@tamagui/text": "1.88.9",
|
|
33
|
+
"@tamagui/web": "1.88.9"
|
|
34
34
|
},
|
|
35
35
|
"peerDependencies": {
|
|
36
36
|
"react": "*"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@tamagui/build": "1.88.
|
|
39
|
+
"@tamagui/build": "1.88.9",
|
|
40
40
|
"react": "^18.2.0"
|
|
41
41
|
},
|
|
42
42
|
"publishConfig": {
|
package/types/ListItem.d.ts
CHANGED
|
@@ -47,8 +47,8 @@ export type ListItemProps = GetProps<typeof ListItemFrame> & ListItemExtraProps;
|
|
|
47
47
|
export declare const ListItemFrame: import("@tamagui/web").TamaguiComponent<import("@tamagui/web").TamaDefer, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase, {
|
|
48
48
|
unstyled?: boolean | undefined;
|
|
49
49
|
size?: SizeTokens | undefined;
|
|
50
|
-
elevation?: number | SizeTokens | undefined;
|
|
51
50
|
disabled?: boolean | undefined;
|
|
51
|
+
elevation?: number | SizeTokens | undefined;
|
|
52
52
|
transparent?: boolean | undefined;
|
|
53
53
|
fullscreen?: boolean | undefined;
|
|
54
54
|
circular?: boolean | undefined;
|
|
@@ -69,7 +69,7 @@ export declare const ListItemText: import("@tamagui/web").TamaguiComponent<impor
|
|
|
69
69
|
}, {}>;
|
|
70
70
|
export declare const ListItemSubtitle: import("@tamagui/web").TamaguiComponent<import("@tamagui/web").TamaDefer, import("@tamagui/web").TamaguiTextElement, import("@tamagui/web").TextNonStyleProps, import("@tamagui/web").TextStylePropsBase, {
|
|
71
71
|
unstyled?: boolean | undefined;
|
|
72
|
-
size?: number | `$${string}` | `$${number}` |
|
|
72
|
+
size?: number | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/web").UnionableNumber | import("@tamagui/web").UnionableString | undefined;
|
|
73
73
|
}, {}>;
|
|
74
74
|
export declare const ListItemTitle: import("@tamagui/web").TamaguiComponent<import("@tamagui/web").TamaDefer, import("@tamagui/web").TamaguiTextElement, import("@tamagui/web").TextNonStyleProps, import("@tamagui/web").TextStylePropsBase, {
|
|
75
75
|
unstyled?: boolean | undefined;
|
|
@@ -82,7 +82,25 @@ export declare const useListItem: (propsIn: ListItemProps, { Text, Subtitle, Tit
|
|
|
82
82
|
}) => {
|
|
83
83
|
props: PropsWithoutMediaStyles<ListItemProps>;
|
|
84
84
|
};
|
|
85
|
-
export declare const ListItem: React.ForwardRefExoticComponent<Omit<import("@tamagui/core").RNTamaguiViewNonStyleProps
|
|
85
|
+
export declare const ListItem: React.ForwardRefExoticComponent<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase & {
|
|
86
|
+
unstyled?: boolean | undefined;
|
|
87
|
+
size?: SizeTokens | undefined;
|
|
88
|
+
disabled?: boolean | undefined;
|
|
89
|
+
elevation?: number | SizeTokens | undefined;
|
|
90
|
+
transparent?: boolean | undefined;
|
|
91
|
+
fullscreen?: boolean | undefined;
|
|
92
|
+
circular?: boolean | undefined;
|
|
93
|
+
hoverTheme?: boolean | undefined;
|
|
94
|
+
pressTheme?: boolean | undefined;
|
|
95
|
+
focusTheme?: boolean | undefined;
|
|
96
|
+
elevate?: boolean | undefined;
|
|
97
|
+
bordered?: number | boolean | undefined;
|
|
98
|
+
backgrounded?: boolean | undefined;
|
|
99
|
+
radiused?: boolean | undefined;
|
|
100
|
+
padded?: boolean | undefined;
|
|
101
|
+
chromeless?: boolean | "all" | undefined;
|
|
102
|
+
active?: boolean | undefined;
|
|
103
|
+
}>, "noTextWrap" | keyof import("@tamagui/text").TextContextStyles | "textProps" | keyof ThemeableProps | "icon" | "iconAfter" | "scaleIcon" | "spaceFlex" | "scaleSpace" | "title" | "subTitle"> & Omit<TextParentStyles, "TextComponent" | "noTextWrap"> & ThemeableProps & {
|
|
86
104
|
/**
|
|
87
105
|
* add icon before, passes color and size automatically if Component
|
|
88
106
|
*/
|
|
@@ -118,29 +136,11 @@ export declare const ListItem: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
118
136
|
* will not wrap text around `children` only, "all" will not wrap title or subTitle
|
|
119
137
|
*/
|
|
120
138
|
noTextWrap?: boolean | "all" | undefined;
|
|
121
|
-
}
|
|
139
|
+
} & React.RefAttributes<import("@tamagui/web").TamaguiElement>> & import("@tamagui/web").StaticComponentObject<Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase & {
|
|
122
140
|
unstyled?: boolean | undefined;
|
|
123
141
|
size?: SizeTokens | undefined;
|
|
124
|
-
elevation?: number | SizeTokens | undefined;
|
|
125
142
|
disabled?: boolean | undefined;
|
|
126
|
-
transparent?: boolean | undefined;
|
|
127
|
-
fullscreen?: boolean | undefined;
|
|
128
|
-
circular?: boolean | undefined;
|
|
129
|
-
hoverTheme?: boolean | undefined;
|
|
130
|
-
pressTheme?: boolean | undefined;
|
|
131
|
-
focusTheme?: boolean | undefined;
|
|
132
|
-
elevate?: boolean | undefined;
|
|
133
|
-
bordered?: number | boolean | undefined;
|
|
134
|
-
backgrounded?: boolean | undefined;
|
|
135
|
-
radiused?: boolean | undefined;
|
|
136
|
-
padded?: boolean | undefined;
|
|
137
|
-
chromeless?: boolean | "all" | undefined;
|
|
138
|
-
active?: boolean | undefined;
|
|
139
|
-
}> & import("@tamagui/web").WithShorthands<import("@tamagui/web").WithThemeValues<Omit<import("@tamagui/web").StackStyleBase, "noTextWrap" | keyof import("@tamagui/text").TextContextStyles | "textProps" | keyof ThemeableProps | "icon" | "iconAfter" | "scaleIcon" | "spaceFlex" | "scaleSpace" | "title" | "subTitle">, {
|
|
140
|
-
unstyled?: boolean | undefined;
|
|
141
|
-
size?: SizeTokens | undefined;
|
|
142
143
|
elevation?: number | SizeTokens | undefined;
|
|
143
|
-
disabled?: boolean | undefined;
|
|
144
144
|
transparent?: boolean | undefined;
|
|
145
145
|
fullscreen?: boolean | undefined;
|
|
146
146
|
circular?: boolean | undefined;
|
|
@@ -154,61 +154,43 @@ export declare const ListItem: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
154
154
|
padded?: boolean | undefined;
|
|
155
155
|
chromeless?: boolean | "all" | undefined;
|
|
156
156
|
active?: boolean | undefined;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
}
|
|
194
|
-
unstyled?: boolean | undefined;
|
|
195
|
-
size?: SizeTokens | undefined;
|
|
196
|
-
elevation?: number | SizeTokens | undefined;
|
|
197
|
-
disabled?: boolean | undefined;
|
|
198
|
-
transparent?: boolean | undefined;
|
|
199
|
-
fullscreen?: boolean | undefined;
|
|
200
|
-
circular?: boolean | undefined;
|
|
201
|
-
hoverTheme?: boolean | undefined;
|
|
202
|
-
pressTheme?: boolean | undefined;
|
|
203
|
-
focusTheme?: boolean | undefined;
|
|
204
|
-
elevate?: boolean | undefined;
|
|
205
|
-
bordered?: number | boolean | undefined;
|
|
206
|
-
backgrounded?: boolean | undefined;
|
|
207
|
-
radiused?: boolean | undefined;
|
|
208
|
-
padded?: boolean | undefined;
|
|
209
|
-
chromeless?: boolean | "all" | undefined;
|
|
210
|
-
active?: boolean | undefined;
|
|
211
|
-
}>> & React.RefAttributes<import("@tamagui/web").TamaguiElement>> & import("@tamagui/web").StaticComponentObject<import("@tamagui/web").TamaDefer, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<TextParentStyles, "TextComponent" | "noTextWrap"> & ThemeableProps & {
|
|
157
|
+
}>, "noTextWrap" | keyof import("@tamagui/text").TextContextStyles | "textProps" | keyof ThemeableProps | "icon" | "iconAfter" | "scaleIcon" | "spaceFlex" | "scaleSpace" | "title" | "subTitle"> & Omit<TextParentStyles, "TextComponent" | "noTextWrap"> & ThemeableProps & {
|
|
158
|
+
/**
|
|
159
|
+
* add icon before, passes color and size automatically if Component
|
|
160
|
+
*/
|
|
161
|
+
icon?: IconProp | undefined;
|
|
162
|
+
/**
|
|
163
|
+
* add icon after, passes color and size automatically if Component
|
|
164
|
+
*/
|
|
165
|
+
iconAfter?: IconProp | undefined;
|
|
166
|
+
/**
|
|
167
|
+
* adjust icon relative to size
|
|
168
|
+
*/
|
|
169
|
+
/**
|
|
170
|
+
* default: -1
|
|
171
|
+
*/
|
|
172
|
+
scaleIcon?: number | undefined;
|
|
173
|
+
/**
|
|
174
|
+
* make the spacing elements flex
|
|
175
|
+
*/
|
|
176
|
+
spaceFlex?: number | boolean | undefined;
|
|
177
|
+
/**
|
|
178
|
+
* adjust internal space relative to icon size
|
|
179
|
+
*/
|
|
180
|
+
scaleSpace?: number | undefined;
|
|
181
|
+
/**
|
|
182
|
+
* title
|
|
183
|
+
*/
|
|
184
|
+
title?: React.ReactNode;
|
|
185
|
+
/**
|
|
186
|
+
* subtitle
|
|
187
|
+
*/
|
|
188
|
+
subTitle?: React.ReactNode;
|
|
189
|
+
/**
|
|
190
|
+
* will not wrap text around `children` only, "all" will not wrap title or subTitle
|
|
191
|
+
*/
|
|
192
|
+
noTextWrap?: boolean | "all" | undefined;
|
|
193
|
+
}, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<TextParentStyles, "TextComponent" | "noTextWrap"> & ThemeableProps & {
|
|
212
194
|
/**
|
|
213
195
|
* add icon before, passes color and size automatically if Component
|
|
214
196
|
*/
|
|
@@ -244,11 +226,11 @@ export declare const ListItem: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
244
226
|
* will not wrap text around `children` only, "all" will not wrap title or subTitle
|
|
245
227
|
*/
|
|
246
228
|
noTextWrap?: boolean | "all" | undefined;
|
|
247
|
-
},
|
|
229
|
+
}, import("@tamagui/web").StackStyleBase, {
|
|
248
230
|
unstyled?: boolean | undefined;
|
|
249
231
|
size?: SizeTokens | undefined;
|
|
250
|
-
elevation?: number | SizeTokens | undefined;
|
|
251
232
|
disabled?: boolean | undefined;
|
|
233
|
+
elevation?: number | SizeTokens | undefined;
|
|
252
234
|
transparent?: boolean | undefined;
|
|
253
235
|
fullscreen?: boolean | undefined;
|
|
254
236
|
circular?: boolean | undefined;
|
|
@@ -263,7 +245,61 @@ export declare const ListItem: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
263
245
|
chromeless?: boolean | "all" | undefined;
|
|
264
246
|
active?: boolean | undefined;
|
|
265
247
|
}, {}> & Omit<{}, "staticConfig" | "extractable" | "styleable"> & {
|
|
266
|
-
__tama: [import("@tamagui/web").
|
|
248
|
+
__tama: [Omit<import("@tamagui/web").GetFinalProps<import("@tamagui/core").RNTamaguiViewNonStyleProps, import("@tamagui/web").StackStyleBase & {
|
|
249
|
+
unstyled?: boolean | undefined;
|
|
250
|
+
size?: SizeTokens | undefined;
|
|
251
|
+
disabled?: boolean | undefined;
|
|
252
|
+
elevation?: number | SizeTokens | undefined;
|
|
253
|
+
transparent?: boolean | undefined;
|
|
254
|
+
fullscreen?: boolean | undefined;
|
|
255
|
+
circular?: boolean | undefined;
|
|
256
|
+
hoverTheme?: boolean | undefined;
|
|
257
|
+
pressTheme?: boolean | undefined;
|
|
258
|
+
focusTheme?: boolean | undefined;
|
|
259
|
+
elevate?: boolean | undefined;
|
|
260
|
+
bordered?: number | boolean | undefined;
|
|
261
|
+
backgrounded?: boolean | undefined;
|
|
262
|
+
radiused?: boolean | undefined;
|
|
263
|
+
padded?: boolean | undefined;
|
|
264
|
+
chromeless?: boolean | "all" | undefined;
|
|
265
|
+
active?: boolean | undefined;
|
|
266
|
+
}>, "noTextWrap" | keyof import("@tamagui/text").TextContextStyles | "textProps" | keyof ThemeableProps | "icon" | "iconAfter" | "scaleIcon" | "spaceFlex" | "scaleSpace" | "title" | "subTitle"> & Omit<TextParentStyles, "TextComponent" | "noTextWrap"> & ThemeableProps & {
|
|
267
|
+
/**
|
|
268
|
+
* add icon before, passes color and size automatically if Component
|
|
269
|
+
*/
|
|
270
|
+
icon?: IconProp | undefined;
|
|
271
|
+
/**
|
|
272
|
+
* add icon after, passes color and size automatically if Component
|
|
273
|
+
*/
|
|
274
|
+
iconAfter?: IconProp | undefined;
|
|
275
|
+
/**
|
|
276
|
+
* adjust icon relative to size
|
|
277
|
+
*/
|
|
278
|
+
/**
|
|
279
|
+
* default: -1
|
|
280
|
+
*/
|
|
281
|
+
scaleIcon?: number | undefined;
|
|
282
|
+
/**
|
|
283
|
+
* make the spacing elements flex
|
|
284
|
+
*/
|
|
285
|
+
spaceFlex?: number | boolean | undefined;
|
|
286
|
+
/**
|
|
287
|
+
* adjust internal space relative to icon size
|
|
288
|
+
*/
|
|
289
|
+
scaleSpace?: number | undefined;
|
|
290
|
+
/**
|
|
291
|
+
* title
|
|
292
|
+
*/
|
|
293
|
+
title?: React.ReactNode;
|
|
294
|
+
/**
|
|
295
|
+
* subtitle
|
|
296
|
+
*/
|
|
297
|
+
subTitle?: React.ReactNode;
|
|
298
|
+
/**
|
|
299
|
+
* will not wrap text around `children` only, "all" will not wrap title or subTitle
|
|
300
|
+
*/
|
|
301
|
+
noTextWrap?: boolean | "all" | undefined;
|
|
302
|
+
}, import("@tamagui/web").TamaguiElement, import("@tamagui/core").RNTamaguiViewNonStyleProps & Omit<TextParentStyles, "TextComponent" | "noTextWrap"> & ThemeableProps & {
|
|
267
303
|
/**
|
|
268
304
|
* add icon before, passes color and size automatically if Component
|
|
269
305
|
*/
|
|
@@ -299,11 +335,11 @@ export declare const ListItem: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
299
335
|
* will not wrap text around `children` only, "all" will not wrap title or subTitle
|
|
300
336
|
*/
|
|
301
337
|
noTextWrap?: boolean | "all" | undefined;
|
|
302
|
-
},
|
|
338
|
+
}, import("@tamagui/web").StackStyleBase, {
|
|
303
339
|
unstyled?: boolean | undefined;
|
|
304
340
|
size?: SizeTokens | undefined;
|
|
305
|
-
elevation?: number | SizeTokens | undefined;
|
|
306
341
|
disabled?: boolean | undefined;
|
|
342
|
+
elevation?: number | SizeTokens | undefined;
|
|
307
343
|
transparent?: boolean | undefined;
|
|
308
344
|
fullscreen?: boolean | undefined;
|
|
309
345
|
circular?: boolean | undefined;
|
|
@@ -325,7 +361,7 @@ export declare const ListItem: React.ForwardRefExoticComponent<Omit<import("@tam
|
|
|
325
361
|
}, {}>;
|
|
326
362
|
Subtitle: import("@tamagui/web").TamaguiComponent<import("@tamagui/web").TamaDefer, import("@tamagui/web").TamaguiTextElement, import("@tamagui/web").TextNonStyleProps, import("@tamagui/web").TextStylePropsBase, {
|
|
327
363
|
unstyled?: boolean | undefined;
|
|
328
|
-
size?: number | `$${string}` | `$${number}` |
|
|
364
|
+
size?: number | `$${string}` | `$${number}` | `$${string}.${string}` | `$${string}.${number}` | import("@tamagui/web").UnionableNumber | import("@tamagui/web").UnionableString | undefined;
|
|
329
365
|
}, {}>;
|
|
330
366
|
};
|
|
331
367
|
export {};
|
package/types/ListItem.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ListItem.d.ts","sourceRoot":"","sources":["../src/ListItem.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAe,gBAAgB,EAAsB,MAAM,eAAe,CAAA;AACjF,OAAO,EACL,cAAc,EACd,QAAQ,EACR,uBAAuB,EACvB,UAAU,EAEV,cAAc,EAKf,MAAM,cAAc,CAAA;AACrB,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAEhD,KAAK,iBAAiB,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAE,CAAA;AAC1D,KAAK,QAAQ,GAAG,GAAG,CAAC,OAAO,GAAG,iBAAiB,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAA;AAEzE,MAAM,MAAM,kBAAkB,GAAG,IAAI,CAAC,gBAAgB,EAAE,eAAe,GAAG,YAAY,CAAC,GACrF,cAAc,GAAG;IACf;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf;;OAEG;IACH,SAAS,CAAC,EAAE,QAAQ,CAAA;IACpB;;OAEG;IACH;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;IAC5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACvB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,GAAG,KAAK,CAAA;CAC7B,CAAA;AAEH,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,GAAG,kBAAkB,CAAA;AAI/E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;MAoDxB,CAAA;AAEF,eAAO,MAAM,YAAY;;;MAmBvB,CAAA;AAEF,eAAO,MAAM,gBAAgB;;;MA2B3B,CAAA;AAEF,eAAO,MAAM,aAAa;;;MAExB,CAAA;AAEF,eAAO,MAAM,WAAW,YACb,aAAa;YAMZ,GAAG;eACA,GAAG;WACP,GAAG;;WAEF,wBAAwB,aAAa,CAAC;CA8FjD,CAAA;AASD,eAAO,MAAM,QAAQ
|
|
1
|
+
{"version":3,"file":"ListItem.d.ts","sourceRoot":"","sources":["../src/ListItem.tsx"],"names":[],"mappings":"AAMA,OAAO,EAAe,gBAAgB,EAAsB,MAAM,eAAe,CAAA;AACjF,OAAO,EACL,cAAc,EACd,QAAQ,EACR,uBAAuB,EACvB,UAAU,EAEV,cAAc,EAKf,MAAM,cAAc,CAAA;AACrB,OAAO,KAAK,EAAE,EAAE,iBAAiB,EAAE,MAAM,OAAO,CAAA;AAEhD,KAAK,iBAAiB,GAAG;IAAE,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,MAAM,CAAA;CAAE,CAAA;AAC1D,KAAK,QAAQ,GAAG,GAAG,CAAC,OAAO,GAAG,iBAAiB,CAAC,iBAAiB,CAAC,GAAG,IAAI,CAAA;AAEzE,MAAM,MAAM,kBAAkB,GAAG,IAAI,CAAC,gBAAgB,EAAE,eAAe,GAAG,YAAY,CAAC,GACrF,cAAc,GAAG;IACf;;OAEG;IACH,IAAI,CAAC,EAAE,QAAQ,CAAA;IACf;;OAEG;IACH,SAAS,CAAC,EAAE,QAAQ,CAAA;IACpB;;OAEG;IACH;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,CAAA;IAClB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,OAAO,CAAA;IAC5B;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAA;IACnB;;OAEG;IACH,KAAK,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IACvB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,CAAA;IAC1B;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,GAAG,KAAK,CAAA;CAC7B,CAAA;AAEH,MAAM,MAAM,aAAa,GAAG,QAAQ,CAAC,OAAO,aAAa,CAAC,GAAG,kBAAkB,CAAA;AAI/E,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;MAoDxB,CAAA;AAEF,eAAO,MAAM,YAAY;;;MAmBvB,CAAA;AAEF,eAAO,MAAM,gBAAgB;;;MA2B3B,CAAA;AAEF,eAAO,MAAM,aAAa;;;MAExB,CAAA;AAEF,eAAO,MAAM,WAAW,YACb,aAAa;YAMZ,GAAG;eACA,GAAG;WACP,GAAG;;WAEF,wBAAwB,aAAa,CAAC;CA8FjD,CAAA;AASD,eAAO,MAAM,QAAQ;;;;;;;;;;;;;;;;;;;IAvQjB;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;IACH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;YACK,MAAM,SAAS;IACvB;;OAEG;eACQ,MAAM,SAAS;IAC1B;;OAEG;;;;;;;;;;;;;;;;;;;;;IAjCH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;IACH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;YACK,MAAM,SAAS;IACvB;;OAEG;eACQ,MAAM,SAAS;IAC1B;;OAEG;;;IAjCH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;IACH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;;IAEH;;OAEG;YACK,MAAM,SAAS;IACvB;;OAEG;eACQ,MAAM,SAAS;IAC1B;;OAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;QAjCH;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;QACH;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;gBACK,MAAM,SAAS;QACvB;;WAEG;mBACQ,MAAM,SAAS;QAC1B;;WAEG;;;QAjCH;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;QACH;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;;QAEH;;WAEG;gBACK,MAAM,SAAS;QACvB;;WAEG;mBACQ,MAAM,SAAS;QAC1B;;WAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyOL,CAAA"}
|