@alibarbar/components 1.0.0

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.
Files changed (51) hide show
  1. package/README.md +181 -0
  2. package/dist/components/FatForm/FatForm.vue.d.ts +99 -0
  3. package/dist/components/FatForm/FatForm.vue.d.ts.map +1 -0
  4. package/dist/components/FatForm/FatFormItem.vue.d.ts +35 -0
  5. package/dist/components/FatForm/FatFormItem.vue.d.ts.map +1 -0
  6. package/dist/components/FatForm/index.d.ts +7 -0
  7. package/dist/components/FatForm/index.d.ts.map +1 -0
  8. package/dist/components/FatForm/types.d.ts +101 -0
  9. package/dist/components/FatForm/types.d.ts.map +1 -0
  10. package/dist/components/FatFormLayout/FatFormLayout.vue.d.ts +47 -0
  11. package/dist/components/FatFormLayout/FatFormLayout.vue.d.ts.map +1 -0
  12. package/dist/components/FatFormLayout/index.d.ts +5 -0
  13. package/dist/components/FatFormLayout/index.d.ts.map +1 -0
  14. package/dist/components/FatFormLayout/types.d.ts +15 -0
  15. package/dist/components/FatFormLayout/types.d.ts.map +1 -0
  16. package/dist/components/FatTable/FatTable.vue.d.ts +42 -0
  17. package/dist/components/FatTable/FatTable.vue.d.ts.map +1 -0
  18. package/dist/components/FatTable/index.d.ts +9 -0
  19. package/dist/components/FatTable/index.d.ts.map +1 -0
  20. package/dist/components/FatTable/types.d.ts +274 -0
  21. package/dist/components/FatTable/types.d.ts.map +1 -0
  22. package/dist/components/FatTableLayout/FatTableLayout.vue.d.ts +47 -0
  23. package/dist/components/FatTableLayout/FatTableLayout.vue.d.ts.map +1 -0
  24. package/dist/components/FatTableLayout/index.d.ts +5 -0
  25. package/dist/components/FatTableLayout/index.d.ts.map +1 -0
  26. package/dist/components/FatTableLayout/types.d.ts +19 -0
  27. package/dist/components/FatTableLayout/types.d.ts.map +1 -0
  28. package/dist/hooks/index.d.ts +4 -0
  29. package/dist/hooks/index.d.ts.map +1 -0
  30. package/dist/i18n/index.d.ts +61 -0
  31. package/dist/i18n/index.d.ts.map +1 -0
  32. package/dist/i18n/locales/en-US.d.ts +30 -0
  33. package/dist/i18n/locales/en-US.d.ts.map +1 -0
  34. package/dist/i18n/locales/zh-CN.d.ts +30 -0
  35. package/dist/i18n/locales/zh-CN.d.ts.map +1 -0
  36. package/dist/index.d.ts +485 -0
  37. package/dist/index.d.ts.map +1 -0
  38. package/dist/index.js +972 -0
  39. package/dist/index.js.map +1 -0
  40. package/dist/style.css +1 -0
  41. package/dist/utils/index.d.ts +5 -0
  42. package/dist/utils/index.d.ts.map +1 -0
  43. package/dist/utils/types.d.ts +5 -0
  44. package/dist/utils/types.d.ts.map +1 -0
  45. package/package.json +61 -0
  46. package/src/style/fat-form-layout.scss +53 -0
  47. package/src/style/fat-form.scss +132 -0
  48. package/src/style/fat-table-layout.scss +43 -0
  49. package/src/style/fat-table.scss +132 -0
  50. package/src/style/index.scss +14 -0
  51. package/src/style/variables.scss +23 -0
