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,6 +1,6 @@
1
1
  import { TIconName } from '../ui-icon';
2
2
  import { EListItemSize, EListItemTypes, EListItemSpacing } from './_types';
3
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
4
4
  import UiListItem from "./ui-list-item.vue";
5
5
  export { EListItemTypes, EListItemSpacing, EListItemSize } from "./_types";
6
6
  export { UiListItem };
@@ -8,115 +8,7 @@ export { UiListItem };
8
8
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
9
9
  */
10
10
  declare const deprecatedDefault: {
11
- new (...args: any[]): {
12
- $: ComponentInternalInstance;
13
- $data: {};
14
- $props: Partial<{
15
- size: EListItemSize;
16
- title: string;
17
- icon: TIconName;
18
- kind: EListItemTypes;
19
- spacing: EListItemSpacing;
20
- iconClass: any;
21
- }> & Omit<{
22
- readonly size: EListItemSize;
23
- readonly title: string;
24
- readonly kind: EListItemTypes;
25
- readonly spacing: EListItemSpacing;
26
- readonly iconClass: any;
27
- readonly icon?: TIconName | undefined;
28
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
29
- size: {
30
- type: PropType<EListItemSize>;
31
- default: EListItemSize;
32
- };
33
- title: {
34
- type: PropType<string>;
35
- default: string;
36
- };
37
- icon: {
38
- type: PropType<TIconName>;
39
- default: undefined;
40
- };
41
- kind: {
42
- type: PropType<EListItemTypes>;
43
- default: EListItemTypes;
44
- };
45
- spacing: {
46
- type: PropType<EListItemSpacing>;
47
- default: EListItemSpacing;
48
- };
49
- iconClass: {
50
- type: PropType<any>;
51
- default: string;
52
- };
53
- }>>, "size" | "title" | "icon" | "kind" | "spacing" | "iconClass">;
54
- $attrs: {
55
- [x: string]: unknown;
56
- };
57
- $refs: {
58
- [x: string]: unknown;
59
- };
60
- $slots: Readonly<{
61
- [name: string]: Slot<any> | undefined;
62
- }>;
63
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
64
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
65
- $emit: (event: string, ...args: any[]) => void;
66
- $el: any;
67
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
68
- size: {
69
- type: PropType<EListItemSize>;
70
- default: EListItemSize;
71
- };
72
- title: {
73
- type: PropType<string>;
74
- default: string;
75
- };
76
- icon: {
77
- type: PropType<TIconName>;
78
- default: undefined;
79
- };
80
- kind: {
81
- type: PropType<EListItemTypes>;
82
- default: EListItemTypes;
83
- };
84
- spacing: {
85
- type: PropType<EListItemSpacing>;
86
- default: EListItemSpacing;
87
- };
88
- iconClass: {
89
- type: PropType<any>;
90
- default: string;
91
- };
92
- }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
93
- size: EListItemSize;
94
- title: string;
95
- icon: TIconName;
96
- kind: EListItemTypes;
97
- spacing: EListItemSpacing;
98
- iconClass: any;
99
- }, {}, string, {}> & {
100
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
101
- created?: ((() => void) | (() => void)[]) | undefined;
102
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
103
- mounted?: ((() => void) | (() => void)[]) | undefined;
104
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
105
- updated?: ((() => void) | (() => void)[]) | undefined;
106
- activated?: ((() => void) | (() => void)[]) | undefined;
107
- deactivated?: ((() => void) | (() => void)[]) | undefined;
108
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
109
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
110
- destroyed?: ((() => void) | (() => void)[]) | undefined;
111
- unmounted?: ((() => void) | (() => void)[]) | undefined;
112
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
113
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
114
- 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;
115
- };
116
- $forceUpdate: () => void;
117
- $nextTick: typeof nextTick;
118
- $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;
119
- } & Readonly<ExtractPropTypes<{
11
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
120
12
  size: {
121
13
  type: PropType<EListItemSize>;
122
14
  default: EListItemSize;
@@ -141,7 +33,78 @@ declare const deprecatedDefault: {
141
33
  type: PropType<any>;
142
34
  default: string;
143
35
  };
144
- }>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
36
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
37
+ size: {
38
+ type: PropType<EListItemSize>;
39
+ default: EListItemSize;
40
+ };
41
+ title: {
42
+ type: PropType<string>;
43
+ default: string;
44
+ };
45
+ icon: {
46
+ type: PropType<TIconName>;
47
+ default: undefined;
48
+ };
49
+ kind: {
50
+ type: PropType<EListItemTypes>;
51
+ default: EListItemTypes;
52
+ };
53
+ spacing: {
54
+ type: PropType<EListItemSpacing>;
55
+ default: EListItemSpacing;
56
+ };
57
+ iconClass: {
58
+ type: PropType<any>;
59
+ default: string;
60
+ };
61
+ }>>, {
62
+ size: EListItemSize;
63
+ title: string;
64
+ icon: TIconName;
65
+ kind: EListItemTypes;
66
+ spacing: EListItemSpacing;
67
+ iconClass: any;
68
+ }, true, {}, {}, {
69
+ P: {};
70
+ B: {};
71
+ D: {};
72
+ C: {};
73
+ M: {};
74
+ Defaults: {};
75
+ }, Readonly<ExtractPropTypes<{
76
+ size: {
77
+ type: PropType<EListItemSize>;
78
+ default: EListItemSize;
79
+ };
80
+ title: {
81
+ type: PropType<string>;
82
+ default: string;
83
+ };
84
+ icon: {
85
+ type: PropType<TIconName>;
86
+ default: undefined;
87
+ };
88
+ kind: {
89
+ type: PropType<EListItemTypes>;
90
+ default: EListItemTypes;
91
+ };
92
+ spacing: {
93
+ type: PropType<EListItemSpacing>;
94
+ default: EListItemSpacing;
95
+ };
96
+ iconClass: {
97
+ type: PropType<any>;
98
+ default: string;
99
+ };
100
+ }>>, {}, {}, {}, {}, {
101
+ size: EListItemSize;
102
+ title: string;
103
+ icon: TIconName;
104
+ kind: EListItemTypes;
105
+ spacing: EListItemSpacing;
106
+ iconClass: any;
107
+ }>;
145
108
  __isFragment?: undefined;
