@es-plus/vue2 1.0.4 → 1.1.1
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/README.md +17 -6
- package/dist/components/es-crud-page/es-crud-page.vue.d.ts +107 -2
- package/dist/components/es-crud-page/es-crud-page.vue.d.ts.map +1 -1
- package/dist/components/es-dialog/component.vue.d.ts +361 -2
- package/dist/components/es-dialog/component.vue.d.ts.map +1 -1
- package/dist/components/es-dialog/render-jsx.vue.d.ts +91 -2
- package/dist/components/es-dialog/render-jsx.vue.d.ts.map +1 -1
- package/dist/components/es-form/es-form.vue.d.ts +297 -2
- package/dist/components/es-form/es-form.vue.d.ts.map +1 -1
- package/dist/components/es-table/column-item.vue.d.ts +35 -2
- package/dist/components/es-table/column-item.vue.d.ts.map +1 -1
- package/dist/components/es-table/component.vue.d.ts +499 -2
- package/dist/components/es-table/component.vue.d.ts.map +1 -1
- package/dist/components/es-table/table-btns.vue.d.ts +87 -2
- package/dist/components/es-table/table-btns.vue.d.ts.map +1 -1
- package/dist/es-plus-vue2.js +2696 -1256
- package/dist/es-plus-vue2.js.map +1 -1
- package/dist/es-plus-vue2.umd.cjs +3 -1
- package/dist/es-plus-vue2.umd.cjs.map +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/style.css +1 -1
- package/dist/vue-compat.d.ts +46 -12
- package/dist/vue-compat.d.ts.map +1 -1
- package/package.json +87 -82
- package/CHANGELOG.md +0 -46
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { TableColumn, PaginationConfig, TableOptions } from '@es-plus/core';
|
|
2
2
|
|
|
3
|
-
declare const _default: import('vue').
|
|
3
|
+
declare const _default: import('@vue/runtime-core').ComponentOptionsBase<Vue$1, import('@vue/composition-api').ShallowUnwrapRef<{
|
|
4
4
|
instance: Record<string, unknown>;
|
|
5
5
|
resizeObservers: () => void;
|
|
6
6
|
httpRequestInstance: (model?: Record<string, unknown>) => Promise<unknown>;
|
|
@@ -91,6 +91,8 @@ declare const _default: import('vue').ComponentOptions<import('vue').default<Rec
|
|
|
91
91
|
paginationPageSizes: import('@vue/composition-api').ComputedRef<any>;
|
|
92
92
|
paginationIsSmall: import('@vue/composition-api').ComputedRef<any>;
|
|
93
93
|
paginationBackground: import('@vue/composition-api').ComputedRef<any>;
|
|
94
|
+
paginationPrevText: import('@vue/composition-api').ComputedRef<string>;
|
|
95
|
+
paginationNextText: import('@vue/composition-api').ComputedRef<string>;
|
|
94
96
|
handleTableSelectionChange: (val: Record<string, unknown>[]) => void;
|
|
95
97
|
changeTableSort: (column: Record<string, unknown>) => void;
|
|
96
98
|
handleSizeChange: (size: number) => void;
|
|
@@ -285,7 +287,500 @@ declare const _default: import('vue').ComponentOptions<import('vue').default<Rec
|
|
|
285
287
|
type: () => PaginationConfig;
|
|
286
288
|
default: () => {};
|
|
287
289
|
};
|
|
288
|
-
}>,
|
|
290
|
+
}>, any, any, string, {}, {}, string, {}, {}, {}, string, import('@vue/runtime-core').ComponentProvideOptions> & ThisType<import('@vue/runtime-core').CreateComponentPublicInstanceWithMixins<{}, import('@vue/composition-api').ShallowUnwrapRef<{
|
|
291
|
+
instance: Record<string, unknown>;
|
|
292
|
+
resizeObservers: () => void;
|
|
293
|
+
httpRequestInstance: (model?: Record<string, unknown>) => Promise<unknown>;
|
|
294
|
+
getSelectionRows: () => {
|
|
295
|
+
[x: string]: unknown;
|
|
296
|
+
}[];
|
|
297
|
+
clearSelection: () => any;
|
|
298
|
+
clearAllSelection: () => void;
|
|
299
|
+
refresh: () => any;
|
|
300
|
+
scrollToRow: (_row: number) => void;
|
|
301
|
+
tableRef: any;
|
|
302
|
+
tbBtnRef: any;
|
|
303
|
+
headBarRef: import('@vue/composition-api').Ref<HTMLElement>;
|
|
304
|
+
paginationRef: import('@vue/composition-api').Ref<HTMLElement>;
|
|
305
|
+
tableId: import('@vue/composition-api').Ref<string>;
|
|
306
|
+
tableData: import('@vue/composition-api').Ref<{
|
|
307
|
+
[x: string]: unknown;
|
|
308
|
+
}[]>;
|
|
309
|
+
effectiveDataSource: import('@vue/composition-api').ComputedRef<Record<string, unknown>[]>;
|
|
310
|
+
loadStatus: import('@vue/composition-api').ComputedRef<boolean>;
|
|
311
|
+
paginationConfig: import('@vue/composition-api').Ref<{
|
|
312
|
+
pageSize?: number;
|
|
313
|
+
current?: number;
|
|
314
|
+
total?: number;
|
|
315
|
+
pageSizes?: number[];
|
|
316
|
+
size?: import('@es-plus/core').EsButtonSize;
|
|
317
|
+
isSmall?: boolean;
|
|
318
|
+
layout?: string;
|
|
319
|
+
}>;
|
|
320
|
+
formInstance: import('@vue/composition-api').Ref<unknown>;
|
|
321
|
+
filteredColumns: import('@vue/composition-api').ComputedRef<{
|
|
322
|
+
[x: string]: unknown;
|
|
323
|
+
prop?: string;
|
|
324
|
+
key?: string;
|
|
325
|
+
label?: string;
|
|
326
|
+
labelKey?: string;
|
|
327
|
+
width?: number | string;
|
|
328
|
+
minWidth?: number | string;
|
|
329
|
+
align?: string;
|
|
330
|
+
fixed?: boolean | "left" | "right" | string;
|
|
331
|
+
type?: "index" | "selection" | "expand";
|
|
332
|
+
sortable?: boolean | "custom";
|
|
333
|
+
formatter?: (row: import('@es-plus/core').ModelData, col?: unknown, value?: unknown, index?: number) => string;
|
|
334
|
+
render?: (h: import('@es-plus/core').RenderFn, ctx: {
|
|
335
|
+
row: import('@es-plus/core').ModelData;
|
|
336
|
+
value: unknown;
|
|
337
|
+
index: number;
|
|
338
|
+
columnIndex?: number;
|
|
339
|
+
}) => import('@es-plus/core').AnyVNode;
|
|
340
|
+
scopedSlots?: {
|
|
341
|
+
customRender?: string;
|
|
342
|
+
};
|
|
343
|
+
groups?: /*elided*/ any[];
|
|
344
|
+
ellipsis?: boolean;
|
|
345
|
+
hidCol?: boolean;
|
|
346
|
+
btns?: {
|
|
347
|
+
[x: string]: unknown;
|
|
348
|
+
name: string;
|
|
349
|
+
type?: import('@es-plus/core').EsButtonType;
|
|
350
|
+
icon?: string;
|
|
351
|
+
permissionValue?: string;
|
|
352
|
+
clickEvent?: (row: import('@es-plus/core').ModelData) => void;
|
|
353
|
+
}[];
|
|
354
|
+
}[]>;
|
|
355
|
+
tableBindAttrs: import('@vue/composition-api').ComputedRef<Record<string, unknown>>;
|
|
356
|
+
hasDefaultSlot: import('@vue/composition-api').ComputedRef<boolean>;
|
|
357
|
+
heightType: import('@vue/composition-api').ComputedRef<"auto" | "height" | "maxHeight">;
|
|
358
|
+
tabHeight: import('@vue/composition-api').ComputedRef<string>;
|
|
359
|
+
slotStyles: import('@vue/composition-api').ComputedRef<{
|
|
360
|
+
type: string;
|
|
361
|
+
value: string | Record<string, unknown>;
|
|
362
|
+
}>;
|
|
363
|
+
slotStyleValue: import('@vue/composition-api').ComputedRef<Record<string, string | number>>;
|
|
364
|
+
slotClassValue: import('@vue/composition-api').ComputedRef<string>;
|
|
365
|
+
slotState: import('@vue/composition-api').Ref<boolean>;
|
|
366
|
+
showPagination: import('@vue/composition-api').Ref<boolean>;
|
|
367
|
+
containerStyle: import('@vue/composition-api').ComputedRef<{
|
|
368
|
+
[x: string]: string;
|
|
369
|
+
}>;
|
|
370
|
+
paginationStyle: import('@vue/composition-api').ComputedRef<{
|
|
371
|
+
position: "absolute" | "static";
|
|
372
|
+
bottom: string;
|
|
373
|
+
left: string;
|
|
374
|
+
zIndex: number;
|
|
375
|
+
background: string;
|
|
376
|
+
}>;
|
|
377
|
+
layout: import('@vue/composition-api').ComputedRef<any>;
|
|
378
|
+
paginationPageSizes: import('@vue/composition-api').ComputedRef<any>;
|
|
379
|
+
paginationIsSmall: import('@vue/composition-api').ComputedRef<any>;
|
|
380
|
+
paginationBackground: import('@vue/composition-api').ComputedRef<any>;
|
|
381
|
+
paginationPrevText: import('@vue/composition-api').ComputedRef<string>;
|
|
382
|
+
paginationNextText: import('@vue/composition-api').ComputedRef<string>;
|
|
383
|
+
handleTableSelectionChange: (val: Record<string, unknown>[]) => void;
|
|
384
|
+
changeTableSort: (column: Record<string, unknown>) => void;
|
|
385
|
+
handleSizeChange: (size: number) => void;
|
|
386
|
+
handleIndexChange: (val: number) => void;
|
|
387
|
+
}> & import('@vue/composition-api').Data, {}, {}, {
|
|
388
|
+
initTabHeight: {
|
|
389
|
+
type: NumberConstructor;
|
|
390
|
+
default: number;
|
|
391
|
+
};
|
|
392
|
+
headBarClass: {
|
|
393
|
+
type: () => string | Record<string, unknown>;
|
|
394
|
+
default: string;
|
|
395
|
+
};
|
|
396
|
+
showHeaderBar: {
|
|
397
|
+
type: BooleanConstructor;
|
|
398
|
+
default: boolean;
|
|
399
|
+
};
|
|
400
|
+
dataSource: {
|
|
401
|
+
type: () => Record<string, unknown>[];
|
|
402
|
+
default: () => any[];
|
|
403
|
+
};
|
|
404
|
+
columns: {
|
|
405
|
+
type: () => TableColumn[];
|
|
406
|
+
default: () => any[];
|
|
407
|
+
};
|
|
408
|
+
options: {
|
|
409
|
+
type: () => TableOptions;
|
|
410
|
+
default: () => {
|
|
411
|
+
[key: string]: unknown;
|
|
412
|
+
border?: boolean;
|
|
413
|
+
stripe?: boolean;
|
|
414
|
+
size?: import('@es-plus/core').EsTableSize;
|
|
415
|
+
headerCellStyle?: Record<string, unknown>;
|
|
416
|
+
highlightCurrentRow?: boolean;
|
|
417
|
+
showHeader?: boolean;
|
|
418
|
+
emptyText?: string;
|
|
419
|
+
multiSelect?: boolean;
|
|
420
|
+
expand?: boolean;
|
|
421
|
+
snIndex?: boolean;
|
|
422
|
+
loading?: boolean;
|
|
423
|
+
cachePageSelection?: boolean;
|
|
424
|
+
heightType?: "auto" | "height" | "maxHeight";
|
|
425
|
+
tabHeight?: number | string;
|
|
426
|
+
height?: number | string;
|
|
427
|
+
rowkey?: string;
|
|
428
|
+
rowClassName?: string | ((params: {
|
|
429
|
+
row: import('@es-plus/core').ModelData;
|
|
430
|
+
rowIndex: number;
|
|
431
|
+
}) => string);
|
|
432
|
+
rowStyle?: Record<string, unknown> | ((params: {
|
|
433
|
+
row: import('@es-plus/core').ModelData;
|
|
434
|
+
rowIndex: number;
|
|
435
|
+
}) => Record<string, unknown>);
|
|
436
|
+
defaultSort?: {
|
|
437
|
+
prop: string;
|
|
438
|
+
order: "ascending" | "descending";
|
|
439
|
+
};
|
|
440
|
+
spanMethod?: (data: {
|
|
441
|
+
row: import('@es-plus/core').ModelData;
|
|
442
|
+
column: unknown;
|
|
443
|
+
rowIndex: number;
|
|
444
|
+
columnIndex: number;
|
|
445
|
+
}) => [number, number];
|
|
446
|
+
cellClassName?: string | ((data: {
|
|
447
|
+
row: import('@es-plus/core').ModelData;
|
|
448
|
+
column: unknown;
|
|
449
|
+
rowIndex: number;
|
|
450
|
+
columnIndex: number;
|
|
451
|
+
}) => string);
|
|
452
|
+
cellStyle?: Record<string, unknown> | ((data: {
|
|
453
|
+
row: import('@es-plus/core').ModelData;
|
|
454
|
+
column: unknown;
|
|
455
|
+
rowIndex: number;
|
|
456
|
+
columnIndex: number;
|
|
457
|
+
}) => Record<string, unknown>);
|
|
458
|
+
headerCellClassName?: string | ((data: {
|
|
459
|
+
column: unknown;
|
|
460
|
+
rowIndex: number;
|
|
461
|
+
}) => string);
|
|
462
|
+
isInitRun?: boolean;
|
|
463
|
+
actionUrl?: string;
|
|
464
|
+
apiParams?: import('@es-plus/core').ApiParams;
|
|
465
|
+
httpRequest?: (params: Record<string, unknown>) => Promise<unknown>;
|
|
466
|
+
listenToCallBack?: import('@es-plus/core').ListenToCallBack;
|
|
467
|
+
configTableOut?: import('@es-plus/core').ConfigTableOut;
|
|
468
|
+
entryQuery?: Record<string, unknown>;
|
|
469
|
+
configBtn?: import('@es-plus/core').BtnConfig[];
|
|
470
|
+
leftText?: string;
|
|
471
|
+
virtual?: boolean;
|
|
472
|
+
engine?: "default" | "virtual";
|
|
473
|
+
rowHeight?: number;
|
|
474
|
+
estimatedRowHeight?: number;
|
|
475
|
+
overscanCount?: number;
|
|
476
|
+
};
|
|
477
|
+
};
|
|
478
|
+
pagination: {
|
|
479
|
+
type: () => PaginationConfig;
|
|
480
|
+
default: () => {};
|
|
481
|
+
};
|
|
482
|
+
}, import('@vue/composition-api').ExtractPropTypes<{
|
|
483
|
+
initTabHeight: {
|
|
484
|
+
type: NumberConstructor;
|
|
485
|
+
default: number;
|
|
486
|
+
};
|
|
487
|
+
headBarClass: {
|
|
488
|
+
type: () => string | Record<string, unknown>;
|
|
489
|
+
default: string;
|
|
490
|
+
};
|
|
491
|
+
showHeaderBar: {
|
|
492
|
+
type: BooleanConstructor;
|
|
493
|
+
default: boolean;
|
|
494
|
+
};
|
|
495
|
+
dataSource: {
|
|
496
|
+
type: () => Record<string, unknown>[];
|
|
497
|
+
default: () => any[];
|
|
498
|
+
};
|
|
499
|
+
columns: {
|
|
500
|
+
type: () => TableColumn[];
|
|
501
|
+
default: () => any[];
|
|
502
|
+
};
|
|
503
|
+
options: {
|
|
504
|
+
type: () => TableOptions;
|
|
505
|
+
default: () => {
|
|
506
|
+
[key: string]: unknown;
|
|
507
|
+
border?: boolean;
|
|
508
|
+
stripe?: boolean;
|
|
509
|
+
size?: import('@es-plus/core').EsTableSize;
|
|
510
|
+
headerCellStyle?: Record<string, unknown>;
|
|
511
|
+
highlightCurrentRow?: boolean;
|
|
512
|
+
showHeader?: boolean;
|
|
513
|
+
emptyText?: string;
|
|
514
|
+
multiSelect?: boolean;
|
|
515
|
+
expand?: boolean;
|
|
516
|
+
snIndex?: boolean;
|
|
517
|
+
loading?: boolean;
|
|
518
|
+
cachePageSelection?: boolean;
|
|
519
|
+
heightType?: "auto" | "height" | "maxHeight";
|
|
520
|
+
tabHeight?: number | string;
|
|
521
|
+
height?: number | string;
|
|
522
|
+
rowkey?: string;
|
|
523
|
+
rowClassName?: string | ((params: {
|
|
524
|
+
row: import('@es-plus/core').ModelData;
|
|
525
|
+
rowIndex: number;
|
|
526
|
+
}) => string);
|
|
527
|
+
rowStyle?: Record<string, unknown> | ((params: {
|
|
528
|
+
row: import('@es-plus/core').ModelData;
|
|
529
|
+
rowIndex: number;
|
|
530
|
+
}) => Record<string, unknown>);
|
|
531
|
+
defaultSort?: {
|
|
532
|
+
prop: string;
|
|
533
|
+
order: "ascending" | "descending";
|
|
534
|
+
};
|
|
535
|
+
spanMethod?: (data: {
|
|
536
|
+
row: import('@es-plus/core').ModelData;
|
|
537
|
+
column: unknown;
|
|
538
|
+
rowIndex: number;
|
|
539
|
+
columnIndex: number;
|
|
540
|
+
}) => [number, number];
|
|
541
|
+
cellClassName?: string | ((data: {
|
|
542
|
+
row: import('@es-plus/core').ModelData;
|
|
543
|
+
column: unknown;
|
|
544
|
+
rowIndex: number;
|
|
545
|
+
columnIndex: number;
|
|
546
|
+
}) => string);
|
|
547
|
+
cellStyle?: Record<string, unknown> | ((data: {
|
|
548
|
+
row: import('@es-plus/core').ModelData;
|
|
549
|
+
column: unknown;
|
|
550
|
+
rowIndex: number;
|
|
551
|
+
columnIndex: number;
|
|
552
|
+
}) => Record<string, unknown>);
|
|
553
|
+
headerCellClassName?: string | ((data: {
|
|
554
|
+
column: unknown;
|
|
555
|
+
rowIndex: number;
|
|
556
|
+
}) => string);
|
|
557
|
+
isInitRun?: boolean;
|
|
558
|
+
actionUrl?: string;
|
|
559
|
+
apiParams?: import('@es-plus/core').ApiParams;
|
|
560
|
+
httpRequest?: (params: Record<string, unknown>) => Promise<unknown>;
|
|
561
|
+
listenToCallBack?: import('@es-plus/core').ListenToCallBack;
|
|
562
|
+
configTableOut?: import('@es-plus/core').ConfigTableOut;
|
|
563
|
+
entryQuery?: Record<string, unknown>;
|
|
564
|
+
configBtn?: import('@es-plus/core').BtnConfig[];
|
|
565
|
+
leftText?: string;
|
|
566
|
+
virtual?: boolean;
|
|
567
|
+
engine?: "default" | "virtual";
|
|
568
|
+
rowHeight?: number;
|
|
569
|
+
estimatedRowHeight?: number;
|
|
570
|
+
overscanCount?: number;
|
|
571
|
+
};
|
|
572
|
+
};
|
|
573
|
+
pagination: {
|
|
574
|
+
type: () => PaginationConfig;
|
|
575
|
+
default: () => {};
|
|
576
|
+
};
|
|
577
|
+
}>, any, any, Vue$1, {}, false, {}, {}, {}, {}, string, {}, any, import('@vue/runtime-core').ComponentProvideOptions, {
|
|
578
|
+
P: {};
|
|
579
|
+
B: {};
|
|
580
|
+
D: {};
|
|
581
|
+
C: import('@vue/runtime-core').ComputedOptions;
|
|
582
|
+
M: import('@vue/runtime-core').MethodOptions;
|
|
583
|
+
Defaults: {};
|
|
584
|
+
} & {
|
|
585
|
+
P: {};
|
|
586
|
+
B: {};
|
|
587
|
+
D: {};
|
|
588
|
+
C: {};
|
|
589
|
+
M: {};
|
|
590
|
+
Defaults: {};
|
|
591
|
+
}, {}, import('@vue/composition-api').ShallowUnwrapRef<{
|
|
592
|
+
instance: Record<string, unknown>;
|
|
593
|
+
resizeObservers: () => void;
|
|
594
|
+
httpRequestInstance: (model?: Record<string, unknown>) => Promise<unknown>;
|
|
595
|
+
getSelectionRows: () => {
|
|
596
|
+
[x: string]: unknown;
|
|
597
|
+
}[];
|
|
598
|
+
clearSelection: () => any;
|
|
599
|
+
clearAllSelection: () => void;
|
|
600
|
+
refresh: () => any;
|
|
601
|
+
scrollToRow: (_row: number) => void;
|
|
602
|
+
tableRef: any;
|
|
603
|
+
tbBtnRef: any;
|
|
604
|
+
headBarRef: import('@vue/composition-api').Ref<HTMLElement>;
|
|
605
|
+
paginationRef: import('@vue/composition-api').Ref<HTMLElement>;
|
|
606
|
+
tableId: import('@vue/composition-api').Ref<string>;
|
|
607
|
+
tableData: import('@vue/composition-api').Ref<{
|
|
608
|
+
[x: string]: unknown;
|
|
609
|
+
}[]>;
|
|
610
|
+
effectiveDataSource: import('@vue/composition-api').ComputedRef<Record<string, unknown>[]>;
|
|
611
|
+
loadStatus: import('@vue/composition-api').ComputedRef<boolean>;
|
|
612
|
+
paginationConfig: import('@vue/composition-api').Ref<{
|
|
613
|
+
pageSize?: number;
|
|
614
|
+
current?: number;
|
|
615
|
+
total?: number;
|
|
616
|
+
pageSizes?: number[];
|
|
617
|
+
size?: import('@es-plus/core').EsButtonSize;
|
|
618
|
+
isSmall?: boolean;
|
|
619
|
+
layout?: string;
|
|
620
|
+
}>;
|
|
621
|
+
formInstance: import('@vue/composition-api').Ref<unknown>;
|
|
622
|
+
filteredColumns: import('@vue/composition-api').ComputedRef<{
|
|
623
|
+
[x: string]: unknown;
|
|
624
|
+
prop?: string;
|
|
625
|
+
key?: string;
|
|
626
|
+
label?: string;
|
|
627
|
+
labelKey?: string;
|
|
628
|
+
width?: number | string;
|
|
629
|
+
minWidth?: number | string;
|
|
630
|
+
align?: string;
|
|
631
|
+
fixed?: boolean | "left" | "right" | string;
|
|
632
|
+
type?: "index" | "selection" | "expand";
|
|
633
|
+
sortable?: boolean | "custom";
|
|
634
|
+
formatter?: (row: import('@es-plus/core').ModelData, col?: unknown, value?: unknown, index?: number) => string;
|
|
635
|
+
render?: (h: import('@es-plus/core').RenderFn, ctx: {
|
|
636
|
+
row: import('@es-plus/core').ModelData;
|
|
637
|
+
value: unknown;
|
|
638
|
+
index: number;
|
|
639
|
+
columnIndex?: number;
|
|
640
|
+
}) => import('@es-plus/core').AnyVNode;
|
|
641
|
+
scopedSlots?: {
|
|
642
|
+
customRender?: string;
|
|
643
|
+
};
|
|
644
|
+
groups?: /*elided*/ any[];
|
|
645
|
+
ellipsis?: boolean;
|
|
646
|
+
hidCol?: boolean;
|
|
647
|
+
btns?: {
|
|
648
|
+
[x: string]: unknown;
|
|
649
|
+
name: string;
|
|
650
|
+
type?: import('@es-plus/core').EsButtonType;
|
|
651
|
+
icon?: string;
|
|
652
|
+
permissionValue?: string;
|
|
653
|
+
clickEvent?: (row: import('@es-plus/core').ModelData) => void;
|
|
654
|
+
}[];
|
|
655
|
+
}[]>;
|
|
656
|
+
tableBindAttrs: import('@vue/composition-api').ComputedRef<Record<string, unknown>>;
|
|
657
|
+
hasDefaultSlot: import('@vue/composition-api').ComputedRef<boolean>;
|
|
658
|
+
heightType: import('@vue/composition-api').ComputedRef<"auto" | "height" | "maxHeight">;
|
|
659
|
+
tabHeight: import('@vue/composition-api').ComputedRef<string>;
|
|
660
|
+
slotStyles: import('@vue/composition-api').ComputedRef<{
|
|
661
|
+
type: string;
|
|
662
|
+
value: string | Record<string, unknown>;
|
|
663
|
+
}>;
|
|
664
|
+
slotStyleValue: import('@vue/composition-api').ComputedRef<Record<string, string | number>>;
|
|
665
|
+
slotClassValue: import('@vue/composition-api').ComputedRef<string>;
|
|
666
|
+
slotState: import('@vue/composition-api').Ref<boolean>;
|
|
667
|
+
showPagination: import('@vue/composition-api').Ref<boolean>;
|
|
668
|
+
containerStyle: import('@vue/composition-api').ComputedRef<{
|
|
669
|
+
[x: string]: string;
|
|
670
|
+
}>;
|
|
671
|
+
paginationStyle: import('@vue/composition-api').ComputedRef<{
|
|
672
|
+
position: "absolute" | "static";
|
|
673
|
+
bottom: string;
|
|
674
|
+
left: string;
|
|
675
|
+
zIndex: number;
|
|
676
|
+
background: string;
|
|
677
|
+
}>;
|
|
678
|
+
layout: import('@vue/composition-api').ComputedRef<any>;
|
|
679
|
+
paginationPageSizes: import('@vue/composition-api').ComputedRef<any>;
|
|
680
|
+
paginationIsSmall: import('@vue/composition-api').ComputedRef<any>;
|
|
681
|
+
paginationBackground: import('@vue/composition-api').ComputedRef<any>;
|
|
682
|
+
paginationPrevText: import('@vue/composition-api').ComputedRef<string>;
|
|
683
|
+
paginationNextText: import('@vue/composition-api').ComputedRef<string>;
|
|
684
|
+
handleTableSelectionChange: (val: Record<string, unknown>[]) => void;
|
|
685
|
+
changeTableSort: (column: Record<string, unknown>) => void;
|
|
686
|
+
handleSizeChange: (size: number) => void;
|
|
687
|
+
handleIndexChange: (val: number) => void;
|
|
688
|
+
}> & import('@vue/composition-api').Data, {}, import('@vue/runtime-core').ComputedOptions, import('@vue/runtime-core').MethodOptions & {
|
|
689
|
+
initTabHeight: {
|
|
690
|
+
type: NumberConstructor;
|
|
691
|
+
default: number;
|
|
692
|
+
};
|
|
693
|
+
headBarClass: {
|
|
694
|
+
type: () => string | Record<string, unknown>;
|
|
695
|
+
default: string;
|
|
696
|
+
};
|
|
697
|
+
showHeaderBar: {
|
|
698
|
+
type: BooleanConstructor;
|
|
699
|
+
default: boolean;
|
|
700
|
+
};
|
|
701
|
+
dataSource: {
|
|
702
|
+
type: () => Record<string, unknown>[];
|
|
703
|
+
default: () => any[];
|
|
704
|
+
};
|
|
705
|
+
columns: {
|
|
706
|
+
type: () => TableColumn[];
|
|
707
|
+
default: () => any[];
|
|
708
|
+
};
|
|
709
|
+
options: {
|
|
710
|
+
type: () => TableOptions;
|
|
711
|
+
default: () => {
|
|
712
|
+
[key: string]: unknown;
|
|
713
|
+
border?: boolean;
|
|
714
|
+
stripe?: boolean;
|
|
715
|
+
size?: import('@es-plus/core').EsTableSize;
|
|
716
|
+
headerCellStyle?: Record<string, unknown>;
|
|
717
|
+
highlightCurrentRow?: boolean;
|
|
718
|
+
showHeader?: boolean;
|
|
719
|
+
emptyText?: string;
|
|
720
|
+
multiSelect?: boolean;
|
|
721
|
+
expand?: boolean;
|
|
722
|
+
snIndex?: boolean;
|
|
723
|
+
loading?: boolean;
|
|
724
|
+
cachePageSelection?: boolean;
|
|
725
|
+
heightType?: "auto" | "height" | "maxHeight";
|
|
726
|
+
tabHeight?: number | string;
|
|
727
|
+
height?: number | string;
|
|
728
|
+
rowkey?: string;
|
|
729
|
+
rowClassName?: string | ((params: {
|
|
730
|
+
row: import('@es-plus/core').ModelData;
|
|
731
|
+
rowIndex: number;
|
|
732
|
+
}) => string);
|
|
733
|
+
rowStyle?: Record<string, unknown> | ((params: {
|
|
734
|
+
row: import('@es-plus/core').ModelData;
|
|
735
|
+
rowIndex: number;
|
|
736
|
+
}) => Record<string, unknown>);
|
|
737
|
+
defaultSort?: {
|
|
738
|
+
prop: string;
|
|
739
|
+
order: "ascending" | "descending";
|
|
740
|
+
};
|
|
741
|
+
spanMethod?: (data: {
|
|
742
|
+
row: import('@es-plus/core').ModelData;
|
|
743
|
+
column: unknown;
|
|
744
|
+
rowIndex: number;
|
|
745
|
+
columnIndex: number;
|
|
746
|
+
}) => [number, number];
|
|
747
|
+
cellClassName?: string | ((data: {
|
|
748
|
+
row: import('@es-plus/core').ModelData;
|
|
749
|
+
column: unknown;
|
|
750
|
+
rowIndex: number;
|
|
751
|
+
columnIndex: number;
|
|
752
|
+
}) => string);
|
|
753
|
+
cellStyle?: Record<string, unknown> | ((data: {
|
|
754
|
+
row: import('@es-plus/core').ModelData;
|
|
755
|
+
column: unknown;
|
|
756
|
+
rowIndex: number;
|
|
757
|
+
columnIndex: number;
|
|
758
|
+
}) => Record<string, unknown>);
|
|
759
|
+
headerCellClassName?: string | ((data: {
|
|
760
|
+
column: unknown;
|
|
761
|
+
rowIndex: number;
|
|
762
|
+
}) => string);
|
|
763
|
+
isInitRun?: boolean;
|
|
764
|
+
actionUrl?: string;
|
|
765
|
+
apiParams?: import('@es-plus/core').ApiParams;
|
|
766
|
+
httpRequest?: (params: Record<string, unknown>) => Promise<unknown>;
|
|
767
|
+
listenToCallBack?: import('@es-plus/core').ListenToCallBack;
|
|
768
|
+
configTableOut?: import('@es-plus/core').ConfigTableOut;
|
|
769
|
+
entryQuery?: Record<string, unknown>;
|
|
770
|
+
configBtn?: import('@es-plus/core').BtnConfig[];
|
|
771
|
+
leftText?: string;
|
|
772
|
+
virtual?: boolean;
|
|
773
|
+
engine?: "default" | "virtual";
|
|
774
|
+
rowHeight?: number;
|
|
775
|
+
estimatedRowHeight?: number;
|
|
776
|
+
overscanCount?: number;
|
|
777
|
+
};
|
|
778
|
+
};
|
|
779
|
+
pagination: {
|
|
780
|
+
type: () => PaginationConfig;
|
|
781
|
+
default: () => {};
|
|
782
|
+
};
|
|
783
|
+
}, {}>> & Omit<VueConstructor, never> & (new (...args: any[]) => import('@vue/composition-api').ComponentRenderProxy<{
|
|
289
784
|
options: TableOptions;
|
|
290
785
|
initTabHeight: number;
|
|
291
786
|
headBarClass: string | Record<string, unknown>;
|
|
@@ -386,6 +881,8 @@ declare const _default: import('vue').ComponentOptions<import('vue').default<Rec
|
|
|
386
881
|
paginationPageSizes: import('@vue/composition-api').ComputedRef<any>;
|
|
387
882
|
paginationIsSmall: import('@vue/composition-api').ComputedRef<any>;
|
|
388
883
|
paginationBackground: import('@vue/composition-api').ComputedRef<any>;
|
|
884
|
+
paginationPrevText: import('@vue/composition-api').ComputedRef<string>;
|
|
885
|
+
paginationNextText: import('@vue/composition-api').ComputedRef<string>;
|
|
389
886
|
handleTableSelectionChange: (val: Record<string, unknown>[]) => void;
|
|
390
887
|
changeTableSort: (column: Record<string, unknown>) => void;
|
|
391
888
|
handleSizeChange: (size: number) => void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"component.vue.d.ts","sourceRoot":"","sources":["../../../src/components/es-table/component.vue"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"component.vue.d.ts","sourceRoot":"","sources":["../../../src/components/es-table/component.vue"],"names":[],"mappings":"AA8IA;AA6BA,OAAO,EAIL,KAAK,WAAW,EAChB,KAAK,gBAAgB,EACrB,KAAK,YAAY,EAClB,MAAM,eAAe,CAAA;;;;kCAurBmB,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;wBAyGtC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gEAzjBO,CAAC,gBAGlC,CAAL,gBACO,CAAF;;;;;uBAGqC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAyQC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;8BA4QjC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;6BApBxB,MAAM;6BAUN,MAAM;;;;;;;cAzpBC,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;cAK5D,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;;;;cAI/B,MAAM,WAAW,EAAE;;;;cAIlB,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIlB,MAAM,gBAAgB;;;;;;;;;cAjBD,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;cAK5D,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;;;;cAI/B,MAAM,WAAW,EAAE;;;;cAIlB,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIlB,MAAM,gBAAgB;;;;;;kCAskBH,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;wBAyGtC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gEAzjBO,CAAC,gBAGlC,CAAL,gBACO,CAAF;;;;;uBAGqC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAyQC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;8BA4QjC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;6BApBxB,MAAM;6BAUN,MAAM;;;;;;;cAzpBC,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;cAK5D,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;;;;cAI/B,MAAM,WAAW,EAAE;;;;cAIlB,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIlB,MAAM,gBAAgB;;;;;;;;;cAjBD,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;cAK5D,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;;;;cAI/B,MAAM,WAAW,EAAE;;;;cAIlB,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIlB,MAAM,gBAAgB;;;;;;;;;;;;;;;;;;;;kCAskBH,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;wBAyGtC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gEAzjBO,CAAC,gBAGlC,CAAL,gBACO,CAAF;;;;;uBAGqC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAyQC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;8BA4QjC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;6BApBxB,MAAM;6BAUN,MAAM;;;;;;;cAzpBC,MAAM,MAAM,GAAG,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;cAK5D,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;;;;cAI/B,MAAM,WAAW,EAAE;;;;cAIlB,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAIlB,MAAM,gBAAgB;;;;;;;;;;;;;;;;kCAskBH,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;wBAyGtC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gEAzjBO,CAAC,gBAGlC,CAAL,gBACO,CAAF;;;;;uBAGqC,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAyQC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAAE;8BA4QjC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;6BApBxB,MAAM;6BAUN,MAAM;;;;;;;;;;;;;;;;;;;;AAjqB1C,wBA4vBE"}
|
|
@@ -21,7 +21,7 @@ type RenderableBtn = {
|
|
|
21
21
|
permissionValue?: string;
|
|
22
22
|
code?: 1 | 2;
|
|
23
23
|
};
|
|
24
|
-
declare const _default: import('vue').
|
|
24
|
+
declare const _default: import('@vue/runtime-core').ComponentOptionsBase<Vue$1, import('@vue/composition-api').ShallowUnwrapRef<{
|
|
25
25
|
processedBtnLeft: import('@vue/composition-api').ComputedRef<RenderableBtn[]>;
|
|
26
26
|
processedBtnRight: import('@vue/composition-api').ComputedRef<RenderableBtn[]>;
|
|
27
27
|
showContainer: import('@vue/composition-api').ComputedRef<boolean>;
|
|
@@ -63,7 +63,92 @@ declare const _default: import('vue').ComponentOptions<import('vue').default<Rec
|
|
|
63
63
|
type: () => Record<string, unknown>;
|
|
64
64
|
default: () => {};
|
|
65
65
|
};
|
|
66
|
-
}>,
|
|
66
|
+
}>, any, any, string, {}, {}, string, {}, {}, {}, string, import('@vue/runtime-core').ComponentProvideOptions> & ThisType<import('@vue/runtime-core').CreateComponentPublicInstanceWithMixins<{}, import('@vue/composition-api').ShallowUnwrapRef<{
|
|
67
|
+
processedBtnLeft: import('@vue/composition-api').ComputedRef<RenderableBtn[]>;
|
|
68
|
+
processedBtnRight: import('@vue/composition-api').ComputedRef<RenderableBtn[]>;
|
|
69
|
+
showContainer: import('@vue/composition-api').ComputedRef<boolean>;
|
|
70
|
+
getDisabledState: (item: Record<string, unknown>) => boolean;
|
|
71
|
+
buttonContainerStyle: (index: number) => {
|
|
72
|
+
display: string;
|
|
73
|
+
marginLeft: string;
|
|
74
|
+
};
|
|
75
|
+
getCompIcon: (key?: string) => string | undefined;
|
|
76
|
+
filterOptions: (item: Record<string, unknown>) => {
|
|
77
|
+
[x: string]: unknown;
|
|
78
|
+
};
|
|
79
|
+
resolveBtnSize: (item: {
|
|
80
|
+
size?: string;
|
|
81
|
+
}) => string;
|
|
82
|
+
}> & import('@vue/composition-api').Data, {}, {}, {
|
|
83
|
+
leftText: {
|
|
84
|
+
type: StringConstructor;
|
|
85
|
+
default: string;
|
|
86
|
+
};
|
|
87
|
+
btnConfig: {
|
|
88
|
+
type: () => BtnConfig[];
|
|
89
|
+
default: () => any[];
|
|
90
|
+
};
|
|
91
|
+
instance: {
|
|
92
|
+
type: () => Record<string, unknown>;
|
|
93
|
+
default: () => {};
|
|
94
|
+
};
|
|
95
|
+
}, import('@vue/composition-api').ExtractPropTypes<{
|
|
96
|
+
leftText: {
|
|
97
|
+
type: StringConstructor;
|
|
98
|
+
default: string;
|
|
99
|
+
};
|
|
100
|
+
btnConfig: {
|
|
101
|
+
type: () => BtnConfig[];
|
|
102
|
+
default: () => any[];
|
|
103
|
+
};
|
|
104
|
+
instance: {
|
|
105
|
+
type: () => Record<string, unknown>;
|
|
106
|
+
default: () => {};
|
|
107
|
+
};
|
|
108
|
+
}>, any, any, Vue$1, {}, false, {}, {}, {}, {}, string, {}, any, import('@vue/runtime-core').ComponentProvideOptions, {
|
|
109
|
+
P: {};
|
|
110
|
+
B: {};
|
|
111
|
+
D: {};
|
|
112
|
+
C: import('@vue/runtime-core').ComputedOptions;
|
|
113
|
+
M: import('@vue/runtime-core').MethodOptions;
|
|
114
|
+
Defaults: {};
|
|
115
|
+
} & {
|
|
116
|
+
P: {};
|
|
117
|
+
B: {};
|
|
118
|
+
D: {};
|
|
119
|
+
C: {};
|
|
120
|
+
M: {};
|
|
121
|
+
Defaults: {};
|
|
122
|
+
}, {}, import('@vue/composition-api').ShallowUnwrapRef<{
|
|
123
|
+
processedBtnLeft: import('@vue/composition-api').ComputedRef<RenderableBtn[]>;
|
|
124
|
+
processedBtnRight: import('@vue/composition-api').ComputedRef<RenderableBtn[]>;
|
|
125
|
+
showContainer: import('@vue/composition-api').ComputedRef<boolean>;
|
|
126
|
+
getDisabledState: (item: Record<string, unknown>) => boolean;
|
|
127
|
+
buttonContainerStyle: (index: number) => {
|
|
128
|
+
display: string;
|
|
129
|
+
marginLeft: string;
|
|
130
|
+
};
|
|
131
|
+
getCompIcon: (key?: string) => string | undefined;
|
|
132
|
+
filterOptions: (item: Record<string, unknown>) => {
|
|
133
|
+
[x: string]: unknown;
|
|
134
|
+
};
|
|
135
|
+
resolveBtnSize: (item: {
|
|
136
|
+
size?: string;
|
|
137
|
+
}) => string;
|
|
138
|
+
}> & import('@vue/composition-api').Data, {}, import('@vue/runtime-core').ComputedOptions, import('@vue/runtime-core').MethodOptions & {
|
|
139
|
+
leftText: {
|
|
140
|
+
type: StringConstructor;
|
|
141
|
+
default: string;
|
|
142
|
+
};
|
|
143
|
+
btnConfig: {
|
|
144
|
+
type: () => BtnConfig[];
|
|
145
|
+
default: () => any[];
|
|
146
|
+
};
|
|
147
|
+
instance: {
|
|
148
|
+
type: () => Record<string, unknown>;
|
|
149
|
+
default: () => {};
|
|
150
|
+
};
|
|
151
|
+
}, {}>> & Omit<VueConstructor, never> & (new (...args: any[]) => import('@vue/composition-api').ComponentRenderProxy<{
|
|
67
152
|
leftText: string;
|
|
68
153
|
btnConfig: BtnConfig[];
|
|
69
154
|
instance: Record<string, unknown>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"table-btns.vue.d.ts","sourceRoot":"","sources":["../../../src/components/es-table/table-btns.vue"],"names":[],"mappings":"AAyDA;AAoBA,OAAO,EAAsC,KAAK,SAAS,EAAE,MAAM,eAAe,CAAA;AAIlF;;;;;;;GAOG;AACH,KAAK,aAAa,GAAG;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,IAAI,CAAA;IACpC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAC,CAAA;IACtD,MAAM,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAA;IACxC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;CACb,CAAA;;;;;6BAoFmC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAG,OAAO;kCAO5B,MAAM;;;;;0BAUd,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;2BAoBtB;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,KAAG,MAAM;;;;;;;cA/FvC,MAAM,SAAS,EAAE;;;;cAIhB,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;cAJ9B,MAAM,SAAS,EAAE;;;;cAIhB,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;;;6BAsDf,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAG,OAAO;kCAO5B,MAAM;;;;;0BAUd,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;2BAoBtB;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,KAAG,MAAM;;;;;;;;;;AArG5D,wBAqHE"}
|
|
1
|
+
{"version":3,"file":"table-btns.vue.d.ts","sourceRoot":"","sources":["../../../src/components/es-table/table-btns.vue"],"names":[],"mappings":"AAyDA;AAoBA,OAAO,EAAsC,KAAK,SAAS,EAAE,MAAM,eAAe,CAAA;AAIlF;;;;;;;GAOG;AACH,KAAK,aAAa,GAAG;IACnB,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,KAAK,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,IAAI,CAAA;IACpC,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,IAAI,CAAC,EAAE,MAAM,CAAA;IACb,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,QAAQ,CAAC,EAAE,OAAO,GAAG,CAAC,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAC,CAAA;IACtD,MAAM,CAAC,EAAE,CAAC,GAAG,IAAI,EAAE,OAAO,EAAE,KAAK,OAAO,CAAA;IACxC,MAAM,CAAC,EAAE,OAAO,CAAA;IAChB,eAAe,CAAC,EAAE,MAAM,CAAA;IACxB,IAAI,CAAC,EAAE,CAAC,GAAG,CAAC,CAAA;CACb,CAAA;;;;;6BAoFmC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAG,OAAO;kCAO5B,MAAM;;;;;0BAUd,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;2BAoBtB;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,KAAG,MAAM;;;;;;;cA/FvC,MAAM,SAAS,EAAE;;;;cAIhB,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;cAJ9B,MAAM,SAAS,EAAE;;;;cAIhB,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;6BAsDf,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAG,OAAO;kCAO5B,MAAM;;;;;0BAUd,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;2BAoBtB;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,KAAG,MAAM;;;;;;;cA/FvC,MAAM,SAAS,EAAE;;;;cAIhB,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;cAJ9B,MAAM,SAAS,EAAE;;;;cAIhB,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;;;;;;;;;;;;;6BAsDf,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAG,OAAO;kCAO5B,MAAM;;;;;0BAUd,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;2BAoBtB;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,KAAG,MAAM;;;;;;;cA/FvC,MAAM,SAAS,EAAE;;;;cAIhB,MAAM,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;;;;;;;;;6BAsDf,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAG,OAAO;kCAO5B,MAAM;;;;;0BAUd,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC;;;2BAoBtB;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,KAAG,MAAM;;;;;;;;;;AArG5D,wBAqHE"}
|