jky-component-lib 0.0.99 → 0.0.103
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/_virtual/_plugin-vue_export-helper.js +10 -0
- package/dist/es/amap/style.css +6 -2
- package/dist/es/amap/style2.css +2 -6
- package/dist/es/components.d.ts +1 -0
- package/dist/es/components.js +5 -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 +4 -1
- package/dist/es/package.json.js +1 -1
- package/dist/es/page-layout/PageLayout.vue.js +6 -0
- package/dist/es/page-table/PageTable.vue.d.ts +42 -433
- package/dist/es/page-table/PageTable.vue.js +82 -73
- 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/page-table-v2/PageTableV2.vue.d.ts +974 -0
- package/dist/es/page-table-v2/PageTableV2.vue.js +7 -0
- package/dist/es/page-table-v2/PageTableV2.vue2.js +321 -0
- package/dist/es/page-table-v2/index.d.ts +4 -0
- package/dist/es/page-table-v2/index.js +7 -0
- package/dist/es/page-table-v2/style.css +13 -0
- package/dist/es/style.css +64 -0
- package/dist/lib/_virtual/_plugin-vue_export-helper.js +10 -0
- package/dist/lib/amap/style.css +6 -2
- package/dist/lib/amap/style2.css +2 -6
- package/dist/lib/components.d.ts +1 -0
- package/dist/lib/components.js +13 -9
- package/dist/lib/form/Form.vue.d.ts +2 -100
- package/dist/lib/form/Form.vue.js +3 -1
- package/dist/lib/index.js +9 -6
- package/dist/lib/package.json.js +1 -1
- package/dist/lib/page-layout/PageLayout.vue.js +6 -0
- package/dist/lib/page-table/PageTable.vue.d.ts +42 -433
- package/dist/lib/page-table/PageTable.vue.js +79 -70
- 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/page-table-v2/PageTableV2.vue.d.ts +974 -0
- package/dist/lib/page-table-v2/PageTableV2.vue.js +7 -0
- package/dist/lib/page-table-v2/PageTableV2.vue2.js +321 -0
- package/dist/lib/page-table-v2/index.d.ts +4 -0
- package/dist/lib/page-table-v2/index.js +7 -0
- package/dist/lib/page-table-v2/style.css +13 -0
- package/dist/lib/style.css +64 -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: {
|
|
@@ -104,7 +102,7 @@ declare function __VLS_template(): {
|
|
|
104
102
|
};
|
|
105
103
|
$forceUpdate: () => void;
|
|
106
104
|
$nextTick: typeof nextTick;
|
|
107
|
-
$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;
|
|
105
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
108
106
|
} & Readonly<{
|
|
109
107
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
110
108
|
labelWidth: string | number;
|
|
@@ -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: {
|
|
@@ -203,7 +201,7 @@ declare function __VLS_template(): {
|
|
|
203
201
|
};
|
|
204
202
|
$forceUpdate: () => void;
|
|
205
203
|
$nextTick: typeof nextTick;
|
|
206
|
-
$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;
|
|
204
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
207
205
|
} & Readonly<{
|
|
208
206
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
209
207
|
labelWidth: string | number;
|
|
@@ -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;
|
|
@@ -428,7 +328,7 @@ declare function __VLS_template(): {
|
|
|
428
328
|
};
|
|
429
329
|
$forceUpdate: () => void;
|
|
430
330
|
$nextTick: typeof nextTick;
|
|
431
|
-
$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;
|
|
331
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
432
332
|
} & Readonly<{
|
|
433
333
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
434
334
|
labelWidth: string | number;
|
|
@@ -548,7 +448,7 @@ declare function __VLS_template(): {
|
|
|
548
448
|
};
|
|
549
449
|
$forceUpdate: () => void;
|
|
550
450
|
$nextTick: typeof nextTick;
|
|
551
|
-
$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;
|
|
451
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
552
452
|
} & Readonly<{
|
|
553
453
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
554
454
|
labelWidth: string | number;
|
|
@@ -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: {
|
|
@@ -745,7 +547,7 @@ declare function __VLS_template(): {
|
|
|
745
547
|
};
|
|
746
548
|
$forceUpdate: () => void;
|
|
747
549
|
$nextTick: typeof nextTick;
|
|
748
|
-
$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;
|
|
550
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
749
551
|
} & Readonly<{
|
|
750
552
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
751
553
|
labelWidth: string | number;
|
|
@@ -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;
|
|
@@ -3059,7 +2866,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3059
2866
|
};
|
|
3060
2867
|
$forceUpdate: () => void;
|
|
3061
2868
|
$nextTick: typeof nextTick;
|
|
3062
|
-
$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;
|
|
2869
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
3063
2870
|
} & Readonly<{
|
|
3064
2871
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3065
2872
|
labelWidth: string | number;
|
|
@@ -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: {
|
|
@@ -3256,7 +2965,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3256
2965
|
};
|
|
3257
2966
|
$forceUpdate: () => void;
|
|
3258
2967
|
$nextTick: typeof nextTick;
|
|
3259
|
-
$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;
|
|
2968
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
3260
2969
|
} & Readonly<{
|
|
3261
2970
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3262
2971
|
labelWidth: string | number;
|
|
@@ -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;
|
|
@@ -3383,7 +3092,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3383
3092
|
};
|
|
3384
3093
|
$forceUpdate: () => void;
|
|
3385
3094
|
$nextTick: typeof nextTick;
|
|
3386
|
-
$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;
|
|
3095
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
3387
3096
|
} & Readonly<{
|
|
3388
3097
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3389
3098
|
labelWidth: string | number;
|
|
@@ -3503,7 +3212,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3503
3212
|
};
|
|
3504
3213
|
$forceUpdate: () => void;
|
|
3505
3214
|
$nextTick: typeof nextTick;
|
|
3506
|
-
$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;
|
|
3215
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
3507
3216
|
} & Readonly<{
|
|
3508
3217
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3509
3218
|
labelWidth: string | number;
|
|
@@ -3528,7 +3237,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3528
3237
|
default?: (props: {}) => any;
|
|
3529
3238
|
};
|
|
3530
3239
|
}) | undefined;
|
|
3531
|
-
|
|
3240
|
+
form: ({
|
|
3532
3241
|
$: import('vue').ComponentInternalInstance;
|
|
3533
3242
|
$data: {};
|
|
3534
3243
|
$props: {
|
|
@@ -3602,7 +3311,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3602
3311
|
};
|
|
3603
3312
|
$forceUpdate: () => void;
|
|
3604
3313
|
$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;
|
|
3314
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (... /** @type { [typeof __VLS_components.JkyForm, ] } */args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
3606
3315
|
} & Readonly<{
|
|
3607
3316
|
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3608
3317
|
labelWidth: string | number;
|
|
@@ -3626,105 +3335,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_PublicProps,
|
|
|
3626
3335
|
$slots: {
|
|
3627
3336
|
default?: (props: {}) => any;
|
|
3628
3337
|
};
|
|
3629
|
-
}) | undefined
|
|
3630
|
-
$: import('vue').ComponentInternalInstance;
|
|
3631
|
-
$data: {};
|
|
3632
|
-
$props: {
|
|
3633
|
-
readonly model?: Record<string, any> | undefined;
|
|
3634
|
-
readonly rules?: import('element-plus').FormRules | undefined;
|
|
3635
|
-
readonly labelPosition?: "left" | "right" | "top" | undefined;
|
|
3636
|
-
readonly requireAsteriskPosition?: "left" | "right" | undefined;
|
|
3637
|
-
readonly labelWidth?: string | number | undefined;
|
|
3638
|
-
readonly labelSuffix?: string | undefined;
|
|
3639
|
-
readonly inline?: boolean | undefined;
|
|
3640
|
-
readonly inlineMessage?: boolean | undefined;
|
|
3641
|
-
readonly statusIcon?: boolean | undefined;
|
|
3642
|
-
readonly showMessage?: boolean | undefined;
|
|
3643
|
-
readonly validateOnRuleChange?: boolean | undefined;
|
|
3644
|
-
readonly hideRequiredAsterisk?: boolean | undefined;
|
|
3645
|
-
readonly scrollToError?: boolean | undefined;
|
|
3646
|
-
readonly scrollIntoViewOptions?: (ScrollIntoViewOptions | boolean) | undefined;
|
|
3647
|
-
readonly size?: import('element-plus').ComponentSize | undefined;
|
|
3648
|
-
readonly disabled?: boolean | undefined;
|
|
3649
|
-
readonly onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined | undefined;
|
|
3650
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
3651
|
-
$attrs: import('vue').Attrs;
|
|
3652
|
-
$refs: {
|
|
3653
|
-
[x: string]: unknown;
|
|
3654
|
-
};
|
|
3655
|
-
$slots: Readonly<{
|
|
3656
|
-
[name: string]: globalThis.Slot | undefined;
|
|
3657
|
-
}>;
|
|
3658
|
-
$root: ComponentPublicInstance | null;
|
|
3659
|
-
$parent: ComponentPublicInstance | null;
|
|
3660
|
-
$host: Element | null;
|
|
3661
|
-
$emit: (event: "validate", prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
3662
|
-
$el: any;
|
|
3663
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
3664
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
3665
|
-
}>, {
|
|
3666
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3667
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3668
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3669
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3670
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
3671
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
3672
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
3673
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
3674
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
3675
|
-
validate: (prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => void;
|
|
3676
|
-
}, string, {
|
|
3677
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3678
|
-
labelWidth: string | number;
|
|
3679
|
-
labelPosition: "left" | "right" | "top";
|
|
3680
|
-
requireAsteriskPosition: "left" | "right";
|
|
3681
|
-
labelSuffix: string;
|
|
3682
|
-
showMessage: boolean;
|
|
3683
|
-
validateOnRuleChange: boolean;
|
|
3684
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
3685
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
3686
|
-
created?: (() => void) | (() => void)[];
|
|
3687
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
3688
|
-
mounted?: (() => void) | (() => void)[];
|
|
3689
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
3690
|
-
updated?: (() => void) | (() => void)[];
|
|
3691
|
-
activated?: (() => void) | (() => void)[];
|
|
3692
|
-
deactivated?: (() => void) | (() => void)[];
|
|
3693
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
3694
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
3695
|
-
destroyed?: (() => void) | (() => void)[];
|
|
3696
|
-
unmounted?: (() => void) | (() => void)[];
|
|
3697
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3698
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
3699
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
3700
|
-
};
|
|
3701
|
-
$forceUpdate: () => void;
|
|
3702
|
-
$nextTick: typeof nextTick;
|
|
3703
|
-
$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;
|
|
3704
|
-
} & Readonly<{
|
|
3705
|
-
scrollIntoViewOptions: ScrollIntoViewOptions | boolean;
|
|
3706
|
-
labelWidth: string | number;
|
|
3707
|
-
labelPosition: "left" | "right" | "top";
|
|
3708
|
-
requireAsteriskPosition: "left" | "right";
|
|
3709
|
-
labelSuffix: string;
|
|
3710
|
-
showMessage: boolean;
|
|
3711
|
-
validateOnRuleChange: boolean;
|
|
3712
|
-
}> & Omit<Readonly<import('element-plus').FormProps> & Readonly<{
|
|
3713
|
-
onValidate?: ((prop: import('element-plus').FormItemProp, isValid: boolean, message: string) => any) | undefined;
|
|
3714
|
-
}>, "labelPosition" | "requireAsteriskPosition" | "labelWidth" | "labelSuffix" | "showMessage" | "validateOnRuleChange" | "scrollIntoViewOptions" | "validate" | "validateField" | "resetFields" | "clearValidate" | "scrollToField" | "getField" | "fields" | "setInitialValues"> & {
|
|
3715
|
-
validate: (callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3716
|
-
validateField: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>, callback?: import('element-plus').FormValidateCallback) => import('element-plus').FormValidationResult;
|
|
3717
|
-
resetFields: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3718
|
-
clearValidate: (props?: import('element-plus/es/utils').Arrayable<import('element-plus').FormItemProp>) => void;
|
|
3719
|
-
scrollToField: (prop: import('element-plus').FormItemProp) => void;
|
|
3720
|
-
getField: (prop: import('element-plus').FormItemProp) => import('element-plus').FormItemContext | undefined;
|
|
3721
|
-
fields: import('vue').Reactive<import('element-plus').FormItemContext[]>;
|
|
3722
|
-
setInitialValues: (initModel: Record<string, any>) => void;
|
|
3723
|
-
} & {} & import('vue').ComponentCustomProperties & {} & {
|
|
3724
|
-
$slots: {
|
|
3725
|
-
default?: (props: {}) => any;
|
|
3726
|
-
};
|
|
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;
|