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.
- package/_types/sizing.js.map +1 -1
- package/bonkers-ui.umd.js +2 -2
- package/bonkers-ui.umd.js.map +1 -1
- package/components/ui-alert/index.d.ts +23 -56
- package/components/ui-badge/index.d.ts +33 -68
- package/components/ui-button/index.d.ts +51 -86
- package/components/ui-card-cta/index.d.ts +39 -75
- package/components/ui-card-result/index.d.ts +39 -75
- package/components/ui-card-simple/index.d.ts +9 -39
- package/components/ui-checkbox/index.d.ts +47 -84
- package/components/ui-dropdown/index.d.ts +47 -90
- package/components/ui-dropdown/ui-dropdown.vue.d.ts +0 -3
- package/components/ui-dropdown/ui-dropdown.vue.js +19 -20
- package/components/ui-dropdown/ui-dropdown.vue.js.map +1 -1
- package/components/ui-icon-wrapper/index.d.ts +31 -64
- package/components/ui-input/_typings.d.ts +2 -2
- package/components/ui-input/index.d.ts +148 -193
- package/components/ui-list-item/index.d.ts +74 -111
- package/components/ui-modal/index.d.ts +31 -64
- package/components/ui-modal/ui-backdrop/index.d.ts +9 -39
- package/components/ui-notification-badge/index.d.ts +22 -54
- package/components/ui-order-card/index.d.ts +29 -62
- package/components/ui-plain-radio/index.d.ts +60 -98
- package/components/ui-radio/index.d.ts +60 -98
- package/components/ui-radio-compact/index.d.ts +45 -81
- package/components/ui-radio-fancy/index.d.ts +70 -108
- package/components/ui-result-card-range/index.d.ts +33 -68
- package/components/ui-ripple/index.d.ts +9 -39
- package/components/ui-select/index.d.ts +41 -77
- package/components/ui-snackbar/index.d.ts +29 -62
- package/components/ui-table/index.d.ts +22 -54
- package/components/ui-table/ui-table-cell/index.d.ts +21 -54
- package/components/ui-table/ui-table-row/index.d.ts +16 -48
- package/components/ui-toggle/index.d.ts +62 -101
- package/components/ui-typography/index.d.ts +61 -100
- package/components/ui-typography/ui-typography.vue.js +2 -2
- package/components/ui-verification-input/index.d.ts +29 -63
- 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 {
|
|
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
|
-
}
|
|
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 {
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
33
|
-
|
|
15
|
+
modalSize: {
|
|
16
|
+
type: PropType<EModalSizes>;
|
|
17
|
+
default: EModalSizes;
|
|
34
18
|
};
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
}
|
|
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
|
-
}
|
|
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 {
|
|
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
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
};
|
|
15
|
-
|
|
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 {
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
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
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
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
|
-
}
|
|
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 {
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
32
|
-
|
|
15
|
+
iconName: {
|
|
16
|
+
type: PropType<TIconName>;
|
|
17
|
+
required: true;
|
|
33
18
|
};
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
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
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
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
|
-
}
|
|
46
|
+
}>>, {}, {}, {}, {}, {
|
|
47
|
+
kind: EOrderCardTypes;
|
|
48
|
+
}>;
|
|
82
49
|
__isFragment?: undefined;
|
|
83
50
|
__isTeleport?: undefined;
|
|
84
51
|
__isSuspense?: undefined;
|