@@ -0,0 +1,485 @@
1
+ import { App } from 'vue';
2
+ import { default as FatTable } from './components/FatTable';
3
+ import { default as FatForm } from './components/FatForm';
4
+ import { default as FatTableLayout } from './components/FatTableLayout';
5
+ import { default as FatFormLayout } from './components/FatFormLayout';
6
+
7
+ export * from './components/FatTable/types';
8
+ export * from './components/FatForm/types';
9
+ export * from './components/FatTableLayout/types';
10
+ export * from './components/FatFormLayout/types';
11
+ export { FatTable, FatForm, FatTableLayout, FatFormLayout };
12
+ export { default as i18n } from './i18n';
13
+ export * from './utils';
14
+ export * from './hooks';
15
+ declare const _default: {
16
+ install: (app: App) => void;
17
+ FatTable: (<T extends Record<string, any> = any, S extends Record<string, any> = Record<string, any>>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: {
18
+ attrs: any;
19
+ slots: ReturnType<() => Partial<Record<`header-${string}`, (_: {
20
+ column: import('.').FatTableColumn<T, S>;
21
+ index: number;
22
+ }) => any>> & Partial<Record<`cell-${string}`, (_: {
23
+ row: T;
24
+ column: import('.').FatTableColumn<T, S>;
25
+ value: any;
26
+ index: number;
27
+ }) => any>>>;
28
+ emit: import('.').FatTableEmits<T, S>;
29
+ }, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
30
+ props: {
31
+ size?: "large" | "default" | "small" | undefined;
32
+ loading?: boolean | undefined;
33
+ data?: T[] | undefined;
34
+ readonly "onPage-change"?: ((page: number) => any) | undefined;
35
+ readonly "onPage-size-change"?: ((pageSize: number) => any) | undefined;
36
+ readonly "onSort-change"?: ((payload: import('.').FatTableSortChangeEvent<T, S>) => any) | undefined;
37
+ readonly "onRow-click"?: ((row: T, column: import('.').FatTableColumn<T, S>, event: Event) => any) | undefined;
38
+ columns: import('.').FatTableColumn<T, S>[];
39
+ pagination?: (boolean | import('.').FatTablePagination) | undefined;
40
+ height?: string | number | undefined;
41
+ maxHeight?: string | number | undefined;
42
+ stripe?: boolean | undefined;
43
+ border?: boolean | undefined;
44
+ emptyText?: string | undefined;
45
+ rowKey?: string | ((row: T) => string | number) | undefined;
46
+ fetchHandler?: ((params: import('.').FatTableRequestParams<T, S>) => Promise<import('.').FatTableRequestResponse<T>>) | undefined;
47
+ query?: S | undefined;
48
+ requestOnMounted?: boolean | undefined;
49
+ requestOnQueryChange?: boolean | undefined;
50
+ requestOnSortChange?: boolean | undefined;
51
+ } & {} & (import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps);
52
+ expose(exposed: import('vue').ShallowUnwrapRef<{
53
+ refresh: () => void;
54
+ reset: () => void;
55
+ getRequestParams: () => import('.').FatTableRequestParams<T, S>;
56
+ }>): void;
57
+ attrs: any;
58
+ slots: ReturnType<() => Partial<Record<`header-${string}`, (_: {
59
+ column: import('.').FatTableColumn<T, S>;
60
+ index: number;
61
+ }) => any>> & Partial<Record<`cell-${string}`, (_: {
62
+ row: T;
63
+ column: import('.').FatTableColumn<T, S>;
64
+ value: any;
65
+ index: number;
66
+ }) => any>>>;
67
+ emit: import('.').FatTableEmits<T, S>;
68
+ }>) => import('vue').VNode & {
69
+ __ctx?: Awaited<typeof __VLS_setup>;
70
+ }) & {
71
+ install: (app: App) => void;
72
+ };
73
+ FatForm: {
74
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
75
+ modelValue: {
76
+ type: import('vue').PropType<Record<string, any>>;
77
+ default: () => {};
78
+ };
79
+ mode: {
80
+ type: import('vue').PropType<import('.').FatFormMode>;
81
+ default: string;
82
+ };
83
+ layout: {
84
+ type: import('vue').PropType<import('./components/FatForm').FatFormLayout>;
85
+ default: string;
86
+ };
87
+ labelWidth: {
88
+ type: import('vue').PropType<string | number>;
89
+ };
90
+ labelSuffix: {
91
+ type: import('vue').PropType<string>;
92
+ default: string;
93
+ };
94
+ size: {
95
+ type: import('vue').PropType<"large" | "default" | "small">;
96
+ default: string;
97
+ };
98
+ disabled: {
99
+ type: import('vue').PropType<boolean>;
100
+ default: boolean;
101
+ };
102
+ loading: {
103
+ type: import('vue').PropType<boolean>;
104
+ default: boolean;
105
+ };
106
+ initialValue: {
107
+ type: import('vue').PropType<Record<string, any>>;
108
+ default: () => {};
109
+ };
110
+ rules: {
111
+ type: import('vue').PropType<Record<string, any[]>>;
112
+ default: () => {};
113
+ };
114
+ enableSubmitter: {
115
+ type: import('vue').PropType<boolean>;
116
+ default: boolean;
117
+ };
118
+ enableReset: {
119
+ type: import('vue').PropType<boolean>;
120
+ default: boolean;
121
+ };
122
+ submitText: {
123
+ type: import('vue').PropType<string>;
124
+ };
125
+ resetText: {
126
+ type: import('vue').PropType<string>;
127
+ };
128
+ onSubmit: {
129
+ type: import('vue').PropType<(values: Record<string, any>) => Promise<void> | void>;
130
+ };
131
+ }>> & Readonly<{
132
+ "onUpdate:modelValue"?: ((value: Record<string, any>) => any) | undefined;
133
+ onSubmit?: ((values: Record<string, any>) => any) | undefined;
134
+ onReset?: ((values: Record<string, any>) => any) | undefined;
135
+ onValidate?: ((prop: string, isValid: boolean, message?: string | undefined) => any) | undefined;
136
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
137
+ "update:modelValue": (value: Record<string, any>) => void;
138
+ submit: (values: Record<string, any>) => void;
139
+ reset: (values: Record<string, any>) => void;
140
+ validate: (prop: string, isValid: boolean, message?: string | undefined) => void;
141
+ }, import('vue').PublicProps, {
142
+ modelValue: Record<string, any>;
143
+ mode: import('.').FatFormMode;
144
+ layout: import('./components/FatForm').FatFormLayout;
145
+ labelSuffix: string;
146
+ size: "large" | "default" | "small";
147
+ disabled: boolean;
148
+ loading: boolean;
149
+ initialValue: Record<string, any>;
150
+ rules: Record<string, any[]>;
151
+ enableSubmitter: boolean;
152
+ enableReset: boolean;
153
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
154
+ P: {};
155
+ B: {};
156
+ D: {};
157
+ C: {};
158
+ M: {};
159
+ Defaults: {};
160
+ }, Readonly<import('vue').ExtractPropTypes<{
161
+ modelValue: {
162
+ type: import('vue').PropType<Record<string, any>>;
163
+ default: () => {};
164
+ };
165
+ mode: {
166
+ type: import('vue').PropType<import('.').FatFormMode>;
167
+ default: string;
168
+ };
169
+ layout: {
170
+ type: import('vue').PropType<import('./components/FatForm').FatFormLayout>;
171
+ default: string;
172
+ };
173
+ labelWidth: {
174
+ type: import('vue').PropType<string | number>;
175
+ };
176
+ labelSuffix: {
177
+ type: import('vue').PropType<string>;
178
+ default: string;
179
+ };
180
+ size: {
181
+ type: import('vue').PropType<"large" | "default" | "small">;
182
+ default: string;
183
+ };
184
+ disabled: {
185
+ type: import('vue').PropType<boolean>;
186
+ default: boolean;
187
+ };
188
+ loading: {
189
+ type: import('vue').PropType<boolean>;
190
+ default: boolean;
191
+ };
192
+ initialValue: {
193
+ type: import('vue').PropType<Record<string, any>>;
194
+ default: () => {};
195
+ };
196
+ rules: {
197
+ type: import('vue').PropType<Record<string, any[]>>;
198
+ default: () => {};
199
+ };
200
+ enableSubmitter: {
201
+ type: import('vue').PropType<boolean>;
202
+ default: boolean;
203
+ };
204
+ enableReset: {
205
+ type: import('vue').PropType<boolean>;
206
+ default: boolean;
207
+ };
208
+ submitText: {
209
+ type: import('vue').PropType<string>;
210
+ };
211
+ resetText: {
212
+ type: import('vue').PropType<string>;
213
+ };
214
+ onSubmit: {
215
+ type: import('vue').PropType<(values: Record<string, any>) => Promise<void> | void>;
216
+ };
217
+ }>> & Readonly<{
218
+ "onUpdate:modelValue"?: ((value: Record<string, any>) => any) | undefined;
219
+ onSubmit?: ((values: Record<string, any>) => any) | undefined;
220
+ onReset?: ((values: Record<string, any>) => any) | undefined;
221
+ onValidate?: ((prop: string, isValid: boolean, message?: string | undefined) => any) | undefined;
222
+ }>, {}, {}, {}, {}, {
223
+ modelValue: Record<string, any>;
224
+ mode: import('.').FatFormMode;
225
+ layout: import('./components/FatForm').FatFormLayout;
226
+ labelSuffix: string;
227
+ size: "large" | "default" | "small";
228
+ disabled: boolean;
229
+ loading: boolean;
230
+ initialValue: Record<string, any>;
231
+ rules: Record<string, any[]>;
232
+ enableSubmitter: boolean;
233
+ enableReset: boolean;
234
+ }>;
235
+ __isFragment?: never;
236
+ __isTeleport?: never;
237
+ __isSuspense?: never;
238
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
239
+ modelValue: {
240
+ type: import('vue').PropType<Record<string, any>>;
241
+ default: () => {};
242
+ };
243
+ mode: {
244
+ type: import('vue').PropType<import('.').FatFormMode>;
245
+ default: string;
246
+ };
247
+ layout: {
248
+ type: import('vue').PropType<import('./components/FatForm').FatFormLayout>;
249
+ default: string;
250
+ };
251
+ labelWidth: {
252
+ type: import('vue').PropType<string | number>;
253
+ };
254
+ labelSuffix: {
255
+ type: import('vue').PropType<string>;
256
+ default: string;
257
+ };
258
+ size: {
259
+ type: import('vue').PropType<"large" | "default" | "small">;
260
+ default: string;
261
+ };
262
+ disabled: {
263
+ type: import('vue').PropType<boolean>;
264
+ default: boolean;
265
+ };
266
+ loading: {
267
+ type: import('vue').PropType<boolean>;
268
+ default: boolean;
269
+ };
270
+ initialValue: {
271
+ type: import('vue').PropType<Record<string, any>>;
272
+ default: () => {};
273
+ };
274
+ rules: {
275
+ type: import('vue').PropType<Record<string, any[]>>;
276
+ default: () => {};
277
+ };
278
+ enableSubmitter: {
279
+ type: import('vue').PropType<boolean>;
280
+ default: boolean;
281
+ };
282
+ enableReset: {
283
+ type: import('vue').PropType<boolean>;
284
+ default: boolean;
285
+ };
286
+ submitText: {
287
+ type: import('vue').PropType<string>;
288
+ };
289
+ resetText: {
290
+ type: import('vue').PropType<string>;
291
+ };
292
+ onSubmit: {
293
+ type: import('vue').PropType<(values: Record<string, any>) => Promise<void> | void>;
294
+ };
295
+ }>> & Readonly<{
296
+ "onUpdate:modelValue"?: ((value: Record<string, any>) => any) | undefined;
297
+ onSubmit?: ((values: Record<string, any>) => any) | undefined;
298
+ onReset?: ((values: Record<string, any>) => any) | undefined;
299
+ onValidate?: ((prop: string, isValid: boolean, message?: string | undefined) => any) | undefined;
300
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
301
+ "update:modelValue": (value: Record<string, any>) => void;
302
+ submit: (values: Record<string, any>) => void;
303
+ reset: (values: Record<string, any>) => void;
304
+ validate: (prop: string, isValid: boolean, message?: string | undefined) => void;
305
+ }, string, {
306
+ modelValue: Record<string, any>;
307
+ mode: import('.').FatFormMode;
308
+ layout: import('./components/FatForm').FatFormLayout;
309
+ labelSuffix: string;
310
+ size: "large" | "default" | "small";
311
+ disabled: boolean;
312
+ loading: boolean;
313
+ initialValue: Record<string, any>;
314
+ rules: Record<string, any[]>;
315
+ enableSubmitter: boolean;
316
+ enableReset: boolean;
317
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
318
+ $slots: {
319
+ default?(_: {
320
+ form: import('.').FatFormMethods<any>;
321
+ }): any;
322
+ submitter?(_: {
323
+ form: import('.').FatFormMethods<any>;
324
+ }): any;
325
+ };
326
+ });
327
+ FatTableLayout: {
328
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
329
+ title: {
330
+ type: import('vue').PropType<string>;
331
+ };
332
+ showQuery: {
333
+ type: import('vue').PropType<boolean>;
334
+ default: boolean;
335
+ };
336
+ showToolbar: {
337
+ type: import('vue').PropType<boolean>;
338
+ default: boolean;
339
+ };
340
+ showPagination: {
341
+ type: import('vue').PropType<boolean>;
342
+ default: boolean;
343
+ };
344
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, import('vue').PublicProps, {
345
+ showQuery: boolean;
346
+ showToolbar: boolean;
347
+ showPagination: boolean;
348
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
349
+ P: {};
350
+ B: {};
351
+ D: {};
352
+ C: {};
353
+ M: {};
354
+ Defaults: {};
355
+ }, Readonly<import('vue').ExtractPropTypes<{
356
+ title: {
357
+ type: import('vue').PropType<string>;
358
+ };
359
+ showQuery: {
360
+ type: import('vue').PropType<boolean>;
361
+ default: boolean;
362
+ };
363
+ showToolbar: {
364
+ type: import('vue').PropType<boolean>;
365
+ default: boolean;
366
+ };
367
+ showPagination: {
368
+ type: import('vue').PropType<boolean>;
369
+ default: boolean;
370
+ };
371
+ }>> & Readonly<{}>, {}, {}, {}, {}, {
372
+ showQuery: boolean;
373
+ showToolbar: boolean;
374
+ showPagination: boolean;
375
+ }>;
376
+ __isFragment?: never;
377
+ __isTeleport?: never;
378
+ __isSuspense?: never;
379
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
380
+ title: {
381
+ type: import('vue').PropType<string>;
382
+ };
383
+ showQuery: {
384
+ type: import('vue').PropType<boolean>;
385
+ default: boolean;
386
+ };
387
+ showToolbar: {
388
+ type: import('vue').PropType<boolean>;
389
+ default: boolean;
390
+ };
391
+ showPagination: {
392
+ type: import('vue').PropType<boolean>;
393
+ default: boolean;
394
+ };
395
+ }>> & Readonly<{}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
396
+ showQuery: boolean;
397
+ showToolbar: boolean;
398
+ showPagination: boolean;
399
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
400
+ $slots: {
401
+ title?(_: {}): any;
402
+ query?(_: {}): any;
403
+ toolbar?(_: {}): any;
404
+ default?(_: {}): any;
405
+ pagination?(_: {}): any;
406
+ };
407
+ });
408
+ FatFormLayout: {
409
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
410
+ title: {
411
+ type: import('vue').PropType<string>;
412
+ };
413
+ showSubmitter: {
414
+ type: import('vue').PropType<boolean>;
415
+ default: boolean;
416
+ };
417
+ showBack: {
418
+ type: import('vue').PropType<boolean>;
419
+ default: boolean;
420
+ };
421
+ }>> & Readonly<{
422
+ onBack?: (() => any) | undefined;
423
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
424
+ back: () => void;
425
+ }, import('vue').PublicProps, {
426
+ showSubmitter: boolean;
427
+ showBack: boolean;
428
+ }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
429
+ P: {};
430
+ B: {};
431
+ D: {};
432
+ C: {};
433
+ M: {};
434
+ Defaults: {};
435
+ }, Readonly<import('vue').ExtractPropTypes<{
436
+ title: {
437
+ type: import('vue').PropType<string>;
438
+ };
439
+ showSubmitter: {
440
+ type: import('vue').PropType<boolean>;
441
+ default: boolean;
442
+ };
443
+ showBack: {
444
+ type: import('vue').PropType<boolean>;
445
+ default: boolean;
446
+ };
447
+ }>> & Readonly<{
448
+ onBack?: (() => any) | undefined;
449
+ }>, {}, {}, {}, {}, {
450
+ showSubmitter: boolean;
451
+ showBack: boolean;
452
+ }>;
453
+ __isFragment?: never;
454
+ __isTeleport?: never;
455
+ __isSuspense?: never;
456
+ } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
457
+ title: {
458
+ type: import('vue').PropType<string>;
459
+ };
460
+ showSubmitter: {
461
+ type: import('vue').PropType<boolean>;
462
+ default: boolean;
463
+ };
464
+ showBack: {
465
+ type: import('vue').PropType<boolean>;
466
+ default: boolean;
467
+ };
468
+ }>> & Readonly<{
469
+ onBack?: (() => any) | undefined;
470
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
471
+ back: () => void;
472
+ }, string, {
473
+ showSubmitter: boolean;
474
+ showBack: boolean;
475
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
476
+ $slots: {
477
+ title?(_: {}): any;
478
+ extra?(_: {}): any;
479
+ default?(_: {}): any;
480
+ submitter?(_: {}): any;
481
+ };
482
+ });
483
+ };
484
+ export default _default;
485
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,GAAG,EAAE,MAAM,KAAK,CAAA;AAE9B,OAAO,oBAAoB,CAAA;AAG3B,OAAO,QAAQ,MAAM,uBAAuB,CAAA;AAC5C,OAAO,OAAO,MAAM,sBAAsB,CAAA;AAC1C,OAAO,cAAc,MAAM,6BAA6B,CAAA;AACxD,OAAO,aAAa,MAAM,4BAA4B,CAAA;AAGtD,cAAc,6BAA6B,CAAA;AAC3C,cAAc,4BAA4B,CAAA;AAC1C,cAAc,mCAAmC,CAAA;AACjD,cAAc,kCAAkC,CAAA;AAGhD,OAAO,EAAE,QAAQ,EAAE,OAAO,EAAE,cAAc,EAAE,aAAa,EAAE,CAAA;AAC3D,OAAO,EAAE,OAAO,IAAI,IAAI,EAAE,MAAM,QAAQ,CAAA;AAGxC,cAAc,SAAS,CAAA;AACvB,cAAc,SAAS,CAAA;;mBAWD,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAsBi4uC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAP35uC,wBAMC"}