bkui-vue 2.0.1-beta.29 → 2.0.1-beta.30

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 (72) hide show
  1. package/dist/index.cjs.js +62 -62
  2. package/dist/index.esm.js +9577 -9514
  3. package/dist/index.umd.js +62 -62
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/alert/alert.d.ts +0 -7
  7. package/lib/alert/index.d.ts +0 -15
  8. package/lib/alert/index.js +0 -1
  9. package/lib/checkbox/checkbox-group.d.ts +0 -16
  10. package/lib/checkbox/index.d.ts +0 -11
  11. package/lib/checkbox/index.js +0 -1
  12. package/lib/date-picker/date-picker.d.ts +0 -9
  13. package/lib/date-picker/index.d.ts +0 -19
  14. package/lib/date-picker/index.js +0 -4
  15. package/lib/date-picker/panel/time-range.d.ts +0 -9
  16. package/lib/date-picker/panel/time.d.ts +0 -9
  17. package/lib/date-picker/props.d.ts +0 -4
  18. package/lib/date-picker/time-picker.d.ts +0 -9
  19. package/lib/dialog/dialog.d.ts +11 -0
  20. package/lib/dialog/index.d.ts +23 -0
  21. package/lib/dialog/props.d.ts +5 -0
  22. package/lib/dropdown/dropdown-item.d.ts +1 -1
  23. package/lib/dropdown/dropdown-menu.d.ts +1 -1
  24. package/lib/dropdown/index.d.ts +2 -2
  25. package/lib/form/form-item.d.ts +0 -16
  26. package/lib/form/index.d.ts +0 -11
  27. package/lib/form/index.js +0 -1
  28. package/lib/index.js +1 -1
  29. package/lib/modal/index.d.ts +28 -0
  30. package/lib/modal/index.js +33 -18
  31. package/lib/modal/modal.d.ts +11 -0
  32. package/lib/modal/props.mixin.d.ts +5 -0
  33. package/lib/pagination/index.d.ts +0 -19
  34. package/lib/pagination/index.js +29 -8
  35. package/lib/pagination/pagination.css +8 -8
  36. package/lib/pagination/pagination.d.ts +0 -13
  37. package/lib/pagination/pagination.less +14 -13
  38. package/lib/pagination/pagination.variable.css +8 -8
  39. package/lib/pop-confirm/index.d.ts +0 -32
  40. package/lib/pop-confirm/index.js +16 -18
  41. package/lib/pop-confirm/pop-confirm.css +3 -1
  42. package/lib/pop-confirm/pop-confirm.d.ts +0 -14
  43. package/lib/pop-confirm/pop-confirm.less +3 -1
  44. package/lib/pop-confirm/pop-confirm.variable.css +3 -1
  45. package/lib/pop-confirm/props.d.ts +1 -7
  46. package/lib/radio/radio-button.d.ts +2 -2
  47. package/lib/radio/radio-group.d.ts +2 -2
  48. package/lib/scrollbar/index.js +1 -1
  49. package/lib/select/index.js +1 -1
  50. package/lib/sideslider/index.d.ts +23 -0
  51. package/lib/sideslider/index.js +1 -0
  52. package/lib/sideslider/sideslider.css +7 -8
  53. package/lib/sideslider/sideslider.d.ts +11 -0
  54. package/lib/sideslider/sideslider.less +7 -8
  55. package/lib/sideslider/sideslider.variable.css +7 -8
  56. package/lib/steps/index.d.ts +0 -15
  57. package/lib/steps/index.js +0 -1
  58. package/lib/steps/steps.d.ts +0 -10
  59. package/lib/table/hooks/use-columns.d.ts +7 -2
  60. package/lib/table/hooks/use-head.d.ts +1 -0
  61. package/lib/table/hooks/use-layout.d.ts +1 -0
  62. package/lib/table/index.js +208 -62
  63. package/lib/table/props.d.ts +11 -2
  64. package/lib/table/table.css +20 -8
  65. package/lib/table/table.less +17 -0
  66. package/lib/table/table.variable.css +20 -8
  67. package/lib/table/utils.d.ts +2 -2
  68. package/lib/table-column/index.js +2 -2
  69. package/lib/time-picker/index.d.ts +0 -19
  70. package/lib/tree/index.js +3 -0
  71. package/lib/tree/props.d.ts +3 -0
  72. package/package.json +1 -1
