ra-element 0.1.63 → 0.1.64
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/lib/components/ra-button/index.vue.d.ts +1 -213
- package/lib/components/ra-checkbox-group/index.vue.d.ts +3 -607
- package/lib/components/ra-date-picker/index.vue.d.ts +1 -582
- package/lib/components/ra-dialog/index.vue.d.ts +3 -362
- package/lib/components/ra-input/index.vue.d.ts +1 -378
- package/lib/components/ra-pagination/index.vue.d.ts +3 -726
- package/lib/components/ra-radio-group/index.vue.d.ts +3 -639
- package/lib/components/ra-textarea/index.vue.d.ts +1 -378
- package/lib/components/ra-tool-tip/index.vue.d.ts +1 -634
- package/lib/components/ra-tree-select/index.vue.d.ts +1 -103
- package/lib/components/ra-upload/index.vue.d.ts +4 -377
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1675 -1636
- 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
|
@@ -320,219 +320,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
320
320
|
type: StringConstructor;
|
|
321
321
|
default: string;
|
|
322
322
|
};
|
|
323
|
-
}>, {
|
|
324
|
-
$: import('vue').ComponentInternalInstance;
|
|
325
|
-
$data: {};
|
|
326
|
-
$props: Partial<{
|
|
327
|
-
readonly link: boolean;
|
|
328
|
-
readonly circle: boolean;
|
|
329
|
-
readonly text: boolean;
|
|
330
|
-
readonly disabled: boolean;
|
|
331
|
-
readonly round: boolean;
|
|
332
|
-
readonly dark: boolean;
|
|
333
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
334
|
-
readonly bg: boolean;
|
|
335
|
-
readonly loading: boolean;
|
|
336
|
-
readonly autofocus: boolean;
|
|
337
|
-
readonly tag: string | import('vue').Component;
|
|
338
|
-
readonly plain: boolean;
|
|
339
|
-
readonly autoInsertSpace: boolean;
|
|
340
|
-
readonly nativeType: "button" | "reset" | "submit";
|
|
341
|
-
readonly loadingIcon: string | import('vue').Component;
|
|
342
|
-
}> & Omit<{
|
|
343
|
-
readonly disabled: boolean;
|
|
344
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
345
|
-
readonly link: boolean;
|
|
346
|
-
readonly circle: boolean;
|
|
347
|
-
readonly nativeType: "button" | "reset" | "submit";
|
|
348
|
-
readonly loading: boolean;
|
|
349
|
-
readonly bg: boolean;
|
|
350
|
-
readonly autofocus: boolean;
|
|
351
|
-
readonly dark: boolean;
|
|
352
|
-
readonly tag: string | import('vue').Component;
|
|
353
|
-
readonly text?: boolean | undefined;
|
|
354
|
-
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
355
|
-
readonly icon?: (string | import('vue').Component) | undefined;
|
|
356
|
-
readonly loadingIcon?: (string | import('vue').Component) | undefined;
|
|
357
|
-
readonly plain?: boolean | undefined;
|
|
358
|
-
readonly round?: boolean | undefined;
|
|
359
|
-
readonly color?: string | undefined;
|
|
360
|
-
readonly autoInsertSpace?: boolean | undefined;
|
|
361
|
-
onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
362
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "link" | "circle" | "text" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag">;
|
|
363
|
-
$attrs: {
|
|
364
|
-
[x: string]: unknown;
|
|
365
|
-
};
|
|
366
|
-
$refs: {
|
|
367
|
-
[x: string]: unknown;
|
|
368
|
-
};
|
|
369
|
-
$slots: Readonly<{
|
|
370
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
371
|
-
}> & {
|
|
372
|
-
loading?(_: {}): any;
|
|
373
|
-
icon?(_: {}): any;
|
|
374
|
-
default?(_: {}): any;
|
|
375
|
-
};
|
|
376
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
377
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
378
|
-
$host: Element | null;
|
|
379
|
-
$emit: (event: "click", evt: MouseEvent) => void;
|
|
380
|
-
$el: any;
|
|
381
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
382
|
-
readonly size: {
|
|
383
|
-
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
384
|
-
readonly required: false;
|
|
385
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
386
|
-
__epPropKey: true;
|
|
387
|
-
};
|
|
388
|
-
readonly disabled: BooleanConstructor;
|
|
389
|
-
readonly type: {
|
|
390
|
-
readonly type: import('vue').PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
|
|
391
|
-
readonly required: false;
|
|
392
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
393
|
-
__epPropKey: true;
|
|
394
|
-
} & {
|
|
395
|
-
readonly default: "";
|
|
396
|
-
};
|
|
397
|
-
readonly icon: {
|
|
398
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
399
|
-
readonly required: false;
|
|
400
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
401
|
-
__epPropKey: true;
|
|
402
|
-
};
|
|
403
|
-
readonly nativeType: {
|
|
404
|
-
readonly type: import('vue').PropType<"button" | "reset" | "submit">;
|
|
405
|
-
readonly required: false;
|
|
406
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
407
|
-
__epPropKey: true;
|
|
408
|
-
} & {
|
|
409
|
-
readonly default: "button";
|
|
410
|
-
};
|
|
411
|
-
readonly loading: BooleanConstructor;
|
|
412
|
-
readonly loadingIcon: {
|
|
413
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
414
|
-
readonly required: false;
|
|
415
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
416
|
-
__epPropKey: true;
|
|
417
|
-
} & {
|
|
418
|
-
readonly default: () => any;
|
|
419
|
-
};
|
|
420
|
-
readonly plain: {
|
|
421
|
-
readonly type: import('vue').PropType<boolean>;
|
|
422
|
-
readonly required: false;
|
|
423
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
424
|
-
__epPropKey: true;
|
|
425
|
-
} & {
|
|
426
|
-
readonly default: undefined;
|
|
427
|
-
};
|
|
428
|
-
readonly text: {
|
|
429
|
-
readonly type: import('vue').PropType<boolean>;
|
|
430
|
-
readonly required: false;
|
|
431
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
432
|
-
__epPropKey: true;
|
|
433
|
-
} & {
|
|
434
|
-
readonly default: undefined;
|
|
435
|
-
};
|
|
436
|
-
readonly link: BooleanConstructor;
|
|
437
|
-
readonly bg: BooleanConstructor;
|
|
438
|
-
readonly autofocus: BooleanConstructor;
|
|
439
|
-
readonly round: {
|
|
440
|
-
readonly type: import('vue').PropType<boolean>;
|
|
441
|
-
readonly required: false;
|
|
442
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
443
|
-
__epPropKey: true;
|
|
444
|
-
} & {
|
|
445
|
-
readonly default: undefined;
|
|
446
|
-
};
|
|
447
|
-
readonly circle: BooleanConstructor;
|
|
448
|
-
readonly color: StringConstructor;
|
|
449
|
-
readonly dark: BooleanConstructor;
|
|
450
|
-
readonly autoInsertSpace: {
|
|
451
|
-
readonly type: import('vue').PropType<boolean>;
|
|
452
|
-
readonly required: false;
|
|
453
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
454
|
-
__epPropKey: true;
|
|
455
|
-
} & {
|
|
456
|
-
readonly default: undefined;
|
|
457
|
-
};
|
|
458
|
-
readonly tag: {
|
|
459
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
460
|
-
readonly required: false;
|
|
461
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
462
|
-
__epPropKey: true;
|
|
463
|
-
} & {
|
|
464
|
-
readonly default: "button";
|
|
465
|
-
};
|
|
466
|
-
}>> & {
|
|
467
|
-
onClick?: ((evt: MouseEvent) => any) | undefined;
|
|
468
|
-
}, {
|
|
469
|
-
ref: import('vue').Ref<HTMLButtonElement | undefined>;
|
|
470
|
-
size: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
471
|
-
type: import('vue').ComputedRef<string>;
|
|
472
|
-
disabled: import('vue').ComputedRef<boolean>;
|
|
473
|
-
shouldAddSpace: import('vue').ComputedRef<boolean>;
|
|
474
|
-
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
475
|
-
click: (evt: MouseEvent) => void;
|
|
476
|
-
}, string, {
|
|
477
|
-
readonly link: boolean;
|
|
478
|
-
readonly circle: boolean;
|
|
479
|
-
readonly text: boolean;
|
|
480
|
-
readonly disabled: boolean;
|
|
481
|
-
readonly round: boolean;
|
|
482
|
-
readonly dark: boolean;
|
|
483
|
-
readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
484
|
-
readonly bg: boolean;
|
|
485
|
-
readonly loading: boolean;
|
|
486
|
-
readonly autofocus: boolean;
|
|
487
|
-
readonly tag: string | import('vue').Component;
|
|
488
|
-
readonly plain: boolean;
|
|
489
|
-
readonly autoInsertSpace: boolean;
|
|
490
|
-
readonly nativeType: "button" | "reset" | "submit";
|
|
491
|
-
readonly loadingIcon: string | import('vue').Component;
|
|
492
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
493
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
494
|
-
created?: (() => void) | (() => void)[];
|
|
495
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
496
|
-
mounted?: (() => void) | (() => void)[];
|
|
497
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
498
|
-
updated?: (() => void) | (() => void)[];
|
|
499
|
-
activated?: (() => void) | (() => void)[];
|
|
500
|
-
deactivated?: (() => void) | (() => void)[];
|
|
501
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
502
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
503
|
-
destroyed?: (() => void) | (() => void)[];
|
|
504
|
-
unmounted?: (() => void) | (() => void)[];
|
|
505
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
506
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
507
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
508
|
-
};
|
|
509
|
-
$forceUpdate: () => void;
|
|
510
|
-
$nextTick: typeof import('vue').nextTick;
|
|
511
|
-
$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;
|
|
512
|
-
link: boolean;
|
|
513
|
-
circle: boolean;
|
|
514
|
-
text: boolean;
|
|
515
|
-
disabled: boolean;
|
|
516
|
-
round: boolean;
|
|
517
|
-
dark: boolean;
|
|
518
|
-
type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
|
|
519
|
-
bg: boolean;
|
|
520
|
-
loading: boolean;
|
|
521
|
-
autofocus: boolean;
|
|
522
|
-
tag: string | import('vue').Component;
|
|
523
|
-
plain: boolean;
|
|
524
|
-
autoInsertSpace: boolean;
|
|
525
|
-
nativeType: "button" | "reset" | "submit";
|
|
526
|
-
loadingIcon: string | import('vue').Component;
|
|
527
|
-
onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
528
|
-
icon?: (string | import('vue').Component) | undefined;
|
|
529
|
-
color?: string | undefined;
|
|
530
|
-
ref: HTMLButtonElement | undefined;
|
|
531
|
-
size: "" | "default" | "small" | "large";
|
|
532
|
-
shouldAddSpace: boolean;
|
|
533
|
-
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
534
|
-
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
535
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
323
|
+
}>, any, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
536
324
|
click: (...args: any[]) => void;
|
|
537
325
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
538
326
|
click: {
|