bonkers-ui 1.0.63 → 1.0.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.
Files changed (38) hide show
  1. package/_types/sizing.js.map +1 -1
  2. package/bonkers-ui.umd.js +2 -2
  3. package/bonkers-ui.umd.js.map +1 -1
  4. package/components/ui-alert/index.d.ts +23 -56
  5. package/components/ui-badge/index.d.ts +33 -68
  6. package/components/ui-button/index.d.ts +51 -86
  7. package/components/ui-card-cta/index.d.ts +39 -75
  8. package/components/ui-card-result/index.d.ts +39 -75
  9. package/components/ui-card-simple/index.d.ts +9 -39
  10. package/components/ui-checkbox/index.d.ts +47 -84
  11. package/components/ui-dropdown/index.d.ts +47 -90
  12. package/components/ui-dropdown/ui-dropdown.vue.d.ts +0 -3
  13. package/components/ui-dropdown/ui-dropdown.vue.js +19 -20
  14. package/components/ui-dropdown/ui-dropdown.vue.js.map +1 -1
  15. package/components/ui-icon-wrapper/index.d.ts +31 -64
  16. package/components/ui-input/_typings.d.ts +2 -2
  17. package/components/ui-input/index.d.ts +148 -193
  18. package/components/ui-list-item/index.d.ts +74 -111
  19. package/components/ui-modal/index.d.ts +31 -64
  20. package/components/ui-modal/ui-backdrop/index.d.ts +9 -39
  21. package/components/ui-notification-badge/index.d.ts +22 -54
  22. package/components/ui-order-card/index.d.ts +29 -62
  23. package/components/ui-plain-radio/index.d.ts +60 -98
  24. package/components/ui-radio/index.d.ts +60 -98
  25. package/components/ui-radio-compact/index.d.ts +45 -81
  26. package/components/ui-radio-fancy/index.d.ts +70 -108
  27. package/components/ui-result-card-range/index.d.ts +33 -68
  28. package/components/ui-ripple/index.d.ts +9 -39
  29. package/components/ui-select/index.d.ts +41 -77
  30. package/components/ui-snackbar/index.d.ts +29 -62
  31. package/components/ui-table/index.d.ts +22 -54
  32. package/components/ui-table/ui-table-cell/index.d.ts +21 -54
  33. package/components/ui-table/ui-table-row/index.d.ts +16 -48
  34. package/components/ui-toggle/index.d.ts +62 -101
  35. package/components/ui-typography/index.d.ts +61 -100
  36. package/components/ui-typography/ui-typography.vue.js +2 -2
  37. package/components/ui-verification-input/index.d.ts +29 -63
  38. package/package.json +35 -35
@@ -1,106 +1,11 @@
1
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
2
2
  import UiPlainRadio from "./ui-plain-radio.vue";
3
3
  export { UiPlainRadio };
4
4
  /**
5
5
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
6
6
  */