@@ -2,9 +2,6 @@ declare const _default: import("vue").DefineComponent<{
2
2
  theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "danger" | "warning"> & {
3
3
  default: "" | "info" | "success" | "danger" | "warning";
4
4
  };
5
- size: import("vue-types").VueTypeValidableDef<string> & {
6
- default: string;
7
- };
8
5
  title: import("vue-types").VueTypeValidableDef<string> & {
9
6
  default: string;
10
7
  };
@@ -32,9 +29,6 @@ declare const _default: import("vue").DefineComponent<{
32
29
  theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "danger" | "warning"> & {
33
30
  default: "" | "info" | "success" | "danger" | "warning";
34
31
  };
35
- size: import("vue-types").VueTypeValidableDef<string> & {
36
- default: string;
37
- };
38
32
  title: import("vue-types").VueTypeValidableDef<string> & {
39
33
  default: string;
40
34
  };
@@ -55,7 +49,6 @@ declare const _default: import("vue").DefineComponent<{
55
49
  onClose?: (event: Event) => any;
56
50
  }, {
57
51
  title: string;
58
- size: string;
59
52
  theme: "" | "info" | "success" | "danger" | "warning";
60
53
  closable: boolean;
61
54
  closeText: string;
@@ -3,9 +3,6 @@ declare const BkAlert: {
3
3
  theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "danger" | "warning"> & {
4
4
  default: "" | "info" | "success" | "danger" | "warning";
5
5
  };
6
- size: import("vue-types").VueTypeValidableDef<string> & {
7
- default: string;
8
- };
9
6
  title: import("vue-types").VueTypeValidableDef<string> & {
10
7
  default: string;
11
8
  };
@@ -35,9 +32,6 @@ declare const BkAlert: {
35
32
  theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "danger" | "warning"> & {
36
33
  default: "" | "info" | "success" | "danger" | "warning";
37
34
  };
38
- size: import("vue-types").VueTypeValidableDef<string> & {
39
- default: string;
40
- };
41
35
  title: import("vue-types").VueTypeValidableDef<string> & {
42
36
  default: string;
43
37
  };
@@ -58,7 +52,6 @@ declare const BkAlert: {
58
52
  onClose?: (event: Event) => any;
59
53
  }, {
60
54
  title: string;
61
- size: string;
62
55
  theme: "" | "info" | "success" | "danger" | "warning";
63
56
  closable: boolean;
64
57
  closeText: string;
@@ -74,9 +67,6 @@ declare const BkAlert: {
74
67
  theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "danger" | "warning"> & {
75
68
  default: "" | "info" | "success" | "danger" | "warning";
76
69
  };
77
- size: import("vue-types").VueTypeValidableDef<string> & {
78
- default: string;
79
- };
80
70
  title: import("vue-types").VueTypeValidableDef<string> & {
81
71
  default: string;
82
72
  };
@@ -102,7 +92,6 @@ declare const BkAlert: {
102
92
  handleClose: (event: Event) => void;
103
93
  }, {}, {}, {}, {
104
94
  title: string;
105
- size: string;
106
95
  theme: "" | "info" | "success" | "danger" | "warning";
107
96
  closable: boolean;
108
97
  closeText: string;
@@ -115,9 +104,6 @@ declare const BkAlert: {
115
104
  theme: import("vue-types").VueTypeDef<"" | "info" | "success" | "danger" | "warning"> & {
116
105
  default: "" | "info" | "success" | "danger" | "warning";
117
106
  };
118
- size: import("vue-types").VueTypeValidableDef<string> & {
119
- default: string;
120
- };
121
107
  title: import("vue-types").VueTypeValidableDef<string> & {
122
108
  default: string;
123
109
  };
@@ -145,7 +131,6 @@ declare const BkAlert: {
145
131
  close: (event: Event) => Event;
146
132
  }, string, {
147
133
  title: string;
148
- size: string;
149
134
  theme: "" | "info" | "success" | "danger" | "warning";
150
135
  closable: boolean;
151
136
  closeText: string;
@@ -130,7 +130,6 @@ const icon_namespaceObject = icon_x({ ["CloseLine"]: () => __WEBPACK_EXTERNAL_MO
130
130
  name: 'Alert',
131
131
  props: {
132
132
  theme: (0,shared_namespaceObject.TagThemeType)().def(shared_namespaceObject.TagThemeEnum.INFO),
133
- size: shared_namespaceObject.PropTypes.string,
134
133
  title: shared_namespaceObject.PropTypes.string,
135
134
  closable: shared_namespaceObject.PropTypes.bool.def(false),
136
135
  closeText: shared_namespaceObject.PropTypes.string,
@@ -1,10 +1,5 @@
1
1
  import type { ExtractPropTypes } from 'vue';
2
2
  declare const checkboxGroupProps: {
3
- name: import("vue-types").VueTypeValidableDef<string> & {
4
- default: string;
5
- } & {
6
- default: string;
7
- };
8
3
  modelValue: import("vue-types").VueTypeValidableDef<unknown[]> & {
9
4
  default: () => unknown[];
10
5
  };
@@ -19,11 +14,6 @@ declare const checkboxGroupProps: {
19
14
  };
20
15
  export type CheckboxGroupProps = Readonly<ExtractPropTypes<typeof checkboxGroupProps>>;
21
16
  declare const _default: import("vue").DefineComponent<{
22
- name: import("vue-types").VueTypeValidableDef<string> & {
23
- default: string;
24
- } & {
25
- default: string;
26
- };
27
17
  modelValue: import("vue-types").VueTypeValidableDef<unknown[]> & {
28
18
  default: () => unknown[];
29
19
  };
@@ -41,11 +31,6 @@ declare const _default: import("vue").DefineComponent<{
41
31
  'update:modelValue': (value: any[]) => boolean;
42
32
  change: (value: any[]) => boolean;
43
33
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<ExtractPropTypes<{
44
- name: import("vue-types").VueTypeValidableDef<string> & {
45
- default: string;
46
- } & {
47
- default: string;
48
- };
49
34
  modelValue: import("vue-types").VueTypeValidableDef<unknown[]> & {
50
35
  default: () => unknown[];
51
36
  };
@@ -61,7 +46,6 @@ declare const _default: import("vue").DefineComponent<{
61
46
  onChange?: (value: any[]) => any;
62
47
  "onUpdate:modelValue"?: (value: any[]) => any;
63
48
  }, {
64
- name: string;
65
49
  disabled: boolean;
66
50
  modelValue: unknown[];
67
51
  withValidate: boolean;
@@ -233,11 +233,6 @@ declare const BkCheckbox: {
233
233
  immediateEmitChange: boolean;
234
234
  }, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]> & Readonly<{
235
235
  Group: import("vue").DefineComponent<{
236
- name: import("vue-types").VueTypeValidableDef<string> & {
237
- default: string;
238
- } & {
239
- default: string;
240
- };
241
236
  modelValue: import("vue-types").VueTypeValidableDef<unknown[]> & {
242
237
  default: () => unknown[];
243
238
  };
@@ -255,11 +250,6 @@ declare const BkCheckbox: {
255
250
  'update:modelValue': (value: any[]) => boolean;
256
251
  change: (value: any[]) => boolean;
257
252
  }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
258
- name: import("vue-types").VueTypeValidableDef<string> & {
259
- default: string;
260
- } & {
261
- default: string;
262
- };
263
253
  modelValue: import("vue-types").VueTypeValidableDef<unknown[]> & {
264
254
  default: () => unknown[];
265
255
  };
@@ -275,7 +265,6 @@ declare const BkCheckbox: {
275
265
  onChange?: (value: any[]) => any;
276
266
  "onUpdate:modelValue"?: (value: any[]) => any;
277
267
  }, {
278
- name: string;
279
268
  disabled: boolean;
280
269
  modelValue: unknown[];
281
270
  withValidate: boolean;
@@ -463,7 +463,6 @@ var checkboxProps = {
463
463
 
464
464
 
465
465
  var checkboxGroupProps = {
466
- name: shared_namespaceObject.PropTypes.string.def(''),
467
466
  modelValue: shared_namespaceObject.PropTypes.array,
468
467
  disabled: shared_namespaceObject.PropTypes.bool,
469
468
  withValidate: shared_namespaceObject.PropTypes.bool.def(true)
@@ -53,10 +53,6 @@ declare const _default: import("vue").DefineComponent<{
53
53
  readonly default: "bottom-start";
54
54
  readonly validator: (value: any) => boolean;
55
55
  };
56
- readonly transfer: {
57
- readonly type: BooleanConstructor;
58
- readonly default: false;
59
- };
60
56
  readonly appendToBody: {
61
57
  readonly type: BooleanConstructor;
62
58
  readonly default: false;
@@ -225,10 +221,6 @@ declare const _default: import("vue").DefineComponent<{
225
221
  readonly default: "bottom-start";
226
222
  readonly validator: (value: any) => boolean;
227
223
  };
228
- readonly transfer: {
229
- readonly type: BooleanConstructor;
230
- readonly default: false;
231
- };
232
224
  readonly appendToBody: {
233
225
  readonly type: BooleanConstructor;
234
226
  readonly default: false;
@@ -307,7 +299,6 @@ declare const _default: import("vue").DefineComponent<{
307
299
  readonly open: boolean;
308
300
  readonly multiple: boolean;
309
301
  readonly placeholder: string;
310
- readonly transfer: boolean;
311
302
  readonly behavior: "normal" | "simplicity";
312
303
  readonly clearable: boolean;
313
304
  readonly readonly: boolean;
@@ -53,10 +53,6 @@ declare const BkDatePicker: {
53
53
  readonly default: "bottom-start";
54
54
  readonly validator: (value: any) => boolean;
55
55
  };
56
- readonly transfer: {
57
- readonly type: BooleanConstructor;
58
- readonly default: false;
59
- };
60
56
  readonly appendToBody: {
61
57
  readonly type: BooleanConstructor;
62
58
  readonly default: false;
@@ -234,10 +230,6 @@ declare const BkDatePicker: {
234
230
  readonly default: "bottom-start";
235
231
  readonly validator: (value: any) => boolean;
236
232
  };
237
- readonly transfer: {
238
- readonly type: BooleanConstructor;
239
- readonly default: false;
240
- };
241
233
  readonly appendToBody: {
242
234
  readonly type: BooleanConstructor;
243
235
  readonly default: false;
@@ -316,7 +308,6 @@ declare const BkDatePicker: {
316
308
  readonly open: boolean;
317
309
  readonly multiple: boolean;
318
310
  readonly placeholder: string;
319
- readonly transfer: boolean;
320
311
  readonly behavior: "normal" | "simplicity";
321
312
  readonly clearable: boolean;
322
313
  readonly readonly: boolean;
@@ -402,10 +393,6 @@ declare const BkDatePicker: {
402
393
  readonly default: "bottom-start";
403
394
  readonly validator: (value: any) => boolean;
404
395
  };
405
- readonly transfer: {
406
- readonly type: BooleanConstructor;
407
- readonly default: false;
408
- };
409
396
  readonly appendToBody: {
410
397
  readonly type: BooleanConstructor;
411
398
  readonly default: false;
@@ -539,7 +526,6 @@ declare const BkDatePicker: {
539
526
  readonly open: boolean;
540
527
  readonly multiple: boolean;
541
528
  readonly placeholder: string;
542
- readonly transfer: boolean;
543
529
  readonly behavior: "normal" | "simplicity";
544
530
  readonly clearable: boolean;
545
531
  readonly readonly: boolean;
@@ -614,10 +600,6 @@ declare const BkDatePicker: {
614
600
  readonly default: "bottom-start";
615
601
  readonly validator: (value: any) => boolean;
616
602
  };
617
- readonly transfer: {
618
- readonly type: BooleanConstructor;
619
- readonly default: false;
620
- };
621
603
  readonly appendToBody: {
622
604
  readonly type: BooleanConstructor;
623
605
  readonly default: false;
@@ -751,7 +733,6 @@ declare const BkDatePicker: {
751
733
  readonly open: boolean;
752
734
  readonly multiple: boolean;
753
735
  readonly placeholder: string;
754
- readonly transfer: boolean;
755
736
  readonly behavior: "normal" | "simplicity";
756
737
  readonly clearable: boolean;
757
738
  readonly readonly: boolean;
@@ -2039,10 +2039,6 @@ var datePickerProps = {
2039
2039
  return true;
2040
2040
  }
2041
2041
  },
2042
- transfer: {
2043
- type: Boolean,
2044
- "default": false
2045
- },
2046
2042
  appendToBody: {
2047
2043
  type: Boolean,
2048
2044
  "default": false
@@ -121,10 +121,6 @@ declare const _default: import("vue").DefineComponent<{
121
121
  readonly default: "bottom-start";
122
122
  readonly validator: (value: any) => boolean;
123
123
  };
124
- transfer: {
125
- readonly type: BooleanConstructor;
126
- readonly default: false;
127
- };
128
124
  appendToBody: {
129
125
  readonly type: BooleanConstructor;
130
126
  readonly default: false;
@@ -413,10 +409,6 @@ declare const _default: import("vue").DefineComponent<{
413
409
  readonly default: "bottom-start";
414
410
  readonly validator: (value: any) => boolean;
415
411
  };
416
- transfer: {
417
- readonly type: BooleanConstructor;
418
- readonly default: false;
419
- };
420
412
  appendToBody: {
421
413
  readonly type: BooleanConstructor;
422
414
  readonly default: false;
@@ -483,7 +475,6 @@ declare const _default: import("vue").DefineComponent<{
483
475
  open: boolean;
484
476
  multiple: boolean;
485
477
  placeholder: string;
486
- transfer: boolean;
487
478
  steps: number[];
488
479
  behavior: "normal" | "simplicity";
489
480
  clearable: boolean;
@@ -129,10 +129,6 @@ declare const _default: import("vue").DefineComponent<{
129
129
  readonly default: "bottom-start";
130
130
  readonly validator: (value: any) => boolean;
131
131
  };
132
- transfer: {
133
- readonly type: BooleanConstructor;
134
- readonly default: false;
135
- };
136
132
  appendToBody: {
137
133
  readonly type: BooleanConstructor;
138
134
  readonly default: false;
@@ -363,10 +359,6 @@ declare const _default: import("vue").DefineComponent<{
363
359
  readonly default: "bottom-start";
364
360
  readonly validator: (value: any) => boolean;
365
361
  };
366
- transfer: {
367
- readonly type: BooleanConstructor;
368
- readonly default: false;
369
- };
370
362
  appendToBody: {
371
363
  readonly type: BooleanConstructor;
372
364
  readonly default: false;
@@ -436,7 +428,6 @@ declare const _default: import("vue").DefineComponent<{
436
428
  open: boolean;
437
429
  multiple: boolean;
438
430
  placeholder: string;
439
- transfer: boolean;
440
431
  steps: number[];
441
432
  confirm: boolean;
442
433
  behavior: "normal" | "simplicity";
@@ -54,10 +54,6 @@ export declare const datePickerProps: {
54
54
  readonly default: "bottom-start";
55
55
  readonly validator: (value: any) => boolean;
56
56
  };
57
- readonly transfer: {
58
- readonly type: BooleanConstructor;
59
- readonly default: false;
60
- };
61
57
  readonly appendToBody: {
62
58
  readonly type: BooleanConstructor;
63
59
  readonly default: false;
@@ -81,10 +81,6 @@ declare const _default: import("vue").DefineComponent<{
81
81
  readonly default: "bottom-start";
82
82
  readonly validator: (value: any) => boolean;
83
83
  };
84
- transfer: {
85
- readonly type: BooleanConstructor;
86
- readonly default: false;
87
- };
88
84
  appendToBody: {
89
85
  readonly type: BooleanConstructor;
90
86
  readonly default: false;
@@ -281,10 +277,6 @@ declare const _default: import("vue").DefineComponent<{
281
277
  readonly default: "bottom-start";
282
278
  readonly validator: (value: any) => boolean;
283
279
  };
284
- transfer: {
285
- readonly type: BooleanConstructor;
286
- readonly default: false;
287
- };
288
280
  appendToBody: {
289
281
  readonly type: BooleanConstructor;
290
282
  readonly default: false;
@@ -359,7 +351,6 @@ declare const _default: import("vue").DefineComponent<{
359
351
  open: boolean;
360
352
  multiple: boolean;
361
353
  placeholder: string;
362
- transfer: boolean;
363
354
  behavior: "normal" | "simplicity";
364
355
  clearable: boolean;
365
356
  readonly: boolean;
@@ -99,6 +99,11 @@ declare const _default: import("vue").DefineComponent<{
99
99
  extCls: import("vue-types").VueTypeValidableDef<string> & {
100
100
  default: string;
101
101
  };
102
+ backgroundColor: import("vue-types").VueTypeValidableDef<string> & {
103
+ default: string;
104
+ } & {
105
+ default: string;
106
+ };
102
107
  }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
103
108
  closed: () => true;
104
109
  shown: () => true;
@@ -208,6 +213,11 @@ declare const _default: import("vue").DefineComponent<{
208
213
  extCls: import("vue-types").VueTypeValidableDef<string> & {
209
214
  default: string;
210
215
  };
216
+ backgroundColor: import("vue-types").VueTypeValidableDef<string> & {
217
+ default: string;
218
+ } & {
219
+ default: string;
220
+ };
211
221
  }>> & {
212
222
  onHidden?: () => any;
213
223
  onShown?: () => any;
@@ -224,6 +234,7 @@ declare const _default: import("vue").DefineComponent<{
224
234
  isShow: boolean;
225
235
  draggable: boolean;
226
236
  transfer: string | boolean | HTMLElement;
237
+ backgroundColor: string;
227
238
  renderDirective: "show" | "if";
228
239
  fullscreen: boolean;
229
240
  showMask: boolean;
@@ -100,6 +100,11 @@ declare const BkDialog: {
100
100
  extCls: import("vue-types").VueTypeValidableDef<string> & {
101
101
  default: string;
102
102
  };
103
+ backgroundColor: import("vue-types").VueTypeValidableDef<string> & {
104
+ default: string;
105
+ } & {
106
+ default: string;
107
+ };
103
108
  }>> & {
104
109
  onHidden?: () => any;
105
110
  onShown?: () => any;
@@ -217,6 +222,11 @@ declare const BkDialog: {
217
222
  extCls: import("vue-types").VueTypeValidableDef<string> & {
218
223
  default: string;
219
224
  };
225
+ backgroundColor: import("vue-types").VueTypeValidableDef<string> & {
226
+ default: string;
227
+ } & {
228
+ default: string;
229
+ };
220
230
  }>> & {
221
231
  onHidden?: () => any;
222
232
  onShown?: () => any;
@@ -233,6 +243,7 @@ declare const BkDialog: {
233
243
  isShow: boolean;
234
244
  draggable: boolean;
235
245
  transfer: string | boolean | HTMLElement;
246
+ backgroundColor: string;
236
247
  renderDirective: "show" | "if";
237
248
  fullscreen: boolean;
238
249
  showMask: boolean;
@@ -359,6 +370,11 @@ declare const BkDialog: {
359
370
  extCls: import("vue-types").VueTypeValidableDef<string> & {
360
371
  default: string;
361
372
  };
373
+ backgroundColor: import("vue-types").VueTypeValidableDef<string> & {
374
+ default: string;
375
+ } & {
376
+ default: string;
377
+ };
362
378
  }>> & {
363
379
  onHidden?: () => any;
364
380
  onShown?: () => any;
@@ -375,6 +391,7 @@ declare const BkDialog: {
375
391
  isShow: boolean;
376
392
  draggable: boolean;
377
393
  transfer: string | boolean | HTMLElement;
394
+ backgroundColor: string;
378
395
  renderDirective: "show" | "if";
379
396
  fullscreen: boolean;
380
397
  showMask: boolean;
@@ -498,6 +515,11 @@ declare const BkDialog: {
498
515
  extCls: import("vue-types").VueTypeValidableDef<string> & {
499
516
  default: string;
500
517
  };
518
+ backgroundColor: import("vue-types").VueTypeValidableDef<string> & {
519
+ default: string;
520
+ } & {
521
+ default: string;
522
+ };
501
523
  }>> & {
502
524
  onHidden?: () => any;
503
525
  onShown?: () => any;
@@ -522,6 +544,7 @@ declare const BkDialog: {
522
544
  isShow: boolean;
523
545
  draggable: boolean;
524
546
  transfer: string | boolean | HTMLElement;
547
+ backgroundColor: string;
525
548
  renderDirective: "show" | "if";
526
549
  fullscreen: boolean;
527
550
  showMask: boolean;
@@ -99,5 +99,10 @@ declare const props: {
99
99
  extCls: import("vue-types").VueTypeValidableDef<string> & {
100
100
  default: string;
101
101
  };
102
+ backgroundColor: import("vue-types").VueTypeValidableDef<string> & {
103
+ default: string;
104
+ } & {
105
+ default: string;
106
+ };
102
107
  };
103
108
  export default props;
@@ -4,7 +4,7 @@ declare const _default: import("vue").DefineComponent<{
4
4
  default: string;
5
5
  };
6
6
  }, {
7
- wrapperCLasses: import("vue").ComputedRef<any[]>;
7
+ wrapperCLasses: import("vue").ComputedRef<string[]>;
8
8
  handleClick: (evt: MouseEvent) => void;
9
9
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
10
10
  /** 外部设置的 class name */
@@ -4,7 +4,7 @@ declare const _default: import("vue").DefineComponent<{
4
4
  default: string;
5
5
  };
6
6
  }, {
7
- wrapperCLasses: import("vue").ComputedRef<any[]>;
7
+ wrapperCLasses: import("vue").ComputedRef<string[]>;
8
8
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
9
9
  /** 外部设置的 class name */
10
10
  extCls: import("vue-types").VueTypeValidableDef<string> & {
@@ -200,7 +200,7 @@ declare const BkDropdown: {
200
200
  default: string;
201
201
  };
202
202
  }, {
203
- wrapperCLasses: import("vue").ComputedRef<any[]>;
203
+ wrapperCLasses: import("vue").ComputedRef<string[]>;
204
204
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
205
205
  extCls: import("vue-types").VueTypeValidableDef<string> & {
206
206
  default: string;
@@ -213,7 +213,7 @@ declare const BkDropdown: {
213
213
  default: string;
214
214
  };
215
215
  }, {
216
- wrapperCLasses: import("vue").ComputedRef<any[]>;
216
+ wrapperCLasses: import("vue").ComputedRef<string[]>;
217
217
  handleClick: (evt: MouseEvent) => void;
218
218
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "click"[], "click", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
219
219
  extCls: import("vue-types").VueTypeValidableDef<string> & {
@@ -32,11 +32,6 @@ declare const formItemProps: {
32
32
  rules: import("vue-types").VueTypeValidableDef<unknown[]> & {
33
33
  default: () => unknown[];
34
34
  };
35
- autoCheck: import("vue-types").VueTypeValidableDef<boolean> & {
36
- default: boolean;
37
- } & {
38
- default: boolean;
39
- };
40
35
  description: import("vue-types").VueTypeValidableDef<string> & {
41
36
  default: string;
42
37
  };
@@ -78,11 +73,6 @@ declare const _default: import("vue").DefineComponent<{
78
73
  rules: import("vue-types").VueTypeValidableDef<unknown[]> & {
79
74
  default: () => unknown[];
80
75
  };
81
- autoCheck: import("vue-types").VueTypeValidableDef<boolean> & {
82
- default: boolean;
83
- } & {
84
- default: boolean;
85
- };
86
76
  description: import("vue-types").VueTypeValidableDef<string> & {
87
77
  default: string;
88
78
  };
@@ -134,11 +124,6 @@ declare const _default: import("vue").DefineComponent<{
134
124
  rules: import("vue-types").VueTypeValidableDef<unknown[]> & {
135
125
  default: () => unknown[];
136
126
  };
137
- autoCheck: import("vue-types").VueTypeValidableDef<boolean> & {
138
- default: boolean;
139
- } & {
140
- default: boolean;
141
- };
142
127
  description: import("vue-types").VueTypeValidableDef<string> & {
143
128
  default: string;
144
129
  };
@@ -154,7 +139,6 @@ declare const _default: import("vue").DefineComponent<{
154
139
  min: number;
155
140
  maxlength: number;
156
141
  rules: unknown[];
157
- autoCheck: boolean;
158
142
  description: string;
159
143
  errorDisplayType: string;
160
144
  }, {}>;
@@ -206,11 +206,6 @@ declare const BkForm: {
206
206
  rules: import("vue-types").VueTypeValidableDef<unknown[]> & {
207
207
  default: () => unknown[];
208
208
  };
209
- autoCheck: import("vue-types").VueTypeValidableDef<boolean> & {
210
- default: boolean;
211
- } & {
212
- default: boolean;
213
- };
214
209
  description: import("vue-types").VueTypeValidableDef<string> & {
215
210
  default: string;
216
211
  };
@@ -262,11 +257,6 @@ declare const BkForm: {
262
257
  rules: import("vue-types").VueTypeValidableDef<unknown[]> & {
263
258
  default: () => unknown[];
264
259
  };
265
- autoCheck: import("vue-types").VueTypeValidableDef<boolean> & {
266
- default: boolean;
267
- } & {
268
- default: boolean;
269
- };
270
260
  description: import("vue-types").VueTypeValidableDef<string> & {
271
261
  default: string;
272
262
  };
@@ -282,7 +272,6 @@ declare const BkForm: {
282
272
  min: number;
283
273
  maxlength: number;
284
274
  rules: unknown[];
285
- autoCheck: boolean;
286
275
  description: string;
287
276
  errorDisplayType: string;
288
277
  }, {}>;
package/lib/form/index.js CHANGED
@@ -579,7 +579,6 @@ var formItemProps = {
579
579
  min: shared_namespaceObject.PropTypes.number,
580
580
  maxlength: shared_namespaceObject.PropTypes.number,
581
581
  rules: shared_namespaceObject.PropTypes.array,
582
- autoCheck: shared_namespaceObject.PropTypes.bool.def(false),
583
582
  description: shared_namespaceObject.PropTypes.string,
584
583
  errorDisplayType: shared_namespaceObject.PropTypes.oneOf(['tooltips', 'normal']).def('normal')
585
584
  };
package/lib/index.js CHANGED
@@ -4,5 +4,5 @@ export { default } from './preset';
4
4
  export * from './config-provider';
5
5
  export * from './directives';
6
6
  export * as plugins from './plugins';
7
- export const version = "2.0.1-beta.29";
7
+ export const version = "2.0.1-beta.30";
8
8
  window.__bkui_vue_version__ = version;