@mobileaction/action-kit 1.14.0 → 1.14.11
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/dist/action-kit.js +3 -3
- package/dist/action-kit.mjs +778 -774
- package/dist/components/scrollable-badge/index.vue.d.ts +8 -6
- package/dist/components/select/index.vue.d.ts +12 -0
- package/dist/src/components/scrollable-badge/index.vue.d.ts +8 -6
- package/dist/src/components/select/index.vue.d.ts +4 -0
- package/dist/src/components/select/stories/default.stories.d.ts +1 -0
- package/dist/style.css +1 -1
- package/package.json +2 -2
|
@@ -2,18 +2,20 @@ import type { PropType as __PropType } from 'vue';
|
|
|
2
2
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
3
3
|
badges: {
|
|
4
4
|
type: __PropType<{
|
|
5
|
-
label
|
|
6
|
-
url
|
|
5
|
+
label?: string;
|
|
6
|
+
url?: string;
|
|
7
|
+
target?: string;
|
|
7
8
|
}[]>;
|
|
8
|
-
required:
|
|
9
|
+
required: true;
|
|
9
10
|
};
|
|
10
11
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
12
|
badges: {
|
|
12
13
|
type: __PropType<{
|
|
13
|
-
label
|
|
14
|
-
url
|
|
14
|
+
label?: string;
|
|
15
|
+
url?: string;
|
|
16
|
+
target?: string;
|
|
15
17
|
}[]>;
|
|
16
|
-
required:
|
|
18
|
+
required: true;
|
|
17
19
|
};
|
|
18
20
|
}>>, {}>;
|
|
19
21
|
export default _sfc_main;
|
|
@@ -26,6 +26,7 @@ export interface MaSelectProps {
|
|
|
26
26
|
open?: boolean;
|
|
27
27
|
value?: string | number | string[] | number[];
|
|
28
28
|
listHeight?: number;
|
|
29
|
+
dropdownMatchSelectWidth?: boolean | number;
|
|
29
30
|
}
|
|
30
31
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
31
32
|
allowClear: {
|
|
@@ -130,6 +131,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
130
131
|
required: false;
|
|
131
132
|
default: number;
|
|
132
133
|
};
|
|
134
|
+
dropdownMatchSelectWidth: {
|
|
135
|
+
type: __PropType<number | boolean>;
|
|
136
|
+
required: false;
|
|
137
|
+
default: boolean;
|
|
138
|
+
};
|
|
133
139
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
134
140
|
allowClear: {
|
|
135
141
|
type: __PropType<boolean>;
|
|
@@ -233,12 +239,18 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
233
239
|
required: false;
|
|
234
240
|
default: number;
|
|
235
241
|
};
|
|
242
|
+
dropdownMatchSelectWidth: {
|
|
243
|
+
type: __PropType<number | boolean>;
|
|
244
|
+
required: false;
|
|
245
|
+
default: boolean;
|
|
246
|
+
};
|
|
236
247
|
}>> & {
|
|
237
248
|
"onUpdate:value"?: (...args: any[]) => any;
|
|
238
249
|
}, {
|
|
239
250
|
value: string | number | string[] | number[];
|
|
240
251
|
size: "default" | "small" | "large";
|
|
241
252
|
open: boolean;
|
|
253
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
242
254
|
listHeight: number;
|
|
243
255
|
autoClearSearchValue: boolean;
|
|
244
256
|
menuItemSelectedIcon: string;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
badges
|
|
3
|
-
label
|
|
4
|
-
url
|
|
2
|
+
badges: {
|
|
3
|
+
label?: string;
|
|
4
|
+
url?: string;
|
|
5
|
+
target?: string;
|
|
5
6
|
}[];
|
|
6
7
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
|
-
badges
|
|
8
|
-
label
|
|
9
|
-
url
|
|
8
|
+
badges: {
|
|
9
|
+
label?: string;
|
|
10
|
+
url?: string;
|
|
11
|
+
target?: string;
|
|
10
12
|
}[];
|
|
11
13
|
}>>>, {}>, {
|
|
12
14
|
default: (_: {}) => any;
|
|
@@ -25,6 +25,7 @@ export interface MaSelectProps {
|
|
|
25
25
|
open?: boolean;
|
|
26
26
|
value?: string | number | string[] | number[];
|
|
27
27
|
listHeight?: number;
|
|
28
|
+
dropdownMatchSelectWidth?: boolean | number;
|
|
28
29
|
}
|
|
29
30
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaSelectProps>, {
|
|
30
31
|
autoClearSearchValue: boolean;
|
|
@@ -33,6 +34,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
33
34
|
value: string;
|
|
34
35
|
menuItemSelectedIcon: string;
|
|
35
36
|
listHeight: number;
|
|
37
|
+
dropdownMatchSelectWidth: boolean;
|
|
36
38
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaSelectProps>, {
|
|
37
39
|
autoClearSearchValue: boolean;
|
|
38
40
|
open: boolean;
|
|
@@ -40,12 +42,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
40
42
|
value: string;
|
|
41
43
|
menuItemSelectedIcon: string;
|
|
42
44
|
listHeight: number;
|
|
45
|
+
dropdownMatchSelectWidth: boolean;
|
|
43
46
|
}>>> & {
|
|
44
47
|
"onUpdate:value"?: (...args: any[]) => any;
|
|
45
48
|
}, {
|
|
46
49
|
size: "default" | "small" | "large";
|
|
47
50
|
value: string | number | string[] | number[];
|
|
48
51
|
open: boolean;
|
|
52
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
49
53
|
menuItemSelectedIcon: string;
|
|
50
54
|
listHeight: number;
|
|
51
55
|
autoClearSearchValue: boolean;
|