bm-admin-ui 0.1.1-9 → 1.0.0-alpha

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 (32) hide show
  1. package/.pnpm-debug.log +16 -0
  2. package/es/components/button/index.d.ts +39 -17
  3. package/es/components/button/index.js +18 -9
  4. package/es/components/button/src/button.d.ts +10 -1
  5. package/es/components/button/src/button.vue.d.ts +45 -21
  6. package/es/components/flow-designer/index.js +1 -1
  7. package/es/components/form-designer/index.js +1 -1
  8. package/es/components/search-filter/index.d.ts +19 -5246
  9. package/es/components/search-filter/index.js +2 -2
  10. package/es/components/search-filter/src/search-filter.vue.d.ts +19 -5247
  11. package/es/components/search-filter/src/serach-filter.d.ts +2 -3
  12. package/index.esm.js +22 -13
  13. package/index.js +21 -12
  14. package/lib/components/button/index.d.ts +39 -17
  15. package/lib/components/button/index.js +17 -8
  16. package/lib/components/button/src/button.d.ts +10 -1
  17. package/lib/components/button/src/button.vue.d.ts +45 -21
  18. package/lib/components/flow-designer/index.js +1 -1
  19. package/lib/components/form-designer/index.js +1 -1
  20. package/lib/components/search-filter/index.d.ts +19 -5246
  21. package/lib/components/search-filter/index.js +2 -2
  22. package/lib/components/search-filter/src/search-filter.vue.d.ts +19 -5247
  23. package/lib/components/search-filter/src/serach-filter.d.ts +2 -3
  24. package/package.json +3 -3
  25. package/theme-chalk/button.css +1 -1
  26. package/theme-chalk/index.css +1 -1
  27. package/types/components/button/index.d.ts +39 -17
  28. package/types/components/button/src/button.d.ts +10 -1
  29. package/types/components/button/src/button.vue.d.ts +45 -21
  30. package/types/components/search-filter/index.d.ts +19 -5246
  31. package/types/components/search-filter/src/search-filter.vue.d.ts +19 -5247
  32. package/types/components/search-filter/src/serach-filter.d.ts +2 -3
@@ -1,9 +1,25 @@
1
- declare const _default: import("vue").DefineComponent<Readonly<import("vue").ComponentPropsOptions<{
2
- [x: string]: unknown;
3
- }>>, {
4
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentPropsOptions<{
5
- [x: string]: unknown;
6
- }>>>> & {
1
+ import type { SizeType } from 'ant-design-vue/lib/config-provider';
2
+ import type { ButtonType } from 'ant-design-vue/lib/button';
3
+ declare const _default: import("vue").DefineComponent<{
4
+ size: {
5
+ type: StringConstructor;
6
+ default: string;
7
+ };
8
+ type: {
9
+ type: StringConstructor;
10
+ default: string;
11
+ };
12
+ }, {
13
+ props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
14
+ size: {
15
+ type: StringConstructor;
16
+ default: string;
17
+ };
18
+ type: {
19
+ type: StringConstructor;
20
+ default: string;
21
+ };
22
+ }>> & {
7
23
  [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
8
24
  }>>;
9
25
  AButton: {
@@ -21,7 +37,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
21
37
  };
22
38
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
23
39
  prefixCls: StringConstructor;
24
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
40
+ type: import("vue").PropType<ButtonType>;
25
41
  htmlType: {
26
42
  type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
27
43
  default: string;
@@ -30,7 +46,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
30
46
  type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
31
47
  };
32
48
  size: {
33
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
49
+ type: import("vue").PropType<SizeType>;
34
50
  };
35
51
  loading: {
36
52
  type: import("vue").PropType<boolean | {
@@ -82,7 +98,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
82
98
  $el: any;
83
99
  $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
84
100
  prefixCls: StringConstructor;
85
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
101
+ type: import("vue").PropType<ButtonType>;
86
102
  htmlType: {
87
103
  type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
88
104
  default: string;
@@ -91,7 +107,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
91
107
  type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
92
108
  };
93
109
  size: {
94
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
110
+ type: import("vue").PropType<SizeType>;
95
111
  };
96
112
  loading: {
97
113
  type: import("vue").PropType<boolean | {
@@ -158,7 +174,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
158
174
  $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
159
175
  } & Readonly<import("vue").ExtractPropTypes<{
160
176
  prefixCls: StringConstructor;
161
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
177
+ type: import("vue").PropType<ButtonType>;
162
178
  htmlType: {
163
179
  type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
164
180
  default: string;
@@ -167,7 +183,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
167
183
  type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
168
184
  };
169
185
  size: {
170
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
186
+ type: import("vue").PropType<SizeType>;
171
187
  };
172
188
  loading: {
173
189
  type: import("vue").PropType<boolean | {
@@ -209,7 +225,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
209
225
  __isSuspense?: undefined;
210
226
  } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
211
227
  prefixCls: StringConstructor;
212
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonType>;
228
+ type: import("vue").PropType<ButtonType>;
213
229
  htmlType: {
214
230
  type: import("vue").PropType<import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType>;
215
231
  default: string;
@@ -218,7 +234,7 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
218
234
  type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonShape>;
219
235
  };
220
236
  size: {
221
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
237
+ type: import("vue").PropType<SizeType>;
222
238
  };
223
239
  loading: {
224
240
  type: import("vue").PropType<boolean | {
@@ -267,18 +283,26 @@ declare const _default: import("vue").DefineComponent<Readonly<import("vue").Com
267
283
  readonly Group: import("vue").DefineComponent<{
268
284
  prefixCls: StringConstructor;
269
285
  size: {
270
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
286
+ type: import("vue").PropType<SizeType>;
271
287
  };
272
288
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
273
289
  prefixCls: StringConstructor;
274
290
  size: {
275
- type: import("vue").PropType<import("ant-design-vue/lib/button").ButtonSize>;
291
+ type: import("vue").PropType<SizeType>;
276
292
  };
277
293
  }>>, {}>;
278
294
  };
279
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, readonly string[] | Readonly<import("vue").ExtractPropTypes<Readonly<import("vue").ComponentObjectPropsOptions<{
280
- [x: string]: unknown;
281
- }>>>>, {
282
- [x: number]: string;
283
- } | {}>;
295
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
296
+ size: {
297
+ type: StringConstructor;
298
+ default: string;
299
+ };
300
+ type: {
301
+ type: StringConstructor;
302
+ default: string;
303
+ };
304
+ }>>, {
305
+ type: string;
306
+ size: string;
307
+ }>;
284
308
  export default _default;