ra-element 0.1.56 → 0.1.63
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/docs/ra-form.md +2 -1
- package/lib/components/ra-button/index.vue.d.ts +105 -195
- package/lib/components/ra-checkbox-group/index.vue.d.ts +92 -148
- package/lib/components/ra-date-picker/index.vue.d.ts +282 -264
- package/lib/components/ra-dialog/index.vue.d.ts +163 -321
- package/lib/components/ra-input/index.vue.d.ts +173 -329
- package/lib/components/ra-pagination/index.vue.d.ts +107 -119
- package/lib/components/ra-radio-group/index.vue.d.ts +82 -154
- package/lib/components/ra-table/component/table-column-item.vue.d.ts +1 -6
- package/lib/components/ra-textarea/index.vue.d.ts +912 -2
- package/lib/components/ra-tool-tip/index.vue.d.ts +2426 -3
- package/lib/components/ra-tree-select/index.vue.d.ts +98 -96
- package/lib/components/ra-upload/index.vue.d.ts +385 -15
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1712 -1655
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +1 -1
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -266,115 +266,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
266
266
|
default: number;
|
|
267
267
|
};
|
|
268
268
|
}>, {
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
readonly total: NumberConstructor;
|
|
273
|
-
readonly pageCount: NumberConstructor;
|
|
274
|
-
readonly pagerCount: {
|
|
275
|
-
readonly type: import('vue').PropType<number>;
|
|
276
|
-
readonly required: false;
|
|
277
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
278
|
-
__epPropKey: true;
|
|
279
|
-
} & {
|
|
280
|
-
readonly default: 7;
|
|
281
|
-
};
|
|
282
|
-
readonly currentPage: NumberConstructor;
|
|
283
|
-
readonly defaultCurrentPage: NumberConstructor;
|
|
284
|
-
readonly layout: {
|
|
285
|
-
readonly type: import('vue').PropType<string>;
|
|
286
|
-
readonly required: false;
|
|
287
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
288
|
-
__epPropKey: true;
|
|
289
|
-
} & {
|
|
290
|
-
readonly default: string;
|
|
291
|
-
};
|
|
292
|
-
readonly pageSizes: {
|
|
293
|
-
readonly type: import('vue').PropType<number[]>;
|
|
294
|
-
readonly required: false;
|
|
295
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
296
|
-
__epPropKey: true;
|
|
297
|
-
} & {
|
|
298
|
-
readonly default: () => [10, 20, 30, 40, 50, 100];
|
|
299
|
-
};
|
|
300
|
-
readonly popperClass: {
|
|
301
|
-
readonly type: import('vue').PropType<string>;
|
|
302
|
-
readonly required: false;
|
|
303
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
304
|
-
__epPropKey: true;
|
|
305
|
-
} & {
|
|
306
|
-
readonly default: "";
|
|
307
|
-
};
|
|
308
|
-
readonly prevText: {
|
|
309
|
-
readonly type: import('vue').PropType<string>;
|
|
310
|
-
readonly required: false;
|
|
311
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
312
|
-
__epPropKey: true;
|
|
313
|
-
} & {
|
|
314
|
-
readonly default: "";
|
|
315
|
-
};
|
|
316
|
-
readonly prevIcon: {
|
|
317
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
318
|
-
readonly required: false;
|
|
319
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
320
|
-
__epPropKey: true;
|
|
321
|
-
} & {
|
|
322
|
-
readonly default: () => any;
|
|
323
|
-
};
|
|
324
|
-
readonly nextText: {
|
|
325
|
-
readonly type: import('vue').PropType<string>;
|
|
326
|
-
readonly required: false;
|
|
327
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
328
|
-
__epPropKey: true;
|
|
329
|
-
} & {
|
|
330
|
-
readonly default: "";
|
|
331
|
-
};
|
|
332
|
-
readonly nextIcon: {
|
|
333
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
334
|
-
readonly required: false;
|
|
335
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
336
|
-
__epPropKey: true;
|
|
337
|
-
} & {
|
|
338
|
-
readonly default: () => any;
|
|
339
|
-
};
|
|
340
|
-
readonly teleported: {
|
|
341
|
-
readonly type: import('vue').PropType<boolean>;
|
|
342
|
-
readonly required: false;
|
|
343
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
344
|
-
__epPropKey: true;
|
|
345
|
-
} & {
|
|
346
|
-
readonly default: true;
|
|
347
|
-
};
|
|
348
|
-
readonly small: BooleanConstructor;
|
|
349
|
-
readonly size: {
|
|
350
|
-
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
351
|
-
readonly required: false;
|
|
352
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
353
|
-
__epPropKey: true;
|
|
354
|
-
};
|
|
355
|
-
readonly background: BooleanConstructor;
|
|
356
|
-
readonly disabled: BooleanConstructor;
|
|
357
|
-
readonly hideOnSinglePage: BooleanConstructor;
|
|
358
|
-
readonly appendSizeTo: StringConstructor;
|
|
359
|
-
}>> & {
|
|
360
|
-
onChange?: ((currentPage: number, pageSize: number) => any) | undefined;
|
|
361
|
-
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
362
|
-
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
363
|
-
"onSize-change"?: ((val: number) => any) | undefined;
|
|
364
|
-
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
365
|
-
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
366
|
-
"onNext-click"?: ((val: number) => any) | undefined;
|
|
367
|
-
}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
368
|
-
[key: string]: any;
|
|
369
|
-
}> | null, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
370
|
-
"update:current-page": (val: number) => boolean;
|
|
371
|
-
"update:page-size": (val: number) => boolean;
|
|
372
|
-
"size-change": (val: number) => boolean;
|
|
373
|
-
change: (currentPage: number, pageSize: number) => boolean;
|
|
374
|
-
"current-change": (val: number) => boolean;
|
|
375
|
-
"prev-click": (val: number) => boolean;
|
|
376
|
-
"next-click": (val: number) => boolean;
|
|
377
|
-
}, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
|
|
269
|
+
$: import('vue').ComponentInternalInstance;
|
|
270
|
+
$data: {};
|
|
271
|
+
$props: Partial<{
|
|
378
272
|
readonly small: boolean;
|
|
379
273
|
readonly disabled: boolean;
|
|
380
274
|
readonly background: boolean;
|
|
@@ -388,14 +282,51 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
388
282
|
readonly pageSizes: number[];
|
|
389
283
|
readonly pagerCount: number;
|
|
390
284
|
readonly hideOnSinglePage: boolean;
|
|
391
|
-
}
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
285
|
+
}> & Omit<{
|
|
286
|
+
readonly disabled: boolean;
|
|
287
|
+
readonly small: boolean;
|
|
288
|
+
readonly popperClass: string;
|
|
289
|
+
readonly teleported: boolean;
|
|
290
|
+
readonly pagerCount: number;
|
|
291
|
+
readonly layout: string;
|
|
292
|
+
readonly pageSizes: number[];
|
|
293
|
+
readonly prevText: string;
|
|
294
|
+
readonly nextText: string;
|
|
295
|
+
readonly background: boolean;
|
|
296
|
+
readonly hideOnSinglePage: boolean;
|
|
297
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
298
|
+
readonly currentPage?: number | undefined;
|
|
299
|
+
readonly pageSize?: number | undefined;
|
|
300
|
+
readonly defaultPageSize?: number | undefined;
|
|
301
|
+
readonly total?: number | undefined;
|
|
302
|
+
readonly pageCount?: number | undefined;
|
|
303
|
+
readonly defaultCurrentPage?: number | undefined;
|
|
304
|
+
readonly prevIcon?: (string | import('vue').Component) | undefined;
|
|
305
|
+
readonly nextIcon?: (string | import('vue').Component) | undefined;
|
|
306
|
+
readonly appendSizeTo?: string | undefined;
|
|
307
|
+
onChange?: ((currentPage: number, pageSize: number) => any) | undefined | undefined;
|
|
308
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined | undefined;
|
|
309
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined | undefined;
|
|
310
|
+
"onSize-change"?: ((val: number) => any) | undefined | undefined;
|
|
311
|
+
"onCurrent-change"?: ((val: number) => any) | undefined | undefined;
|
|
312
|
+
"onPrev-click"?: ((val: number) => any) | undefined | undefined;
|
|
313
|
+
"onNext-click"?: ((val: number) => any) | undefined | undefined;
|
|
314
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "small" | "popperClass" | "teleported" | "pagerCount" | "layout" | "pageSizes" | "prevText" | "prevIcon" | "nextText" | "nextIcon" | "background" | "hideOnSinglePage">;
|
|
315
|
+
$attrs: {
|
|
316
|
+
[x: string]: unknown;
|
|
317
|
+
};
|
|
318
|
+
$refs: {
|
|
319
|
+
[x: string]: unknown;
|
|
320
|
+
};
|
|
321
|
+
$slots: Readonly<{
|
|
322
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
323
|
+
}>;
|
|
324
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
325
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
326
|
+
$host: Element | null;
|
|
327
|
+
$emit: ((event: "change", currentPage: number, pageSize: number) => void) & ((event: "update:current-page", val: number) => void) & ((event: "update:page-size", val: number) => void) & ((event: "size-change", val: number) => void) & ((event: "current-change", val: number) => void) & ((event: "prev-click", val: number) => void) & ((event: "next-click", val: number) => void);
|
|
328
|
+
$el: any;
|
|
329
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
399
330
|
readonly pageSize: NumberConstructor;
|
|
400
331
|
readonly defaultPageSize: NumberConstructor;
|
|
401
332
|
readonly total: NumberConstructor;
|
|
@@ -495,7 +426,15 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
495
426
|
"onNext-click"?: ((val: number) => any) | undefined;
|
|
496
427
|
}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
497
428
|
[key: string]: any;
|
|
498
|
-
}> | null,
|
|
429
|
+
}> | null, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
430
|
+
"update:current-page": (val: number) => boolean;
|
|
431
|
+
"update:page-size": (val: number) => boolean;
|
|
432
|
+
"size-change": (val: number) => boolean;
|
|
433
|
+
change: (currentPage: number, pageSize: number) => boolean;
|
|
434
|
+
"current-change": (val: number) => boolean;
|
|
435
|
+
"prev-click": (val: number) => boolean;
|
|
436
|
+
"next-click": (val: number) => boolean;
|
|
437
|
+
}, string, {
|
|
499
438
|
readonly small: boolean;
|
|
500
439
|
readonly disabled: boolean;
|
|
501
440
|
readonly background: boolean;
|
|
@@ -509,7 +448,56 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
509
448
|
readonly pageSizes: number[];
|
|
510
449
|
readonly pagerCount: number;
|
|
511
450
|
readonly hideOnSinglePage: boolean;
|
|
512
|
-
}>
|
|
451
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
452
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
453
|
+
created?: (() => void) | (() => void)[];
|
|
454
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
455
|
+
mounted?: (() => void) | (() => void)[];
|
|
456
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
457
|
+
updated?: (() => void) | (() => void)[];
|
|
458
|
+
activated?: (() => void) | (() => void)[];
|
|
459
|
+
deactivated?: (() => void) | (() => void)[];
|
|
460
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
461
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
462
|
+
destroyed?: (() => void) | (() => void)[];
|
|
463
|
+
unmounted?: (() => void) | (() => void)[];
|
|
464
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
465
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
466
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
467
|
+
};
|
|
468
|
+
$forceUpdate: () => void;
|
|
469
|
+
$nextTick: typeof import('vue').nextTick;
|
|
470
|
+
$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;
|
|
471
|
+
small: boolean;
|
|
472
|
+
disabled: boolean;
|
|
473
|
+
background: boolean;
|
|
474
|
+
layout: string;
|
|
475
|
+
popperClass: string;
|
|
476
|
+
teleported: boolean;
|
|
477
|
+
prevText: string;
|
|
478
|
+
prevIcon: string | import('vue').Component;
|
|
479
|
+
nextText: string;
|
|
480
|
+
nextIcon: string | import('vue').Component;
|
|
481
|
+
pageSizes: number[];
|
|
482
|
+
pagerCount: number;
|
|
483
|
+
hideOnSinglePage: boolean;
|
|
484
|
+
onChange?: ((currentPage: number, pageSize: number) => any) | undefined | undefined;
|
|
485
|
+
size?: ("" | "default" | "small" | "large") | undefined;
|
|
486
|
+
currentPage?: number | undefined;
|
|
487
|
+
pageSize?: number | undefined;
|
|
488
|
+
defaultPageSize?: number | undefined;
|
|
489
|
+
total?: number | undefined;
|
|
490
|
+
pageCount?: number | undefined;
|
|
491
|
+
defaultCurrentPage?: number | undefined;
|
|
492
|
+
appendSizeTo?: string | undefined;
|
|
493
|
+
"onUpdate:current-page"?: ((val: number) => any) | undefined | undefined;
|
|
494
|
+
"onUpdate:page-size"?: ((val: number) => any) | undefined | undefined;
|
|
495
|
+
"onSize-change"?: ((val: number) => any) | undefined | undefined;
|
|
496
|
+
"onCurrent-change"?: ((val: number) => any) | undefined | undefined;
|
|
497
|
+
"onPrev-click"?: ((val: number) => any) | undefined | undefined;
|
|
498
|
+
"onNext-click"?: ((val: number) => any) | undefined | undefined;
|
|
499
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
500
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
513
501
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
514
502
|
"update:currentPage": (...args: any[]) => void;
|
|
515
503
|
"update:pageSize": (...args: any[]) => void;
|
|
@@ -259,154 +259,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
259
259
|
default: boolean;
|
|
260
260
|
};
|
|
261
261
|
}>, {
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
$props: Partial<{
|
|
266
|
-
readonly disabled: boolean;
|
|
267
|
-
readonly fill: string;
|
|
268
|
-
readonly id: string;
|
|
269
|
-
readonly props: import('element-plus').radioOptionProp;
|
|
270
|
-
readonly name: string;
|
|
271
|
-
readonly modelValue: string | number | boolean;
|
|
272
|
-
readonly validateEvent: boolean;
|
|
273
|
-
readonly textColor: string;
|
|
274
|
-
}> & Omit<{
|
|
275
|
-
readonly fill: string;
|
|
276
|
-
readonly disabled: boolean;
|
|
277
|
-
readonly props: import('element-plus').radioOptionProp;
|
|
278
|
-
readonly validateEvent: boolean;
|
|
279
|
-
readonly textColor: string;
|
|
280
|
-
readonly name?: string | undefined;
|
|
281
|
-
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
282
|
-
readonly options?: import('element-plus').radioOption[] | undefined;
|
|
283
|
-
readonly modelValue?: (string | number | boolean) | undefined;
|
|
284
|
-
readonly id?: string | undefined;
|
|
285
|
-
readonly ariaLabel?: string | undefined;
|
|
286
|
-
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
287
|
-
onChange?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
288
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "name" | "fill" | "disabled" | "props" | "modelValue" | "id" | "validateEvent" | "textColor">;
|
|
289
|
-
$attrs: {
|
|
290
|
-
[x: string]: unknown;
|
|
291
|
-
};
|
|
292
|
-
$refs: {
|
|
293
|
-
[x: string]: unknown;
|
|
294
|
-
};
|
|
295
|
-
$slots: Readonly<{
|
|
296
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
297
|
-
}>;
|
|
298
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
299
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
300
|
-
$host: Element | null;
|
|
301
|
-
$emit: ((event: "change", val: string | number | boolean | undefined) => void) & ((event: "update:modelValue", val: string | number | boolean | undefined) => void);
|
|
302
|
-
$el: any;
|
|
303
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
304
|
-
readonly ariaLabel: StringConstructor;
|
|
305
|
-
readonly id: {
|
|
306
|
-
readonly type: PropType<string>;
|
|
307
|
-
readonly required: false;
|
|
308
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
309
|
-
__epPropKey: true;
|
|
310
|
-
} & {
|
|
311
|
-
readonly default: undefined;
|
|
312
|
-
};
|
|
313
|
-
readonly size: {
|
|
314
|
-
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
315
|
-
readonly required: false;
|
|
316
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
317
|
-
__epPropKey: true;
|
|
318
|
-
};
|
|
319
|
-
readonly disabled: BooleanConstructor;
|
|
320
|
-
readonly modelValue: {
|
|
321
|
-
readonly type: PropType<string | number | boolean>;
|
|
322
|
-
readonly required: false;
|
|
323
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
324
|
-
__epPropKey: true;
|
|
325
|
-
} & {
|
|
326
|
-
readonly default: undefined;
|
|
327
|
-
};
|
|
328
|
-
readonly fill: {
|
|
329
|
-
readonly type: PropType<string>;
|
|
330
|
-
readonly required: false;
|
|
331
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
332
|
-
__epPropKey: true;
|
|
333
|
-
} & {
|
|
334
|
-
readonly default: "";
|
|
335
|
-
};
|
|
336
|
-
readonly textColor: {
|
|
337
|
-
readonly type: PropType<string>;
|
|
338
|
-
readonly required: false;
|
|
339
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
340
|
-
__epPropKey: true;
|
|
341
|
-
} & {
|
|
342
|
-
readonly default: "";
|
|
343
|
-
};
|
|
344
|
-
readonly name: {
|
|
345
|
-
readonly type: PropType<string>;
|
|
346
|
-
readonly required: false;
|
|
347
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
348
|
-
__epPropKey: true;
|
|
349
|
-
} & {
|
|
350
|
-
readonly default: undefined;
|
|
351
|
-
};
|
|
352
|
-
readonly validateEvent: {
|
|
353
|
-
readonly type: PropType<boolean>;
|
|
354
|
-
readonly required: false;
|
|
355
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
356
|
-
__epPropKey: true;
|
|
357
|
-
} & {
|
|
358
|
-
readonly default: true;
|
|
359
|
-
};
|
|
360
|
-
readonly options: {
|
|
361
|
-
readonly type: PropType<import('element-plus').radioOption[]>;
|
|
362
|
-
readonly required: false;
|
|
363
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
364
|
-
__epPropKey: true;
|
|
365
|
-
};
|
|
366
|
-
readonly props: {
|
|
367
|
-
readonly type: PropType<import('element-plus').radioOptionProp>;
|
|
368
|
-
readonly required: false;
|
|
369
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
370
|
-
__epPropKey: true;
|
|
371
|
-
} & {
|
|
372
|
-
readonly default: () => Required<import('element-plus').radioOptionProp>;
|
|
373
|
-
};
|
|
374
|
-
}>> & {
|
|
375
|
-
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
376
|
-
onChange?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
377
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
378
|
-
"update:modelValue": (val: string | number | boolean | undefined) => void;
|
|
379
|
-
change: (val: string | number | boolean | undefined) => void;
|
|
380
|
-
}, string, {
|
|
381
|
-
readonly disabled: boolean;
|
|
382
|
-
readonly fill: string;
|
|
383
|
-
readonly id: string;
|
|
384
|
-
readonly props: import('element-plus').radioOptionProp;
|
|
385
|
-
readonly name: string;
|
|
386
|
-
readonly modelValue: string | number | boolean;
|
|
387
|
-
readonly validateEvent: boolean;
|
|
388
|
-
readonly textColor: string;
|
|
389
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
390
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
391
|
-
created?: (() => void) | (() => void)[];
|
|
392
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
393
|
-
mounted?: (() => void) | (() => void)[];
|
|
394
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
395
|
-
updated?: (() => void) | (() => void)[];
|
|
396
|
-
activated?: (() => void) | (() => void)[];
|
|
397
|
-
deactivated?: (() => void) | (() => void)[];
|
|
398
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
399
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
400
|
-
destroyed?: (() => void) | (() => void)[];
|
|
401
|
-
unmounted?: (() => void) | (() => void)[];
|
|
402
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
403
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
404
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
405
|
-
};
|
|
406
|
-
$forceUpdate: () => void;
|
|
407
|
-
$nextTick: typeof import('vue').nextTick;
|
|
408
|
-
$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;
|
|
409
|
-
} & Readonly<{
|
|
262
|
+
$: import('vue').ComponentInternalInstance;
|
|
263
|
+
$data: {};
|
|
264
|
+
$props: Partial<{
|
|
410
265
|
readonly disabled: boolean;
|
|
411
266
|
readonly fill: string;
|
|
412
267
|
readonly id: string;
|
|
@@ -415,7 +270,38 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
415
270
|
readonly modelValue: string | number | boolean;
|
|
416
271
|
readonly validateEvent: boolean;
|
|
417
272
|
readonly textColor: string;
|
|
418
|
-
}> & Omit<
|
|
273
|
+
}> & Omit<{
|
|
274
|
+
readonly fill: string;
|
|
275
|
+
readonly disabled: boolean;
|
|
276
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
277
|
+
readonly validateEvent: boolean;
|
|
278
|
+
readonly textColor: string;
|
|
279
|
+
readonly name?: string | undefined;
|
|
280
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
281
|
+
readonly options?: import('element-plus').radioOption[] | undefined;
|
|
282
|
+
readonly modelValue?: (string | number | boolean) | undefined;
|
|
283
|
+
readonly id?: string | undefined;
|
|
284
|
+
readonly ariaLabel?: string | undefined;
|
|
285
|
+
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
286
|
+
onChange?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
287
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "name" | "fill" | "disabled" | "props" | "modelValue" | "id" | "validateEvent" | "textColor">;
|
|
288
|
+
$attrs: {
|
|
289
|
+
[x: string]: unknown;
|
|
290
|
+
};
|
|
291
|
+
$refs: {
|
|
292
|
+
[x: string]: unknown;
|
|
293
|
+
};
|
|
294
|
+
$slots: Readonly<{
|
|
295
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
296
|
+
}> & {
|
|
297
|
+
default?(_: {}): any;
|
|
298
|
+
};
|
|
299
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
300
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
301
|
+
$host: Element | null;
|
|
302
|
+
$emit: ((event: "change", val: string | number | boolean | undefined) => void) & ((event: "update:modelValue", val: string | number | boolean | undefined) => void);
|
|
303
|
+
$el: any;
|
|
304
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
419
305
|
readonly ariaLabel: StringConstructor;
|
|
420
306
|
readonly id: {
|
|
421
307
|
readonly type: PropType<string>;
|
|
@@ -489,11 +375,53 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
489
375
|
}>> & {
|
|
490
376
|
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
491
377
|
onChange?: ((val: string | number | boolean | undefined) => any) | undefined;
|
|
492
|
-
},
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
378
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
379
|
+
"update:modelValue": (val: string | number | boolean | undefined) => void;
|
|
380
|
+
change: (val: string | number | boolean | undefined) => void;
|
|
381
|
+
}, string, {
|
|
382
|
+
readonly disabled: boolean;
|
|
383
|
+
readonly fill: string;
|
|
384
|
+
readonly id: string;
|
|
385
|
+
readonly props: import('element-plus').radioOptionProp;
|
|
386
|
+
readonly name: string;
|
|
387
|
+
readonly modelValue: string | number | boolean;
|
|
388
|
+
readonly validateEvent: boolean;
|
|
389
|
+
readonly textColor: string;
|
|
390
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
391
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
392
|
+
created?: (() => void) | (() => void)[];
|
|
393
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
394
|
+
mounted?: (() => void) | (() => void)[];
|
|
395
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
396
|
+
updated?: (() => void) | (() => void)[];
|
|
397
|
+
activated?: (() => void) | (() => void)[];
|
|
398
|
+
deactivated?: (() => void) | (() => void)[];
|
|
399
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
400
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
401
|
+
destroyed?: (() => void) | (() => void)[];
|
|
402
|
+
unmounted?: (() => void) | (() => void)[];
|
|
403
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
404
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
405
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
406
|
+
};
|
|
407
|
+
$forceUpdate: () => void;
|
|
408
|
+
$nextTick: typeof import('vue').nextTick;
|
|
409
|
+
$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;
|
|
410
|
+
disabled: boolean;
|
|
411
|
+
fill: string;
|
|
412
|
+
id: string;
|
|
413
|
+
props: import('element-plus').radioOptionProp;
|
|
414
|
+
name: string;
|
|
415
|
+
modelValue: string | number | boolean;
|
|
416
|
+
validateEvent: boolean;
|
|
417
|
+
textColor: string;
|
|
418
|
+
onChange?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
419
|
+
size?: ("" | "default" | "small" | "large") | undefined;
|
|
420
|
+
options?: import('element-plus').radioOption[] | undefined;
|
|
421
|
+
"onUpdate:modelValue"?: ((val: string | number | boolean | undefined) => any) | undefined | undefined;
|
|
422
|
+
ariaLabel?: string | undefined;
|
|
423
|
+
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
424
|
+
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
497
425
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
498
426
|
options: {
|
|
499
427
|
type: PropType<SelectOptions[]>;
|
|
@@ -1,11 +1,6 @@
|
|
|
1
1
|
import { PropType } from 'vue';
|
|
2
2
|
import { tableColumnItemType } from '../type.ts';
|
|
3
|
-
declare function __VLS_template():
|
|
4
|
-
attrs: Partial<{}>;
|
|
5
|
-
slots: any;
|
|
6
|
-
refs: {};
|
|
7
|
-
rootEl: any;
|
|
8
|
-
};
|
|
3
|
+
declare function __VLS_template(): any;
|
|
9
4
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
10
5
|
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
11
6
|
options: {
|