@mobileaction/action-kit 1.14.1 → 1.14.12

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.
@@ -12,6 +12,7 @@ export interface MaAutocompleteProps {
12
12
  open?: boolean;
13
13
  size?: AutoCompleteSize;
14
14
  autofocus?: boolean;
15
+ noOverlay?: boolean;
15
16
  }
16
17
  declare const _sfc_main: import("vue").DefineComponent<{
17
18
  value: {
@@ -59,6 +60,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
59
60
  required: false;
60
61
  default: boolean;
61
62
  };
63
+ noOverlay: {
64
+ type: __PropType<boolean>;
65
+ required: false;
66
+ default: boolean;
67
+ };
62
68
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("search" | "update:value")[], "search" | "update:value", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
63
69
  value: {
64
70
  type: __PropType<string>;
@@ -105,6 +111,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
105
111
  required: false;
106
112
  default: boolean;
107
113
  };
114
+ noOverlay: {
115
+ type: __PropType<boolean>;
116
+ required: false;
117
+ default: boolean;
118
+ };
108
119
  }>> & {
109
120
  "onUpdate:value"?: (...args: any[]) => any;
110
121
  onSearch?: (...args: any[]) => any;
@@ -114,5 +125,6 @@ declare const _sfc_main: import("vue").DefineComponent<{
114
125
  options: OptionType[];
115
126
  filterFn: Function;
116
127
  open: boolean;
128
+ noOverlay: boolean;
117
129
  }>;
118
130
  export default _sfc_main;
@@ -1,8 +1,10 @@
1
1
  import type { PropType as __PropType } from 'vue';
2
2
  import { type CheckboxGroupProps } from 'ant-design-vue';
3
+ import { MaCheckboxSize } from "./types";
3
4
  export interface MaCheckboxGroupProps extends CheckboxGroupProps {
4
5
  hint?: string;
5
6
  disabled?: boolean;
7
+ size?: MaCheckboxSize;
6
8
  }
7
9
  declare const _sfc_main: import("vue").DefineComponent<{
8
10
  hint: {
@@ -13,6 +15,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
13
15
  type: __PropType<boolean>;
14
16
  required: false;
15
17
  };
18
+ size: {
19
+ type: __PropType<"md" | "lg">;
20
+ required: false;
21
+ default: string;
22
+ };
16
23
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
17
24
  hint: {
18
25
  type: __PropType<string>;
@@ -22,5 +29,12 @@ declare const _sfc_main: import("vue").DefineComponent<{
22
29
  type: __PropType<boolean>;
23
30
  required: false;
24
31
  };
25
- }>>, {}>;
32
+ size: {
33
+ type: __PropType<"md" | "lg">;
34
+ required: false;
35
+ default: string;
36
+ };
37
+ }>>, {
38
+ size: "md" | "lg";
39
+ }>;
26
40
  export default _sfc_main;
@@ -1,9 +1,11 @@
1
1
  import type { PropType as __PropType } from 'vue';
2
2
  import { type CheckboxProps } from 'ant-design-vue';
3
+ import { MaCheckboxSize } from "./types";
3
4
  export interface MaCheckboxProps extends CheckboxProps {
4
5
  hint?: string;
5
6
  indeterminate?: boolean;
6
7
  disabled?: boolean;
8
+ size?: MaCheckboxSize;
7
9
  }
8
10
  declare const _sfc_main: import("vue").DefineComponent<{
9
11
  hint: {
@@ -19,6 +21,11 @@ declare const _sfc_main: import("vue").DefineComponent<{
19
21
  type: __PropType<boolean>;
20
22
  required: false;
21
23
  };
24
+ size: {
25
+ type: __PropType<"md" | "lg">;
26
+ required: false;
27
+ default: string;
28
+ };
22
29
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
23
30
  hint: {
24
31
  type: __PropType<string>;
@@ -33,7 +40,13 @@ declare const _sfc_main: import("vue").DefineComponent<{
33
40
  type: __PropType<boolean>;
34
41
  required: false;
35
42
  };
43
+ size: {
44
+ type: __PropType<"md" | "lg">;
45
+ required: false;
46
+ default: string;
47
+ };
36
48
  }>>, {
49
+ size: "md" | "lg";
37
50
  indeterminate: boolean;
38
51
  }>;
39
52
  export default _sfc_main;
@@ -0,0 +1,2 @@
1
+ export declare const MaCheckboxSizes: readonly ["md", "lg"];
2
+ export type MaCheckboxSize = (typeof MaCheckboxSizes)[number];
@@ -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;