7
7
  declare const deprecatedDefault: {
8
- new (...args: any[]): {
9
- $: ComponentInternalInstance;
10
- $data: {};
11
- $props: Partial<{}> & Omit<{
12
- readonly modelValue: string | number | boolean;
13
- readonly value: string | number | boolean;
14
- readonly name: string;
15
- readonly header?: string | undefined;
16
- readonly disabled?: boolean | undefined;
17
- readonly subHeader?: string | undefined;
18
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
19
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
20
- modelValue: {
21
- type: PropType<string | number | boolean>;
22
- required: true;
23
- };
24
- header: {
25
- type: PropType<string>;
26
- };
27
- subHeader: {
28
- type: PropType<string>;
29
- };
30
- name: {
31
- type: PropType<string>;
32
- required: true;
33
- };
34
- value: {
35
- type: PropType<string | number | boolean>;
36
- required: true;
37
- };
38
- disabled: {
39
- type: PropType<boolean>;
40
- };
41
- }>> & {
42
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
43
- }, never>;
44
- $attrs: {
45
- [x: string]: unknown;
46
- };
47
- $refs: {
48
- [x: string]: unknown;
49
- };
50
- $slots: Readonly<{
51
- [name: string]: Slot<any> | undefined;
52
- }>;
53
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
54
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
55
- $emit: (event: "update:modelValue", ...args: any[]) => void;
56
- $el: any;
57
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
58
- modelValue: {
59
- type: PropType<string | number | boolean>;
60
- required: true;
61
- };
62
- header: {
63
- type: PropType<string>;
64
- };
65
- subHeader: {
66
- type: PropType<string>;
67
- };
68
- name: {
69
- type: PropType<string>;
70
- required: true;
71
- };
72
- value: {
73
- type: PropType<string | number | boolean>;
74
- required: true;
75
- };
76
- disabled: {
77
- type: PropType<boolean>;
78
- };
79
- }>> & {
80
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
81
- }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
82
- "update:modelValue": (...args: any[]) => void;
83
- }, string, {}, {}, string, {}> & {
84
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
85
- created?: ((() => void) | (() => void)[]) | undefined;
86
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
87
- mounted?: ((() => void) | (() => void)[]) | undefined;
88
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
89
- updated?: ((() => void) | (() => void)[]) | undefined;
90
- activated?: ((() => void) | (() => void)[]) | undefined;
91
- deactivated?: ((() => void) | (() => void)[]) | undefined;
92
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
93
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
94
- destroyed?: ((() => void) | (() => void)[]) | undefined;
95
- unmounted?: ((() => void) | (() => void)[]) | undefined;
96
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
97
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
98
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
99
- };
100
- $forceUpdate: () => void;
101
- $nextTick: typeof nextTick;
102
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
103
- } & Readonly<ExtractPropTypes<{
8
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
104
9
  modelValue: {
105
10
  type: PropType<string | number | boolean>;
106
11
  required: true;
@@ -124,7 +29,64 @@ declare const deprecatedDefault: {
124
29
  };
125
30
  }>> & {
126
31
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
127
- } & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
32
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
33
+ "update:modelValue": (...args: any[]) => void;
34
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
35
+ modelValue: {
36
+ type: PropType<string | number | boolean>;
37
+ required: true;
38
+ };
39
+ header: {
40
+ type: PropType<string>;
41
+ };
42
+ subHeader: {
43
+ type: PropType<string>;
44
+ };
45
+ name: {
46
+ type: PropType<string>;
47
+ required: true;
48
+ };
49
+ value: {
50
+ type: PropType<string | number | boolean>;
51
+ required: true;
52
+ };
53
+ disabled: {
54
+ type: PropType<boolean>;
55
+ };
56
+ }>> & {
57
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
58
+ }, {}, true, {}, {}, {
59
+ P: {};
60
+ B: {};
61
+ D: {};
62
+ C: {};
63
+ M: {};
64
+ Defaults: {};
65
+ }, Readonly<ExtractPropTypes<{
66
+ modelValue: {
67
+ type: PropType<string | number | boolean>;
68
+ required: true;
69
+ };
70
+ header: {
71
+ type: PropType<string>;
72
+ };
73
+ subHeader: {
74
+ type: PropType<string>;
75
+ };
76
+ name: {
77
+ type: PropType<string>;
78
+ required: true;
79
+ };
80
+ value: {
81
+ type: PropType<string | number | boolean>;
82
+ required: true;
83
+ };
84
+ disabled: {
85
+ type: PropType<boolean>;
86
+ };
87
+ }>> & {
88
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
89
+ }, {}, {}, {}, {}, {}>;
128
90
  __isFragment?: undefined;
129
91
  __isTeleport?: undefined;
130
92
  __isSuspense?: undefined;
@@ -1,107 +1,12 @@
1
1
  import { EJustify } from '../../types';
2
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
2
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
3
3
  import UiRadio from "./ui-radio.vue";
4
4
  export { UiRadio };
5
5
  /**
6
6
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
7
7
  */
