guava-ui 0.1.7 → 0.1.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/README.md +7 -0
- package/lib/guava-ui.es.js +9346 -2796
- package/lib/guava-ui.es.js.map +1 -1
- package/lib/guava-ui.umd.js +28 -2
- package/lib/guava-ui.umd.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/types/index.d.ts +1783 -283
- package/package.json +1 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -10,11 +10,16 @@ import { ComputedOptions } from 'vue';
|
|
|
10
10
|
import { CSSProperties } from 'vue';
|
|
11
11
|
import { DefineComponent } from 'vue';
|
|
12
12
|
import { ExtractPropTypes } from 'vue';
|
|
13
|
+
import { FilterNodeMethodFunction } from 'element-plus/es/components/tree/src/tree.type';
|
|
13
14
|
import { JSX } from 'vue/jsx-runtime';
|
|
15
|
+
import { LoadFunction } from 'element-plus/es/components/tree/src/tree.type';
|
|
14
16
|
import { MethodOptions } from 'vue';
|
|
15
17
|
import { Pinia } from 'pinia';
|
|
16
18
|
import { PropType } from 'vue';
|
|
17
19
|
import { PublicProps } from 'vue';
|
|
20
|
+
import { RenderContentFunction } from 'element-plus/es/components/tree/src/tree.type';
|
|
21
|
+
import { TreeComponentProps } from 'element-plus/es/components/tree/src/tree.type';
|
|
22
|
+
import { TreeOptionProps } from 'element-plus';
|
|
18
23
|
import { ValidatorFunction } from 'vue-types/dist/types';
|
|
19
24
|
import { VueTypesInterface } from 'vue-types';
|
|
20
25
|
import { VueTypeValidableDef } from 'vue-types';
|
|
@@ -32,6 +37,8 @@ export declare const addClass: (ele: any, cls: any) => void;
|
|
|
32
37
|
declare const alert_2: (msg: unknown, type?: MessageType_2) => Promise<void>;
|
|
33
38
|
export { alert_2 as alert }
|
|
34
39
|
|
|
40
|
+
export declare const amountFormat: (val: string | number, decimal?: number) => string;
|
|
41
|
+
|
|
35
42
|
declare type BizType = 'reset' | 'import' | 'export' | 'shrink' | 'expand';
|
|
36
43
|
|
|
37
44
|
declare type BizType_2 = 'tableedit';
|
|
@@ -97,7 +104,9 @@ export declare const generateKey: (num: number) => string;
|
|
|
97
104
|
|
|
98
105
|
export declare const getDomCssProp: (prop: string, dom?: HTMLElement) => string;
|
|
99
106
|
|
|
100
|
-
export declare
|
|
107
|
+
export declare const getVNodeName: (vnode: any) => string;
|
|
108
|
+
|
|
109
|
+
export declare const getVNodeText: (vnode: any) => string;
|
|
101
110
|
|
|
102
111
|
export declare const GuavaUI: {
|
|
103
112
|
install: (app: App, options: GuavaUIOptions) => void;
|
|
@@ -110,6 +119,83 @@ export declare type GuavaUIOptions = {
|
|
|
110
119
|
|
|
111
120
|
export declare const GvBacktop: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
112
121
|
|
|
122
|
+
export declare const GvBadge: DefineComponent<ExtractPropTypes< {
|
|
123
|
+
vref: {
|
|
124
|
+
type: StringConstructor;
|
|
125
|
+
default: string;
|
|
126
|
+
};
|
|
127
|
+
value: {
|
|
128
|
+
type: PropType<number | string>;
|
|
129
|
+
default: string;
|
|
130
|
+
};
|
|
131
|
+
max: {
|
|
132
|
+
type: NumberConstructor;
|
|
133
|
+
default: number;
|
|
134
|
+
};
|
|
135
|
+
isDot: {
|
|
136
|
+
type: BooleanConstructor;
|
|
137
|
+
default: boolean;
|
|
138
|
+
};
|
|
139
|
+
hidden: {
|
|
140
|
+
type: BooleanConstructor;
|
|
141
|
+
default: boolean;
|
|
142
|
+
};
|
|
143
|
+
showZero: {
|
|
144
|
+
type: BooleanConstructor;
|
|
145
|
+
default: boolean;
|
|
146
|
+
};
|
|
147
|
+
color: {
|
|
148
|
+
type: StringConstructor;
|
|
149
|
+
default: string;
|
|
150
|
+
};
|
|
151
|
+
type: {
|
|
152
|
+
type: PropType<TBadgeType>;
|
|
153
|
+
default: string;
|
|
154
|
+
};
|
|
155
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
156
|
+
vref: {
|
|
157
|
+
type: StringConstructor;
|
|
158
|
+
default: string;
|
|
159
|
+
};
|
|
160
|
+
value: {
|
|
161
|
+
type: PropType<number | string>;
|
|
162
|
+
default: string;
|
|
163
|
+
};
|
|
164
|
+
max: {
|
|
165
|
+
type: NumberConstructor;
|
|
166
|
+
default: number;
|
|
167
|
+
};
|
|
168
|
+
isDot: {
|
|
169
|
+
type: BooleanConstructor;
|
|
170
|
+
default: boolean;
|
|
171
|
+
};
|
|
172
|
+
hidden: {
|
|
173
|
+
type: BooleanConstructor;
|
|
174
|
+
default: boolean;
|
|
175
|
+
};
|
|
176
|
+
showZero: {
|
|
177
|
+
type: BooleanConstructor;
|
|
178
|
+
default: boolean;
|
|
179
|
+
};
|
|
180
|
+
color: {
|
|
181
|
+
type: StringConstructor;
|
|
182
|
+
default: string;
|
|
183
|
+
};
|
|
184
|
+
type: {
|
|
185
|
+
type: PropType<TBadgeType>;
|
|
186
|
+
default: string;
|
|
187
|
+
};
|
|
188
|
+
}>> & Readonly<{}>, {
|
|
189
|
+
value: string | number;
|
|
190
|
+
type: TBadgeType;
|
|
191
|
+
vref: string;
|
|
192
|
+
max: number;
|
|
193
|
+
isDot: boolean;
|
|
194
|
+
hidden: boolean;
|
|
195
|
+
showZero: boolean;
|
|
196
|
+
color: string;
|
|
197
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
198
|
+
|
|
113
199
|
export declare const GvBreadCrumb: DefineComponent< {}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
114
200
|
|
|
115
201
|
export declare const GvButton: DefineComponent<ExtractPropTypes< {
|
|
@@ -133,6 +219,10 @@ type: {
|
|
|
133
219
|
type: PropType<ButtonType>;
|
|
134
220
|
default: string;
|
|
135
221
|
};
|
|
222
|
+
link: {
|
|
223
|
+
type: BooleanConstructor;
|
|
224
|
+
default: boolean;
|
|
225
|
+
};
|
|
136
226
|
loading: {
|
|
137
227
|
type: BooleanConstructor;
|
|
138
228
|
default: boolean;
|
|
@@ -195,6 +285,10 @@ type: {
|
|
|
195
285
|
type: PropType<ButtonType>;
|
|
196
286
|
default: string;
|
|
197
287
|
};
|
|
288
|
+
link: {
|
|
289
|
+
type: BooleanConstructor;
|
|
290
|
+
default: boolean;
|
|
291
|
+
};
|
|
198
292
|
loading: {
|
|
199
293
|
type: BooleanConstructor;
|
|
200
294
|
default: boolean;
|
|
@@ -240,7 +334,8 @@ default: () => void;
|
|
|
240
334
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
241
335
|
onConfirm?: ((...args: any[]) => any) | undefined;
|
|
242
336
|
}>, {
|
|
243
|
-
|
|
337
|
+
link: boolean;
|
|
338
|
+
type: "" | "default" | "primary" | "success" | "warning" | "danger" | "info" | "text";
|
|
244
339
|
size: "" | "small" | "default" | "large";
|
|
245
340
|
text: string;
|
|
246
341
|
icon: string;
|
|
@@ -257,6 +352,8 @@ args: string;
|
|
|
257
352
|
cb: (args?: any) => void;
|
|
258
353
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
259
354
|
|
|
355
|
+
export declare const GvCard: DefineComponent< {}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
356
|
+
|
|
260
357
|
export declare const GvCascader: DefineComponent<ExtractPropTypes< {
|
|
261
358
|
vref: {
|
|
262
359
|
type: StringConstructor;
|
|
@@ -429,6 +526,7 @@ value: unknown[];
|
|
|
429
526
|
lazy: boolean;
|
|
430
527
|
placeholder: string;
|
|
431
528
|
size: "" | "small" | "default" | "large";
|
|
529
|
+
vref: string;
|
|
432
530
|
trigger: string;
|
|
433
531
|
disabled: boolean;
|
|
434
532
|
options: CascaderOption[];
|
|
@@ -437,180 +535,425 @@ clearable: boolean;
|
|
|
437
535
|
filterable: boolean;
|
|
438
536
|
visible: boolean;
|
|
439
537
|
separator: string;
|
|
440
|
-
vref: string;
|
|
441
538
|
showAllLevels: boolean;
|
|
442
539
|
lazyLoad: (node: any, resolve: (data: any[]) => void, reject: () => void) => void;
|
|
443
540
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
444
541
|
|
|
445
|
-
export declare const
|
|
446
|
-
|
|
447
|
-
type:
|
|
448
|
-
default:
|
|
449
|
-
};
|
|
450
|
-
offset: {
|
|
451
|
-
type: NumberConstructor;
|
|
452
|
-
default: number;
|
|
453
|
-
};
|
|
454
|
-
xs: {
|
|
455
|
-
type: PropType<number | undefined>;
|
|
456
|
-
default: undefined;
|
|
542
|
+
export declare const GvCheckbox: DefineComponent<ExtractPropTypes< {
|
|
543
|
+
vref: {
|
|
544
|
+
type: StringConstructor;
|
|
545
|
+
default: string;
|
|
457
546
|
};
|
|
458
|
-
|
|
459
|
-
type: PropType<
|
|
547
|
+
value: {
|
|
548
|
+
type: PropType<TCheckboxValueType>;
|
|
460
549
|
default: undefined;
|
|
461
550
|
};
|
|
462
|
-
|
|
463
|
-
type:
|
|
464
|
-
default:
|
|
551
|
+
visible: {
|
|
552
|
+
type: BooleanConstructor;
|
|
553
|
+
default: boolean;
|
|
465
554
|
};
|
|
466
|
-
|
|
467
|
-
type:
|
|
468
|
-
default:
|
|
555
|
+
indeterminate: {
|
|
556
|
+
type: BooleanConstructor;
|
|
557
|
+
default: boolean;
|
|
469
558
|
};
|
|
470
|
-
|
|
471
|
-
type: PropType<
|
|
559
|
+
label: {
|
|
560
|
+
type: PropType<TCheckboxValueType>;
|
|
472
561
|
default: undefined;
|
|
473
562
|
};
|
|
474
|
-
|
|
475
|
-
type: StringConstructor;
|
|
476
|
-
default: string;
|
|
477
|
-
};
|
|
478
|
-
visible: {
|
|
563
|
+
disabled: {
|
|
479
564
|
type: BooleanConstructor;
|
|
480
565
|
default: boolean;
|
|
481
566
|
};
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
default: number;
|
|
567
|
+
border: {
|
|
568
|
+
type: BooleanConstructor;
|
|
569
|
+
default: boolean;
|
|
486
570
|
};
|
|
487
|
-
|
|
488
|
-
type:
|
|
489
|
-
default:
|
|
571
|
+
size: {
|
|
572
|
+
type: PropType<ComponentSize>;
|
|
573
|
+
default: string;
|
|
490
574
|
};
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
575
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
576
|
+
vref: {
|
|
577
|
+
type: StringConstructor;
|
|
578
|
+
default: string;
|
|
494
579
|
};
|
|
495
|
-
|
|
496
|
-
type: PropType<
|
|
580
|
+
value: {
|
|
581
|
+
type: PropType<TCheckboxValueType>;
|
|
497
582
|
default: undefined;
|
|
498
583
|
};
|
|
499
|
-
|
|
500
|
-
type:
|
|
501
|
-
default:
|
|
584
|
+
visible: {
|
|
585
|
+
type: BooleanConstructor;
|
|
586
|
+
default: boolean;
|
|
502
587
|
};
|
|
503
|
-
|
|
504
|
-
type:
|
|
505
|
-
default:
|
|
588
|
+
indeterminate: {
|
|
589
|
+
type: BooleanConstructor;
|
|
590
|
+
default: boolean;
|
|
506
591
|
};
|
|
507
|
-
|
|
508
|
-
type: PropType<
|
|
592
|
+
label: {
|
|
593
|
+
type: PropType<TCheckboxValueType>;
|
|
509
594
|
default: undefined;
|
|
510
595
|
};
|
|
511
|
-
|
|
512
|
-
type:
|
|
513
|
-
default:
|
|
596
|
+
disabled: {
|
|
597
|
+
type: BooleanConstructor;
|
|
598
|
+
default: boolean;
|
|
514
599
|
};
|
|
515
|
-
|
|
600
|
+
border: {
|
|
516
601
|
type: BooleanConstructor;
|
|
517
602
|
default: boolean;
|
|
518
603
|
};
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
604
|
+
size: {
|
|
605
|
+
type: PropType<ComponentSize>;
|
|
606
|
+
default: string;
|
|
607
|
+
};
|
|
608
|
+
}>> & Readonly<{
|
|
609
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
610
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
611
|
+
}>, {
|
|
612
|
+
value: TCheckboxValueType;
|
|
613
|
+
size: "" | "small" | "default" | "large";
|
|
614
|
+
vref: string;
|
|
615
|
+
label: TCheckboxValueType;
|
|
616
|
+
disabled: boolean;
|
|
523
617
|
visible: boolean;
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
md: number | undefined;
|
|
527
|
-
lg: number | undefined;
|
|
528
|
-
xl: number | undefined;
|
|
618
|
+
border: boolean;
|
|
619
|
+
indeterminate: boolean;
|
|
529
620
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
530
621
|
|
|
531
|
-
export declare const
|
|
622
|
+
export declare const GvCheckboxButton: DefineComponent<ExtractPropTypes< {
|
|
532
623
|
vref: {
|
|
533
624
|
type: StringConstructor;
|
|
534
625
|
default: string;
|
|
535
626
|
};
|
|
536
|
-
|
|
537
|
-
type: PropType<
|
|
627
|
+
value: {
|
|
628
|
+
type: PropType<TCheckboxButtonValue>;
|
|
538
629
|
default: undefined;
|
|
539
630
|
};
|
|
540
|
-
|
|
631
|
+
name: {
|
|
541
632
|
type: StringConstructor;
|
|
542
|
-
default:
|
|
633
|
+
default: undefined;
|
|
543
634
|
};
|
|
544
|
-
|
|
545
|
-
type:
|
|
546
|
-
default:
|
|
635
|
+
visible: {
|
|
636
|
+
type: BooleanConstructor;
|
|
637
|
+
default: boolean;
|
|
547
638
|
};
|
|
548
|
-
|
|
549
|
-
type:
|
|
550
|
-
|
|
639
|
+
indeterminate: {
|
|
640
|
+
type: BooleanConstructor;
|
|
641
|
+
required: false;
|
|
642
|
+
default: boolean;
|
|
551
643
|
};
|
|
552
|
-
|
|
553
|
-
type: PropType<
|
|
644
|
+
label: {
|
|
645
|
+
type: PropType<TCheckboxButtonValue>;
|
|
554
646
|
default: undefined;
|
|
555
647
|
};
|
|
648
|
+
disabled: {
|
|
649
|
+
type: BooleanConstructor;
|
|
650
|
+
default: boolean;
|
|
651
|
+
};
|
|
652
|
+
border: {
|
|
653
|
+
type: BooleanConstructor;
|
|
654
|
+
required: false;
|
|
655
|
+
default: boolean;
|
|
656
|
+
};
|
|
556
657
|
size: {
|
|
557
|
-
type: PropType<
|
|
658
|
+
type: PropType<"large" | "default" | "small">;
|
|
558
659
|
default: string;
|
|
559
660
|
};
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
default: undefined;
|
|
563
|
-
};
|
|
564
|
-
startPlaceholder: {
|
|
661
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
662
|
+
vref: {
|
|
565
663
|
type: StringConstructor;
|
|
566
|
-
default:
|
|
664
|
+
default: string;
|
|
567
665
|
};
|
|
568
|
-
|
|
569
|
-
type:
|
|
666
|
+
value: {
|
|
667
|
+
type: PropType<TCheckboxButtonValue>;
|
|
570
668
|
default: undefined;
|
|
571
669
|
};
|
|
572
|
-
|
|
670
|
+
name: {
|
|
573
671
|
type: StringConstructor;
|
|
574
672
|
default: undefined;
|
|
575
673
|
};
|
|
576
|
-
|
|
674
|
+
visible: {
|
|
577
675
|
type: BooleanConstructor;
|
|
578
676
|
default: boolean;
|
|
579
677
|
};
|
|
580
|
-
|
|
678
|
+
indeterminate: {
|
|
581
679
|
type: BooleanConstructor;
|
|
680
|
+
required: false;
|
|
582
681
|
default: boolean;
|
|
583
682
|
};
|
|
584
|
-
|
|
585
|
-
type: PropType<
|
|
586
|
-
default: () => never[];
|
|
587
|
-
};
|
|
588
|
-
disabledDate: {
|
|
589
|
-
type: PropType<(date: Date) => boolean>;
|
|
683
|
+
label: {
|
|
684
|
+
type: PropType<TCheckboxButtonValue>;
|
|
590
685
|
default: undefined;
|
|
591
686
|
};
|
|
592
|
-
|
|
687
|
+
disabled: {
|
|
593
688
|
type: BooleanConstructor;
|
|
594
689
|
default: boolean;
|
|
595
690
|
};
|
|
596
|
-
|
|
691
|
+
border: {
|
|
597
692
|
type: BooleanConstructor;
|
|
693
|
+
required: false;
|
|
598
694
|
default: boolean;
|
|
599
695
|
};
|
|
600
|
-
|
|
696
|
+
size: {
|
|
697
|
+
type: PropType<"large" | "default" | "small">;
|
|
698
|
+
default: string;
|
|
699
|
+
};
|
|
700
|
+
}>> & Readonly<{
|
|
701
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
702
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
703
|
+
}>, {
|
|
704
|
+
name: string;
|
|
705
|
+
value: TCheckboxButtonValue;
|
|
706
|
+
size: "small" | "default" | "large";
|
|
707
|
+
vref: string;
|
|
708
|
+
label: TCheckboxButtonValue;
|
|
709
|
+
disabled: boolean;
|
|
710
|
+
visible: boolean;
|
|
711
|
+
border: boolean;
|
|
712
|
+
indeterminate: boolean;
|
|
713
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
714
|
+
|
|
715
|
+
export declare const GvCheckboxGroup: DefineComponent<ExtractPropTypes< {
|
|
601
716
|
vref: {
|
|
602
717
|
type: StringConstructor;
|
|
603
718
|
default: string;
|
|
604
719
|
};
|
|
605
|
-
|
|
606
|
-
type: PropType<
|
|
720
|
+
value: {
|
|
721
|
+
type: PropType<TCheckboxGroupType>;
|
|
722
|
+
required: false;
|
|
607
723
|
default: undefined;
|
|
608
724
|
};
|
|
609
|
-
|
|
725
|
+
label: {
|
|
610
726
|
type: StringConstructor;
|
|
727
|
+
default: undefined;
|
|
728
|
+
};
|
|
729
|
+
size: {
|
|
730
|
+
type: PropType<"large" | "default" | "small">;
|
|
611
731
|
default: string;
|
|
612
732
|
};
|
|
613
|
-
|
|
733
|
+
min: {
|
|
734
|
+
type: NumberConstructor;
|
|
735
|
+
default: undefined;
|
|
736
|
+
};
|
|
737
|
+
max: {
|
|
738
|
+
type: NumberConstructor;
|
|
739
|
+
default: undefined;
|
|
740
|
+
};
|
|
741
|
+
disabled: {
|
|
742
|
+
type: BooleanConstructor;
|
|
743
|
+
default: boolean;
|
|
744
|
+
};
|
|
745
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
746
|
+
vref: {
|
|
747
|
+
type: StringConstructor;
|
|
748
|
+
default: string;
|
|
749
|
+
};
|
|
750
|
+
value: {
|
|
751
|
+
type: PropType<TCheckboxGroupType>;
|
|
752
|
+
required: false;
|
|
753
|
+
default: undefined;
|
|
754
|
+
};
|
|
755
|
+
label: {
|
|
756
|
+
type: StringConstructor;
|
|
757
|
+
default: undefined;
|
|
758
|
+
};
|
|
759
|
+
size: {
|
|
760
|
+
type: PropType<"large" | "default" | "small">;
|
|
761
|
+
default: string;
|
|
762
|
+
};
|
|
763
|
+
min: {
|
|
764
|
+
type: NumberConstructor;
|
|
765
|
+
default: undefined;
|
|
766
|
+
};
|
|
767
|
+
max: {
|
|
768
|
+
type: NumberConstructor;
|
|
769
|
+
default: undefined;
|
|
770
|
+
};
|
|
771
|
+
disabled: {
|
|
772
|
+
type: BooleanConstructor;
|
|
773
|
+
default: boolean;
|
|
774
|
+
};
|
|
775
|
+
}>> & Readonly<{
|
|
776
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
777
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
778
|
+
}>, {
|
|
779
|
+
value: TCheckboxGroupType;
|
|
780
|
+
size: "small" | "default" | "large";
|
|
781
|
+
vref: string;
|
|
782
|
+
max: number;
|
|
783
|
+
label: string;
|
|
784
|
+
disabled: boolean;
|
|
785
|
+
min: number;
|
|
786
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
787
|
+
|
|
788
|
+
export declare const GvCol: DefineComponent<ExtractPropTypes< {
|
|
789
|
+
span: {
|
|
790
|
+
type: NumberConstructor;
|
|
791
|
+
default: number;
|
|
792
|
+
};
|
|
793
|
+
offset: {
|
|
794
|
+
type: NumberConstructor;
|
|
795
|
+
default: number;
|
|
796
|
+
};
|
|
797
|
+
xs: {
|
|
798
|
+
type: PropType<number | undefined>;
|
|
799
|
+
default: undefined;
|
|
800
|
+
};
|
|
801
|
+
sm: {
|
|
802
|
+
type: PropType<number | undefined>;
|
|
803
|
+
default: undefined;
|
|
804
|
+
};
|
|
805
|
+
md: {
|
|
806
|
+
type: PropType<number | undefined>;
|
|
807
|
+
default: undefined;
|
|
808
|
+
};
|
|
809
|
+
lg: {
|
|
810
|
+
type: PropType<number | undefined>;
|
|
811
|
+
default: undefined;
|
|
812
|
+
};
|
|
813
|
+
xl: {
|
|
814
|
+
type: PropType<number | undefined>;
|
|
815
|
+
default: undefined;
|
|
816
|
+
};
|
|
817
|
+
tag: {
|
|
818
|
+
type: StringConstructor;
|
|
819
|
+
default: string;
|
|
820
|
+
};
|
|
821
|
+
visible: {
|
|
822
|
+
type: BooleanConstructor;
|
|
823
|
+
default: boolean;
|
|
824
|
+
};
|
|
825
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
826
|
+
span: {
|
|
827
|
+
type: NumberConstructor;
|
|
828
|
+
default: number;
|
|
829
|
+
};
|
|
830
|
+
offset: {
|
|
831
|
+
type: NumberConstructor;
|
|
832
|
+
default: number;
|
|
833
|
+
};
|
|
834
|
+
xs: {
|
|
835
|
+
type: PropType<number | undefined>;
|
|
836
|
+
default: undefined;
|
|
837
|
+
};
|
|
838
|
+
sm: {
|
|
839
|
+
type: PropType<number | undefined>;
|
|
840
|
+
default: undefined;
|
|
841
|
+
};
|
|
842
|
+
md: {
|
|
843
|
+
type: PropType<number | undefined>;
|
|
844
|
+
default: undefined;
|
|
845
|
+
};
|
|
846
|
+
lg: {
|
|
847
|
+
type: PropType<number | undefined>;
|
|
848
|
+
default: undefined;
|
|
849
|
+
};
|
|
850
|
+
xl: {
|
|
851
|
+
type: PropType<number | undefined>;
|
|
852
|
+
default: undefined;
|
|
853
|
+
};
|
|
854
|
+
tag: {
|
|
855
|
+
type: StringConstructor;
|
|
856
|
+
default: string;
|
|
857
|
+
};
|
|
858
|
+
visible: {
|
|
859
|
+
type: BooleanConstructor;
|
|
860
|
+
default: boolean;
|
|
861
|
+
};
|
|
862
|
+
}>> & Readonly<{}>, {
|
|
863
|
+
offset: number;
|
|
864
|
+
span: number;
|
|
865
|
+
tag: string;
|
|
866
|
+
visible: boolean;
|
|
867
|
+
xs: number | undefined;
|
|
868
|
+
sm: number | undefined;
|
|
869
|
+
md: number | undefined;
|
|
870
|
+
lg: number | undefined;
|
|
871
|
+
xl: number | undefined;
|
|
872
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
873
|
+
|
|
874
|
+
export declare const GvDatePicker: DefineComponent<ExtractPropTypes< {
|
|
875
|
+
vref: {
|
|
876
|
+
type: StringConstructor;
|
|
877
|
+
default: string;
|
|
878
|
+
};
|
|
879
|
+
modelValue: {
|
|
880
|
+
type: PropType<TDatePickerType>;
|
|
881
|
+
default: undefined;
|
|
882
|
+
};
|
|
883
|
+
type: {
|
|
884
|
+
type: StringConstructor;
|
|
885
|
+
default: string;
|
|
886
|
+
};
|
|
887
|
+
format: {
|
|
888
|
+
type: StringConstructor;
|
|
889
|
+
default: string;
|
|
890
|
+
};
|
|
891
|
+
valueFormat: {
|
|
892
|
+
type: StringConstructor;
|
|
893
|
+
default: string;
|
|
894
|
+
};
|
|
895
|
+
defaultTime: {
|
|
896
|
+
type: PropType<Date[]>;
|
|
897
|
+
default: undefined;
|
|
898
|
+
};
|
|
899
|
+
size: {
|
|
900
|
+
type: PropType<TDatePickerSize>;
|
|
901
|
+
default: string;
|
|
902
|
+
};
|
|
903
|
+
rangeSeparator: {
|
|
904
|
+
type: StringConstructor;
|
|
905
|
+
default: undefined;
|
|
906
|
+
};
|
|
907
|
+
startPlaceholder: {
|
|
908
|
+
type: StringConstructor;
|
|
909
|
+
default: undefined;
|
|
910
|
+
};
|
|
911
|
+
endPlaceholder: {
|
|
912
|
+
type: StringConstructor;
|
|
913
|
+
default: undefined;
|
|
914
|
+
};
|
|
915
|
+
placeholder: {
|
|
916
|
+
type: StringConstructor;
|
|
917
|
+
default: undefined;
|
|
918
|
+
};
|
|
919
|
+
clearable: {
|
|
920
|
+
type: BooleanConstructor;
|
|
921
|
+
default: boolean;
|
|
922
|
+
};
|
|
923
|
+
disabled: {
|
|
924
|
+
type: BooleanConstructor;
|
|
925
|
+
default: boolean;
|
|
926
|
+
};
|
|
927
|
+
disabledDateFunc: {
|
|
928
|
+
type: PropType<string[]>;
|
|
929
|
+
default: () => never[];
|
|
930
|
+
};
|
|
931
|
+
disabledDate: {
|
|
932
|
+
type: PropType<(date: Date) => boolean>;
|
|
933
|
+
default: undefined;
|
|
934
|
+
};
|
|
935
|
+
editable: {
|
|
936
|
+
type: BooleanConstructor;
|
|
937
|
+
default: boolean;
|
|
938
|
+
};
|
|
939
|
+
unlink: {
|
|
940
|
+
type: BooleanConstructor;
|
|
941
|
+
default: boolean;
|
|
942
|
+
};
|
|
943
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "pick" | "update:modelValue")[], "blur" | "change" | "focus" | "pick" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
944
|
+
vref: {
|
|
945
|
+
type: StringConstructor;
|
|
946
|
+
default: string;
|
|
947
|
+
};
|
|
948
|
+
modelValue: {
|
|
949
|
+
type: PropType<TDatePickerType>;
|
|
950
|
+
default: undefined;
|
|
951
|
+
};
|
|
952
|
+
type: {
|
|
953
|
+
type: StringConstructor;
|
|
954
|
+
default: string;
|
|
955
|
+
};
|
|
956
|
+
format: {
|
|
614
957
|
type: StringConstructor;
|
|
615
958
|
default: string;
|
|
616
959
|
};
|
|
@@ -676,12 +1019,12 @@ default: boolean;
|
|
|
676
1019
|
type: string;
|
|
677
1020
|
placeholder: string;
|
|
678
1021
|
size: TDatePickerSize;
|
|
1022
|
+
vref: string;
|
|
679
1023
|
disabled: boolean;
|
|
680
1024
|
unlink: boolean;
|
|
681
1025
|
modelValue: TDatePickerType;
|
|
682
1026
|
clearable: boolean;
|
|
683
1027
|
editable: boolean;
|
|
684
|
-
vref: string;
|
|
685
1028
|
format: string;
|
|
686
1029
|
valueFormat: string;
|
|
687
1030
|
defaultTime: Date[];
|
|
@@ -692,47 +1035,191 @@ default: boolean;
|
|
|
692
1035
|
disabledDate: (date: Date) => boolean;
|
|
693
1036
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
694
1037
|
|
|
695
|
-
export declare const
|
|
696
|
-
|
|
697
|
-
type:
|
|
698
|
-
required:
|
|
699
|
-
default:
|
|
1038
|
+
export declare const GvDialog: DefineComponent<ExtractPropTypes< {
|
|
1039
|
+
visible: {
|
|
1040
|
+
type: BooleanConstructor;
|
|
1041
|
+
required: false;
|
|
1042
|
+
default: boolean;
|
|
700
1043
|
};
|
|
701
|
-
|
|
1044
|
+
title: {
|
|
702
1045
|
type: StringConstructor;
|
|
703
1046
|
required: false;
|
|
704
1047
|
default: string;
|
|
705
1048
|
};
|
|
706
|
-
|
|
707
|
-
type:
|
|
1049
|
+
hasFooter: {
|
|
1050
|
+
type: BooleanConstructor;
|
|
708
1051
|
required: false;
|
|
709
|
-
default:
|
|
1052
|
+
default: boolean;
|
|
710
1053
|
};
|
|
711
|
-
|
|
1054
|
+
width: {
|
|
712
1055
|
type: StringConstructor;
|
|
713
1056
|
required: false;
|
|
714
|
-
default: undefined;
|
|
715
|
-
};
|
|
716
|
-
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "setShow"[], "setShow", PublicProps, Readonly<ExtractPropTypes< {
|
|
717
|
-
label: {
|
|
718
|
-
type: StringConstructor;
|
|
719
|
-
required: true;
|
|
720
1057
|
default: string;
|
|
721
1058
|
};
|
|
722
|
-
|
|
1059
|
+
height: {
|
|
723
1060
|
type: StringConstructor;
|
|
724
1061
|
required: false;
|
|
725
|
-
default:
|
|
1062
|
+
default: undefined;
|
|
726
1063
|
};
|
|
727
|
-
|
|
728
|
-
type:
|
|
1064
|
+
nest: {
|
|
1065
|
+
type: BooleanConstructor;
|
|
729
1066
|
required: false;
|
|
730
|
-
default:
|
|
1067
|
+
default: boolean;
|
|
731
1068
|
};
|
|
732
|
-
|
|
733
|
-
type:
|
|
1069
|
+
appendToBody: {
|
|
1070
|
+
type: BooleanConstructor;
|
|
734
1071
|
required: false;
|
|
735
|
-
default:
|
|
1072
|
+
default: boolean;
|
|
1073
|
+
};
|
|
1074
|
+
fullscreen: {
|
|
1075
|
+
type: BooleanConstructor;
|
|
1076
|
+
required: false;
|
|
1077
|
+
default: boolean;
|
|
1078
|
+
};
|
|
1079
|
+
maxHeight: {
|
|
1080
|
+
type: StringConstructor;
|
|
1081
|
+
required: false;
|
|
1082
|
+
default: undefined;
|
|
1083
|
+
};
|
|
1084
|
+
closeOnClickModal: {
|
|
1085
|
+
type: BooleanConstructor;
|
|
1086
|
+
required: false;
|
|
1087
|
+
default: boolean;
|
|
1088
|
+
};
|
|
1089
|
+
closeOnPressEscape: {
|
|
1090
|
+
type: BooleanConstructor;
|
|
1091
|
+
required: false;
|
|
1092
|
+
default: boolean;
|
|
1093
|
+
};
|
|
1094
|
+
dialogClass: {
|
|
1095
|
+
type: StringConstructor;
|
|
1096
|
+
required: false;
|
|
1097
|
+
default: undefined;
|
|
1098
|
+
};
|
|
1099
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "open" | "closed" | "opened" | "update:visible")[], "cancel" | "close" | "open" | "closed" | "opened" | "update:visible", PublicProps, Readonly<ExtractPropTypes< {
|
|
1100
|
+
visible: {
|
|
1101
|
+
type: BooleanConstructor;
|
|
1102
|
+
required: false;
|
|
1103
|
+
default: boolean;
|
|
1104
|
+
};
|
|
1105
|
+
title: {
|
|
1106
|
+
type: StringConstructor;
|
|
1107
|
+
required: false;
|
|
1108
|
+
default: string;
|
|
1109
|
+
};
|
|
1110
|
+
hasFooter: {
|
|
1111
|
+
type: BooleanConstructor;
|
|
1112
|
+
required: false;
|
|
1113
|
+
default: boolean;
|
|
1114
|
+
};
|
|
1115
|
+
width: {
|
|
1116
|
+
type: StringConstructor;
|
|
1117
|
+
required: false;
|
|
1118
|
+
default: string;
|
|
1119
|
+
};
|
|
1120
|
+
height: {
|
|
1121
|
+
type: StringConstructor;
|
|
1122
|
+
required: false;
|
|
1123
|
+
default: undefined;
|
|
1124
|
+
};
|
|
1125
|
+
nest: {
|
|
1126
|
+
type: BooleanConstructor;
|
|
1127
|
+
required: false;
|
|
1128
|
+
default: boolean;
|
|
1129
|
+
};
|
|
1130
|
+
appendToBody: {
|
|
1131
|
+
type: BooleanConstructor;
|
|
1132
|
+
required: false;
|
|
1133
|
+
default: boolean;
|
|
1134
|
+
};
|
|
1135
|
+
fullscreen: {
|
|
1136
|
+
type: BooleanConstructor;
|
|
1137
|
+
required: false;
|
|
1138
|
+
default: boolean;
|
|
1139
|
+
};
|
|
1140
|
+
maxHeight: {
|
|
1141
|
+
type: StringConstructor;
|
|
1142
|
+
required: false;
|
|
1143
|
+
default: undefined;
|
|
1144
|
+
};
|
|
1145
|
+
closeOnClickModal: {
|
|
1146
|
+
type: BooleanConstructor;
|
|
1147
|
+
required: false;
|
|
1148
|
+
default: boolean;
|
|
1149
|
+
};
|
|
1150
|
+
closeOnPressEscape: {
|
|
1151
|
+
type: BooleanConstructor;
|
|
1152
|
+
required: false;
|
|
1153
|
+
default: boolean;
|
|
1154
|
+
};
|
|
1155
|
+
dialogClass: {
|
|
1156
|
+
type: StringConstructor;
|
|
1157
|
+
required: false;
|
|
1158
|
+
default: undefined;
|
|
1159
|
+
};
|
|
1160
|
+
}>> & Readonly<{
|
|
1161
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1162
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
1163
|
+
onOpen?: ((...args: any[]) => any) | undefined;
|
|
1164
|
+
onOpened?: ((...args: any[]) => any) | undefined;
|
|
1165
|
+
onClosed?: ((...args: any[]) => any) | undefined;
|
|
1166
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
1167
|
+
}>, {
|
|
1168
|
+
title: string;
|
|
1169
|
+
maxHeight: string;
|
|
1170
|
+
visible: boolean;
|
|
1171
|
+
height: string;
|
|
1172
|
+
fullscreen: boolean;
|
|
1173
|
+
appendToBody: boolean;
|
|
1174
|
+
closeOnClickModal: boolean;
|
|
1175
|
+
closeOnPressEscape: boolean;
|
|
1176
|
+
width: string;
|
|
1177
|
+
hasFooter: boolean;
|
|
1178
|
+
nest: boolean;
|
|
1179
|
+
dialogClass: string;
|
|
1180
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1181
|
+
|
|
1182
|
+
export declare const GvDivider: DefineComponent<ExtractPropTypes< {
|
|
1183
|
+
label: {
|
|
1184
|
+
type: StringConstructor;
|
|
1185
|
+
required: true;
|
|
1186
|
+
default: string;
|
|
1187
|
+
};
|
|
1188
|
+
position: {
|
|
1189
|
+
type: StringConstructor;
|
|
1190
|
+
required: false;
|
|
1191
|
+
default: string;
|
|
1192
|
+
};
|
|
1193
|
+
direction: {
|
|
1194
|
+
type: PropType<DividerDirection>;
|
|
1195
|
+
required: false;
|
|
1196
|
+
default: string;
|
|
1197
|
+
};
|
|
1198
|
+
target: {
|
|
1199
|
+
type: StringConstructor;
|
|
1200
|
+
required: false;
|
|
1201
|
+
default: undefined;
|
|
1202
|
+
};
|
|
1203
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "setShow"[], "setShow", PublicProps, Readonly<ExtractPropTypes< {
|
|
1204
|
+
label: {
|
|
1205
|
+
type: StringConstructor;
|
|
1206
|
+
required: true;
|
|
1207
|
+
default: string;
|
|
1208
|
+
};
|
|
1209
|
+
position: {
|
|
1210
|
+
type: StringConstructor;
|
|
1211
|
+
required: false;
|
|
1212
|
+
default: string;
|
|
1213
|
+
};
|
|
1214
|
+
direction: {
|
|
1215
|
+
type: PropType<DividerDirection>;
|
|
1216
|
+
required: false;
|
|
1217
|
+
default: string;
|
|
1218
|
+
};
|
|
1219
|
+
target: {
|
|
1220
|
+
type: StringConstructor;
|
|
1221
|
+
required: false;
|
|
1222
|
+
default: undefined;
|
|
736
1223
|
};
|
|
737
1224
|
}>> & Readonly<{
|
|
738
1225
|
onSetShow?: ((...args: any[]) => any) | undefined;
|
|
@@ -743,6 +1230,69 @@ position: string;
|
|
|
743
1230
|
direction: DividerDirection;
|
|
744
1231
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
745
1232
|
|
|
1233
|
+
export declare const GvDrawer: DefineComponent<ExtractPropTypes< {
|
|
1234
|
+
visible: {
|
|
1235
|
+
type: BooleanConstructor;
|
|
1236
|
+
required: false;
|
|
1237
|
+
default: boolean;
|
|
1238
|
+
};
|
|
1239
|
+
title: {
|
|
1240
|
+
type: StringConstructor;
|
|
1241
|
+
required: false;
|
|
1242
|
+
default: string;
|
|
1243
|
+
};
|
|
1244
|
+
direction: {
|
|
1245
|
+
type: PropType<"rtl" | "ltr" | "ttb" | "btt">;
|
|
1246
|
+
required: false;
|
|
1247
|
+
default: string;
|
|
1248
|
+
};
|
|
1249
|
+
size: {
|
|
1250
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1251
|
+
required: false;
|
|
1252
|
+
default: string;
|
|
1253
|
+
};
|
|
1254
|
+
paddingHeight: {
|
|
1255
|
+
type: NumberConstructor[];
|
|
1256
|
+
required: false;
|
|
1257
|
+
default: number;
|
|
1258
|
+
};
|
|
1259
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "update:visible")[], "cancel" | "update:visible", PublicProps, Readonly<ExtractPropTypes< {
|
|
1260
|
+
visible: {
|
|
1261
|
+
type: BooleanConstructor;
|
|
1262
|
+
required: false;
|
|
1263
|
+
default: boolean;
|
|
1264
|
+
};
|
|
1265
|
+
title: {
|
|
1266
|
+
type: StringConstructor;
|
|
1267
|
+
required: false;
|
|
1268
|
+
default: string;
|
|
1269
|
+
};
|
|
1270
|
+
direction: {
|
|
1271
|
+
type: PropType<"rtl" | "ltr" | "ttb" | "btt">;
|
|
1272
|
+
required: false;
|
|
1273
|
+
default: string;
|
|
1274
|
+
};
|
|
1275
|
+
size: {
|
|
1276
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1277
|
+
required: false;
|
|
1278
|
+
default: string;
|
|
1279
|
+
};
|
|
1280
|
+
paddingHeight: {
|
|
1281
|
+
type: NumberConstructor[];
|
|
1282
|
+
required: false;
|
|
1283
|
+
default: number;
|
|
1284
|
+
};
|
|
1285
|
+
}>> & Readonly<{
|
|
1286
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
1287
|
+
onCancel?: ((...args: any[]) => any) | undefined;
|
|
1288
|
+
}>, {
|
|
1289
|
+
size: string | number;
|
|
1290
|
+
title: string;
|
|
1291
|
+
visible: boolean;
|
|
1292
|
+
direction: "ltr" | "rtl" | "ttb" | "btt";
|
|
1293
|
+
paddingHeight: number;
|
|
1294
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1295
|
+
|
|
746
1296
|
export declare const GvExpandMenu: DefineComponent<ExtractPropTypes< {
|
|
747
1297
|
collapse: VueTypeValidableDef<boolean, ValidatorFunction<boolean>> & {
|
|
748
1298
|
default: boolean;
|
|
@@ -771,7 +1321,7 @@ required: false;
|
|
|
771
1321
|
default: boolean;
|
|
772
1322
|
};
|
|
773
1323
|
formList: {
|
|
774
|
-
type:
|
|
1324
|
+
type: PropType<FormItem[]>;
|
|
775
1325
|
required: true;
|
|
776
1326
|
default: () => never[];
|
|
777
1327
|
};
|
|
@@ -810,7 +1360,7 @@ required: false;
|
|
|
810
1360
|
default: boolean;
|
|
811
1361
|
};
|
|
812
1362
|
formList: {
|
|
813
|
-
type:
|
|
1363
|
+
type: PropType<FormItem[]>;
|
|
814
1364
|
required: true;
|
|
815
1365
|
default: () => never[];
|
|
816
1366
|
};
|
|
@@ -838,7 +1388,7 @@ size: "" | "small" | "default" | "large";
|
|
|
838
1388
|
labelWidth: string | number;
|
|
839
1389
|
divider: string;
|
|
840
1390
|
isDivider: boolean;
|
|
841
|
-
formList:
|
|
1391
|
+
formList: FormItem[];
|
|
842
1392
|
formStyle: Record<string, any>;
|
|
843
1393
|
scroller: boolean;
|
|
844
1394
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -873,8 +1423,8 @@ name: {
|
|
|
873
1423
|
type: StringConstructor;
|
|
874
1424
|
default: undefined;
|
|
875
1425
|
};
|
|
876
|
-
|
|
877
|
-
type: PropType<string | number>;
|
|
1426
|
+
value: {
|
|
1427
|
+
type: PropType<string | number | undefined>;
|
|
878
1428
|
default: string;
|
|
879
1429
|
};
|
|
880
1430
|
placeholder: {
|
|
@@ -950,8 +1500,8 @@ name: {
|
|
|
950
1500
|
type: StringConstructor;
|
|
951
1501
|
default: undefined;
|
|
952
1502
|
};
|
|
953
|
-
|
|
954
|
-
type: PropType<string | number>;
|
|
1503
|
+
value: {
|
|
1504
|
+
type: PropType<string | number | undefined>;
|
|
955
1505
|
default: string;
|
|
956
1506
|
};
|
|
957
1507
|
placeholder: {
|
|
@@ -1027,11 +1577,12 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
1027
1577
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
1028
1578
|
}>, {
|
|
1029
1579
|
name: string;
|
|
1580
|
+
value: string | number | undefined;
|
|
1030
1581
|
type: InputType;
|
|
1031
1582
|
placeholder: string;
|
|
1032
1583
|
size: "" | "small" | "default" | "large";
|
|
1584
|
+
vref: string;
|
|
1033
1585
|
disabled: boolean;
|
|
1034
|
-
modelValue: string | number;
|
|
1035
1586
|
clearable: boolean;
|
|
1036
1587
|
suffixIcon: string;
|
|
1037
1588
|
visible: boolean;
|
|
@@ -1043,7 +1594,6 @@ showWordLimit: boolean;
|
|
|
1043
1594
|
prefixIcon: string;
|
|
1044
1595
|
rows: number;
|
|
1045
1596
|
bizType: "tableedit";
|
|
1046
|
-
vref: string;
|
|
1047
1597
|
columnProp: string;
|
|
1048
1598
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1049
1599
|
|
|
@@ -1183,15 +1733,15 @@ name: string;
|
|
|
1183
1733
|
value: number;
|
|
1184
1734
|
placeholder: string;
|
|
1185
1735
|
size: "" | "small" | "default" | "large";
|
|
1736
|
+
vref: string;
|
|
1737
|
+
max: number;
|
|
1186
1738
|
position: string;
|
|
1187
1739
|
disabled: boolean;
|
|
1188
1740
|
visible: boolean;
|
|
1189
1741
|
step: number;
|
|
1190
|
-
max: number;
|
|
1191
1742
|
bizType: string;
|
|
1192
|
-
vref: string;
|
|
1193
|
-
columnProp: string;
|
|
1194
1743
|
min: number;
|
|
1744
|
+
columnProp: string;
|
|
1195
1745
|
stepStrictly: boolean;
|
|
1196
1746
|
precision: number;
|
|
1197
1747
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -1228,80 +1778,338 @@ onConfirm?: ((...args: any[]) => any) | undefined;
|
|
|
1228
1778
|
title: string;
|
|
1229
1779
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1230
1780
|
|
|
1231
|
-
export declare const
|
|
1232
|
-
|
|
1233
|
-
type:
|
|
1234
|
-
default:
|
|
1781
|
+
export declare const GvPopover: DefineComponent<ExtractPropTypes< {
|
|
1782
|
+
vref: {
|
|
1783
|
+
type: StringConstructor;
|
|
1784
|
+
default: undefined;
|
|
1235
1785
|
};
|
|
1236
|
-
|
|
1237
|
-
type:
|
|
1238
|
-
default:
|
|
1786
|
+
visible: {
|
|
1787
|
+
type: BooleanConstructor;
|
|
1788
|
+
default: boolean;
|
|
1239
1789
|
};
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
default: number;
|
|
1790
|
+
title: {
|
|
1791
|
+
type: StringConstructor;
|
|
1792
|
+
default: undefined;
|
|
1244
1793
|
};
|
|
1245
|
-
|
|
1246
|
-
type:
|
|
1247
|
-
default:
|
|
1794
|
+
label: {
|
|
1795
|
+
type: StringConstructor;
|
|
1796
|
+
default: undefined;
|
|
1248
1797
|
};
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
gutter: number;
|
|
1252
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1253
|
-
|
|
1254
|
-
export declare const GvScreenFull: DefineComponent<ExtractPropTypes< {
|
|
1255
|
-
color: VueTypeValidableDef<string, ValidatorFunction<string>> & {
|
|
1256
|
-
default: string;
|
|
1257
|
-
} & {
|
|
1798
|
+
placement: {
|
|
1799
|
+
type: PropType<TPopoverPlacement>;
|
|
1258
1800
|
default: string;
|
|
1259
1801
|
};
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
default: string;
|
|
1263
|
-
} & {
|
|
1802
|
+
trigger: {
|
|
1803
|
+
type: PropType<TPopoverTrigger>;
|
|
1264
1804
|
default: string;
|
|
1265
1805
|
};
|
|
1266
|
-
|
|
1267
|
-
color: string;
|
|
1268
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1269
|
-
|
|
1270
|
-
export declare const GvSearchBar: DefineComponent<ExtractPropTypes< {
|
|
1271
|
-
expand: {
|
|
1806
|
+
tablePopover: {
|
|
1272
1807
|
type: BooleanConstructor;
|
|
1273
|
-
required: false;
|
|
1274
1808
|
default: boolean;
|
|
1275
1809
|
};
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
required: false;
|
|
1280
|
-
default: boolean;
|
|
1810
|
+
columnProp: {
|
|
1811
|
+
type: StringConstructor;
|
|
1812
|
+
default: undefined;
|
|
1281
1813
|
};
|
|
1282
|
-
|
|
1283
|
-
expand: boolean;
|
|
1284
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1285
|
-
|
|
1286
|
-
export declare const GvSelect: DefineComponent<ExtractPropTypes< {
|
|
1287
|
-
vref: {
|
|
1814
|
+
columnType: {
|
|
1288
1815
|
type: StringConstructor;
|
|
1289
|
-
default:
|
|
1816
|
+
default: undefined;
|
|
1290
1817
|
};
|
|
1291
|
-
|
|
1818
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("show" | "hide" | "update:visible")[], "show" | "hide" | "update:visible", PublicProps, Readonly<ExtractPropTypes< {
|
|
1819
|
+
vref: {
|
|
1292
1820
|
type: StringConstructor;
|
|
1293
1821
|
default: undefined;
|
|
1294
1822
|
};
|
|
1295
|
-
|
|
1296
|
-
type:
|
|
1823
|
+
visible: {
|
|
1824
|
+
type: BooleanConstructor;
|
|
1825
|
+
default: boolean;
|
|
1826
|
+
};
|
|
1827
|
+
title: {
|
|
1828
|
+
type: StringConstructor;
|
|
1297
1829
|
default: undefined;
|
|
1298
1830
|
};
|
|
1299
1831
|
label: {
|
|
1300
1832
|
type: StringConstructor;
|
|
1301
1833
|
default: undefined;
|
|
1302
1834
|
};
|
|
1303
|
-
|
|
1304
|
-
type:
|
|
1835
|
+
placement: {
|
|
1836
|
+
type: PropType<TPopoverPlacement>;
|
|
1837
|
+
default: string;
|
|
1838
|
+
};
|
|
1839
|
+
trigger: {
|
|
1840
|
+
type: PropType<TPopoverTrigger>;
|
|
1841
|
+
default: string;
|
|
1842
|
+
};
|
|
1843
|
+
tablePopover: {
|
|
1844
|
+
type: BooleanConstructor;
|
|
1845
|
+
default: boolean;
|
|
1846
|
+
};
|
|
1847
|
+
columnProp: {
|
|
1848
|
+
type: StringConstructor;
|
|
1849
|
+
default: undefined;
|
|
1850
|
+
};
|
|
1851
|
+
columnType: {
|
|
1852
|
+
type: StringConstructor;
|
|
1853
|
+
default: undefined;
|
|
1854
|
+
};
|
|
1855
|
+
}>> & Readonly<{
|
|
1856
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
1857
|
+
onShow?: ((...args: any[]) => any) | undefined;
|
|
1858
|
+
onHide?: ((...args: any[]) => any) | undefined;
|
|
1859
|
+
}>, {
|
|
1860
|
+
vref: string;
|
|
1861
|
+
label: string;
|
|
1862
|
+
title: string;
|
|
1863
|
+
placement: TPopoverPlacement;
|
|
1864
|
+
trigger: TPopoverTrigger;
|
|
1865
|
+
visible: boolean;
|
|
1866
|
+
columnProp: string;
|
|
1867
|
+
tablePopover: boolean;
|
|
1868
|
+
columnType: string;
|
|
1869
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1870
|
+
|
|
1871
|
+
export declare const GvRadio: DefineComponent<ExtractPropTypes< {
|
|
1872
|
+
vref: {
|
|
1873
|
+
type: StringConstructor;
|
|
1874
|
+
default: string;
|
|
1875
|
+
};
|
|
1876
|
+
name: {
|
|
1877
|
+
type: StringConstructor;
|
|
1878
|
+
default: undefined;
|
|
1879
|
+
};
|
|
1880
|
+
size: {
|
|
1881
|
+
type: PropType<ComponentSize>;
|
|
1882
|
+
default: string;
|
|
1883
|
+
};
|
|
1884
|
+
value: {
|
|
1885
|
+
type: PropType<TRadioValue>;
|
|
1886
|
+
default: undefined;
|
|
1887
|
+
};
|
|
1888
|
+
label: {
|
|
1889
|
+
type: PropType<TRadioValue>;
|
|
1890
|
+
default: undefined;
|
|
1891
|
+
};
|
|
1892
|
+
disabled: {
|
|
1893
|
+
type: BooleanConstructor;
|
|
1894
|
+
default: boolean;
|
|
1895
|
+
};
|
|
1896
|
+
border: {
|
|
1897
|
+
type: BooleanConstructor;
|
|
1898
|
+
default: boolean;
|
|
1899
|
+
};
|
|
1900
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
1901
|
+
vref: {
|
|
1902
|
+
type: StringConstructor;
|
|
1903
|
+
default: string;
|
|
1904
|
+
};
|
|
1905
|
+
name: {
|
|
1906
|
+
type: StringConstructor;
|
|
1907
|
+
default: undefined;
|
|
1908
|
+
};
|
|
1909
|
+
size: {
|
|
1910
|
+
type: PropType<ComponentSize>;
|
|
1911
|
+
default: string;
|
|
1912
|
+
};
|
|
1913
|
+
value: {
|
|
1914
|
+
type: PropType<TRadioValue>;
|
|
1915
|
+
default: undefined;
|
|
1916
|
+
};
|
|
1917
|
+
label: {
|
|
1918
|
+
type: PropType<TRadioValue>;
|
|
1919
|
+
default: undefined;
|
|
1920
|
+
};
|
|
1921
|
+
disabled: {
|
|
1922
|
+
type: BooleanConstructor;
|
|
1923
|
+
default: boolean;
|
|
1924
|
+
};
|
|
1925
|
+
border: {
|
|
1926
|
+
type: BooleanConstructor;
|
|
1927
|
+
default: boolean;
|
|
1928
|
+
};
|
|
1929
|
+
}>> & Readonly<{
|
|
1930
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1931
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1932
|
+
}>, {
|
|
1933
|
+
name: string;
|
|
1934
|
+
value: TRadioValue;
|
|
1935
|
+
size: "" | "small" | "default" | "large";
|
|
1936
|
+
vref: string;
|
|
1937
|
+
label: TRadioValue;
|
|
1938
|
+
disabled: boolean;
|
|
1939
|
+
border: boolean;
|
|
1940
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1941
|
+
|
|
1942
|
+
export declare const GvRadioButton: DefineComponent<ExtractPropTypes< {
|
|
1943
|
+
vref: {
|
|
1944
|
+
type: StringConstructor;
|
|
1945
|
+
default: string;
|
|
1946
|
+
};
|
|
1947
|
+
value: {
|
|
1948
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
1949
|
+
default: undefined;
|
|
1950
|
+
};
|
|
1951
|
+
label: {
|
|
1952
|
+
type: StringConstructor;
|
|
1953
|
+
default: undefined;
|
|
1954
|
+
};
|
|
1955
|
+
name: {
|
|
1956
|
+
type: StringConstructor;
|
|
1957
|
+
default: undefined;
|
|
1958
|
+
};
|
|
1959
|
+
disabled: {
|
|
1960
|
+
type: BooleanConstructor;
|
|
1961
|
+
default: boolean;
|
|
1962
|
+
};
|
|
1963
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
1964
|
+
vref: {
|
|
1965
|
+
type: StringConstructor;
|
|
1966
|
+
default: string;
|
|
1967
|
+
};
|
|
1968
|
+
value: {
|
|
1969
|
+
type: (BooleanConstructor | StringConstructor | NumberConstructor)[];
|
|
1970
|
+
default: undefined;
|
|
1971
|
+
};
|
|
1972
|
+
label: {
|
|
1973
|
+
type: StringConstructor;
|
|
1974
|
+
default: undefined;
|
|
1975
|
+
};
|
|
1976
|
+
name: {
|
|
1977
|
+
type: StringConstructor;
|
|
1978
|
+
default: undefined;
|
|
1979
|
+
};
|
|
1980
|
+
disabled: {
|
|
1981
|
+
type: BooleanConstructor;
|
|
1982
|
+
default: boolean;
|
|
1983
|
+
};
|
|
1984
|
+
}>> & Readonly<{
|
|
1985
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1986
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1987
|
+
}>, {
|
|
1988
|
+
name: string;
|
|
1989
|
+
value: string | number | boolean;
|
|
1990
|
+
vref: string;
|
|
1991
|
+
label: string;
|
|
1992
|
+
disabled: boolean;
|
|
1993
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1994
|
+
|
|
1995
|
+
export declare const GvRadioGroup: DefineComponent<ExtractPropTypes< {
|
|
1996
|
+
vref: {
|
|
1997
|
+
type: StringConstructor;
|
|
1998
|
+
default: string;
|
|
1999
|
+
};
|
|
2000
|
+
value: {
|
|
2001
|
+
type: PropType<TRadioGroupValue>;
|
|
2002
|
+
default: undefined;
|
|
2003
|
+
};
|
|
2004
|
+
size: {
|
|
2005
|
+
type: PropType<ComponentSize>;
|
|
2006
|
+
default: undefined;
|
|
2007
|
+
};
|
|
2008
|
+
label: {
|
|
2009
|
+
type: StringConstructor;
|
|
2010
|
+
default: undefined;
|
|
2011
|
+
};
|
|
2012
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:modelValue")[], "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
2013
|
+
vref: {
|
|
2014
|
+
type: StringConstructor;
|
|
2015
|
+
default: string;
|
|
2016
|
+
};
|
|
2017
|
+
value: {
|
|
2018
|
+
type: PropType<TRadioGroupValue>;
|
|
2019
|
+
default: undefined;
|
|
2020
|
+
};
|
|
2021
|
+
size: {
|
|
2022
|
+
type: PropType<ComponentSize>;
|
|
2023
|
+
default: undefined;
|
|
2024
|
+
};
|
|
2025
|
+
label: {
|
|
2026
|
+
type: StringConstructor;
|
|
2027
|
+
default: undefined;
|
|
2028
|
+
};
|
|
2029
|
+
}>> & Readonly<{
|
|
2030
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
2031
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2032
|
+
}>, {
|
|
2033
|
+
value: TRadioGroupValue;
|
|
2034
|
+
size: "" | "small" | "default" | "large";
|
|
2035
|
+
vref: string;
|
|
2036
|
+
label: string;
|
|
2037
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2038
|
+
|
|
2039
|
+
export declare const GvRow: DefineComponent<ExtractPropTypes< {
|
|
2040
|
+
gutter: {
|
|
2041
|
+
type: NumberConstructor;
|
|
2042
|
+
default: number;
|
|
2043
|
+
};
|
|
2044
|
+
tag: {
|
|
2045
|
+
type: PropType<string>;
|
|
2046
|
+
default: string;
|
|
2047
|
+
};
|
|
2048
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
2049
|
+
gutter: {
|
|
2050
|
+
type: NumberConstructor;
|
|
2051
|
+
default: number;
|
|
2052
|
+
};
|
|
2053
|
+
tag: {
|
|
2054
|
+
type: PropType<string>;
|
|
2055
|
+
default: string;
|
|
2056
|
+
};
|
|
2057
|
+
}>> & Readonly<{}>, {
|
|
2058
|
+
tag: string;
|
|
2059
|
+
gutter: number;
|
|
2060
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2061
|
+
|
|
2062
|
+
export declare const GvScreenFull: DefineComponent<ExtractPropTypes< {
|
|
2063
|
+
color: VueTypeValidableDef<string, ValidatorFunction<string>> & {
|
|
2064
|
+
default: string;
|
|
2065
|
+
} & {
|
|
2066
|
+
default: string;
|
|
2067
|
+
};
|
|
2068
|
+
}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
2069
|
+
color: VueTypeValidableDef<string, ValidatorFunction<string>> & {
|
|
2070
|
+
default: string;
|
|
2071
|
+
} & {
|
|
2072
|
+
default: string;
|
|
2073
|
+
};
|
|
2074
|
+
}>> & Readonly<{}>, {
|
|
2075
|
+
color: string;
|
|
2076
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2077
|
+
|
|
2078
|
+
export declare const GvSearchBar: DefineComponent<ExtractPropTypes< {
|
|
2079
|
+
expand: {
|
|
2080
|
+
type: BooleanConstructor;
|
|
2081
|
+
required: false;
|
|
2082
|
+
default: boolean;
|
|
2083
|
+
};
|
|
2084
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
2085
|
+
expand: {
|
|
2086
|
+
type: BooleanConstructor;
|
|
2087
|
+
required: false;
|
|
2088
|
+
default: boolean;
|
|
2089
|
+
};
|
|
2090
|
+
}>> & Readonly<{}>, {
|
|
2091
|
+
expand: boolean;
|
|
2092
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2093
|
+
|
|
2094
|
+
export declare const GvSelect: DefineComponent<ExtractPropTypes< {
|
|
2095
|
+
vref: {
|
|
2096
|
+
type: StringConstructor;
|
|
2097
|
+
default: string;
|
|
2098
|
+
};
|
|
2099
|
+
name: {
|
|
2100
|
+
type: StringConstructor;
|
|
2101
|
+
default: undefined;
|
|
2102
|
+
};
|
|
2103
|
+
value: {
|
|
2104
|
+
type: PropType<string | number | boolean | unknown[] | Record<string, unknown>>;
|
|
2105
|
+
default: undefined;
|
|
2106
|
+
};
|
|
2107
|
+
label: {
|
|
2108
|
+
type: StringConstructor;
|
|
2109
|
+
default: undefined;
|
|
2110
|
+
};
|
|
2111
|
+
showLabel: {
|
|
2112
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
1305
2113
|
default: undefined;
|
|
1306
2114
|
};
|
|
1307
2115
|
placeholder: {
|
|
@@ -1413,148 +2221,661 @@ filterable: {
|
|
|
1413
2221
|
type: BooleanConstructor;
|
|
1414
2222
|
default: boolean;
|
|
1415
2223
|
};
|
|
1416
|
-
dicType: {
|
|
1417
|
-
type: StringConstructor;
|
|
1418
|
-
required: true;
|
|
1419
|
-
};
|
|
1420
|
-
filtercode: {
|
|
1421
|
-
type: StringConstructor;
|
|
2224
|
+
dicType: {
|
|
2225
|
+
type: StringConstructor;
|
|
2226
|
+
required: true;
|
|
2227
|
+
};
|
|
2228
|
+
filtercode: {
|
|
2229
|
+
type: StringConstructor;
|
|
2230
|
+
default: undefined;
|
|
2231
|
+
};
|
|
2232
|
+
visible: {
|
|
2233
|
+
type: BooleanConstructor;
|
|
2234
|
+
default: boolean;
|
|
2235
|
+
};
|
|
2236
|
+
dicRemote: {
|
|
2237
|
+
type: FunctionConstructor;
|
|
2238
|
+
default: () => void;
|
|
2239
|
+
};
|
|
2240
|
+
cb: {
|
|
2241
|
+
type: FunctionConstructor;
|
|
2242
|
+
default: () => void;
|
|
2243
|
+
};
|
|
2244
|
+
clear: {
|
|
2245
|
+
type: FunctionConstructor;
|
|
2246
|
+
default: () => void;
|
|
2247
|
+
};
|
|
2248
|
+
isreload: {
|
|
2249
|
+
type: BooleanConstructor;
|
|
2250
|
+
default: boolean;
|
|
2251
|
+
};
|
|
2252
|
+
columnProp: {
|
|
2253
|
+
type: StringConstructor;
|
|
2254
|
+
default: undefined;
|
|
2255
|
+
};
|
|
2256
|
+
bizType: {
|
|
2257
|
+
type: StringConstructor;
|
|
2258
|
+
default: undefined;
|
|
2259
|
+
};
|
|
2260
|
+
editRow: {
|
|
2261
|
+
type: ObjectConstructor;
|
|
2262
|
+
default: () => void;
|
|
2263
|
+
};
|
|
2264
|
+
collapseTags: {
|
|
2265
|
+
type: BooleanConstructor;
|
|
2266
|
+
default: boolean;
|
|
2267
|
+
};
|
|
2268
|
+
size: {
|
|
2269
|
+
type: PropType<ComponentSize>;
|
|
2270
|
+
default: undefined;
|
|
2271
|
+
};
|
|
2272
|
+
}>> & Readonly<{
|
|
2273
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2274
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
2275
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2276
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
2277
|
+
}>, {
|
|
2278
|
+
name: string;
|
|
2279
|
+
value: string | number | boolean | unknown[] | Record<string, unknown>;
|
|
2280
|
+
placeholder: string;
|
|
2281
|
+
clear: Function;
|
|
2282
|
+
size: "" | "small" | "default" | "large";
|
|
2283
|
+
vref: string;
|
|
2284
|
+
label: string;
|
|
2285
|
+
disabled: boolean;
|
|
2286
|
+
multiple: boolean;
|
|
2287
|
+
clearable: boolean;
|
|
2288
|
+
filterable: boolean;
|
|
2289
|
+
collapseTags: boolean;
|
|
2290
|
+
visible: boolean;
|
|
2291
|
+
bizType: string;
|
|
2292
|
+
cb: Function;
|
|
2293
|
+
filtercode: string;
|
|
2294
|
+
showLabel: string | unknown[];
|
|
2295
|
+
columnProp: string;
|
|
2296
|
+
dicRemote: Function;
|
|
2297
|
+
isreload: boolean;
|
|
2298
|
+
editRow: Record<string, any>;
|
|
2299
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2300
|
+
|
|
2301
|
+
export declare const GvSidebar: DefineComponent<ExtractPropTypes< {
|
|
2302
|
+
menuSelect: {
|
|
2303
|
+
type: PropType<(index: string) => void>;
|
|
2304
|
+
default: undefined;
|
|
2305
|
+
};
|
|
2306
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
2307
|
+
menuSelect: {
|
|
2308
|
+
type: PropType<(index: string) => void>;
|
|
2309
|
+
default: undefined;
|
|
2310
|
+
};
|
|
2311
|
+
}>> & Readonly<{}>, {
|
|
2312
|
+
menuSelect: (index: string) => void;
|
|
2313
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2314
|
+
|
|
2315
|
+
export declare const GvSidebarLogo: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
2316
|
+
|
|
2317
|
+
export declare const GvSwitch: DefineComponent<ExtractPropTypes< {
|
|
2318
|
+
value: {
|
|
2319
|
+
type: PropType<boolean | number | string>;
|
|
2320
|
+
required: false;
|
|
2321
|
+
default: undefined;
|
|
2322
|
+
};
|
|
2323
|
+
disabled: {
|
|
2324
|
+
type: BooleanConstructor;
|
|
2325
|
+
required: false;
|
|
2326
|
+
default: undefined;
|
|
2327
|
+
};
|
|
2328
|
+
columnKey: {
|
|
2329
|
+
type: StringConstructor;
|
|
2330
|
+
required: false;
|
|
2331
|
+
default: undefined;
|
|
2332
|
+
};
|
|
2333
|
+
target: {
|
|
2334
|
+
type: PropType<number | string>;
|
|
2335
|
+
require: boolean;
|
|
2336
|
+
default: string;
|
|
2337
|
+
};
|
|
2338
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "change"[], "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
2339
|
+
value: {
|
|
2340
|
+
type: PropType<boolean | number | string>;
|
|
2341
|
+
required: false;
|
|
2342
|
+
default: undefined;
|
|
2343
|
+
};
|
|
2344
|
+
disabled: {
|
|
2345
|
+
type: BooleanConstructor;
|
|
2346
|
+
required: false;
|
|
2347
|
+
default: undefined;
|
|
2348
|
+
};
|
|
2349
|
+
columnKey: {
|
|
2350
|
+
type: StringConstructor;
|
|
2351
|
+
required: false;
|
|
2352
|
+
default: undefined;
|
|
2353
|
+
};
|
|
2354
|
+
target: {
|
|
2355
|
+
type: PropType<number | string>;
|
|
2356
|
+
require: boolean;
|
|
2357
|
+
default: string;
|
|
2358
|
+
};
|
|
2359
|
+
}>> & Readonly<{
|
|
2360
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
2361
|
+
}>, {
|
|
2362
|
+
value: string | number | boolean;
|
|
2363
|
+
target: string | number;
|
|
2364
|
+
disabled: boolean;
|
|
2365
|
+
columnKey: string;
|
|
2366
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2367
|
+
|
|
2368
|
+
export declare const GvTable: DefineComponent<ExtractPropTypes< {
|
|
2369
|
+
refTable: {
|
|
2370
|
+
type: StringConstructor;
|
|
2371
|
+
required: false;
|
|
2372
|
+
default: undefined;
|
|
2373
|
+
};
|
|
2374
|
+
tableHead: {
|
|
2375
|
+
type: PropType<TableHeadItem[]>;
|
|
2376
|
+
required: true;
|
|
2377
|
+
default: () => never[];
|
|
2378
|
+
};
|
|
2379
|
+
tableData: {
|
|
2380
|
+
type: ObjectConstructor;
|
|
2381
|
+
required: false;
|
|
2382
|
+
default: () => void;
|
|
2383
|
+
};
|
|
2384
|
+
height: {
|
|
2385
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2386
|
+
required: false;
|
|
2387
|
+
default: undefined;
|
|
2388
|
+
};
|
|
2389
|
+
maxHeight: {
|
|
2390
|
+
type: PropType<number | string | undefined>;
|
|
2391
|
+
required: false;
|
|
2392
|
+
default: undefined;
|
|
2393
|
+
};
|
|
2394
|
+
maxWidth: {
|
|
2395
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2396
|
+
required: false;
|
|
2397
|
+
default: undefined;
|
|
2398
|
+
};
|
|
2399
|
+
visible: {
|
|
2400
|
+
type: BooleanConstructor;
|
|
2401
|
+
required: false;
|
|
2402
|
+
default: boolean;
|
|
2403
|
+
};
|
|
2404
|
+
pageSize: {
|
|
2405
|
+
type: NumberConstructor;
|
|
2406
|
+
required: false;
|
|
2407
|
+
default: number;
|
|
2408
|
+
};
|
|
2409
|
+
rowClassName: {
|
|
2410
|
+
type: FunctionConstructor;
|
|
2411
|
+
required: false;
|
|
2412
|
+
default: () => void;
|
|
2413
|
+
};
|
|
2414
|
+
rowStyle: {
|
|
2415
|
+
type: FunctionConstructor;
|
|
2416
|
+
required: false;
|
|
2417
|
+
default: () => void;
|
|
2418
|
+
};
|
|
2419
|
+
spanMethod: {
|
|
2420
|
+
type: FunctionConstructor;
|
|
2421
|
+
required: false;
|
|
2422
|
+
default: () => void;
|
|
2423
|
+
};
|
|
2424
|
+
cellStyle: {
|
|
2425
|
+
type: FunctionConstructor;
|
|
2426
|
+
required: false;
|
|
2427
|
+
default: () => void;
|
|
2428
|
+
};
|
|
2429
|
+
tableType: {
|
|
2430
|
+
type: StringConstructor;
|
|
2431
|
+
required: false;
|
|
2432
|
+
default: undefined;
|
|
2433
|
+
};
|
|
2434
|
+
tableSort: {
|
|
2435
|
+
type: BooleanConstructor;
|
|
2436
|
+
required: false;
|
|
2437
|
+
default: undefined;
|
|
2438
|
+
};
|
|
2439
|
+
tableKit: {
|
|
2440
|
+
type: BooleanConstructor;
|
|
2441
|
+
required: false;
|
|
2442
|
+
default: undefined;
|
|
2443
|
+
};
|
|
2444
|
+
tableBar: {
|
|
2445
|
+
type: BooleanConstructor;
|
|
2446
|
+
required: false;
|
|
2447
|
+
default: boolean;
|
|
2448
|
+
};
|
|
2449
|
+
border: {
|
|
2450
|
+
type: BooleanConstructor;
|
|
2451
|
+
required: false;
|
|
2452
|
+
default: boolean;
|
|
2453
|
+
};
|
|
2454
|
+
tableFetch: {
|
|
2455
|
+
type: FunctionConstructor;
|
|
2456
|
+
required: false;
|
|
2457
|
+
default: () => void;
|
|
2458
|
+
};
|
|
2459
|
+
multi: {
|
|
2460
|
+
type: BooleanConstructor;
|
|
2461
|
+
required: false;
|
|
2462
|
+
default: boolean;
|
|
2463
|
+
};
|
|
2464
|
+
layout: {
|
|
2465
|
+
type: StringConstructor;
|
|
2466
|
+
required: false;
|
|
2467
|
+
default: string;
|
|
2468
|
+
};
|
|
2469
|
+
isShowPage: {
|
|
2470
|
+
type: BooleanConstructor;
|
|
2471
|
+
required: false;
|
|
2472
|
+
default: boolean;
|
|
2473
|
+
};
|
|
2474
|
+
total: {
|
|
2475
|
+
type: BooleanConstructor;
|
|
2476
|
+
required: false;
|
|
2477
|
+
default: boolean;
|
|
2478
|
+
};
|
|
2479
|
+
tableInit: {
|
|
2480
|
+
type: BooleanConstructor;
|
|
2481
|
+
required: false;
|
|
2482
|
+
default: boolean;
|
|
2483
|
+
};
|
|
2484
|
+
beforeImport: {
|
|
2485
|
+
type: FunctionConstructor;
|
|
2486
|
+
required: false;
|
|
2487
|
+
default: undefined;
|
|
2488
|
+
};
|
|
2489
|
+
tableFilter: {
|
|
2490
|
+
type: ObjectConstructor;
|
|
2491
|
+
required: false;
|
|
2492
|
+
default: undefined;
|
|
2493
|
+
};
|
|
2494
|
+
tableCb: {
|
|
2495
|
+
type: FunctionConstructor;
|
|
2496
|
+
required: false;
|
|
2497
|
+
default: undefined;
|
|
2498
|
+
};
|
|
2499
|
+
expandRowKeys: {
|
|
2500
|
+
type: ArrayConstructor;
|
|
2501
|
+
required: false;
|
|
2502
|
+
default: undefined;
|
|
2503
|
+
};
|
|
2504
|
+
limitHeight: {
|
|
2505
|
+
type: BooleanConstructor;
|
|
2506
|
+
required: false;
|
|
2507
|
+
default: boolean;
|
|
2508
|
+
};
|
|
2509
|
+
tableAction: {
|
|
2510
|
+
type: StringConstructor;
|
|
2511
|
+
required: false;
|
|
2512
|
+
default: string;
|
|
2513
|
+
};
|
|
2514
|
+
tableActionIcon: {
|
|
2515
|
+
type: BooleanConstructor;
|
|
2516
|
+
required: false;
|
|
2517
|
+
default: boolean;
|
|
2518
|
+
};
|
|
2519
|
+
}>, () => JSX.Element | null, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
2520
|
+
refTable: {
|
|
2521
|
+
type: StringConstructor;
|
|
2522
|
+
required: false;
|
|
2523
|
+
default: undefined;
|
|
2524
|
+
};
|
|
2525
|
+
tableHead: {
|
|
2526
|
+
type: PropType<TableHeadItem[]>;
|
|
2527
|
+
required: true;
|
|
2528
|
+
default: () => never[];
|
|
2529
|
+
};
|
|
2530
|
+
tableData: {
|
|
2531
|
+
type: ObjectConstructor;
|
|
2532
|
+
required: false;
|
|
2533
|
+
default: () => void;
|
|
2534
|
+
};
|
|
2535
|
+
height: {
|
|
2536
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2537
|
+
required: false;
|
|
2538
|
+
default: undefined;
|
|
2539
|
+
};
|
|
2540
|
+
maxHeight: {
|
|
2541
|
+
type: PropType<number | string | undefined>;
|
|
2542
|
+
required: false;
|
|
2543
|
+
default: undefined;
|
|
2544
|
+
};
|
|
2545
|
+
maxWidth: {
|
|
2546
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2547
|
+
required: false;
|
|
2548
|
+
default: undefined;
|
|
2549
|
+
};
|
|
2550
|
+
visible: {
|
|
2551
|
+
type: BooleanConstructor;
|
|
2552
|
+
required: false;
|
|
2553
|
+
default: boolean;
|
|
2554
|
+
};
|
|
2555
|
+
pageSize: {
|
|
2556
|
+
type: NumberConstructor;
|
|
2557
|
+
required: false;
|
|
2558
|
+
default: number;
|
|
2559
|
+
};
|
|
2560
|
+
rowClassName: {
|
|
2561
|
+
type: FunctionConstructor;
|
|
2562
|
+
required: false;
|
|
2563
|
+
default: () => void;
|
|
2564
|
+
};
|
|
2565
|
+
rowStyle: {
|
|
2566
|
+
type: FunctionConstructor;
|
|
2567
|
+
required: false;
|
|
2568
|
+
default: () => void;
|
|
2569
|
+
};
|
|
2570
|
+
spanMethod: {
|
|
2571
|
+
type: FunctionConstructor;
|
|
2572
|
+
required: false;
|
|
2573
|
+
default: () => void;
|
|
2574
|
+
};
|
|
2575
|
+
cellStyle: {
|
|
2576
|
+
type: FunctionConstructor;
|
|
2577
|
+
required: false;
|
|
2578
|
+
default: () => void;
|
|
2579
|
+
};
|
|
2580
|
+
tableType: {
|
|
2581
|
+
type: StringConstructor;
|
|
2582
|
+
required: false;
|
|
2583
|
+
default: undefined;
|
|
2584
|
+
};
|
|
2585
|
+
tableSort: {
|
|
2586
|
+
type: BooleanConstructor;
|
|
2587
|
+
required: false;
|
|
2588
|
+
default: undefined;
|
|
2589
|
+
};
|
|
2590
|
+
tableKit: {
|
|
2591
|
+
type: BooleanConstructor;
|
|
2592
|
+
required: false;
|
|
2593
|
+
default: undefined;
|
|
2594
|
+
};
|
|
2595
|
+
tableBar: {
|
|
2596
|
+
type: BooleanConstructor;
|
|
2597
|
+
required: false;
|
|
2598
|
+
default: boolean;
|
|
2599
|
+
};
|
|
2600
|
+
border: {
|
|
2601
|
+
type: BooleanConstructor;
|
|
2602
|
+
required: false;
|
|
2603
|
+
default: boolean;
|
|
2604
|
+
};
|
|
2605
|
+
tableFetch: {
|
|
2606
|
+
type: FunctionConstructor;
|
|
2607
|
+
required: false;
|
|
2608
|
+
default: () => void;
|
|
2609
|
+
};
|
|
2610
|
+
multi: {
|
|
2611
|
+
type: BooleanConstructor;
|
|
2612
|
+
required: false;
|
|
2613
|
+
default: boolean;
|
|
2614
|
+
};
|
|
2615
|
+
layout: {
|
|
2616
|
+
type: StringConstructor;
|
|
2617
|
+
required: false;
|
|
2618
|
+
default: string;
|
|
2619
|
+
};
|
|
2620
|
+
isShowPage: {
|
|
2621
|
+
type: BooleanConstructor;
|
|
2622
|
+
required: false;
|
|
2623
|
+
default: boolean;
|
|
2624
|
+
};
|
|
2625
|
+
total: {
|
|
2626
|
+
type: BooleanConstructor;
|
|
2627
|
+
required: false;
|
|
2628
|
+
default: boolean;
|
|
2629
|
+
};
|
|
2630
|
+
tableInit: {
|
|
2631
|
+
type: BooleanConstructor;
|
|
2632
|
+
required: false;
|
|
2633
|
+
default: boolean;
|
|
2634
|
+
};
|
|
2635
|
+
beforeImport: {
|
|
2636
|
+
type: FunctionConstructor;
|
|
2637
|
+
required: false;
|
|
2638
|
+
default: undefined;
|
|
2639
|
+
};
|
|
2640
|
+
tableFilter: {
|
|
2641
|
+
type: ObjectConstructor;
|
|
2642
|
+
required: false;
|
|
2643
|
+
default: undefined;
|
|
2644
|
+
};
|
|
2645
|
+
tableCb: {
|
|
2646
|
+
type: FunctionConstructor;
|
|
2647
|
+
required: false;
|
|
2648
|
+
default: undefined;
|
|
2649
|
+
};
|
|
2650
|
+
expandRowKeys: {
|
|
2651
|
+
type: ArrayConstructor;
|
|
2652
|
+
required: false;
|
|
2653
|
+
default: undefined;
|
|
2654
|
+
};
|
|
2655
|
+
limitHeight: {
|
|
2656
|
+
type: BooleanConstructor;
|
|
2657
|
+
required: false;
|
|
2658
|
+
default: boolean;
|
|
2659
|
+
};
|
|
2660
|
+
tableAction: {
|
|
2661
|
+
type: StringConstructor;
|
|
2662
|
+
required: false;
|
|
2663
|
+
default: string;
|
|
2664
|
+
};
|
|
2665
|
+
tableActionIcon: {
|
|
2666
|
+
type: BooleanConstructor;
|
|
2667
|
+
required: false;
|
|
2668
|
+
default: boolean;
|
|
2669
|
+
};
|
|
2670
|
+
}>> & Readonly<{}>, {
|
|
2671
|
+
maxHeight: string | number | undefined;
|
|
2672
|
+
layout: string;
|
|
2673
|
+
tableAction: string;
|
|
2674
|
+
tableActionIcon: boolean;
|
|
2675
|
+
tableBar: boolean;
|
|
2676
|
+
visible: boolean;
|
|
2677
|
+
height: string | number;
|
|
2678
|
+
border: boolean;
|
|
2679
|
+
pageSize: number;
|
|
2680
|
+
refTable: string;
|
|
2681
|
+
tableHead: TableHeadItem[];
|
|
2682
|
+
tableData: Record<string, any>;
|
|
2683
|
+
maxWidth: string | number;
|
|
2684
|
+
rowClassName: Function;
|
|
2685
|
+
rowStyle: Function;
|
|
2686
|
+
spanMethod: Function;
|
|
2687
|
+
cellStyle: Function;
|
|
2688
|
+
tableType: string;
|
|
2689
|
+
tableSort: boolean;
|
|
2690
|
+
tableKit: boolean;
|
|
2691
|
+
tableFetch: Function;
|
|
2692
|
+
multi: boolean;
|
|
2693
|
+
isShowPage: boolean;
|
|
2694
|
+
total: boolean;
|
|
2695
|
+
tableInit: boolean;
|
|
2696
|
+
beforeImport: Function;
|
|
2697
|
+
tableFilter: Record<string, any>;
|
|
2698
|
+
tableCb: Function;
|
|
2699
|
+
expandRowKeys: unknown[];
|
|
2700
|
+
limitHeight: boolean;
|
|
2701
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2702
|
+
|
|
2703
|
+
export declare const GvTabPane: DefineComponent<ExtractPropTypes< {
|
|
2704
|
+
name: {
|
|
2705
|
+
type: StringConstructor;
|
|
2706
|
+
required: false;
|
|
2707
|
+
default: undefined;
|
|
2708
|
+
};
|
|
2709
|
+
label: {
|
|
2710
|
+
type: StringConstructor;
|
|
2711
|
+
required: false;
|
|
2712
|
+
default: undefined;
|
|
2713
|
+
};
|
|
2714
|
+
disabled: {
|
|
2715
|
+
type: BooleanConstructor;
|
|
2716
|
+
required: false;
|
|
2717
|
+
default: boolean;
|
|
2718
|
+
};
|
|
2719
|
+
maxHeight: {
|
|
2720
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2721
|
+
required: false;
|
|
1422
2722
|
default: undefined;
|
|
1423
2723
|
};
|
|
1424
2724
|
visible: {
|
|
1425
2725
|
type: BooleanConstructor;
|
|
2726
|
+
required: false;
|
|
1426
2727
|
default: boolean;
|
|
1427
2728
|
};
|
|
1428
|
-
|
|
1429
|
-
type: FunctionConstructor;
|
|
1430
|
-
default: () => void;
|
|
1431
|
-
};
|
|
1432
|
-
cb: {
|
|
1433
|
-
type: FunctionConstructor;
|
|
1434
|
-
default: () => void;
|
|
1435
|
-
};
|
|
1436
|
-
clear: {
|
|
1437
|
-
type: FunctionConstructor;
|
|
1438
|
-
default: () => void;
|
|
1439
|
-
};
|
|
1440
|
-
isreload: {
|
|
2729
|
+
autoHeight: {
|
|
1441
2730
|
type: BooleanConstructor;
|
|
2731
|
+
required: false;
|
|
1442
2732
|
default: boolean;
|
|
1443
2733
|
};
|
|
1444
|
-
|
|
2734
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "tab-click"[], "tab-click", PublicProps, Readonly<ExtractPropTypes< {
|
|
2735
|
+
name: {
|
|
1445
2736
|
type: StringConstructor;
|
|
2737
|
+
required: false;
|
|
1446
2738
|
default: undefined;
|
|
1447
2739
|
};
|
|
1448
|
-
|
|
2740
|
+
label: {
|
|
1449
2741
|
type: StringConstructor;
|
|
2742
|
+
required: false;
|
|
1450
2743
|
default: undefined;
|
|
1451
2744
|
};
|
|
1452
|
-
|
|
1453
|
-
type: ObjectConstructor;
|
|
1454
|
-
default: () => void;
|
|
1455
|
-
};
|
|
1456
|
-
collapseTags: {
|
|
2745
|
+
disabled: {
|
|
1457
2746
|
type: BooleanConstructor;
|
|
2747
|
+
required: false;
|
|
1458
2748
|
default: boolean;
|
|
1459
2749
|
};
|
|
1460
|
-
|
|
1461
|
-
type:
|
|
2750
|
+
maxHeight: {
|
|
2751
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2752
|
+
required: false;
|
|
1462
2753
|
default: undefined;
|
|
1463
2754
|
};
|
|
2755
|
+
visible: {
|
|
2756
|
+
type: BooleanConstructor;
|
|
2757
|
+
required: false;
|
|
2758
|
+
default: boolean;
|
|
2759
|
+
};
|
|
2760
|
+
autoHeight: {
|
|
2761
|
+
type: BooleanConstructor;
|
|
2762
|
+
required: false;
|
|
2763
|
+
default: boolean;
|
|
2764
|
+
};
|
|
1464
2765
|
}>> & Readonly<{
|
|
1465
|
-
|
|
1466
|
-
onChange?: ((...args: any[]) => any) | undefined;
|
|
1467
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1468
|
-
onClear?: ((...args: any[]) => any) | undefined;
|
|
2766
|
+
"onTab-click"?: ((...args: any[]) => any) | undefined;
|
|
1469
2767
|
}>, {
|
|
1470
2768
|
name: string;
|
|
1471
|
-
value: string | number | boolean | unknown[] | Record<string, unknown>;
|
|
1472
|
-
placeholder: string;
|
|
1473
|
-
clear: Function;
|
|
1474
|
-
size: "" | "small" | "default" | "large";
|
|
1475
2769
|
label: string;
|
|
2770
|
+
maxHeight: string | number;
|
|
1476
2771
|
disabled: boolean;
|
|
1477
|
-
multiple: boolean;
|
|
1478
|
-
clearable: boolean;
|
|
1479
|
-
filterable: boolean;
|
|
1480
|
-
collapseTags: boolean;
|
|
1481
2772
|
visible: boolean;
|
|
1482
|
-
|
|
1483
|
-
cb: Function;
|
|
1484
|
-
filtercode: string;
|
|
1485
|
-
showLabel: string | unknown[];
|
|
1486
|
-
vref: string;
|
|
1487
|
-
columnProp: string;
|
|
1488
|
-
dicRemote: Function;
|
|
1489
|
-
isreload: boolean;
|
|
1490
|
-
editRow: Record<string, any>;
|
|
2773
|
+
autoHeight: boolean;
|
|
1491
2774
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1492
2775
|
|
|
1493
|
-
export declare const
|
|
1494
|
-
|
|
1495
|
-
type:
|
|
1496
|
-
default:
|
|
2776
|
+
export declare const GvTabs: DefineComponent<ExtractPropTypes< {
|
|
2777
|
+
tabPosition: {
|
|
2778
|
+
type: StringConstructor;
|
|
2779
|
+
default: string;
|
|
1497
2780
|
};
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
type: PropType<(index: string) => void>;
|
|
2781
|
+
value: {
|
|
2782
|
+
type: PropType<number | string>;
|
|
1501
2783
|
default: undefined;
|
|
1502
2784
|
};
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1506
|
-
|
|
1507
|
-
export declare const GvSidebarLogo: DefineComponent< {}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
1508
|
-
|
|
1509
|
-
export declare const GvSwitch: DefineComponent<ExtractPropTypes< {
|
|
1510
|
-
value: {
|
|
1511
|
-
type: PropType<boolean | number | string>;
|
|
1512
|
-
required: false;
|
|
2785
|
+
type: {
|
|
2786
|
+
type: PropType<"card" | "border-card">;
|
|
1513
2787
|
default: undefined;
|
|
1514
2788
|
};
|
|
1515
|
-
|
|
2789
|
+
closable: {
|
|
1516
2790
|
type: BooleanConstructor;
|
|
1517
|
-
|
|
1518
|
-
default: undefined;
|
|
2791
|
+
default: boolean;
|
|
1519
2792
|
};
|
|
1520
|
-
|
|
1521
|
-
type: StringConstructor;
|
|
1522
|
-
required: false;
|
|
2793
|
+
tabMaxHeight: {
|
|
2794
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1523
2795
|
default: undefined;
|
|
1524
2796
|
};
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
2797
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "tab-click"[], "tab-click", PublicProps, Readonly<ExtractPropTypes< {
|
|
2798
|
+
tabPosition: {
|
|
2799
|
+
type: StringConstructor;
|
|
1528
2800
|
default: string;
|
|
1529
2801
|
};
|
|
1530
|
-
}>, JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "change"[], "change", PublicProps, Readonly<ExtractPropTypes< {
|
|
1531
2802
|
value: {
|
|
1532
|
-
type: PropType<
|
|
1533
|
-
required: false;
|
|
2803
|
+
type: PropType<number | string>;
|
|
1534
2804
|
default: undefined;
|
|
1535
2805
|
};
|
|
1536
|
-
|
|
1537
|
-
type:
|
|
1538
|
-
required: false;
|
|
2806
|
+
type: {
|
|
2807
|
+
type: PropType<"card" | "border-card">;
|
|
1539
2808
|
default: undefined;
|
|
1540
2809
|
};
|
|
1541
|
-
|
|
1542
|
-
type:
|
|
1543
|
-
|
|
2810
|
+
closable: {
|
|
2811
|
+
type: BooleanConstructor;
|
|
2812
|
+
default: boolean;
|
|
2813
|
+
};
|
|
2814
|
+
tabMaxHeight: {
|
|
2815
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1544
2816
|
default: undefined;
|
|
1545
2817
|
};
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
2818
|
+
}>> & Readonly<{
|
|
2819
|
+
"onTab-click"?: ((...args: any[]) => any) | undefined;
|
|
2820
|
+
}>, {
|
|
2821
|
+
value: string | number;
|
|
2822
|
+
type: "card" | "border-card";
|
|
2823
|
+
closable: boolean;
|
|
2824
|
+
tabPosition: string;
|
|
2825
|
+
tabMaxHeight: string | number;
|
|
2826
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2827
|
+
|
|
2828
|
+
export declare const GvTag: DefineComponent<ExtractPropTypes< {
|
|
2829
|
+
type: {
|
|
2830
|
+
type: PropType<TTagType>;
|
|
2831
|
+
default: string;
|
|
2832
|
+
};
|
|
2833
|
+
closable: {
|
|
2834
|
+
type: BooleanConstructor;
|
|
2835
|
+
default: boolean;
|
|
2836
|
+
};
|
|
2837
|
+
effect: {
|
|
2838
|
+
type: PropType<TTagEffect>;
|
|
1549
2839
|
default: string;
|
|
1550
2840
|
};
|
|
2841
|
+
size: {
|
|
2842
|
+
type: PropType<ComponentSize>;
|
|
2843
|
+
default: string;
|
|
2844
|
+
};
|
|
2845
|
+
round: {
|
|
2846
|
+
type: BooleanConstructor;
|
|
2847
|
+
default: boolean;
|
|
2848
|
+
};
|
|
2849
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "close")[], "click" | "close", PublicProps, Readonly<ExtractPropTypes< {
|
|
2850
|
+
type: {
|
|
2851
|
+
type: PropType<TTagType>;
|
|
2852
|
+
default: string;
|
|
2853
|
+
};
|
|
2854
|
+
closable: {
|
|
2855
|
+
type: BooleanConstructor;
|
|
2856
|
+
default: boolean;
|
|
2857
|
+
};
|
|
2858
|
+
effect: {
|
|
2859
|
+
type: PropType<TTagEffect>;
|
|
2860
|
+
default: string;
|
|
2861
|
+
};
|
|
2862
|
+
size: {
|
|
2863
|
+
type: PropType<ComponentSize>;
|
|
2864
|
+
default: string;
|
|
2865
|
+
};
|
|
2866
|
+
round: {
|
|
2867
|
+
type: BooleanConstructor;
|
|
2868
|
+
default: boolean;
|
|
2869
|
+
};
|
|
1551
2870
|
}>> & Readonly<{
|
|
1552
|
-
|
|
2871
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
2872
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1553
2873
|
}>, {
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
2874
|
+
type: TTagType;
|
|
2875
|
+
size: "" | "small" | "default" | "large";
|
|
2876
|
+
effect: TTagEffect;
|
|
2877
|
+
round: boolean;
|
|
2878
|
+
closable: boolean;
|
|
1558
2879
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1559
2880
|
|
|
1560
2881
|
export declare const GvTagsView: DefineComponent< {}, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -1730,12 +3051,12 @@ default: boolean;
|
|
|
1730
3051
|
name: string;
|
|
1731
3052
|
placeholder: string;
|
|
1732
3053
|
size: TTimePickerSize;
|
|
3054
|
+
vref: string;
|
|
1733
3055
|
disabled: boolean;
|
|
1734
3056
|
modelValue: TTimePickerType;
|
|
1735
3057
|
clearable: boolean;
|
|
1736
3058
|
readonly: boolean;
|
|
1737
3059
|
editable: boolean;
|
|
1738
|
-
vref: string;
|
|
1739
3060
|
format: string;
|
|
1740
3061
|
valueFormat: string;
|
|
1741
3062
|
rangeSeparator: string;
|
|
@@ -1747,6 +3068,153 @@ default: boolean;
|
|
|
1747
3068
|
isRange: boolean;
|
|
1748
3069
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1749
3070
|
|
|
3071
|
+
export declare const GvTree: DefineComponent<ExtractPropTypes< {
|
|
3072
|
+
treeData: {
|
|
3073
|
+
type: PropType<TreeData[]>;
|
|
3074
|
+
default: () => never[];
|
|
3075
|
+
};
|
|
3076
|
+
treeProps: {
|
|
3077
|
+
type: PropType<TreeComponentProps["props"]>;
|
|
3078
|
+
default: () => {};
|
|
3079
|
+
};
|
|
3080
|
+
nodeKey: {
|
|
3081
|
+
type: StringConstructor;
|
|
3082
|
+
default: undefined;
|
|
3083
|
+
};
|
|
3084
|
+
lazy: {
|
|
3085
|
+
type: BooleanConstructor;
|
|
3086
|
+
default: boolean;
|
|
3087
|
+
};
|
|
3088
|
+
load: {
|
|
3089
|
+
type: PropType<LoadFunction>;
|
|
3090
|
+
default: undefined;
|
|
3091
|
+
};
|
|
3092
|
+
showCheckbox: {
|
|
3093
|
+
type: BooleanConstructor;
|
|
3094
|
+
default: boolean;
|
|
3095
|
+
};
|
|
3096
|
+
draggable: {
|
|
3097
|
+
type: BooleanConstructor;
|
|
3098
|
+
default: boolean;
|
|
3099
|
+
};
|
|
3100
|
+
defaultExpandedKeys: {
|
|
3101
|
+
type: PropType<(string | number)[]>;
|
|
3102
|
+
default: () => never[];
|
|
3103
|
+
};
|
|
3104
|
+
defaultCheckedKeys: {
|
|
3105
|
+
type: PropType<(string | number)[]>;
|
|
3106
|
+
default: () => never[];
|
|
3107
|
+
};
|
|
3108
|
+
iconClass: {
|
|
3109
|
+
type: StringConstructor;
|
|
3110
|
+
default: undefined;
|
|
3111
|
+
};
|
|
3112
|
+
defaultExpandAll: {
|
|
3113
|
+
type: BooleanConstructor;
|
|
3114
|
+
default: boolean;
|
|
3115
|
+
};
|
|
3116
|
+
expandOnClickNode: {
|
|
3117
|
+
type: BooleanConstructor;
|
|
3118
|
+
default: boolean;
|
|
3119
|
+
};
|
|
3120
|
+
checkOnClickNode: {
|
|
3121
|
+
type: BooleanConstructor;
|
|
3122
|
+
default: boolean;
|
|
3123
|
+
};
|
|
3124
|
+
filterNodeMethod: {
|
|
3125
|
+
type: PropType<FilterNodeMethodFunction>;
|
|
3126
|
+
default: undefined;
|
|
3127
|
+
};
|
|
3128
|
+
renderContent: {
|
|
3129
|
+
type: PropType<RenderContentFunction>;
|
|
3130
|
+
default: undefined;
|
|
3131
|
+
};
|
|
3132
|
+
}>, () => JSX.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("check" | "node-click" | "node-expand" | "node-collapse" | "check-change" | "node-drop")[], "check" | "node-click" | "node-expand" | "node-collapse" | "check-change" | "node-drop", PublicProps, Readonly<ExtractPropTypes< {
|
|
3133
|
+
treeData: {
|
|
3134
|
+
type: PropType<TreeData[]>;
|
|
3135
|
+
default: () => never[];
|
|
3136
|
+
};
|
|
3137
|
+
treeProps: {
|
|
3138
|
+
type: PropType<TreeComponentProps["props"]>;
|
|
3139
|
+
default: () => {};
|
|
3140
|
+
};
|
|
3141
|
+
nodeKey: {
|
|
3142
|
+
type: StringConstructor;
|
|
3143
|
+
default: undefined;
|
|
3144
|
+
};
|
|
3145
|
+
lazy: {
|
|
3146
|
+
type: BooleanConstructor;
|
|
3147
|
+
default: boolean;
|
|
3148
|
+
};
|
|
3149
|
+
load: {
|
|
3150
|
+
type: PropType<LoadFunction>;
|
|
3151
|
+
default: undefined;
|
|
3152
|
+
};
|
|
3153
|
+
showCheckbox: {
|
|
3154
|
+
type: BooleanConstructor;
|
|
3155
|
+
default: boolean;
|
|
3156
|
+
};
|
|
3157
|
+
draggable: {
|
|
3158
|
+
type: BooleanConstructor;
|
|
3159
|
+
default: boolean;
|
|
3160
|
+
};
|
|
3161
|
+
defaultExpandedKeys: {
|
|
3162
|
+
type: PropType<(string | number)[]>;
|
|
3163
|
+
default: () => never[];
|
|
3164
|
+
};
|
|
3165
|
+
defaultCheckedKeys: {
|
|
3166
|
+
type: PropType<(string | number)[]>;
|
|
3167
|
+
default: () => never[];
|
|
3168
|
+
};
|
|
3169
|
+
iconClass: {
|
|
3170
|
+
type: StringConstructor;
|
|
3171
|
+
default: undefined;
|
|
3172
|
+
};
|
|
3173
|
+
defaultExpandAll: {
|
|
3174
|
+
type: BooleanConstructor;
|
|
3175
|
+
default: boolean;
|
|
3176
|
+
};
|
|
3177
|
+
expandOnClickNode: {
|
|
3178
|
+
type: BooleanConstructor;
|
|
3179
|
+
default: boolean;
|
|
3180
|
+
};
|
|
3181
|
+
checkOnClickNode: {
|
|
3182
|
+
type: BooleanConstructor;
|
|
3183
|
+
default: boolean;
|
|
3184
|
+
};
|
|
3185
|
+
filterNodeMethod: {
|
|
3186
|
+
type: PropType<FilterNodeMethodFunction>;
|
|
3187
|
+
default: undefined;
|
|
3188
|
+
};
|
|
3189
|
+
renderContent: {
|
|
3190
|
+
type: PropType<RenderContentFunction>;
|
|
3191
|
+
default: undefined;
|
|
3192
|
+
};
|
|
3193
|
+
}>> & Readonly<{
|
|
3194
|
+
"onNode-expand"?: ((...args: any[]) => any) | undefined;
|
|
3195
|
+
"onCheck-change"?: ((...args: any[]) => any) | undefined;
|
|
3196
|
+
"onNode-click"?: ((...args: any[]) => any) | undefined;
|
|
3197
|
+
"onNode-collapse"?: ((...args: any[]) => any) | undefined;
|
|
3198
|
+
onCheck?: ((...args: any[]) => any) | undefined;
|
|
3199
|
+
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
3200
|
+
}>, {
|
|
3201
|
+
lazy: boolean;
|
|
3202
|
+
load: LoadFunction;
|
|
3203
|
+
draggable: boolean;
|
|
3204
|
+
checkOnClickNode: boolean;
|
|
3205
|
+
defaultExpandAll: boolean;
|
|
3206
|
+
treeProps: TreeOptionProps;
|
|
3207
|
+
nodeKey: string;
|
|
3208
|
+
expandOnClickNode: boolean;
|
|
3209
|
+
defaultCheckedKeys: (string | number)[];
|
|
3210
|
+
defaultExpandedKeys: (string | number)[];
|
|
3211
|
+
renderContent: RenderContentFunction;
|
|
3212
|
+
showCheckbox: boolean;
|
|
3213
|
+
filterNodeMethod: FilterNodeMethodFunction;
|
|
3214
|
+
treeData: TreeData[];
|
|
3215
|
+
iconClass: string;
|
|
3216
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3217
|
+
|
|
1750
3218
|
export declare const hasClass: (ele: any, cls: any) => boolean;
|
|
1751
3219
|
|
|
1752
3220
|
export declare const hasScrollbar: (tag: any) => boolean;
|
|
@@ -1801,6 +3269,13 @@ declare type MessageType_2 = 'success' | 'info' | 'warning' | 'error';
|
|
|
1801
3269
|
|
|
1802
3270
|
declare const newPropTypes: PropTypes;
|
|
1803
3271
|
|
|
3272
|
+
declare interface PageInfo {
|
|
3273
|
+
currentpagenum: number;
|
|
3274
|
+
recordsperpage: number;
|
|
3275
|
+
countrows: number;
|
|
3276
|
+
totalpage: number;
|
|
3277
|
+
}
|
|
3278
|
+
|
|
1804
3279
|
export declare const pathResolve: (parentPath: string, path: string) => string;
|
|
1805
3280
|
|
|
1806
3281
|
declare type PropTypes = VueTypesInterface & {
|
|
@@ -1811,6 +3286,8 @@ export declare class propTypes extends newPropTypes {
|
|
|
1811
3286
|
static get style(): VueTypeValidableDef<CSSProperties>;
|
|
1812
3287
|
}
|
|
1813
3288
|
|
|
3289
|
+
export declare const removeAmountFormat: (val: string) => string;
|
|
3290
|
+
|
|
1814
3291
|
export declare const removeClass: (ele: any, cls: any) => void;
|
|
1815
3292
|
|
|
1816
3293
|
export declare const setDomCssProp: (prop: string, val: any, dom?: HTMLElement) => void;
|
|
@@ -1821,6 +3298,14 @@ export declare const setQuickKeys: (ev: any) => void;
|
|
|
1821
3298
|
|
|
1822
3299
|
export declare const sleep: (timeLen: number) => Promise<void>;
|
|
1823
3300
|
|
|
3301
|
+
declare type TBadgeType = 'primary' | 'success' | 'warning' | 'danger' | 'info';
|
|
3302
|
+
|
|
3303
|
+
declare type TCheckboxButtonValue = string | number | boolean;
|
|
3304
|
+
|
|
3305
|
+
declare type TCheckboxGroupType = (string | number)[];
|
|
3306
|
+
|
|
3307
|
+
declare type TCheckboxValueType = string | number | boolean;
|
|
3308
|
+
|
|
1824
3309
|
declare type TDatePickerSize = '' | 'large' | 'default' | 'small';
|
|
1825
3310
|
|
|
1826
3311
|
declare type TDatePickerType = Date | string | [Date, Date] | [string, string] | null | undefined;
|
|
@@ -1829,6 +3314,16 @@ export declare const toHump: (name: string) => string;
|
|
|
1829
3314
|
|
|
1830
3315
|
export declare const toLine: (name: string) => string;
|
|
1831
3316
|
|
|
3317
|
+
declare type TPopoverPlacement = 'top' | 'top-start' | 'top-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end' | 'right' | 'right-start' | 'right-end';
|
|
3318
|
+
|
|
3319
|
+
declare type TPopoverTrigger = 'click' | 'focus' | 'hover' | 'contextmenu';
|
|
3320
|
+
|
|
3321
|
+
declare type TRadioGroupValue = string | number | boolean;
|
|
3322
|
+
|
|
3323
|
+
declare type TRadioValue = string | number | boolean;
|
|
3324
|
+
|
|
3325
|
+
declare type TreeData = Record<string, unknown>;
|
|
3326
|
+
|
|
1832
3327
|
declare interface TreeHelperConfig {
|
|
1833
3328
|
id: string;
|
|
1834
3329
|
children: string;
|
|
@@ -1847,12 +3342,17 @@ export declare const treeMapEach: (data: any, { children, conversion }: {
|
|
|
1847
3342
|
|
|
1848
3343
|
export declare const treeToList: <T = any>(tree: any, config?: Partial<TreeHelperConfig>) => T;
|
|
1849
3344
|
|
|
3345
|
+
declare type TTagEffect = 'dark' | 'light' | 'plain';
|
|
3346
|
+
|
|
3347
|
+
declare type TTagType = 'success' | 'info' | 'warning' | 'danger' | 'primary';
|
|
3348
|
+
|
|
1850
3349
|
declare type TTimePickerSize = 'large' | 'default' | 'small';
|
|
1851
3350
|
|
|
1852
3351
|
declare type TTimePickerType = string | Date | [string, string] | [Date, Date] | null | undefined;
|
|
1853
3352
|
|
|
1854
3353
|
export declare const useCrud: () => {
|
|
1855
|
-
fetchData:
|
|
3354
|
+
fetchData: (fetch: (data: any) => Promise<any>, data: any) => Promise<any>;
|
|
3355
|
+
toNewPageSearch: (tabNode: any, filterConditions: Recordable<any>, fetch: (data: any) => Promise<any>, pageInfo: PageInfo) => Promise<false | never[]>;
|
|
1856
3356
|
};
|
|
1857
3357
|
|
|
1858
3358
|
export declare function usePinyin(): {
|