orion-design 0.1.45 → 0.1.46
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 +5 -5
- package/dist/Throne/hooks/use-throne-context.js.map +1 -1
- package/dist/components/Form/FileInput/FileInput.vue.d.ts +24 -42
- package/dist/components/Form/Form.vue.d.ts +22 -22
- package/dist/components/Form/LovInput/LovInput.vue.d.ts +650 -662
- package/dist/components/Form/TableSelect/TableSelect.vue.d.ts +650 -662
- package/dist/components/Form/index.d.ts +11 -11
- package/dist/components/LovTable/LovPagetable.vue.d.ts +112 -0
- package/dist/components/LovTable/index.d.ts +56 -0
- package/dist/components/Pagetable/Pagetable.d.ts +52 -0
- package/dist/components/Pagetable/index.d.ts +36 -0
- package/dist/components/Pagetable/index.js +174 -165
- package/dist/components/Pagetable/index.js.map +1 -1
- package/dist/components/TableSelectPagetable/TableSelectPagetable.vue.d.ts +112 -0
- package/dist/components/TableSelectPagetable/index.d.ts +56 -0
- package/dist/components/Tree/Tree.vue.d.ts +198 -198
- package/dist/components/Tree/index.d.ts +99 -99
- package/dist/components-G3_R2B-U.js.map +1 -1
- package/dist/version/version.d.ts +1 -1
- package/dist/version/version.js +1 -1
- package/dist/version/version.js.map +1 -1
- package/package.json +1 -1
@@ -28,8 +28,8 @@ declare const _default: import('../_util').SFCWithInstall<{
|
|
28
28
|
$: import('vue').ComponentInternalInstance;
|
29
29
|
$data: {};
|
30
30
|
$props: Partial<{
|
31
|
-
readonly disabled: boolean;
|
32
31
|
readonly inline: boolean;
|
32
|
+
readonly disabled: boolean;
|
33
33
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
34
34
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
35
35
|
readonly inlineMessage: boolean;
|
@@ -142,17 +142,17 @@ declare const _default: import('../_util').SFCWithInstall<{
|
|
142
142
|
}>> & {
|
143
143
|
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
144
144
|
}, {
|
145
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
146
|
-
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp
|
147
|
-
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
148
|
-
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
145
|
+
validate: (callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
146
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined, callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
147
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
148
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
149
149
|
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
150
150
|
fields: import('element-plus').FormItemContext[];
|
151
151
|
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
152
152
|
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
153
153
|
}, string, {
|
154
|
-
readonly disabled: boolean;
|
155
154
|
readonly inline: boolean;
|
155
|
+
readonly disabled: boolean;
|
156
156
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
157
157
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
158
158
|
readonly inlineMessage: boolean;
|
@@ -184,8 +184,8 @@ declare const _default: import('../_util').SFCWithInstall<{
|
|
184
184
|
$nextTick: typeof import('vue').nextTick;
|
185
185
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
186
186
|
} & Readonly<{
|
187
|
-
readonly disabled: boolean;
|
188
187
|
readonly inline: boolean;
|
188
|
+
readonly disabled: boolean;
|
189
189
|
readonly labelWidth: import('element-plus/es/utils/index.mjs').EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
|
190
190
|
readonly labelPosition: import('element-plus/es/utils/index.mjs').EpPropMergeType<StringConstructor, "top" | "left" | "right", unknown>;
|
191
191
|
readonly inlineMessage: boolean;
|
@@ -231,10 +231,10 @@ declare const _default: import('../_util').SFCWithInstall<{
|
|
231
231
|
}>> & {
|
232
232
|
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
233
233
|
}, "inline" | "disabled" | "validate" | "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "inlineMessage" | "statusIcon" | "showMessage" | "validateOnRuleChange" | "hideRequiredAsterisk" | "scrollToError" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "fields"> & import('vue').ShallowUnwrapRef<{
|
234
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
235
|
-
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp
|
236
|
-
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
237
|
-
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp>) => void;
|
234
|
+
validate: (callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
235
|
+
validateField: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined, callback?: import('element-plus').FormValidateCallback | undefined) => import('element-plus').FormValidationResult;
|
236
|
+
resetFields: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
237
|
+
clearValidate: (props?: import('element-plus/es/utils/typescript.mjs').Arrayable<import('element-plus').FormItemProp> | undefined) => void;
|
238
238
|
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
239
239
|
fields: import('element-plus').FormItemContext[];
|
240
240
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
@@ -30,6 +30,22 @@ declare function __VLS_template(): {
|
|
30
30
|
type: BooleanConstructor;
|
31
31
|
default: boolean;
|
32
32
|
};
|
33
|
+
paginationPagerCount: {
|
34
|
+
type: import('vue').PropType<number>;
|
35
|
+
default: number;
|
36
|
+
};
|
37
|
+
paginationShowTotal: {
|
38
|
+
type: BooleanConstructor;
|
39
|
+
default: boolean;
|
40
|
+
};
|
41
|
+
paginationShowSizes: {
|
42
|
+
type: BooleanConstructor;
|
43
|
+
default: boolean;
|
44
|
+
};
|
45
|
+
paginationShowJumber: {
|
46
|
+
type: BooleanConstructor;
|
47
|
+
default: boolean;
|
48
|
+
};
|
33
49
|
showRowNumber: {
|
34
50
|
type: BooleanConstructor;
|
35
51
|
default: boolean;
|
@@ -144,6 +160,22 @@ declare function __VLS_template(): {
|
|
144
160
|
type: BooleanConstructor;
|
145
161
|
default: boolean;
|
146
162
|
};
|
163
|
+
paginationPagerCount: {
|
164
|
+
type: import('vue').PropType<number>;
|
165
|
+
default: number;
|
166
|
+
};
|
167
|
+
paginationShowTotal: {
|
168
|
+
type: BooleanConstructor;
|
169
|
+
default: boolean;
|
170
|
+
};
|
171
|
+
paginationShowSizes: {
|
172
|
+
type: BooleanConstructor;
|
173
|
+
default: boolean;
|
174
|
+
};
|
175
|
+
paginationShowJumber: {
|
176
|
+
type: BooleanConstructor;
|
177
|
+
default: boolean;
|
178
|
+
};
|
147
179
|
showRowNumber: {
|
148
180
|
type: BooleanConstructor;
|
149
181
|
default: boolean;
|
@@ -242,6 +274,10 @@ declare function __VLS_template(): {
|
|
242
274
|
};
|
243
275
|
tailData: Record<string, any>;
|
244
276
|
paginationTeleported: boolean;
|
277
|
+
paginationPagerCount: number;
|
278
|
+
paginationShowTotal: boolean;
|
279
|
+
paginationShowSizes: boolean;
|
280
|
+
paginationShowJumber: boolean;
|
245
281
|
showRowNumber: boolean;
|
246
282
|
selectionMode: boolean;
|
247
283
|
currentRowMode: boolean;
|
@@ -305,6 +341,22 @@ declare function __VLS_template(): {
|
|
305
341
|
type: BooleanConstructor;
|
306
342
|
default: boolean;
|
307
343
|
};
|
344
|
+
paginationPagerCount: {
|
345
|
+
type: import('vue').PropType<number>;
|
346
|
+
default: number;
|
347
|
+
};
|
348
|
+
paginationShowTotal: {
|
349
|
+
type: BooleanConstructor;
|
350
|
+
default: boolean;
|
351
|
+
};
|
352
|
+
paginationShowSizes: {
|
353
|
+
type: BooleanConstructor;
|
354
|
+
default: boolean;
|
355
|
+
};
|
356
|
+
paginationShowJumber: {
|
357
|
+
type: BooleanConstructor;
|
358
|
+
default: boolean;
|
359
|
+
};
|
308
360
|
showRowNumber: {
|
309
361
|
type: BooleanConstructor;
|
310
362
|
default: boolean;
|
@@ -403,6 +455,10 @@ declare function __VLS_template(): {
|
|
403
455
|
};
|
404
456
|
tailData: Record<string, any>;
|
405
457
|
paginationTeleported: boolean;
|
458
|
+
paginationPagerCount: number;
|
459
|
+
paginationShowTotal: boolean;
|
460
|
+
paginationShowSizes: boolean;
|
461
|
+
paginationShowJumber: boolean;
|
406
462
|
showRowNumber: boolean;
|
407
463
|
selectionMode: boolean;
|
408
464
|
currentRowMode: boolean;
|
@@ -483,6 +539,22 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
483
539
|
type: BooleanConstructor;
|
484
540
|
default: boolean;
|
485
541
|
};
|
542
|
+
paginationPagerCount: {
|
543
|
+
type: import('vue').PropType<number>;
|
544
|
+
default: number;
|
545
|
+
};
|
546
|
+
paginationShowTotal: {
|
547
|
+
type: BooleanConstructor;
|
548
|
+
default: boolean;
|
549
|
+
};
|
550
|
+
paginationShowSizes: {
|
551
|
+
type: BooleanConstructor;
|
552
|
+
default: boolean;
|
553
|
+
};
|
554
|
+
paginationShowJumber: {
|
555
|
+
type: BooleanConstructor;
|
556
|
+
default: boolean;
|
557
|
+
};
|
486
558
|
showRowNumber: {
|
487
559
|
type: BooleanConstructor;
|
488
560
|
default: boolean;
|
@@ -597,6 +669,22 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
597
669
|
type: BooleanConstructor;
|
598
670
|
default: boolean;
|
599
671
|
};
|
672
|
+
paginationPagerCount: {
|
673
|
+
type: import('vue').PropType<number>;
|
674
|
+
default: number;
|
675
|
+
};
|
676
|
+
paginationShowTotal: {
|
677
|
+
type: BooleanConstructor;
|
678
|
+
default: boolean;
|
679
|
+
};
|
680
|
+
paginationShowSizes: {
|
681
|
+
type: BooleanConstructor;
|
682
|
+
default: boolean;
|
683
|
+
};
|
684
|
+
paginationShowJumber: {
|
685
|
+
type: BooleanConstructor;
|
686
|
+
default: boolean;
|
687
|
+
};
|
600
688
|
showRowNumber: {
|
601
689
|
type: BooleanConstructor;
|
602
690
|
default: boolean;
|
@@ -695,6 +783,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
695
783
|
};
|
696
784
|
tailData: Record<string, any>;
|
697
785
|
paginationTeleported: boolean;
|
786
|
+
paginationPagerCount: number;
|
787
|
+
paginationShowTotal: boolean;
|
788
|
+
paginationShowSizes: boolean;
|
789
|
+
paginationShowJumber: boolean;
|
698
790
|
showRowNumber: boolean;
|
699
791
|
selectionMode: boolean;
|
700
792
|
currentRowMode: boolean;
|
@@ -758,6 +850,22 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
758
850
|
type: BooleanConstructor;
|
759
851
|
default: boolean;
|
760
852
|
};
|
853
|
+
paginationPagerCount: {
|
854
|
+
type: import('vue').PropType<number>;
|
855
|
+
default: number;
|
856
|
+
};
|
857
|
+
paginationShowTotal: {
|
858
|
+
type: BooleanConstructor;
|
859
|
+
default: boolean;
|
860
|
+
};
|
861
|
+
paginationShowSizes: {
|
862
|
+
type: BooleanConstructor;
|
863
|
+
default: boolean;
|
864
|
+
};
|
865
|
+
paginationShowJumber: {
|
866
|
+
type: BooleanConstructor;
|
867
|
+
default: boolean;
|
868
|
+
};
|
761
869
|
showRowNumber: {
|
762
870
|
type: BooleanConstructor;
|
763
871
|
default: boolean;
|
@@ -856,6 +964,10 @@ declare const __VLS_component: import('vue').DefineComponent<{
|
|
856
964
|
};
|
857
965
|
tailData: Record<string, any>;
|
858
966
|
paginationTeleported: boolean;
|
967
|
+
paginationPagerCount: number;
|
968
|
+
paginationShowTotal: boolean;
|
969
|
+
paginationShowSizes: boolean;
|
970
|
+
paginationShowJumber: boolean;
|
859
971
|
showRowNumber: boolean;
|
860
972
|
selectionMode: boolean;
|
861
973
|
currentRowMode: boolean;
|
@@ -410,6 +410,22 @@ declare const _default: import('../_util').SFCWithInstall<{}> & {
|
|
410
410
|
type: BooleanConstructor;
|
411
411
|
default: boolean;
|
412
412
|
};
|
413
|
+
paginationPagerCount: {
|
414
|
+
type: import('vue').PropType<number>;
|
415
|
+
default: number;
|
416
|
+
};
|
417
|
+
paginationShowTotal: {
|
418
|
+
type: BooleanConstructor;
|
419
|
+
default: boolean;
|
420
|
+
};
|
421
|
+
paginationShowSizes: {
|
422
|
+
type: BooleanConstructor;
|
423
|
+
default: boolean;
|
424
|
+
};
|
425
|
+
paginationShowJumber: {
|
426
|
+
type: BooleanConstructor;
|
427
|
+
default: boolean;
|
428
|
+
};
|
413
429
|
showRowNumber: {
|
414
430
|
type: BooleanConstructor;
|
415
431
|
default: boolean;
|
@@ -524,6 +540,22 @@ declare const _default: import('../_util').SFCWithInstall<{}> & {
|
|
524
540
|
type: BooleanConstructor;
|
525
541
|
default: boolean;
|
526
542
|
};
|
543
|
+
paginationPagerCount: {
|
544
|
+
type: import('vue').PropType<number>;
|
545
|
+
default: number;
|
546
|
+
};
|
547
|
+
paginationShowTotal: {
|
548
|
+
type: BooleanConstructor;
|
549
|
+
default: boolean;
|
550
|
+
};
|
551
|
+
paginationShowSizes: {
|
552
|
+
type: BooleanConstructor;
|
553
|
+
default: boolean;
|
554
|
+
};
|
555
|
+
paginationShowJumber: {
|
556
|
+
type: BooleanConstructor;
|
557
|
+
default: boolean;
|
558
|
+
};
|
527
559
|
showRowNumber: {
|
528
560
|
type: BooleanConstructor;
|
529
561
|
default: boolean;
|
@@ -622,6 +654,10 @@ declare const _default: import('../_util').SFCWithInstall<{}> & {
|
|
622
654
|
};
|
623
655
|
tailData: Record<string, any>;
|
624
656
|
paginationTeleported: boolean;
|
657
|
+
paginationPagerCount: number;
|
658
|
+
paginationShowTotal: boolean;
|
659
|
+
paginationShowSizes: boolean;
|
660
|
+
paginationShowJumber: boolean;
|
625
661
|
showRowNumber: boolean;
|
626
662
|
selectionMode: boolean;
|
627
663
|
currentRowMode: boolean;
|
@@ -685,6 +721,22 @@ declare const _default: import('../_util').SFCWithInstall<{}> & {
|
|
685
721
|
type: BooleanConstructor;
|
686
722
|
default: boolean;
|
687
723
|
};
|
724
|
+
paginationPagerCount: {
|
725
|
+
type: import('vue').PropType<number>;
|
726
|
+
default: number;
|
727
|
+
};
|
728
|
+
paginationShowTotal: {
|
729
|
+
type: BooleanConstructor;
|
730
|
+
default: boolean;
|
731
|
+
};
|
732
|
+
paginationShowSizes: {
|
733
|
+
type: BooleanConstructor;
|
734
|
+
default: boolean;
|
735
|
+
};
|
736
|
+
paginationShowJumber: {
|
737
|
+
type: BooleanConstructor;
|
738
|
+
default: boolean;
|
739
|
+
};
|
688
740
|
showRowNumber: {
|
689
741
|
type: BooleanConstructor;
|
690
742
|
default: boolean;
|
@@ -783,6 +835,10 @@ declare const _default: import('../_util').SFCWithInstall<{}> & {
|
|
783
835
|
};
|
784
836
|
tailData: Record<string, any>;
|
785
837
|
paginationTeleported: boolean;
|
838
|
+
paginationPagerCount: number;
|
839
|
+
paginationShowTotal: boolean;
|
840
|
+
paginationShowSizes: boolean;
|
841
|
+
paginationShowJumber: boolean;
|
786
842
|
showRowNumber: boolean;
|
787
843
|
selectionMode: boolean;
|
788
844
|
currentRowMode: boolean;
|
@@ -52,6 +52,22 @@ export declare const pagetableProps: () => {
|
|
52
52
|
type: BooleanConstructor;
|
53
53
|
default: boolean;
|
54
54
|
};
|
55
|
+
paginationPagerCount: {
|
56
|
+
type: PropType<number>;
|
57
|
+
default: number;
|
58
|
+
};
|
59
|
+
paginationShowTotal: {
|
60
|
+
type: BooleanConstructor;
|
61
|
+
default: boolean;
|
62
|
+
};
|
63
|
+
paginationShowSizes: {
|
64
|
+
type: BooleanConstructor;
|
65
|
+
default: boolean;
|
66
|
+
};
|
67
|
+
paginationShowJumber: {
|
68
|
+
type: BooleanConstructor;
|
69
|
+
default: boolean;
|
70
|
+
};
|
55
71
|
showRowNumber: {
|
56
72
|
type: BooleanConstructor;
|
57
73
|
default: boolean;
|
@@ -113,6 +129,22 @@ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
|
|
113
129
|
type: BooleanConstructor;
|
114
130
|
default: boolean;
|
115
131
|
};
|
132
|
+
paginationPagerCount: {
|
133
|
+
type: PropType<number>;
|
134
|
+
default: number;
|
135
|
+
};
|
136
|
+
paginationShowTotal: {
|
137
|
+
type: BooleanConstructor;
|
138
|
+
default: boolean;
|
139
|
+
};
|
140
|
+
paginationShowSizes: {
|
141
|
+
type: BooleanConstructor;
|
142
|
+
default: boolean;
|
143
|
+
};
|
144
|
+
paginationShowJumber: {
|
145
|
+
type: BooleanConstructor;
|
146
|
+
default: boolean;
|
147
|
+
};
|
116
148
|
showRowNumber: {
|
117
149
|
type: BooleanConstructor;
|
118
150
|
default: boolean;
|
@@ -172,6 +204,22 @@ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
|
|
172
204
|
type: BooleanConstructor;
|
173
205
|
default: boolean;
|
174
206
|
};
|
207
|
+
paginationPagerCount: {
|
208
|
+
type: PropType<number>;
|
209
|
+
default: number;
|
210
|
+
};
|
211
|
+
paginationShowTotal: {
|
212
|
+
type: BooleanConstructor;
|
213
|
+
default: boolean;
|
214
|
+
};
|
215
|
+
paginationShowSizes: {
|
216
|
+
type: BooleanConstructor;
|
217
|
+
default: boolean;
|
218
|
+
};
|
219
|
+
paginationShowJumber: {
|
220
|
+
type: BooleanConstructor;
|
221
|
+
default: boolean;
|
222
|
+
};
|
175
223
|
showRowNumber: {
|
176
224
|
type: BooleanConstructor;
|
177
225
|
default: boolean;
|
@@ -226,6 +274,10 @@ declare const _default: import('vue').DefineComponent<ExtractPropTypes<{
|
|
226
274
|
};
|
227
275
|
tailData: Record<string, any>;
|
228
276
|
paginationTeleported: boolean;
|
277
|
+
paginationPagerCount: number;
|
278
|
+
paginationShowTotal: boolean;
|
279
|
+
paginationShowSizes: boolean;
|
280
|
+
paginationShowJumber: boolean;
|
229
281
|
showRowNumber: boolean;
|
230
282
|
selectionMode: boolean;
|
231
283
|
currentRowMode: boolean;
|
@@ -37,6 +37,22 @@ declare const _default: import('../_util').SFCWithInstall<import('vue').DefineCo
|
|
37
37
|
type: BooleanConstructor;
|
38
38
|
default: boolean;
|
39
39
|
};
|
40
|
+
paginationPagerCount: {
|
41
|
+
type: import('vue').PropType<number>;
|
42
|
+
default: number;
|
43
|
+
};
|
44
|
+
paginationShowTotal: {
|
45
|
+
type: BooleanConstructor;
|
46
|
+
default: boolean;
|
47
|
+
};
|
48
|
+
paginationShowSizes: {
|
49
|
+
type: BooleanConstructor;
|
50
|
+
default: boolean;
|
51
|
+
};
|
52
|
+
paginationShowJumber: {
|
53
|
+
type: BooleanConstructor;
|
54
|
+
default: boolean;
|
55
|
+
};
|
40
56
|
showRowNumber: {
|
41
57
|
type: BooleanConstructor;
|
42
58
|
default: boolean;
|
@@ -140,6 +156,22 @@ declare const _default: import('../_util').SFCWithInstall<import('vue').DefineCo
|
|
140
156
|
type: BooleanConstructor;
|
141
157
|
default: boolean;
|
142
158
|
};
|
159
|
+
paginationPagerCount: {
|
160
|
+
type: import('vue').PropType<number>;
|
161
|
+
default: number;
|
162
|
+
};
|
163
|
+
paginationShowTotal: {
|
164
|
+
type: BooleanConstructor;
|
165
|
+
default: boolean;
|
166
|
+
};
|
167
|
+
paginationShowSizes: {
|
168
|
+
type: BooleanConstructor;
|
169
|
+
default: boolean;
|
170
|
+
};
|
171
|
+
paginationShowJumber: {
|
172
|
+
type: BooleanConstructor;
|
173
|
+
default: boolean;
|
174
|
+
};
|
143
175
|
showRowNumber: {
|
144
176
|
type: BooleanConstructor;
|
145
177
|
default: boolean;
|
@@ -238,6 +270,10 @@ declare const _default: import('../_util').SFCWithInstall<import('vue').DefineCo
|
|
238
270
|
};
|
239
271
|
tailData: Record<string, any>;
|
240
272
|
paginationTeleported: boolean;
|
273
|
+
paginationPagerCount: number;
|
274
|
+
paginationShowTotal: boolean;
|
275
|
+
paginationShowSizes: boolean;
|
276
|
+
paginationShowJumber: boolean;
|
241
277
|
showRowNumber: boolean;
|
242
278
|
selectionMode: boolean;
|
243
279
|
currentRowMode: boolean;
|