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 CHANGED
@@ -8,6 +8,7 @@
8
8
  | ---- | ---- | ---- | ------- | -------- |
9
9
  | options | Array as PropType<TypeOption[]> | 表单每项独立配置 | [] | |
10
10
  | cssStyle | String | 样式属性,1为通用版基础默认样式,如果是传空走默认样式 | '1' | |
11
- | inline | [Boolean, Number] as PropType<boolean \| number> | 同原el-form,增加可传数字类型,代表一行几个 | false | |
11
+ | inline | Boolean | 同原el-form,增加可传数字类型,代表一行几个 | false | |
12
+ | inlineNumber | Number | 设定会修改inline为ture,代表一行几个 | 0 | |
12
13
  | modelValue | Object as PropType<Record<string, any>> | v-model绑定,如果不使用,options必须配置,最后通过ref的getFormData获取form数据 | | |
13
14
  | itemMarginRight | Number | inline时候的每个item的margin-right距离,默认20 | 20 | |
@@ -321,192 +321,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
321
321
  default: string;
322
322
  };
323
323
  }>, {
324
- component: Readonly<import('vue').ShallowRef<({
325
- $: import('vue').ComponentInternalInstance;
326
- $data: {};
327
- $props: Partial<{
328
- readonly link: boolean;
329
- readonly circle: boolean;
330
- readonly text: boolean;
331
- readonly disabled: boolean;
332
- readonly round: boolean;
333
- readonly dark: boolean;
334
- readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
335
- readonly bg: boolean;
336
- readonly loading: boolean;
337
- readonly autofocus: boolean;
338
- readonly tag: string | import('vue').Component;
339
- readonly plain: boolean;
340
- readonly autoInsertSpace: boolean;
341
- readonly nativeType: "button" | "reset" | "submit";
342
- readonly loadingIcon: string | import('vue').Component;
343
- }> & Omit<{
344
- readonly disabled: boolean;
345
- readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
346
- readonly link: boolean;
347
- readonly circle: boolean;
348
- readonly nativeType: "button" | "reset" | "submit";
349
- readonly loading: boolean;
350
- readonly bg: boolean;
351
- readonly autofocus: boolean;
352
- readonly dark: boolean;
353
- readonly tag: string | import('vue').Component;
354
- readonly text?: boolean | undefined;
355
- readonly size?: ("" | "default" | "small" | "large") | undefined;
356
- readonly icon?: (string | import('vue').Component) | undefined;
357
- readonly loadingIcon?: (string | import('vue').Component) | undefined;
358
- readonly plain?: boolean | undefined;
359
- readonly round?: boolean | undefined;
360
- readonly color?: string | undefined;
361
- readonly autoInsertSpace?: boolean | undefined;
362
- onClick?: ((evt: MouseEvent) => any) | undefined | undefined;
363
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "link" | "circle" | "text" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag">;
364
- $attrs: {
365
- [x: string]: unknown;
366
- };
367
- $refs: {
368
- [x: string]: unknown;
369
- };
370
- $slots: Readonly<{
371
- [name: string]: import('vue').Slot<any> | undefined;
372
- }>;
373
- $root: import('vue').ComponentPublicInstance | null;
374
- $parent: import('vue').ComponentPublicInstance | null;
375
- $host: Element | null;
376
- $emit: (event: "click", evt: MouseEvent) => void;
377
- $el: any;
378
- $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
379
- readonly size: {
380
- readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
381
- readonly required: false;
382
- readonly validator: ((val: unknown) => boolean) | undefined;
383
- __epPropKey: true;
384
- };
385
- readonly disabled: BooleanConstructor;
386
- readonly type: {
387
- readonly type: import('vue').PropType<"" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger">;
388
- readonly required: false;
389
- readonly validator: ((val: unknown) => boolean) | undefined;
390
- __epPropKey: true;
391
- } & {
392
- readonly default: "";
393
- };
394
- readonly icon: {
395
- readonly type: import('vue').PropType<string | import('vue').Component>;
396
- readonly required: false;
397
- readonly validator: ((val: unknown) => boolean) | undefined;
398
- __epPropKey: true;
399
- };
400
- readonly nativeType: {
401
- readonly type: import('vue').PropType<"button" | "reset" | "submit">;
402
- readonly required: false;
403
- readonly validator: ((val: unknown) => boolean) | undefined;
404
- __epPropKey: true;
405
- } & {
406
- readonly default: "button";
407
- };
408
- readonly loading: BooleanConstructor;
409
- readonly loadingIcon: {
410
- readonly type: import('vue').PropType<string | import('vue').Component>;
411
- readonly required: false;
412
- readonly validator: ((val: unknown) => boolean) | undefined;
413
- __epPropKey: true;
414
- } & {
415
- readonly default: () => any;
416
- };
417
- readonly plain: {
418
- readonly type: import('vue').PropType<boolean>;
419
- readonly required: false;
420
- readonly validator: ((val: unknown) => boolean) | undefined;
421
- __epPropKey: true;
422
- } & {
423
- readonly default: undefined;
424
- };
425
- readonly text: {
426
- readonly type: import('vue').PropType<boolean>;
427
- readonly required: false;
428
- readonly validator: ((val: unknown) => boolean) | undefined;
429
- __epPropKey: true;
430
- } & {
431
- readonly default: undefined;
432
- };
433
- readonly link: BooleanConstructor;
434
- readonly bg: BooleanConstructor;
435
- readonly autofocus: BooleanConstructor;
436
- readonly round: {
437
- readonly type: import('vue').PropType<boolean>;
438
- readonly required: false;
439
- readonly validator: ((val: unknown) => boolean) | undefined;
440
- __epPropKey: true;
441
- } & {
442
- readonly default: undefined;
443
- };
444
- readonly circle: BooleanConstructor;
445
- readonly color: StringConstructor;
446
- readonly dark: BooleanConstructor;
447
- readonly autoInsertSpace: {
448
- readonly type: import('vue').PropType<boolean>;
449
- readonly required: false;
450
- readonly validator: ((val: unknown) => boolean) | undefined;
451
- __epPropKey: true;
452
- } & {
453
- readonly default: undefined;
454
- };
455
- readonly tag: {
456
- readonly type: import('vue').PropType<string | import('vue').Component>;
457
- readonly required: false;
458
- readonly validator: ((val: unknown) => boolean) | undefined;
459
- __epPropKey: true;
460
- } & {
461
- readonly default: "button";
462
- };
463
- }>> & {
464
- onClick?: ((evt: MouseEvent) => any) | undefined;
465
- }, {
466
- ref: import('vue').Ref<HTMLButtonElement | undefined>;
467
- size: import('vue').ComputedRef<"" | "small" | "default" | "large">;
468
- type: import('vue').ComputedRef<string>;
469
- disabled: import('vue').ComputedRef<boolean>;
470
- shouldAddSpace: import('vue').ComputedRef<boolean>;
471
- }, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
472
- click: (evt: MouseEvent) => void;
473
- }, string, {
474
- readonly link: boolean;
475
- readonly circle: boolean;
476
- readonly text: boolean;
477
- readonly disabled: boolean;
478
- readonly round: boolean;
479
- readonly dark: boolean;
480
- readonly type: "" | "default" | "text" | "primary" | "success" | "warning" | "info" | "danger";
481
- readonly bg: boolean;
482
- readonly loading: boolean;
483
- readonly autofocus: boolean;
484
- readonly tag: string | import('vue').Component;
485
- readonly plain: boolean;
486
- readonly autoInsertSpace: boolean;
487
- readonly nativeType: "button" | "reset" | "submit";
488
- readonly loadingIcon: string | import('vue').Component;
489
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
490
- beforeCreate?: (() => void) | (() => void)[];
491
- created?: (() => void) | (() => void)[];
492
- beforeMount?: (() => void) | (() => void)[];
493
- mounted?: (() => void) | (() => void)[];
494
- beforeUpdate?: (() => void) | (() => void)[];
495
- updated?: (() => void) | (() => void)[];
496
- activated?: (() => void) | (() => void)[];
497
- deactivated?: (() => void) | (() => void)[];
498
- beforeDestroy?: (() => void) | (() => void)[];
499
- beforeUnmount?: (() => void) | (() => void)[];
500
- destroyed?: (() => void) | (() => void)[];
501
- unmounted?: (() => void) | (() => void)[];
502
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
503
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
504
- errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
505
- };
506
- $forceUpdate: () => void;
507
- $nextTick: typeof import('vue').nextTick;
508
- $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;
509
- } & Readonly<{
324
+ $: import('vue').ComponentInternalInstance;
325
+ $data: {};
326
+ $props: Partial<{
510
327
  readonly link: boolean;
511
328
  readonly circle: boolean;
512
329
  readonly text: boolean;
@@ -522,7 +339,46 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
522
339
  readonly autoInsertSpace: boolean;
523
340
  readonly nativeType: "button" | "reset" | "submit";
524
341
  readonly loadingIcon: string | import('vue').Component;
525
- }> & Omit<Readonly<import('vue').ExtractPropTypes<{
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<{
526
382
  readonly size: {
527
383
  readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
528
384
  readonly required: false;
@@ -609,19 +465,73 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
609
465
  };
610
466
  }>> & {
611
467
  onClick?: ((evt: MouseEvent) => any) | undefined;
612
- }, "disabled" | "type" | "link" | "circle" | "text" | "ref" | "size" | "nativeType" | "loading" | "loadingIcon" | "plain" | "bg" | "autofocus" | "round" | "dark" | "autoInsertSpace" | "tag" | "shouldAddSpace"> & import('vue').ShallowUnwrapRef<{
468
+ }, {
613
469
  ref: import('vue').Ref<HTMLButtonElement | undefined>;
614
470
  size: import('vue').ComputedRef<"" | "small" | "default" | "large">;
615
471
  type: import('vue').ComputedRef<string>;
616
472
  disabled: import('vue').ComputedRef<boolean>;
617
473
  shouldAddSpace: import('vue').ComputedRef<boolean>;
618
- }> & {} & import('vue').ComponentCustomProperties & {} & {
619
- $slots: {
620
- loading?(_: {}): any;
621
- icon?(_: {}): any;
622
- default?(_: {}): any;
623
- };
624
- }) | null>>;
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;
625
535
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
626
536
  click: (...args: any[]) => void;
627
537
  }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
@@ -243,149 +243,9 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
243
243
  default: boolean;
244
244
  };