8
8
  declare const deprecatedDefault: {
9
- new (...args: any[]): {
10
- $: ComponentInternalInstance;
11
- $data: {};
12
- $props: Partial<{}> & Omit<{
13
- readonly modelValue: string | number | boolean;
14
- readonly value: string;
15
- readonly name: string | number | boolean;
16
- readonly disabled?: boolean | undefined;
17
- readonly invertOrder?: boolean | undefined;
18
- readonly justify?: EJustify | undefined;
19
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
20
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
21
- modelValue: {
22
- type: PropType<string | number | boolean>;
23
- required: true;
24
- };
25
- name: {
26
- type: PropType<string | number | boolean>;
27
- required: true;
28
- };
29
- value: {
30
- type: PropType<string>;
31
- required: true;
32
- };
33
- justify: {
34
- type: PropType<EJustify>;
35
- };
36
- invertOrder: {
37
- type: PropType<boolean>;
38
- };
39
- disabled: {
40
- type: PropType<boolean>;
41
- };
42
- }>> & {
43
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
44
- }, never>;
45
- $attrs: {
46
- [x: string]: unknown;
47
- };
48
- $refs: {
49
- [x: string]: unknown;
50
- };
51
- $slots: Readonly<{
52
- [name: string]: Slot<any> | undefined;
53
- }>;
54
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
55
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
56
- $emit: (event: "update:modelValue", ...args: any[]) => void;
57
- $el: any;
58
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
59
- modelValue: {
60
- type: PropType<string | number | boolean>;
61
- required: true;
62
- };
63
- name: {
64
- type: PropType<string | number | boolean>;
65
- required: true;
66
- };
67
- value: {
68
- type: PropType<string>;
69
- required: true;
70
- };
71
- justify: {
72
- type: PropType<EJustify>;
73
- };
74
- invertOrder: {
75
- type: PropType<boolean>;
76
- };
77
- disabled: {
78
- type: PropType<boolean>;
79
- };
80
- }>> & {
81
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
82
- }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
83
- "update:modelValue": (...args: any[]) => void;
84
- }, string, {}, {}, string, {}> & {
85
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
86
- created?: ((() => void) | (() => void)[]) | undefined;
87
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
88
- mounted?: ((() => void) | (() => void)[]) | undefined;
89
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
90
- updated?: ((() => void) | (() => void)[]) | undefined;
91
- activated?: ((() => void) | (() => void)[]) | undefined;
92
- deactivated?: ((() => void) | (() => void)[]) | undefined;
93
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
94
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
95
- destroyed?: ((() => void) | (() => void)[]) | undefined;
96
- unmounted?: ((() => void) | (() => void)[]) | undefined;
97
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
98
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
99
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
100
- };
101
- $forceUpdate: () => void;
102
- $nextTick: typeof nextTick;
103
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
104
- } & Readonly<ExtractPropTypes<{
9
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
105
10
  modelValue: {
106
11
  type: PropType<string | number | boolean>;
107
12
  required: true;
@@ -125,7 +30,64 @@ declare const deprecatedDefault: {
125
30
  };
126
31
  }>> & {
127
32
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
128
- } & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
33
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
34
+ "update:modelValue": (...args: any[]) => void;
35
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
36
+ modelValue: {
37
+ type: PropType<string | number | boolean>;
38
+ required: true;
39
+ };
40
+ name: {
41
+ type: PropType<string | number | boolean>;
42
+ required: true;
43
+ };
44
+ value: {
45
+ type: PropType<string>;
46
+ required: true;
47
+ };
48
+ justify: {
49
+ type: PropType<EJustify>;
50
+ };
51
+ invertOrder: {
52
+ type: PropType<boolean>;
53
+ };
54
+ disabled: {
55
+ type: PropType<boolean>;
56
+ };
57
+ }>> & {
58
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
59
+ }, {}, true, {}, {}, {
60
+ P: {};
61
+ B: {};
62
+ D: {};
63
+ C: {};
64
+ M: {};
65
+ Defaults: {};
66
+ }, Readonly<ExtractPropTypes<{
67
+ modelValue: {
68
+ type: PropType<string | number | boolean>;
69
+ required: true;
70
+ };
71
+ name: {
72
+ type: PropType<string | number | boolean>;
73
+ required: true;
74
+ };
75
+ value: {
76
+ type: PropType<string>;
77
+ required: true;
78
+ };
79
+ justify: {
80
+ type: PropType<EJustify>;
81
+ };
82
+ invertOrder: {
83
+ type: PropType<boolean>;
84
+ };
85
+ disabled: {
86
+ type: PropType<boolean>;
87
+ };
88
+ }>> & {
89
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
90
+ }, {}, {}, {}, {}, {}>;
129
91
  __isFragment?: undefined;
130
92
  __isTeleport?: undefined;
131
93
  __isSuspense?: undefined;
@@ -1,92 +1,56 @@
1
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
2
2
  import UiRadioCompact from "./ui-radio-compact.vue";
3
3
  export { UiRadioCompact };
