jky-component-lib 0.0.99 → 0.0.100
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/dist/es/amap/style.css +6 -2
- package/dist/es/amap/style2.css +12 -5
- package/dist/es/amap/style3.css +2 -13
- package/dist/es/components.js +2 -1
- package/dist/es/form/Form.vue.d.ts +2 -100
- package/dist/es/form/Form.vue.js +3 -1
- package/dist/es/index.js +2 -1
- package/dist/es/package.json.js +1 -1
- package/dist/es/page-table/PageTable.vue.d.ts +32 -423
- package/dist/es/page-table/PageTable.vue.js +78 -69
- package/dist/es/page-table/PageTableColumn.vue.d.ts +36 -0
- package/dist/es/page-table/PageTableColumn.vue.js +121 -0
- package/dist/es/page-table/PageTableColumn.vue3.js +5 -0
- package/dist/es/page-table/Toolbar.vue.d.ts +1 -1
- package/dist/es/page-table/Toolbar.vue.js +2 -2
- package/dist/es/page-table/index.d.ts +3 -1
- package/dist/es/page-table/index.js +4 -0
- package/dist/es/style.css +56 -0
- package/dist/lib/amap/style.css +6 -2
- package/dist/lib/amap/style2.css +12 -5
- package/dist/lib/amap/style3.css +2 -13
- package/dist/lib/components.js +1 -0
- package/dist/lib/form/Form.vue.d.ts +2 -100
- package/dist/lib/form/Form.vue.js +3 -1
- package/dist/lib/index.js +1 -0
- package/dist/lib/package.json.js +1 -1
- package/dist/lib/page-table/PageTable.vue.d.ts +32 -423
- package/dist/lib/page-table/PageTable.vue.js +75 -66
- package/dist/lib/page-table/PageTableColumn.vue.d.ts +36 -0
- package/dist/lib/page-table/PageTableColumn.vue.js +121 -0
- package/dist/lib/page-table/PageTableColumn.vue3.js +5 -0
- package/dist/lib/page-table/Toolbar.vue.d.ts +1 -1
- package/dist/lib/page-table/Toolbar.vue.js +2 -2
- package/dist/lib/page-table/index.d.ts +3 -1
- package/dist/lib/page-table/index.js +4 -0
- package/dist/lib/style.css +56 -0
- package/package.json +1 -1
|
@@ -1,17 +1,15 @@
|
|
|
1
1
|
import { TableColumnCtx } from 'element-plus';
|
|
2
|
-
import { PageTableProps
|
|
2
|
+
import { PageTableProps } from './types';
|
|
3
3
|
import { nextTick } from 'vue';
|
|
4
4
|
type __VLS_Props = PageTableProps;
|
|
5
5
|
type __VLS_PublicProps = {
|
|
6
|
-
'
|
|
6
|
+
'pageNo'?: number;
|
|
7
|
+
'pageSize'?: number;
|
|
8
|
+
'total'?: number;
|
|
7
9
|
} & __VLS_Props;
|
|
8
10
|
declare function __VLS_template(): {
|
|
9
11
|
attrs: Partial<{}>;
|
|
10
|
-
slots:
|
|
11
|
-
row: any;
|
|
12
|
-
column: any;
|
|
13
|
-
index: any;
|
|
14
|
-
}) => any>> & {
|
|
12
|
+
slots: {
|
|
15
13
|
columns?(_: {}): any;
|
|
16
14
|
};
|
|
17
15
|
refs: {
|
|
@@ -129,7 +127,7 @@ declare function __VLS_template(): {
|
|
|
129
127
|
default?: (props: {}) => any;
|
|
130
128
|
};
|
|
131
129
|
}) | undefined;
|
|
132
|
-
|
|
130
|
+
form: ({
|
|
133
131
|
$: import('vue').ComponentInternalInstance;
|
|
134
132
|
$data: {};
|
|
135
133
|
$props: {
|
|
@@ -227,105 +225,7 @@ declare function __VLS_template(): {
|
|
|
227
225
|
$slots: {
|
|
228
226
|
default?: (props: {}) => any;
|
|
229
227
|
};
|
|
230
|
-
}) | undefined
|
|
231
|
-
$: import('vue').ComponentInternalInstance;
|
|
232
|
-
$data: {};
|
|
233
|
-
$props: {
|
|
234
|
-
readonly model?: Record<string, any> | undefined;
|
|
235
|
-
readonly rules?: import('element-plus').FormRules | undefined;
|
|
236
|
-
readonly labelPosition?: "left" | "right" | "top" | undefined;
|
|
237
|
-
readonly requireAsteriskPosition?: "left" | "right" | undefined;
|
|
238
|
-
readonly labelWidth?: string | number | undefined;
|
|
239
|
-
readonly labelSuffix?: string | undefined;
|
|
240
|
-
readonly inline?: boolean | undefined;
|
|
241
|
-
readonly inlineMessage?: boolean | undefined;
|
|
242
|
-
readonly statusIcon?: boolean | undefined;
|
|
243
|
-
readonly showMessage?: boolean | undefined;
|
|
244
|
-
readonly validateOnRuleChange?: boolean | undefined;
|
|
245
|
-
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
246
|
-
readonly scrollToError?: boolean | undefined;
|
|
247
|
-
readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
|
|
248
|
-
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
249
|
-
readonly disabled?: boolean | undefined;
|
|
250
|
-
readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
251
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
252
|
-
$attrs: import('vue').Attrs;
|
|
253
|
-
$refs: {
|
|
254
|
-
[x: string]: unknown;
|
|
255
|
-
};
|
|
256
|
-
$slots: Readonly<{
|
|
257
|
-
[name: string]: globalThis.Slot | undefined;
|
|
258
|
-
}>;
|
|
259
|
-
$root: ComponentPublicInstance | null;
|
|
260
|
-
$parent: ComponentPublicInstance | null;
|
|
261
|
-
$host: Element | null;
|
|
262
|
-
$emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
263
|
-
$el: any;
|
|
264
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
265
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
266
|
-
}>, {
|
|
267
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
268
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
269
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
270
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
271
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
272
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
273
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
274
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
275
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
276
|
-
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
277
|
-
}, string, {
|
|
278
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
279
|
-
labelWidth: string | number;
|
|
280
|
-
labelPosition: "left" | "right" | "top";
|
|
281
|
-
requireAsteriskPosition: "left" | "right";
|
|
282
|
-
labelSuffix: string;
|
|
283
|
-
showMessage: boolean;
|
|
284
|
-
validateOnRuleChange: boolean;
|
|
285
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
286
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
287
|
-
created?: (() => void) | (() => void)[];
|
|
288
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
289
|
-
mounted?: (() => void) | (() => void)[];
|
|
290
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
291
|
-
updated?: (() => void) | (() => void)[];
|
|
292
|
-
activated?: (() => void) | (() => void)[];
|
|
293
|
-
deactivated?: (() => void) | (() => void)[];
|
|
294
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
295
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
296
|
-
destroyed?: (() => void) | (() => void)[];
|
|
297
|
-
unmounted?: (() => void) | (() => void)[];
|
|
298
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
299
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
300
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
301
|
-
};
|
|
302
|
-
$forceUpdate: () => void;
|
|
303
|
-
$nextTick: typeof nextTick;
|
|
304
|
-
$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;
|
|
305
|
-
} & Readonly<{
|
|
306
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
307
|
-
labelWidth: string | number;
|
|
308
|
-
labelPosition: "left" | "right" | "top";
|
|
309
|
-
requireAsteriskPosition: "left" | "right";
|
|
310
|
-
labelSuffix: string;
|
|
311
|
-
showMessage: boolean;
|
|
312
|
-
validateOnRuleChange: boolean;
|
|
313
|
-
}> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
314
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
315
|
-
}>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
|
|
316
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
317
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
318
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
319
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
320
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
321
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
322
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
323
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
324
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
325
|
-
$slots: {
|
|
326
|
-
default?: (props: {}) => any;
|
|
327
|
-
};
|
|
328
|
-
}) | undefined>;
|
|
228
|
+
}) | undefined;
|
|
329
229
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
330
230
|
"update:modelValue": (value: Record<string, any>) => any;
|
|
331
231
|
change: (value: Record<string, any>) => any;
|
|
@@ -573,105 +473,7 @@ declare function __VLS_template(): {
|
|
|
573
473
|
default?: (props: {}) => any;
|
|
574
474
|
};
|
|
575
475
|
}) | undefined;
|
|
576
|
-
|
|
577
|
-
$: import('vue').ComponentInternalInstance;
|
|
578
|
-
$data: {};
|
|
579
|
-
$props: {
|
|
580
|
-
readonly model?: Record<string, any> | undefined;
|
|
581
|
-
readonly rules?: import('element-plus').FormRules | undefined;
|
|
582
|
-
readonly labelPosition?: "left" | "right" | "top" | undefined;
|
|
583
|
-
readonly requireAsteriskPosition?: "left" | "right" | undefined;
|
|
584
|
-
readonly labelWidth?: string | number | undefined;
|
|
585
|
-
readonly labelSuffix?: string | undefined;
|
|
586
|
-
readonly inline?: boolean | undefined;
|
|
587
|
-
readonly inlineMessage?: boolean | undefined;
|
|
588
|
-
readonly statusIcon?: boolean | undefined;
|
|
589
|
-
readonly showMessage?: boolean | undefined;
|
|
590
|
-
readonly validateOnRuleChange?: boolean | undefined;
|
|
591
|
-
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
592
|
-
readonly scrollToError?: boolean | undefined;
|
|
593
|
-
readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
|
|
594
|
-
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
595
|
-
readonly disabled?: boolean | undefined;
|
|
596
|
-
readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
597
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
598
|
-
$attrs: import('vue').Attrs;
|
|
599
|
-
$refs: {
|
|
600
|
-
[x: string]: unknown;
|
|
601
|
-
};
|
|
602
|
-
$slots: Readonly<{
|
|
603
|
-
[name: string]: globalThis.Slot | undefined;
|
|
604
|
-
}>;
|
|
605
|
-
$root: ComponentPublicInstance | null;
|
|
606
|
-
$parent: ComponentPublicInstance | null;
|
|
607
|
-
$host: Element | null;
|
|
608
|
-
$emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
609
|
-
$el: any;
|
|
610
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
611
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
612
|
-
}>, {
|
|
613
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
614
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
615
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
616
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
617
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
618
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
619
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
620
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
621
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
622
|
-
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
623
|
-
}, string, {
|
|
624
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
625
|
-
labelWidth: string | number;
|
|
626
|
-
labelPosition: "left" | "right" | "top";
|
|
627
|
-
requireAsteriskPosition: "left" | "right";
|
|
628
|
-
labelSuffix: string;
|
|
629
|
-
showMessage: boolean;
|
|
630
|
-
validateOnRuleChange: boolean;
|
|
631
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
632
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
633
|
-
created?: (() => void) | (() => void)[];
|
|
634
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
635
|
-
mounted?: (() => void) | (() => void)[];
|
|
636
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
637
|
-
updated?: (() => void) | (() => void)[];
|
|
638
|
-
activated?: (() => void) | (() => void)[];
|
|
639
|
-
deactivated?: (() => void) | (() => void)[];
|
|
640
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
641
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
642
|
-
destroyed?: (() => void) | (() => void)[];
|
|
643
|
-
unmounted?: (() => void) | (() => void)[];
|
|
644
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
645
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
646
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
647
|
-
};
|
|
648
|
-
$forceUpdate: () => void;
|
|
649
|
-
$nextTick: typeof nextTick;
|
|
650
|
-
$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;
|
|
651
|
-
} & Readonly<{
|
|
652
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
653
|
-
labelWidth: string | number;
|
|
654
|
-
labelPosition: "left" | "right" | "top";
|
|
655
|
-
requireAsteriskPosition: "left" | "right";
|
|
656
|
-
labelSuffix: string;
|
|
657
|
-
showMessage: boolean;
|
|
658
|
-
validateOnRuleChange: boolean;
|
|
659
|
-
}> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
660
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
661
|
-
}>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
|
|
662
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
663
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
664
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
665
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
666
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
667
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
668
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
669
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
670
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
671
|
-
$slots: {
|
|
672
|
-
default?: (props: {}) => any;
|
|
673
|
-
};
|
|
674
|
-
}) | undefined, ({
|
|
476
|
+
form: ({
|
|
675
477
|
$: import('vue').ComponentInternalInstance;
|
|
676
478
|
$data: {};
|
|
677
479
|
$props: {
|
|
@@ -769,7 +571,7 @@ declare function __VLS_template(): {
|
|
|
769
571
|
$slots: {
|
|
770
572
|
default?: (props: {}) => any;
|
|
771
573
|
};
|
|
772
|
-
}) | undefined
|
|
574
|
+
}) | undefined;
|
|
773
575
|
}, {}, {}, {}, {
|
|
774
576
|
size: import('element-plus').ComponentSize;
|
|
775
577
|
disabled: boolean;
|
|
@@ -1363,8 +1165,7 @@ declare function __VLS_template(): {
|
|
|
1363
1165
|
updateTableScrollY: () => void;
|
|
1364
1166
|
assertRowKey: () => void;
|
|
1365
1167
|
updateColumns: () => void;
|
|
1366
|
-
scheduleLayout: (needUpdateColumns?: boolean, immediate
|
|
1367
|
-
/** @type { [typeof __VLS_components.ElTableColumn, typeof __VLS_components.ElTableColumn, ] } */ ? /** @type { [typeof __VLS_components.ElTableColumn, typeof __VLS_components.ElTableColumn, ] } */: boolean) => void;
|
|
1168
|
+
scheduleLayout: (needUpdateColumns?: boolean, immediate?: boolean) => void;
|
|
1368
1169
|
isSelected: (row: any) => boolean;
|
|
1369
1170
|
clearSelection: () => void;
|
|
1370
1171
|
cleanSelection: () => void;
|
|
@@ -2712,8 +2513,7 @@ declare function __VLS_template(): {
|
|
|
2712
2513
|
updateTableScrollY: () => void;
|
|
2713
2514
|
assertRowKey: () => void;
|
|
2714
2515
|
updateColumns: () => void;
|
|
2715
|
-
scheduleLayout: (needUpdateColumns?: boolean, immediate
|
|
2716
|
-
/** @type { [typeof __VLS_components.ElTableColumn, typeof __VLS_components.ElTableColumn, ] } */ ? /** @type { [typeof __VLS_components.ElTableColumn, typeof __VLS_components.ElTableColumn, ] } */: boolean) => void;
|
|
2516
|
+
scheduleLayout: (needUpdateColumns?: boolean, immediate?: boolean) => void;
|
|
2717
2517
|
isSelected: (row: any) => boolean;
|
|
2718
2518
|
clearSelection: () => void;
|
|
2719
2519
|
cleanSelection: () => void;
|
|
@@ -2915,42 +2715,48 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
2915
2715
|
formRef: any;
|
|
2916
2716
|
tableRef: any;
|
|
2917
2717
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
2918
|
-
"update:
|
|
2718
|
+
"update:pageNo": (value: number) => any;
|
|
2719
|
+
"update:pageSize": (value: number) => any;
|
|
2720
|
+
"update:total": (value: number) => any;
|
|
2919
2721
|
} & {
|
|
2920
2722
|
search: (filterData: Record<string, any>) => any;
|
|
2921
2723
|
reset: () => any;
|
|
2922
2724
|
refresh: () => any;
|
|
2923
2725
|
pageChange: (page: {
|
|
2924
|
-
|
|
2726
|
+
pageNo: number;
|
|
2925
2727
|
pageSize: number;
|
|
2728
|
+
total?: number;
|
|
2926
2729
|
}) => any;
|
|
2927
2730
|
"update:form": (form: Record<string, any>) => any;
|
|
2928
2731
|
selectionChange: (selection: any[]) => any;
|
|
2929
|
-
rowClick: (row: any, column: TableColumnCtx<any>) => any;
|
|
2930
|
-
rowDblclick: (row: any, column: TableColumnCtx<any>) => any;
|
|
2931
2732
|
sortChange: (args_0: {
|
|
2932
2733
|
column: TableColumnCtx<any>;
|
|
2933
2734
|
prop: string;
|
|
2934
2735
|
order: "ascending" | "descending" | null;
|
|
2935
2736
|
}) => any;
|
|
2737
|
+
rowClick: (row: any, column: TableColumnCtx<any>) => any;
|
|
2738
|
+
rowDblclick: (row: any, column: TableColumnCtx<any>) => any;
|
|
2936
2739
|
}, string, import('vue').PublicProps, Readonly<__VLS_PublicProps> & Readonly<{
|
|
2937
2740
|
onSearch?: ((filterData: Record<string, any>) => any) | undefined;
|
|
2938
2741
|
onReset?: (() => any) | undefined;
|
|
2939
2742
|
onRefresh?: (() => any) | undefined;
|
|
2940
2743
|
onPageChange?: ((page: {
|
|
2941
|
-
|
|
2744
|
+
pageNo: number;
|
|
2942
2745
|
pageSize: number;
|
|
2746
|
+
total?: number;
|
|
2943
2747
|
}) => any) | undefined;
|
|
2944
2748
|
"onUpdate:form"?: ((form: Record<string, any>) => any) | undefined;
|
|
2945
2749
|
onSelectionChange?: ((selection: any[]) => any) | undefined;
|
|
2946
|
-
onRowClick?: ((row: any, column: TableColumnCtx<any>) => any) | undefined;
|
|
2947
|
-
onRowDblclick?: ((row: any, column: TableColumnCtx<any>) => any) | undefined;
|
|
2948
2750
|
onSortChange?: ((args_0: {
|
|
2949
2751
|
column: TableColumnCtx<any>;
|
|
2950
2752
|
prop: string;
|
|
2951
2753
|
order: "ascending" | "descending" | null;
|
|
2952
2754
|
}) => any) | undefined;
|
|
2953
|
-
|
|
2755
|
+
onRowClick?: ((row: any, column: TableColumnCtx<any>) => any) | undefined;
|
|
2756
|
+
onRowDblclick?: ((row: any, column: TableColumnCtx<any>) => any) | undefined;
|
|
2757
|
+
"onUpdate:pageNo"?: ((value: number) => any) | undefined;
|
|
2758
|
+
"onUpdate:pageSize"?: ((value: number) => any) | undefined;
|
|
2759
|
+
"onUpdate:total"?: ((value: number) => any) | undefined;
|
|
2954
2760
|
}>, {
|
|
2955
2761
|
title: string;
|
|
2956
2762
|
loading: boolean;
|
|
@@ -2961,6 +2767,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
2961
2767
|
searchText: string;
|
|
2962
2768
|
resetText: string;
|
|
2963
2769
|
selection: boolean;
|
|
2770
|
+
selectionColumn: import('./types').TableColumnConfig;
|
|
2964
2771
|
selectedRows: any[];
|
|
2965
2772
|
border: boolean;
|
|
2966
2773
|
stripe: boolean;
|
|
@@ -3084,105 +2891,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3084
2891
|
default?: (props: {}) => any;
|
|
3085
2892
|
};
|
|
3086
2893
|
}) | undefined;
|
|
3087
|
-
|
|
3088
|
-
$: import('vue').ComponentInternalInstance;
|
|
3089
|
-
$data: {};
|
|
3090
|
-
$props: {
|
|
3091
|
-
readonly model?: Record<string, any> | undefined;
|
|
3092
|
-
readonly rules?: import('element-plus').FormRules | undefined;
|
|
3093
|
-
readonly labelPosition?: "left" | "right" | "top" | undefined;
|
|
3094
|
-
readonly requireAsteriskPosition?: "left" | "right" | undefined;
|
|
3095
|
-
readonly labelWidth?: string | number | undefined;
|
|
3096
|
-
readonly labelSuffix?: string | undefined;
|
|
3097
|
-
readonly inline?: boolean | undefined;
|
|
3098
|
-
readonly inlineMessage?: boolean | undefined;
|
|
3099
|
-
readonly statusIcon?: boolean | undefined;
|
|
3100
|
-
readonly showMessage?: boolean | undefined;
|
|
3101
|
-
readonly validateOnRuleChange?: boolean | undefined;
|
|
3102
|
-
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
3103
|
-
readonly scrollToError?: boolean | undefined;
|
|
3104
|
-
readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
|
|
3105
|
-
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
3106
|
-
readonly disabled?: boolean | undefined;
|
|
3107
|
-
readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
3108
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
3109
|
-
$attrs: import('vue').Attrs;
|
|
3110
|
-
$refs: {
|
|
3111
|
-
[x: string]: unknown;
|
|
3112
|
-
};
|
|
3113
|
-
$slots: Readonly<{
|
|
3114
|
-
[name: string]: globalThis.Slot | undefined;
|
|
3115
|
-
}>;
|
|
3116
|
-
$root: ComponentPublicInstance | null;
|
|
3117
|
-
$parent: ComponentPublicInstance | null;
|
|
3118
|
-
$host: Element | null;
|
|
3119
|
-
$emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
3120
|
-
$el: any;
|
|
3121
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
3122
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
3123
|
-
}>, {
|
|
3124
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3125
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3126
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3127
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3128
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
3129
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
3130
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
3131
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
3132
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3133
|
-
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
3134
|
-
}, string, {
|
|
3135
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3136
|
-
labelWidth: string | number;
|
|
3137
|
-
labelPosition: "left" | "right" | "top";
|
|
3138
|
-
requireAsteriskPosition: "left" | "right";
|
|
3139
|
-
labelSuffix: string;
|
|
3140
|
-
showMessage: boolean;
|
|
3141
|
-
validateOnRuleChange: boolean;
|
|
3142
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3143
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
3144
|
-
created?: (() => void) | (() => void)[];
|
|
3145
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
3146
|
-
mounted?: (() => void) | (() => void)[];
|
|
3147
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
3148
|
-
updated?: (() => void) | (() => void)[];
|
|
3149
|
-
activated?: (() => void) | (() => void)[];
|
|
3150
|
-
deactivated?: (() => void) | (() => void)[];
|
|
3151
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
3152
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
3153
|
-
destroyed?: (() => void) | (() => void)[];
|
|
3154
|
-
unmounted?: (() => void) | (() => void)[];
|
|
3155
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3156
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3157
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3158
|
-
};
|
|
3159
|
-
$forceUpdate: () => void;
|
|
3160
|
-
$nextTick: typeof nextTick;
|
|
3161
|
-
$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;
|
|
3162
|
-
} & Readonly<{
|
|
3163
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3164
|
-
labelWidth: string | number;
|
|
3165
|
-
labelPosition: "left" | "right" | "top";
|
|
3166
|
-
requireAsteriskPosition: "left" | "right";
|
|
3167
|
-
labelSuffix: string;
|
|
3168
|
-
showMessage: boolean;
|
|
3169
|
-
validateOnRuleChange: boolean;
|
|
3170
|
-
}> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
3171
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
3172
|
-
}>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
|
|
3173
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3174
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3175
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3176
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3177
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
3178
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
3179
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
3180
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
3181
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
3182
|
-
$slots: {
|
|
3183
|
-
default?: (props: {}) => any;
|
|
3184
|
-
};
|
|
3185
|
-
}) | undefined, ({
|
|
2894
|
+
form: ({
|
|
3186
2895
|
$: import('vue').ComponentInternalInstance;
|
|
3187
2896
|
$data: {};
|
|
3188
2897
|
$props: {
|
|
@@ -3280,7 +2989,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3280
2989
|
$slots: {
|
|
3281
2990
|
default?: (props: {}) => any;
|
|
3282
2991
|
};
|
|
3283
|
-
}) | undefined
|
|
2992
|
+
}) | undefined;
|
|
3284
2993
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3285
2994
|
"update:modelValue": (value: Record<string, any>) => any;
|
|
3286
2995
|
change: (value: Record<string, any>) => any;
|
|
@@ -3528,105 +3237,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3528
3237
|
default?: (props: {}) => any;
|
|
3529
3238
|
};
|
|
3530
3239
|
}) | undefined;
|
|
3531
|
-
|
|
3532
|
-
$: import('vue').ComponentInternalInstance;
|
|
3533
|
-
$data: {};
|
|
3534
|
-
$props: {
|
|
3535
|
-
readonly model?: Record<string, any> | undefined;
|
|
3536
|
-
readonly rules?: import('element-plus').FormRules | undefined;
|
|
3537
|
-
readonly labelPosition?: "left" | "right" | "top" | undefined;
|
|
3538
|
-
readonly requireAsteriskPosition?: "left" | "right" | undefined;
|
|
3539
|
-
readonly labelWidth?: string | number | undefined;
|
|
3540
|
-
readonly labelSuffix?: string | undefined;
|
|
3541
|
-
readonly inline?: boolean | undefined;
|
|
3542
|
-
readonly inlineMessage?: boolean | undefined;
|
|
3543
|
-
readonly statusIcon?: boolean | undefined;
|
|
3544
|
-
readonly showMessage?: boolean | undefined;
|
|
3545
|
-
readonly validateOnRuleChange?: boolean | undefined;
|
|
3546
|
-
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
3547
|
-
readonly scrollToError?: boolean | undefined;
|
|
3548
|
-
readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
|
|
3549
|
-
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
3550
|
-
readonly disabled?: boolean | undefined;
|
|
3551
|
-
readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
3552
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
3553
|
-
$attrs: import('vue').Attrs;
|
|
3554
|
-
$refs: {
|
|
3555
|
-
[x: string]: unknown;
|
|
3556
|
-
};
|
|
3557
|
-
$slots: Readonly<{
|
|
3558
|
-
[name: string]: globalThis.Slot | undefined;
|
|
3559
|
-
}>;
|
|
3560
|
-
$root: ComponentPublicInstance | null;
|
|
3561
|
-
$parent: ComponentPublicInstance | null;
|
|
3562
|
-
$host: Element | null;
|
|
3563
|
-
$emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
3564
|
-
$el: any;
|
|
3565
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
3566
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
3567
|
-
}>, {
|
|
3568
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3569
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3570
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3571
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3572
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
3573
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
3574
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
3575
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
3576
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3577
|
-
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
3578
|
-
}, string, {
|
|
3579
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3580
|
-
labelWidth: string | number;
|
|
3581
|
-
labelPosition: "left" | "right" | "top";
|
|
3582
|
-
requireAsteriskPosition: "left" | "right";
|
|
3583
|
-
labelSuffix: string;
|
|
3584
|
-
showMessage: boolean;
|
|
3585
|
-
validateOnRuleChange: boolean;
|
|
3586
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3587
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
3588
|
-
created?: (() => void) | (() => void)[];
|
|
3589
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
3590
|
-
mounted?: (() => void) | (() => void)[];
|
|
3591
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
3592
|
-
updated?: (() => void) | (() => void)[];
|
|
3593
|
-
activated?: (() => void) | (() => void)[];
|
|
3594
|
-
deactivated?: (() => void) | (() => void)[];
|
|
3595
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
3596
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
3597
|
-
destroyed?: (() => void) | (() => void)[];
|
|
3598
|
-
unmounted?: (() => void) | (() => void)[];
|
|
3599
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3600
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3601
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3602
|
-
};
|
|
3603
|
-
$forceUpdate: () => void;
|
|
3604
|
-
$nextTick: typeof nextTick;
|
|
3605
|
-
$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;
|
|
3606
|
-
} & Readonly<{
|
|
3607
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3608
|
-
labelWidth: string | number;
|
|
3609
|
-
labelPosition: "left" | "right" | "top";
|
|
3610
|
-
requireAsteriskPosition: "left" | "right";
|
|
3611
|
-
labelSuffix: string;
|
|
3612
|
-
showMessage: boolean;
|
|
3613
|
-
validateOnRuleChange: boolean;
|
|
3614
|
-
}> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
3615
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
3616
|
-
}>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
|
|
3617
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3618
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3619
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3620
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3621
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
3622
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
3623
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
3624
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
3625
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
3626
|
-
$slots: {
|
|
3627
|
-
default?: (props: {}) => any;
|
|
3628
|
-
};
|
|
3629
|
-
}) | undefined, ({
|
|
3240
|
+
form: ({
|
|
3630
3241
|
$: import('vue').ComponentInternalInstance;
|
|
3631
3242
|
$data: {};
|
|
3632
3243
|
$props: {
|
|
@@ -3724,7 +3335,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3724
3335
|
$slots: {
|
|
3725
3336
|
default?: (props: {}) => any;
|
|
3726
3337
|
};
|
|
3727
|
-
}) | undefined
|
|
3338
|
+
}) | undefined;
|
|
3728
3339
|
}, {}, {}, {}, {
|
|
3729
3340
|
size: import('element-plus').ComponentSize;
|
|
3730
3341
|
disabled: boolean;
|
|
@@ -4318,8 +3929,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
4318
3929
|
updateTableScrollY: () => void;
|
|
4319
3930
|
assertRowKey: () => void;
|
|
4320
3931
|
updateColumns: () => void;
|
|
4321
|
-
scheduleLayout: (needUpdateColumns?: boolean, immediate
|
|
4322
|
-
/** @type { [typeof __VLS_components.ElTableColumn, typeof __VLS_components.ElTableColumn, ] } */ ? /** @type { [typeof __VLS_components.ElTableColumn, typeof __VLS_components.ElTableColumn, ] } */: boolean) => void;
|
|
3932
|
+
scheduleLayout: (needUpdateColumns?: boolean, immediate?: boolean) => void;
|
|
4323
3933
|
isSelected: (row: any) => boolean;
|
|
4324
3934
|
clearSelection: () => void;
|
|
4325
3935
|
cleanSelection: () => void;
|
|
@@ -5667,8 +5277,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
5667
5277
|
updateTableScrollY: () => void;
|
|
5668
5278
|
assertRowKey: () => void;
|
|
5669
5279
|
updateColumns: () => void;
|
|
5670
|
-
scheduleLayout: (needUpdateColumns?: boolean, immediate
|
|
5671
|
-
/** @type { [typeof __VLS_components.ElTableColumn, typeof __VLS_components.ElTableColumn, ] } */ ? /** @type { [typeof __VLS_components.ElTableColumn, typeof __VLS_components.ElTableColumn, ] } */: boolean) => void;
|
|
5280
|
+
scheduleLayout: (needUpdateColumns?: boolean, immediate?: boolean) => void;
|
|
5672
5281
|
isSelected: (row: any) => boolean;
|
|
5673
5282
|
clearSelection: () => void;
|
|
5674
5283
|
cleanSelection: () => void;
|