146
109
  __isTeleport?: undefined;
147
110
  __isSuspense?: undefined;
@@ -1,5 +1,5 @@
1
1
  import { EModalSizes } from './_typings';
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 UiModal from "./ui-modal.vue";
4
4
  export { UiModal };
5
5
  export { EModalSizes } from "./_typings";
@@ -7,71 +7,35 @@ export { EModalSizes } from "./_typings";
7
7
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
8
8
  */
9
9
  declare const deprecatedDefault: {
10
- new (...args: any[]): {
11
- $: ComponentInternalInstance;
12
- $data: {};
13
- $props: Partial<{
14
- title: string;
15
- modalSize: EModalSizes;
16
- }> & Omit<{
17
- readonly modalSize: EModalSizes;
18
- readonly title?: string | undefined;
19
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
20
- title: {
21
- type: PropType<string>;
22
- default: undefined;
23
- };
24
- modalSize: {
25
- type: PropType<EModalSizes>;
26
- default: EModalSizes;
27
- };
28
- }>>, "title" | "modalSize">;
29
- $attrs: {
30
- [x: string]: unknown;
10
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
11
+ title: {
12
+ type: PropType<string>;
13
+ default: undefined;
31
14
  };
32
- $refs: {
33
- [x: string]: unknown;
15
+ modalSize: {
16
+ type: PropType<EModalSizes>;
17
+ default: EModalSizes;
34
18
  };
35
- $slots: Readonly<{
36
- [name: string]: Slot<any> | undefined;
37
- }>;
38
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
39
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
40
- $emit: (event: string, ...args: any[]) => void;
41
- $el: any;
42
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
43
- title: {
44
- type: PropType<string>;
45
- default: undefined;
46
- };
47
- modalSize: {
48
- type: PropType<EModalSizes>;
49
- default: EModalSizes;
50
- };
51
- }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
52
- title: string;
53
- modalSize: EModalSizes;
54
- }, {}, string, {}> & {
55
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
56
- created?: ((() => void) | (() => void)[]) | undefined;
57
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
58
- mounted?: ((() => void) | (() => void)[]) | undefined;
59
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
60
- updated?: ((() => void) | (() => void)[]) | undefined;
61
- activated?: ((() => void) | (() => void)[]) | undefined;
62
- deactivated?: ((() => void) | (() => void)[]) | undefined;
63
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
64
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
65
- destroyed?: ((() => void) | (() => void)[]) | undefined;
66
- unmounted?: ((() => void) | (() => void)[]) | undefined;
67
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
68
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
69
- 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;
19
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
20
+ title: {
21
+ type: PropType<string>;
22
+ default: undefined;
23
+ };
24
+ modalSize: {
25
+ type: PropType<EModalSizes>;
26
+ default: EModalSizes;
70
27
  };
71
- $forceUpdate: () => void;
72
- $nextTick: typeof nextTick;
73
- $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;
74
- } & Readonly<ExtractPropTypes<{
28
+ }>>, {
29
+ title: string;
30
+ modalSize: EModalSizes;
31
+ }, true, {}, {}, {
32
+ P: {};
33
+ B: {};
34
+ D: {};
35
+ C: {};
36
+ M: {};
37
+ Defaults: {};
38
+ }, Readonly<ExtractPropTypes<{
75
39
  title: {
76
40
  type: PropType<string>;
77
41
  default: undefined;
@@ -80,7 +44,10 @@ declare const deprecatedDefault: {
80
44
  type: PropType<EModalSizes>;
81
45
  default: EModalSizes;
82
46
  };
83
- }>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
47
+ }>>, {}, {}, {}, {}, {
48
+ title: string;
49
+ modalSize: EModalSizes;
50
+ }>;
84
51
  __isFragment?: undefined;
85
52
  __isTeleport?: undefined;
86
53
  __isSuspense?: undefined;
@@ -1,48 +1,18 @@
1
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
1
+ import { CreateComponentPublicInstance, ExtractPropTypes, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
2
2
  import UiBackdrop from "./ui-backdrop.vue";
3
3
  export { UiBackdrop };
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<{} & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{}>>, never>;
12
- $attrs: {
13
- [x: string]: unknown;
14
- };
15
- $refs: {
16
- [x: string]: unknown;
17
- };
18
- $slots: Readonly<{
19
- [name: string]: Slot<any> | undefined;
20
- }>;
21
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
22
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
23
- $emit: (event: string, ...args: any[]) => void;
24
- $el: any;
25
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {}, {}, string, {}> & {
26
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
27
- created?: ((() => void) | (() => void)[]) | undefined;
28
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
29
- mounted?: ((() => void) | (() => void)[]) | undefined;
30
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
31
- updated?: ((() => void) | (() => void)[]) | undefined;
32
- activated?: ((() => void) | (() => void)[]) | undefined;
33
- deactivated?: ((() => void) | (() => void)[]) | undefined;
34
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
35
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
36
- destroyed?: ((() => void) | (() => void)[]) | undefined;
37
- unmounted?: ((() => void) | (() => void)[]) | undefined;
38
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
39
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
40
- 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;
41
- };
42
- $forceUpdate: () => void;
43
- $nextTick: typeof nextTick;
44
- $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;
45
- } & Readonly<ExtractPropTypes<{}>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
8
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{}>>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{}>>, {}, true, {}, {}, {
9
+ P: {};
10
+ B: {};
11
+ D: {};
12
+ C: {};
13
+ M: {};
14
+ Defaults: {};
15
+ }, Readonly<ExtractPropTypes<{}>>, {}, {}, {}, {}, {}>;
46
16
  __isFragment?: undefined;
47
17
  __isTeleport?: undefined;
48
18
  __isSuspense?: undefined;
@@ -1,5 +1,5 @@
1
1
  import { EBadgeOrigin } 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 UiNotificationBadge from "./ui-notification-badge.vue";
4
4
  export { UiNotificationBadge };
5
5
  export { EBadgeOrigin } from "./_types";
@@ -7,65 +7,33 @@ export { EBadgeOrigin } from "./_types";
7
7
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
8
8
  */
9
9
  declare const deprecatedDefault: {
10
- new (...args: any[]): {
11
- $: ComponentInternalInstance;
12
- $data: {};
13
- $props: Partial<{
14
- origin: EBadgeOrigin;
15
- }> & Omit<{
16
- readonly origin: EBadgeOrigin;
17
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
18
- origin: {
19
- type: PropType<EBadgeOrigin>;
20
- default: EBadgeOrigin;
21
- };
22
- }>>, "origin">;
23
- $attrs: {
24
- [x: string]: unknown;
25
- };
26
- $refs: {
27
- [x: string]: unknown;
10
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
11
+ origin: {
12
+ type: PropType<EBadgeOrigin>;
13
+ default: EBadgeOrigin;
28
14
  };
29
- $slots: Readonly<{
30
- [name: string]: Slot<any> | undefined;
31
- }>;
32
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
33
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
34
- $emit: (event: string, ...args: any[]) => void;
35
- $el: any;
36
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
37
- origin: {
38
- type: PropType<EBadgeOrigin>;
39
- default: EBadgeOrigin;
40
- };
41
- }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
42
- origin: EBadgeOrigin;
43
- }, {}, string, {}> & {
44
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
45
- created?: ((() => void) | (() => void)[]) | undefined;
46
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
47
- mounted?: ((() => void) | (() => void)[]) | undefined;
48
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
49
- updated?: ((() => void) | (() => void)[]) | undefined;
50
- activated?: ((() => void) | (() => void)[]) | undefined;
51
- deactivated?: ((() => void) | (() => void)[]) | undefined;
52
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
53
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
54
- destroyed?: ((() => void) | (() => void)[]) | undefined;
55
- unmounted?: ((() => void) | (() => void)[]) | undefined;
56
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
57
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
58
- 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;
15
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
16
+ origin: {
17
+ type: PropType<EBadgeOrigin>;
18
+ default: EBadgeOrigin;
59
19
  };
60
- $forceUpdate: () => void;
61
- $nextTick: typeof nextTick;
62
- $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;
63
- } & Readonly<ExtractPropTypes<{
20
+ }>>, {
21
+ origin: EBadgeOrigin;
22
+ }, true, {}, {}, {
23
+ P: {};
24
+ B: {};
25
+ D: {};
26
+ C: {};
27
+ M: {};
28
+ Defaults: {};
29
+ }, Readonly<ExtractPropTypes<{
64
30
  origin: {
65
31
  type: PropType<EBadgeOrigin>;
66
32
  default: EBadgeOrigin;
67
33
  };
68
- }>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
34
+ }>>, {}, {}, {}, {}, {
35
+ origin: EBadgeOrigin;
36
+ }>;
69
37
  __isFragment?: undefined;
70
38
  __isTeleport?: undefined;
71
39
  __isSuspense?: undefined;
@@ -1,75 +1,40 @@
1
1
  import { TIconName } from '../ui-icon';
2
2
  import { EOrderCardTypes } from './_types';
3
- import { ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, ExtractPropTypes, PropType, Slot, ComponentPublicInstance, ComponentOptionsBase, ComponentOptionsMixin, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
+ import { CreateComponentPublicInstance, ExtractPropTypes, PropType, ComponentOptionsMixin, VNodeProps, AllowedComponentProps, ComponentCustomProps, ComponentOptionsBase } from 'vue';
4
4
  import UiOrderCard from "./ui-order-card.vue";
5
5
  export { UiOrderCard };
6
6
  /**
7
7
  * @deprecated The default should not be used - use named import as - import {[name]} from "ui/[name]"
8
8
  */
9
9
  declare const deprecatedDefault: {
10
- new (...args: any[]): {
11
- $: ComponentInternalInstance;
12
- $data: {};
13
- $props: Partial<{
14
- kind: EOrderCardTypes;
15
- }> & Omit<{
16
- readonly kind: EOrderCardTypes;
17
- readonly iconName: TIconName;
18
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
19
- kind: {
20
- type: PropType<EOrderCardTypes>;
21
- default: EOrderCardTypes;
22
- };
23
- iconName: {
24
- type: PropType<TIconName>;
25
- required: true;
26
- };
27
- }>>, "kind">;
28
- $attrs: {
29
- [x: string]: unknown;
10
+ new (...args: any[]): CreateComponentPublicInstance<Readonly<ExtractPropTypes<{
11
+ kind: {
12
+ type: PropType<EOrderCardTypes>;
13
+ default: EOrderCardTypes;
30
14
  };
31
- $refs: {
32
- [x: string]: unknown;
15
+ iconName: {
16
+ type: PropType<TIconName>;
17
+ required: true;
33
18
  };
34
- $slots: Readonly<{
35
- [name: string]: Slot<any> | undefined;
36
- }>;
37
- $root: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
38
- $parent: ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}>, {}, {}> | null;
39
- $emit: (event: string, ...args: any[]) => void;
40
- $el: any;
41
- $options: ComponentOptionsBase<Readonly<ExtractPropTypes<{
42
- kind: {
43
- type: PropType<EOrderCardTypes>;
44
- default: EOrderCardTypes;
45
- };
46
- iconName: {
47
- type: PropType<TIconName>;
48
- required: true;
49
- };
50
- }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
51
- kind: EOrderCardTypes;
52
- }, {}, string, {}> & {
53
- beforeCreate?: ((() => void) | (() => void)[]) | undefined;
54
- created?: ((() => void) | (() => void)[]) | undefined;
55
- beforeMount?: ((() => void) | (() => void)[]) | undefined;
56
- mounted?: ((() => void) | (() => void)[]) | undefined;
57
- beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
58
- updated?: ((() => void) | (() => void)[]) | undefined;
59
- activated?: ((() => void) | (() => void)[]) | undefined;
60
- deactivated?: ((() => void) | (() => void)[]) | undefined;
61
- beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
62
- beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
63
- destroyed?: ((() => void) | (() => void)[]) | undefined;
64
- unmounted?: ((() => void) | (() => void)[]) | undefined;
65
- renderTracked?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
66
- renderTriggered?: (((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[]) | undefined;
67
- 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;
19
+ }>>, {}, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, VNodeProps & AllowedComponentProps & ComponentCustomProps & Readonly<ExtractPropTypes<{
20
+ kind: {
21
+ type: PropType<EOrderCardTypes>;
22
+ default: EOrderCardTypes;
23
+ };
24
+ iconName: {
25
+ type: PropType<TIconName>;
26
+ required: true;
68
27
  };
69
- $forceUpdate: () => void;
70
- $nextTick: typeof nextTick;
71
- $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;
72
- } & Readonly<ExtractPropTypes<{
28
+ }>>, {
29
+ kind: EOrderCardTypes;
30
+ }, true, {}, {}, {
31
+ P: {};
32
+ B: {};
33
+ D: {};
34
+ C: {};
35
+ M: {};
36
+ Defaults: {};
37
+ }, Readonly<ExtractPropTypes<{
73
38
  kind: {
74
39
  type: PropType<EOrderCardTypes>;
75
40
  default: EOrderCardTypes;
@@ -78,7 +43,9 @@ declare const deprecatedDefault: {
78
43
  type: PropType<TIconName>;
79
44
  required: true;
80
45
  };
81
- }>> & ShallowUnwrapRef<{}> & {} & ComponentCustomProperties & {};
46
+ }>>, {}, {}, {}, {}, {
47
+ kind: EOrderCardTypes;
48
+ }>;
82
49
  __isFragment?: undefined;
83
50
  __isTeleport?: undefined;
84
51
  __isSuspense?: undefined;