4
4
  /**
5
5
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
6
6
  */
7
7
  declare const deprecatedDefault: {
8
- new (...args: any[]): {
9
- $: ComponentInternalInstance;
10
- $data: {};
11
- $props: Partial<{}> & Omit<{
12
- readonly modelValue: string | number | boolean;
13
- readonly value: string | number | boolean;
14
- readonly name: string;
15
- readonly disabled?: boolean | undefined;
16
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
17
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
18
- modelValue: {
19
- type: PropType<string | number | boolean>;
20
- required: true;
21
- };
22
- name: {
23
- type: PropType<string>;
24
- required: true;
25
- };
26
- value: {
27
- type: PropType<string | number | boolean>;
28
- required: true;
29
- };
30
- disabled: {
31
- type: PropType<boolean>;
32
- };
33
- }>> & {
34
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
35
- }, never>;
36
- $attrs: {
37
- [x: string]: unknown;
8
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
9
+ modelValue: {
10
+ type: PropType<string | number | boolean>;
11
+ required: true;
12
+ };
13
+ name: {
14
+ type: PropType<string>;
15
+ required: true;
38
16
  };
39
- $refs: {
40
- [x: string]: unknown;
17
+ value: {
18
+ type: PropType<string | number | boolean>;
19
+ required: true;
41
20
  };
42
- $slots: Readonly<{
43
- [name: string]: Slot<any> | undefined;
44
- }>;
45
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
46
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
47
- $emit: (event: "update:modelValue", ...args: any[]) => void;
48
- $el: any;
49
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
50
- modelValue: {
51
- type: PropType<string | number | boolean>;
52
- required: true;
53
- };
54
- name: {
55
- type: PropType<string>;
56
- required: true;
57
- };
58
- value: {
59
- type: PropType<string | number | boolean>;
60
- required: true;
61
- };
62
- disabled: {
63
- type: PropType<boolean>;
64
- };
65
- }>> & {
66
- "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
67
- }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
68
- "update:modelValue": (...args: any[]) => void;
69
- }, string, {}, {}, string, {}> & {
70
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
71
- created?: ((() => void) | (() => void)[]) | undefined;
72
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
73
- mounted?: ((() => void) | (() => void)[]) | undefined;
74
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
75
- updated?: ((() => void) | (() => void)[]) | undefined;
76
- activated?: ((() => void) | (() => void)[]) | undefined;
77
- deactivated?: ((() => void) | (() => void)[]) | undefined;
78
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
79
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
80
- destroyed?: ((() => void) | (() => void)[]) | undefined;
81
- unmounted?: ((() => void) | (() => void)[]) | undefined;
82
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
83
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
84
- errorCaptured?: (((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null, info: string) => boolean | void)[]) | undefined;
21
+ disabled: {
22
+ type: PropType<boolean>;
85
23
  };
86
- $forceUpdate: () => void;
87
- $nextTick: typeof nextTick;
88
- $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: WatchOptions<boolean> | undefined): WatchStopHandle;
89
- } & Readonly<ExtractPropTypes<{
24
+ }>> & {
25
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
26
+ }, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
27
+ "update:modelValue": (...args: any[]) => void;
28
+ }, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
29
+ modelValue: {
30
+ type: PropType<string | number | boolean>;
31
+ required: true;
32
+ };
33
+ name: {
34
+ type: PropType<string>;
35
+ required: true;
36
+ };
37
+ value: {
38
+ type: PropType<string | number | boolean>;
39
+ required: true;
40
+ };
41
+ disabled: {
42
+ type: PropType<boolean>;
43
+ };
44
+ }>> & {
45
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
46
+ }, {}, true, {}, {}, {
47
+ P: {};
48
+ B: {};
49
+ D: {};
50
+ C: {};
51
+ M: {};
52
+ Defaults: {};
53
+ }, Readonly<ExtractPropTypes<{
90
54
  modelValue: {
91
55
  type: PropType<string | number | boolean>;
92
56
  required: true;
@@ -104,7 +68,7 @@ declare const deprecatedDefault: {
104
68
  };
105
69
  }>> & {
106
70
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
107
- } & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
71
+ }, {}, {}, {}, {}, {}>;
108
72
  __isFragment?: undefined;
109
73
  __isTeleport?: undefined;
110
74
  __isSuspense?: undefined;