245
245
  }>, {
246
- component: Readonly<import('vue').ShallowRef<({
247
- $: import('vue').ComponentInternalInstance;
248
- $data: {};
249
- $props: Partial<{
250
- readonly disabled: boolean;
251
- readonly props: {
252
- value?: string;
253
- label?: string;
254
- disabled?: string;
255
- };
256
- readonly modelValue: import('element-plus').CheckboxGroupValueType;
257
- readonly validateEvent: boolean;
258
- readonly tag: string;
259
- }> & Omit<{
260
- readonly disabled: boolean;
261
- readonly props: {
262
- value?: string;
263
- label?: string;
264
- disabled?: string;
265
- };
266
- readonly tag: string;
267
- readonly modelValue: import('element-plus').CheckboxGroupValueType;
268
- readonly validateEvent: boolean;
269
- readonly fill?: string | undefined;
270
- readonly size?: ("" | "default" | "small" | "large") | undefined;
271
- readonly options?: import('element-plus').CheckboxOption[] | undefined;
272
- readonly ariaLabel?: string | undefined;
273
- readonly min?: number | undefined;
274
- readonly max?: number | undefined;
275
- readonly textColor?: string | undefined;
276
- "onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
277
- onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
278
- } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "props" | "tag" | "modelValue" | "validateEvent">;
279
- $attrs: {
280
- [x: string]: unknown;
281
- };
282
- $refs: {
283
- [x: string]: unknown;
284
- };
285
- $slots: Readonly<{
286
- [name: string]: import('vue').Slot<any> | undefined;
287
- }>;
288
- $root: import('vue').ComponentPublicInstance | null;
289
- $parent: import('vue').ComponentPublicInstance | null;
290
- $host: Element | null;
291
- $emit: ((event: "change", val: import('element-plus').CheckboxValueType[]) => void) & ((event: "update:modelValue", val: import('element-plus').CheckboxGroupValueType) => void);
292
- $el: any;
293
- $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
294
- readonly ariaLabel: StringConstructor;
295
- readonly modelValue: {
296
- readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
297
- readonly required: false;
298
- readonly validator: ((val: unknown) => boolean) | undefined;
299
- __epPropKey: true;
300
- } & {
301
- readonly default: () => never[];
302
- };
303
- readonly disabled: BooleanConstructor;
304
- readonly min: NumberConstructor;
305
- readonly max: NumberConstructor;
306
- readonly size: {
307
- readonly type: PropType<"" | "default" | "small" | "large">;
308
- readonly required: false;
309
- readonly validator: ((val: unknown) => boolean) | undefined;
310
- __epPropKey: true;
311
- };
312
- readonly fill: StringConstructor;
313
- readonly textColor: StringConstructor;
314
- readonly tag: {
315
- readonly type: PropType<string>;
316
- readonly required: false;
317
- readonly validator: ((val: unknown) => boolean) | undefined;
318
- __epPropKey: true;
319
- } & {
320
- readonly default: "div";
321
- };
322
- readonly validateEvent: {
323
- readonly type: PropType<boolean>;
324
- readonly required: false;
325
- readonly validator: ((val: unknown) => boolean) | undefined;
326
- __epPropKey: true;
327
- } & {
328
- readonly default: true;
329
- };
330
- readonly options: {
331
- readonly type: PropType<import('element-plus').CheckboxOption[]>;
332
- readonly required: false;
333
- readonly validator: ((val: unknown) => boolean) | undefined;
334
- __epPropKey: true;
335
- };
336
- readonly props: {
337
- readonly type: PropType<{
338
- value?: string;
339
- label?: string;
340
- disabled?: string;
341
- }>;
342
- readonly required: false;
343
- readonly validator: ((val: unknown) => boolean) | undefined;
344
- __epPropKey: true;
345
- } & {
346
- readonly default: () => Required<{
347
- value?: string;
348
- label?: string;
349
- disabled?: string;
350
- }>;
351
- };
352
- }>> & {
353
- "onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
354
- onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
355
- }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
356
- "update:modelValue": (val: import('element-plus').CheckboxGroupValueType) => void;
357
- change: (val: import('element-plus').CheckboxValueType[]) => void;
358
- }, string, {
359
- readonly disabled: boolean;
360
- readonly props: {
361
- value?: string;
362
- label?: string;
363
- disabled?: string;
364
- };
365
- readonly modelValue: import('element-plus').CheckboxGroupValueType;
366
- readonly validateEvent: boolean;
367
- readonly tag: string;
368
- }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
369
- beforeCreate?: (() => void) | (() => void)[];
370
- created?: (() => void) | (() => void)[];
371
- beforeMount?: (() => void) | (() => void)[];
372
- mounted?: (() => void) | (() => void)[];
373
- beforeUpdate?: (() => void) | (() => void)[];
374
- updated?: (() => void) | (() => void)[];
375
- activated?: (() => void) | (() => void)[];
376
- deactivated?: (() => void) | (() => void)[];
377
- beforeDestroy?: (() => void) | (() => void)[];
378
- beforeUnmount?: (() => void) | (() => void)[];
379
- destroyed?: (() => void) | (() => void)[];
380
- unmounted?: (() => void) | (() => void)[];
381
- renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
382
- renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
383
- errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
384
- };
385
- $forceUpdate: () => void;
386
- $nextTick: typeof import('vue').nextTick;
387
- $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;
388
- } & Readonly<{
246
+ $: import('vue').ComponentInternalInstance;
247
+ $data: {};
248
+ $props: Partial<{
389
249
  readonly disabled: boolean;
390
250
  readonly props: {
391
251
  value?: string;
@@ -395,7 +255,43 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
395
255
  readonly modelValue: import('element-plus').CheckboxGroupValueType;
396
256
  readonly validateEvent: boolean;
397
257
  readonly tag: string;
398
- }> & Omit<Readonly<import('vue').ExtractPropTypes<{
258
+ }> & Omit<{
259
+ readonly disabled: boolean;
260
+ readonly props: {
261
+ value?: string;
262
+ label?: string;
263
+ disabled?: string;
264
+ };
265
+ readonly tag: string;
266
+ readonly modelValue: import('element-plus').CheckboxGroupValueType;
267
+ readonly validateEvent: boolean;
268
+ readonly fill?: string | undefined;
269
+ readonly size?: ("" | "default" | "small" | "large") | undefined;
270
+ readonly options?: import('element-plus').CheckboxOption[] | undefined;
271
+ readonly ariaLabel?: string | undefined;
272
+ readonly min?: number | undefined;
273
+ readonly max?: number | undefined;
274
+ readonly textColor?: string | undefined;
275
+ "onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
276
+ onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
277
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "props" | "tag" | "modelValue" | "validateEvent">;
278
+ $attrs: {
279
+ [x: string]: unknown;
280
+ };
281
+ $refs: {
282
+ [x: string]: unknown;
283
+ };
284
+ $slots: Readonly<{
285
+ [name: string]: import('vue').Slot<any> | undefined;
286
+ }> & {
287
+ default?(_: {}): any;
288
+ };
289
+ $root: import('vue').ComponentPublicInstance | null;
290
+ $parent: import('vue').ComponentPublicInstance | null;
291
+ $host: Element | null;
292
+ $emit: ((event: "change", val: import('element-plus').CheckboxValueType[]) => void) & ((event: "update:modelValue", val: import('element-plus').CheckboxGroupValueType) => void);
293
+ $el: any;
294
+ $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
399
295
  readonly ariaLabel: StringConstructor;
400
296
  readonly modelValue: {
401
297
  readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
@@ -457,11 +353,59 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
457
353
  }>> & {
458
354
  "onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
459
355
  onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
460
- }, "disabled" | "props" | "tag" | "modelValue" | "validateEvent"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
461
- $slots: {
462
- default?(_: {}): any;
356
+ }, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
357
+ "update:modelValue": (val: import('element-plus').CheckboxGroupValueType) => void;
358
+ change: (val: import('element-plus').CheckboxValueType[]) => void;
359
+ }, string, {
360
+ readonly disabled: boolean;
361
+ readonly props: {
362
+ value?: string;
363
+ label?: string;
364
+ disabled?: string;
463
365
  };
464
- }) | null>>;
366
+ readonly modelValue: import('element-plus').CheckboxGroupValueType;
367
+ readonly validateEvent: boolean;
368
+ readonly tag: string;
369
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
370
+ beforeCreate?: (() => void) | (() => void)[];
371
+ created?: (() => void) | (() => void)[];
372
+ beforeMount?: (() => void) | (() => void)[];
373
+ mounted?: (() => void) | (() => void)[];
374
+ beforeUpdate?: (() => void) | (() => void)[];
375
+ updated?: (() => void) | (() => void)[];
376
+ activated?: (() => void) | (() => void)[];
377
+ deactivated?: (() => void) | (() => void)[];
378
+ beforeDestroy?: (() => void) | (() => void)[];
379
+ beforeUnmount?: (() => void) | (() => void)[];
380
+ destroyed?: (() => void) | (() => void)[];
381
+ unmounted?: (() => void) | (() => void)[];
382
+ renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
383
+ renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
384
+ errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
385
+ };
386
+ $forceUpdate: () => void;
387
+ $nextTick: typeof import('vue').nextTick;
388
+ $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;
389
+ disabled: boolean;
390
+ props: {
391
+ value?: string;
392
+ label?: string;
393
+ disabled?: string;
394
+ };
395
+ modelValue: import('element-plus').CheckboxGroupValueType;
396
+ validateEvent: boolean;
397
+ tag: string;
398
+ fill?: string | undefined;
399
+ onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
400
+ size?: ("" | "default" | "small" | "large") | undefined;
401
+ options?: import('element-plus').CheckboxOption[] | undefined;
402
+ "onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
403
+ ariaLabel?: string | undefined;
404
+ min?: number | undefined;
405
+ max?: number | undefined;
406
+ textColor?: string | undefined;
407
+ $route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
408
+ $router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
465
409
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
466
410
  options: {
467
411
  type: PropType<SelectOptions[]>;