@mobileaction/action-kit 1.1.13 → 1.1.14
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 +8 -8
- package/dist/action-kit.mjs +493 -467
- package/dist/components/form/components/nonHSFormsIgnore.vue.d.ts +4 -0
- package/dist/components/form/index.vue.d.ts +21 -2
- package/dist/components/select/index.vue.d.ts +12 -0
- package/dist/src/components/form/components/nonHSFormsIgnore.vue.d.ts +2 -0
- package/dist/src/components/form/index.vue.d.ts +28 -2
- package/dist/src/components/select/index.vue.d.ts +4 -0
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,27 @@
|
|
|
1
|
-
|
|
1
|
+
import type { PropType as __PropType } from 'vue';
|
|
2
|
+
import { FormProps } from "ant-design-vue";
|
|
3
|
+
export interface MaFormProps extends FormProps {
|
|
4
|
+
nonHubspotFormsIgnore?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare const _sfc_main: import("vue").DefineComponent<{
|
|
7
|
+
nonHubspotFormsIgnore: {
|
|
8
|
+
type: __PropType<boolean>;
|
|
9
|
+
required: false;
|
|
10
|
+
default: boolean;
|
|
11
|
+
};
|
|
12
|
+
}, {
|
|
2
13
|
validate: () => any;
|
|
3
14
|
clearValidate: () => any;
|
|
4
15
|
resetFields: () => any;
|
|
5
16
|
scrollToField: () => any;
|
|
6
17
|
validateFields: () => any;
|
|
7
|
-
},
|
|
18
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
19
|
+
nonHubspotFormsIgnore: {
|
|
20
|
+
type: __PropType<boolean>;
|
|
21
|
+
required: false;
|
|
22
|
+
default: boolean;
|
|
23
|
+
};
|
|
24
|
+
}>>, {
|
|
25
|
+
nonHubspotFormsIgnore: boolean;
|
|
26
|
+
}>;
|
|
8
27
|
export default _sfc_main;
|
|
@@ -24,6 +24,7 @@ export interface MaSelectProps {
|
|
|
24
24
|
prefixIcon?: string;
|
|
25
25
|
open?: boolean;
|
|
26
26
|
value?: string | number | string[] | number[];
|
|
27
|
+
listHeight?: number;
|
|
27
28
|
}
|
|
28
29
|
declare const _sfc_main: import("vue").DefineComponent<{
|
|
29
30
|
allowClear: {
|
|
@@ -119,6 +120,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
119
120
|
required: false;
|
|
120
121
|
default: string;
|
|
121
122
|
};
|
|
123
|
+
listHeight: {
|
|
124
|
+
type: __PropType<number>;
|
|
125
|
+
required: false;
|
|
126
|
+
default: number;
|
|
127
|
+
};
|
|
122
128
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "update:value"[], "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
123
129
|
allowClear: {
|
|
124
130
|
type: __PropType<boolean>;
|
|
@@ -213,6 +219,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
213
219
|
required: false;
|
|
214
220
|
default: string;
|
|
215
221
|
};
|
|
222
|
+
listHeight: {
|
|
223
|
+
type: __PropType<number>;
|
|
224
|
+
required: false;
|
|
225
|
+
default: number;
|
|
226
|
+
};
|
|
216
227
|
}>> & {
|
|
217
228
|
"onUpdate:value"?: (...args: any[]) => any;
|
|
218
229
|
}, {
|
|
@@ -221,5 +232,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
221
232
|
autoClearSearchValue: boolean;
|
|
222
233
|
menuItemSelectedIcon: string;
|
|
223
234
|
open: boolean;
|
|
235
|
+
listHeight: number;
|
|
224
236
|
}>;
|
|
225
237
|
export default _sfc_main;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2
|
+
export default _default;
|
|
@@ -1,11 +1,37 @@
|
|
|
1
|
-
|
|
1
|
+
import { FormProps } from "ant-design-vue";
|
|
2
|
+
export interface MaFormProps extends FormProps {
|
|
3
|
+
nonHubspotFormsIgnore?: boolean;
|
|
4
|
+
}
|
|
5
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaFormProps>, {
|
|
6
|
+
nonHubspotFormsIgnore: boolean;
|
|
7
|
+
}>, {
|
|
2
8
|
validate: () => any;
|
|
3
9
|
clearValidate: () => any;
|
|
4
10
|
resetFields: () => any;
|
|
5
11
|
scrollToField: () => any;
|
|
6
12
|
validateFields: () => any;
|
|
7
|
-
},
|
|
13
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaFormProps>, {
|
|
14
|
+
nonHubspotFormsIgnore: boolean;
|
|
15
|
+
}>>>, {
|
|
16
|
+
nonHubspotFormsIgnore: boolean;
|
|
17
|
+
}>, {
|
|
18
|
+
default: (_: {}) => any;
|
|
19
|
+
}>;
|
|
8
20
|
export default _default;
|
|
21
|
+
declare type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
22
|
+
declare type __VLS_TypePropsToRuntimeProps<T> = {
|
|
23
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
24
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
25
|
+
} : {
|
|
26
|
+
type: import('vue').PropType<T[K]>;
|
|
27
|
+
required: true;
|
|
28
|
+
};
|
|
29
|
+
};
|
|
30
|
+
declare type __VLS_WithDefaults<P, D> = {
|
|
31
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? P[K] & {
|
|
32
|
+
default: D[K];
|
|
33
|
+
} : P[K];
|
|
34
|
+
};
|
|
9
35
|
declare type __VLS_WithTemplateSlots<T, S> = T & {
|
|
10
36
|
new (): {
|
|
11
37
|
$slots: S;
|
|
@@ -23,6 +23,7 @@ export interface MaSelectProps {
|
|
|
23
23
|
prefixIcon?: string;
|
|
24
24
|
open?: boolean;
|
|
25
25
|
value?: string | number | string[] | number[];
|
|
26
|
+
listHeight?: number;
|
|
26
27
|
}
|
|
27
28
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<MaSelectProps>, {
|
|
28
29
|
autoClearSearchValue: boolean;
|
|
@@ -30,12 +31,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
30
31
|
size: string;
|
|
31
32
|
value: string;
|
|
32
33
|
menuItemSelectedIcon: string;
|
|
34
|
+
listHeight: number;
|
|
33
35
|
}>, {}, 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>, {
|
|
34
36
|
autoClearSearchValue: boolean;
|
|
35
37
|
open: boolean;
|
|
36
38
|
size: string;
|
|
37
39
|
value: string;
|
|
38
40
|
menuItemSelectedIcon: string;
|
|
41
|
+
listHeight: number;
|
|
39
42
|
}>>> & {
|
|
40
43
|
"onUpdate:value"?: (...args: any[]) => any;
|
|
41
44
|
}, {
|
|
@@ -43,6 +46,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
43
46
|
value: string | number | string[] | number[];
|
|
44
47
|
open: boolean;
|
|
45
48
|
menuItemSelectedIcon: string;
|
|
49
|
+
listHeight: number;
|
|
46
50
|
autoClearSearchValue: boolean;
|
|
47
51
|
}>, Record<NonNullable<string | number>, (_: {}) => any> & {
|
|
48
52
|
prefixIcon: (_: {}) => any;
|