bkui-vue 0.0.1-beta.56 → 0.0.1-beta.59

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 (81) hide show
  1. package/dist/index.cjs.js +28 -28
  2. package/dist/index.esm.js +980 -459
  3. package/dist/index.umd.js +27 -27
  4. package/dist/style.css +1 -1
  5. package/lib/breadcrumb/breadcrumb.css +8 -0
  6. package/lib/breadcrumb/breadcrumb.variable.css +8 -0
  7. package/lib/button/button.less +2 -1
  8. package/lib/card/card.css +16 -8
  9. package/lib/card/card.less +12 -8
  10. package/lib/card/card.variable.css +16 -8
  11. package/lib/components.d.ts +1 -0
  12. package/lib/components.js +1 -1
  13. package/lib/container/col.d.ts +51 -0
  14. package/lib/container/container.css +48 -0
  15. package/lib/container/container.d.ts +83 -0
  16. package/lib/container/container.less +20 -0
  17. package/lib/container/container.variable.css +142 -0
  18. package/lib/container/index.d.ts +223 -0
  19. package/lib/container/index.js +1 -0
  20. package/lib/container/row.d.ts +4 -0
  21. package/lib/dialog/dialog.css +6 -0
  22. package/lib/dialog/dialog.d.ts +170 -97
  23. package/lib/dialog/dialog.less +10 -0
  24. package/lib/dialog/dialog.variable.css +6 -0
  25. package/lib/dialog/index.d.ts +373 -206
  26. package/lib/dialog/index.js +1 -1
  27. package/lib/icon/close-line.d.ts +4 -0
  28. package/lib/icon/{funnel.js → close-line.js} +1 -1
  29. package/lib/icon/help-document-fill.js +1 -0
  30. package/lib/icon/index.d.ts +1 -0
  31. package/lib/icon/index.js +1 -1
  32. package/lib/input/index.js +1 -1
  33. package/lib/input/input.css +9 -0
  34. package/lib/input/input.less +2 -0
  35. package/lib/input/input.variable.css +9 -0
  36. package/lib/loading/loading.css +8 -0
  37. package/lib/loading/loading.variable.css +8 -0
  38. package/lib/menu/menu.css +8 -0
  39. package/lib/menu/menu.variable.css +8 -0
  40. package/lib/modal/index.d.ts +177 -165
  41. package/lib/modal/index.js +1 -1
  42. package/lib/modal/modal.d.ts +70 -65
  43. package/lib/modal/props.mixin.d.ts +34 -31
  44. package/lib/pagination/index.d.ts +7 -7
  45. package/lib/pagination/pagination.d.ts +2 -2
  46. package/lib/progress/progress.css +8 -0
  47. package/lib/progress/progress.variable.css +8 -0
  48. package/lib/sideslider/index.d.ts +143 -134
  49. package/lib/sideslider/sideslider.d.ts +70 -65
  50. package/lib/styles/index.d.ts +1 -0
  51. package/lib/styles/mixins/clearfix.css +8 -0
  52. package/lib/styles/mixins/clearfix.less +10 -0
  53. package/lib/styles/mixins/clearfix.variable.css +8 -0
  54. package/lib/styles/mixins/mixins.css +8 -0
  55. package/lib/styles/mixins/mixins.less +1 -0
  56. package/lib/styles/mixins/mixins.variable.css +8 -0
  57. package/lib/switcher/switcher.css +8 -0
  58. package/lib/switcher/switcher.variable.css +8 -0
  59. package/lib/tab/index.d.ts +1 -1
  60. package/lib/tab/tab-panel.d.ts +1 -1
  61. package/lib/table/index.d.ts +16 -1
  62. package/lib/table/index.js +1 -1
  63. package/lib/table/plugins/settings.css +110 -0
  64. package/lib/table/plugins/settings.less +136 -0
  65. package/lib/table/plugins/settings.variable.css +204 -0
  66. package/lib/table/props.d.ts +26 -0
  67. package/lib/table/render.d.ts +12 -2
  68. package/lib/table/table.css +129 -0
  69. package/lib/table/table.d.ts +7 -0
  70. package/lib/table/table.less +28 -0
  71. package/lib/table/table.variable.css +129 -0
  72. package/lib/table/use-common.d.ts +4 -1
  73. package/lib/tree/index.d.ts +31 -52
  74. package/lib/tree/index.js +1 -1
  75. package/lib/tree/props.d.ts +10 -0
  76. package/lib/tree/tree.d.ts +14 -17
  77. package/lib/tree/use-async.d.ts +5 -0
  78. package/lib/tree/use-node-action.d.ts +6 -0
  79. package/lib/tree/use-node-attribute.d.ts +13 -0
  80. package/lib/virtual-render/index.js +1 -1
  81. package/package.json +4 -4
@@ -3,11 +3,11 @@ declare const BkSideslider: {
3
3
  $: import("vue").ComponentInternalInstance;
4
4
  $data: {};
5
5
  $props: Partial<{
6
- width: string | number;
7
- height: string | number;
6
+ draggable: boolean;
8
7
  showMask: boolean;
9
8
  size: string;
10
9
  direction: string;
10
+ dialogType: string;
11
11
  isShow: boolean;
12
12
  customClass: string | unknown[];
13
13
  scrollable: boolean;
@@ -15,67 +15,69 @@ declare const BkSideslider: {
15
15
  escClose: boolean;
16
16
  maskClose: boolean;
17
17
  fullscreen: boolean;
18
- renderDirective: string;
19
18
  }> & Omit<Readonly<import("vue").ExtractPropTypes<{
20
19
  direction: {
21
20
  type: StringConstructor;
22
21
  default: string;
23
22
  validator: (value: string) => boolean;
24
23
  };
25
- isShow: {
26
- type: BooleanConstructor;
24
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
25
+ default: boolean;
26
+ } & {
27
27
  default: boolean;
28
28
  };
29
- width: {
30
- type: (NumberConstructor | StringConstructor)[];
31
- default: string;
32
- };
33
- height: {
34
- type: (NumberConstructor | StringConstructor)[];
35
- default: string;
36
- };
37
- customClass: {
38
- type: (ArrayConstructor | StringConstructor)[];
29
+ width: import("vue-types").VueTypeDef<string | number>;
30
+ height: import("vue-types").VueTypeDef<string | number>;
31
+ customClass: (import("vue-types").VueTypeValidableDef<string> & {
39
32
  default: string;
40
- };
41
- scrollable: {
42
- type: BooleanConstructor;
33
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
34
+ default: () => unknown[];
35
+ });
36
+ scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
37
+ default: boolean;
38
+ } & {
43
39
  default: boolean;
44
40
  };
45
- showMask: {
46
- type: BooleanConstructor;
41
+ showMask: import("vue-types").VueTypeValidableDef<boolean> & {
42
+ default: boolean;
43
+ } & {
47
44
  default: boolean;
48
45
  };
49
- closeIcon: {
50
- type: BooleanConstructor;
46
+ closeIcon: import("vue-types").VueTypeValidableDef<boolean> & {
47
+ default: boolean;
48
+ } & {
51
49
  default: boolean;
52
50
  };
53
- escClose: {
54
- type: BooleanConstructor;
51
+ escClose: import("vue-types").VueTypeValidableDef<boolean> & {
52
+ default: boolean;
53
+ } & {
55
54
  default: boolean;
56
55
  };
57
- maskClose: {
58
- type: BooleanConstructor;
56
+ maskClose: import("vue-types").VueTypeValidableDef<boolean> & {
57
+ default: boolean;
58
+ } & {
59
59
  default: boolean;
60
60
  };
61
- fullscreen: {
62
- type: BooleanConstructor;
61
+ fullscreen: import("vue-types").VueTypeValidableDef<boolean> & {
62
+ default: boolean;
63
+ } & {
63
64
  default: boolean;
64
65
  };
65
- size: {
66
- type: StringConstructor;
66
+ size: import("vue-types").VueTypeDef<string> & {
67
67
  default: string;
68
- validator: (value: string) => boolean;
69
68
  };
70
- renderDirective: {
71
- type: StringConstructor;
69
+ draggable: import("vue-types").VueTypeValidableDef<boolean> & {
70
+ default: boolean;
71
+ } & {
72
+ default: boolean;
73
+ };
74
+ dialogType: import("vue-types").VueTypeDef<string> & {
72
75
  default: string;
73
- validator: (value: string) => boolean;
74
76
  };
75
77
  }>> & {
76
78
  onClosed?: (...args: any[]) => any;
77
79
  "onUpdate:isShow"?: (...args: any[]) => any;
78
- } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "width" | "height" | "showMask" | "size" | "direction" | "isShow" | "customClass" | "scrollable" | "closeIcon" | "escClose" | "maskClose" | "fullscreen" | "renderDirective">;
80
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "draggable" | "showMask" | "size" | "direction" | "dialogType" | "isShow" | "customClass" | "scrollable" | "closeIcon" | "escClose" | "maskClose" | "fullscreen">;
79
81
  $attrs: {
80
82
  [x: string]: unknown;
81
83
  };
@@ -95,55 +97,58 @@ declare const BkSideslider: {
95
97
  default: string;
96
98
  validator: (value: string) => boolean;
97
99
  };
98
- isShow: {
99
- type: BooleanConstructor;
100
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
101
+ default: boolean;
102
+ } & {
100
103
  default: boolean;
101
104
  };
102
- width: {
103
- type: (NumberConstructor | StringConstructor)[];
104
- default: string;
105
- };
106
- height: {
107
- type: (NumberConstructor | StringConstructor)[];
108
- default: string;
109
- };
110
- customClass: {
111
- type: (ArrayConstructor | StringConstructor)[];
105
+ width: import("vue-types").VueTypeDef<string | number>;
106
+ height: import("vue-types").VueTypeDef<string | number>;
107
+ customClass: (import("vue-types").VueTypeValidableDef<string> & {
112
108
  default: string;
113
- };
114
- scrollable: {
115
- type: BooleanConstructor;
109
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
110
+ default: () => unknown[];
111
+ });
112
+ scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
113
+ default: boolean;
114
+ } & {
116
115
  default: boolean;
117
116
  };
118
- showMask: {
119
- type: BooleanConstructor;
117
+ showMask: import("vue-types").VueTypeValidableDef<boolean> & {
118
+ default: boolean;
119
+ } & {
120
120
  default: boolean;
121
121
  };
122
- closeIcon: {
123
- type: BooleanConstructor;
122
+ closeIcon: import("vue-types").VueTypeValidableDef<boolean> & {
123
+ default: boolean;
124
+ } & {
124
125
  default: boolean;
125
126
  };
126
- escClose: {
127
- type: BooleanConstructor;
127
+ escClose: import("vue-types").VueTypeValidableDef<boolean> & {
128
+ default: boolean;
129
+ } & {
128
130
  default: boolean;
129
131
  };
130
- maskClose: {
131
- type: BooleanConstructor;
132
+ maskClose: import("vue-types").VueTypeValidableDef<boolean> & {
133
+ default: boolean;
134
+ } & {
132
135
  default: boolean;
133
136
  };
134
- fullscreen: {
135
- type: BooleanConstructor;
137
+ fullscreen: import("vue-types").VueTypeValidableDef<boolean> & {
138
+ default: boolean;
139
+ } & {
136
140
  default: boolean;
137
141
  };
138
- size: {
139
- type: StringConstructor;
142
+ size: import("vue-types").VueTypeDef<string> & {
140
143
  default: string;
141
- validator: (value: string) => boolean;
142
144
  };
143
- renderDirective: {
144
- type: StringConstructor;
145
+ draggable: import("vue-types").VueTypeValidableDef<boolean> & {
146
+ default: boolean;
147
+ } & {
148
+ default: boolean;
149
+ };
150
+ dialogType: import("vue-types").VueTypeDef<string> & {
145
151
  default: string;
146
- validator: (value: string) => boolean;
147
152
  };
148
153
  }>> & {
149
154
  onClosed?: (...args: any[]) => any;
@@ -151,11 +156,11 @@ declare const BkSideslider: {
151
156
  }, unknown, unknown, {}, {
152
157
  handleClose(): void;
153
158
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closed" | "update:isShow")[], string, {
154
- width: string | number;
155
- height: string | number;
159
+ draggable: boolean;
156
160
  showMask: boolean;
157
161
  size: string;
158
162
  direction: string;
163
+ dialogType: string;
159
164
  isShow: boolean;
160
165
  customClass: string | unknown[];
161
166
  scrollable: boolean;
@@ -163,7 +168,6 @@ declare const BkSideslider: {
163
168
  escClose: boolean;
164
169
  maskClose: boolean;
165
170
  fullscreen: boolean;
166
- renderDirective: string;
167
171
  }> & {
168
172
  beforeCreate?: (() => void) | (() => void)[];
169
173
  created?: (() => void) | (() => void)[];
@@ -190,55 +194,58 @@ declare const BkSideslider: {
190
194
  default: string;
191
195
  validator: (value: string) => boolean;
192
196
  };
193
- isShow: {
194
- type: BooleanConstructor;
197
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
198
+ default: boolean;
199
+ } & {
195
200
  default: boolean;
196
201
  };
197
- width: {
198
- type: (NumberConstructor | StringConstructor)[];
199
- default: string;
200
- };
201
- height: {
202
- type: (NumberConstructor | StringConstructor)[];
203
- default: string;
204
- };
205
- customClass: {
206
- type: (ArrayConstructor | StringConstructor)[];
202
+ width: import("vue-types").VueTypeDef<string | number>;
203
+ height: import("vue-types").VueTypeDef<string | number>;
204
+ customClass: (import("vue-types").VueTypeValidableDef<string> & {
207
205
  default: string;
208
- };
209
- scrollable: {
210
- type: BooleanConstructor;
206
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
207
+ default: () => unknown[];
208
+ });
209
+ scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
210
+ default: boolean;
211
+ } & {
211
212
  default: boolean;
212
213
  };
213
- showMask: {
214
- type: BooleanConstructor;
214
+ showMask: import("vue-types").VueTypeValidableDef<boolean> & {
215
+ default: boolean;
216
+ } & {
215
217
  default: boolean;
216
218
  };
217
- closeIcon: {
218
- type: BooleanConstructor;
219
+ closeIcon: import("vue-types").VueTypeValidableDef<boolean> & {
220
+ default: boolean;
221
+ } & {
219
222
  default: boolean;
220
223
  };
221
- escClose: {
222
- type: BooleanConstructor;
224
+ escClose: import("vue-types").VueTypeValidableDef<boolean> & {
225
+ default: boolean;
226
+ } & {
223
227
  default: boolean;
224
228
  };
225
- maskClose: {
226
- type: BooleanConstructor;
229
+ maskClose: import("vue-types").VueTypeValidableDef<boolean> & {
230
+ default: boolean;
231
+ } & {
227
232
  default: boolean;
228
233
  };
229
- fullscreen: {
230
- type: BooleanConstructor;
234
+ fullscreen: import("vue-types").VueTypeValidableDef<boolean> & {
235
+ default: boolean;
236
+ } & {
231
237
  default: boolean;
232
238
  };
233
- size: {
234
- type: StringConstructor;
239
+ size: import("vue-types").VueTypeDef<string> & {
235
240
  default: string;
236
- validator: (value: string) => boolean;
237
241
  };
238
- renderDirective: {
239
- type: StringConstructor;
242
+ draggable: import("vue-types").VueTypeValidableDef<boolean> & {
243
+ default: boolean;
244
+ } & {
245
+ default: boolean;
246
+ };
247
+ dialogType: import("vue-types").VueTypeDef<string> & {
240
248
  default: string;
241
- validator: (value: string) => boolean;
242
249
  };
243
250
  }>> & {
244
251
  onClosed?: (...args: any[]) => any;
@@ -255,55 +262,58 @@ declare const BkSideslider: {
255
262
  default: string;
256
263
  validator: (value: string) => boolean;
257
264
  };
258
- isShow: {
259
- type: BooleanConstructor;
265
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
266
+ default: boolean;
267
+ } & {
260
268
  default: boolean;
261
269
  };
262
- width: {
263
- type: (NumberConstructor | StringConstructor)[];
264
- default: string;
265
- };
266
- height: {
267
- type: (NumberConstructor | StringConstructor)[];
268
- default: string;
269
- };
270
- customClass: {
271
- type: (ArrayConstructor | StringConstructor)[];
270
+ width: import("vue-types").VueTypeDef<string | number>;
271
+ height: import("vue-types").VueTypeDef<string | number>;
272
+ customClass: (import("vue-types").VueTypeValidableDef<string> & {
272
273
  default: string;
273
- };
274
- scrollable: {
275
- type: BooleanConstructor;
274
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
275
+ default: () => unknown[];
276
+ });
277
+ scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
278
+ default: boolean;
279
+ } & {
276
280
  default: boolean;
277
281
  };
278
- showMask: {
279
- type: BooleanConstructor;
282
+ showMask: import("vue-types").VueTypeValidableDef<boolean> & {
283
+ default: boolean;
284
+ } & {
280
285
  default: boolean;
281
286
  };
282
- closeIcon: {
283
- type: BooleanConstructor;
287
+ closeIcon: import("vue-types").VueTypeValidableDef<boolean> & {
288
+ default: boolean;
289
+ } & {
284
290
  default: boolean;
285
291
  };
286
- escClose: {
287
- type: BooleanConstructor;
292
+ escClose: import("vue-types").VueTypeValidableDef<boolean> & {
293
+ default: boolean;
294
+ } & {
288
295
  default: boolean;
289
296
  };
290
- maskClose: {
291
- type: BooleanConstructor;
297
+ maskClose: import("vue-types").VueTypeValidableDef<boolean> & {
298
+ default: boolean;
299
+ } & {
292
300
  default: boolean;
293
301
  };
294
- fullscreen: {
295
- type: BooleanConstructor;
302
+ fullscreen: import("vue-types").VueTypeValidableDef<boolean> & {
303
+ default: boolean;
304
+ } & {
296
305
  default: boolean;
297
306
  };
298
- size: {
299
- type: StringConstructor;
307
+ size: import("vue-types").VueTypeDef<string> & {
300
308
  default: string;
301
- validator: (value: string) => boolean;
302
309
  };
303
- renderDirective: {
304
- type: StringConstructor;
310
+ draggable: import("vue-types").VueTypeValidableDef<boolean> & {
311
+ default: boolean;
312
+ } & {
313
+ default: boolean;
314
+ };
315
+ dialogType: import("vue-types").VueTypeDef<string> & {
305
316
  default: string;
306
- validator: (value: string) => boolean;
307
317
  };
308
318
  }>> & {
309
319
  onClosed?: (...args: any[]) => any;
@@ -311,11 +321,11 @@ declare const BkSideslider: {
311
321
  }, unknown, unknown, {}, {
312
322
  handleClose(): void;
313
323
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("closed" | "update:isShow")[], "closed" | "update:isShow", {
314
- width: string | number;
315
- height: string | number;
324
+ draggable: boolean;
316
325
  showMask: boolean;
317
326
  size: string;
318
327
  direction: string;
328
+ dialogType: string;
319
329
  isShow: boolean;
320
330
  customClass: string | unknown[];
321
331
  scrollable: boolean;
@@ -323,6 +333,5 @@ declare const BkSideslider: {
323
333
  escClose: boolean;
324
334
  maskClose: boolean;
325
335
  fullscreen: boolean;
326
- renderDirective: string;
327
336
  }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin;
328
337
  export default BkSideslider;
@@ -4,55 +4,58 @@ declare const _default: import("vue").DefineComponent<{
4
4
  default: string;
5
5
  validator: (value: string) => boolean;
6
6
  };
7
- isShow: {
8
- type: BooleanConstructor;
7
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
8
+ default: boolean;
9
+ } & {
9
10
  default: boolean;
10
11
  };
11
- width: {
12
- type: (NumberConstructor | StringConstructor)[];
13
- default: string;
14
- };
15
- height: {
16
- type: (NumberConstructor | StringConstructor)[];
17
- default: string;
18
- };
19
- customClass: {
20
- type: (ArrayConstructor | StringConstructor)[];
12
+ width: import("vue-types").VueTypeDef<string | number>;
13
+ height: import("vue-types").VueTypeDef<string | number>;
14
+ customClass: (import("vue-types").VueTypeValidableDef<string> & {
21
15
  default: string;
22
- };
23
- scrollable: {
24
- type: BooleanConstructor;
16
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
17
+ default: () => unknown[];
18
+ });
19
+ scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
20
+ default: boolean;
21
+ } & {
25
22
  default: boolean;
26
23
  };
27
- showMask: {
28
- type: BooleanConstructor;
24
+ showMask: import("vue-types").VueTypeValidableDef<boolean> & {
25
+ default: boolean;
26
+ } & {
29
27
  default: boolean;
30
28
  };
31
- closeIcon: {
32
- type: BooleanConstructor;
29
+ closeIcon: import("vue-types").VueTypeValidableDef<boolean> & {
30
+ default: boolean;
31
+ } & {
33
32
  default: boolean;
34
33
  };
35
- escClose: {
36
- type: BooleanConstructor;
34
+ escClose: import("vue-types").VueTypeValidableDef<boolean> & {
35
+ default: boolean;
36
+ } & {
37
37
  default: boolean;
38
38
  };
39
- maskClose: {
40
- type: BooleanConstructor;
39
+ maskClose: import("vue-types").VueTypeValidableDef<boolean> & {
40
+ default: boolean;
41
+ } & {
41
42
  default: boolean;
42
43
  };
43
- fullscreen: {
44
- type: BooleanConstructor;
44
+ fullscreen: import("vue-types").VueTypeValidableDef<boolean> & {
45
+ default: boolean;
46
+ } & {
45
47
  default: boolean;
46
48
  };
47
- size: {
48
- type: StringConstructor;
49
+ size: import("vue-types").VueTypeDef<string> & {
49
50
  default: string;
50
- validator: (value: string) => boolean;
51
51
  };
52
- renderDirective: {
53
- type: StringConstructor;
52
+ draggable: import("vue-types").VueTypeValidableDef<boolean> & {
53
+ default: boolean;
54
+ } & {
55
+ default: boolean;
56
+ };
57
+ dialogType: import("vue-types").VueTypeDef<string> & {
54
58
  default: string;
55
- validator: (value: string) => boolean;
56
59
  };
57
60
  }, unknown, unknown, {}, {
58
61
  handleClose(): void;
@@ -62,65 +65,68 @@ declare const _default: import("vue").DefineComponent<{
62
65
  default: string;
63
66
  validator: (value: string) => boolean;
64
67
  };
65
- isShow: {
66
- type: BooleanConstructor;
68
+ isShow: import("vue-types").VueTypeValidableDef<boolean> & {
69
+ default: boolean;
70
+ } & {
67
71
  default: boolean;
68
72
  };
69
- width: {
70
- type: (NumberConstructor | StringConstructor)[];
71
- default: string;
72
- };
73
- height: {
74
- type: (NumberConstructor | StringConstructor)[];
75
- default: string;
76
- };
77
- customClass: {
78
- type: (ArrayConstructor | StringConstructor)[];
73
+ width: import("vue-types").VueTypeDef<string | number>;
74
+ height: import("vue-types").VueTypeDef<string | number>;
75
+ customClass: (import("vue-types").VueTypeValidableDef<string> & {
79
76
  default: string;
80
- };
81
- scrollable: {
82
- type: BooleanConstructor;
77
+ }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
78
+ default: () => unknown[];
79
+ });
80
+ scrollable: import("vue-types").VueTypeValidableDef<boolean> & {
81
+ default: boolean;
82
+ } & {
83
83
  default: boolean;
84
84
  };
85
- showMask: {
86
- type: BooleanConstructor;
85
+ showMask: import("vue-types").VueTypeValidableDef<boolean> & {
86
+ default: boolean;
87
+ } & {
87
88
  default: boolean;
88
89
  };
89
- closeIcon: {
90
- type: BooleanConstructor;
90
+ closeIcon: import("vue-types").VueTypeValidableDef<boolean> & {
91
+ default: boolean;
92
+ } & {
91
93
  default: boolean;
92
94
  };
93
- escClose: {
94
- type: BooleanConstructor;
95
+ escClose: import("vue-types").VueTypeValidableDef<boolean> & {
96
+ default: boolean;
97
+ } & {
95
98
  default: boolean;
96
99
  };
97
- maskClose: {
98
- type: BooleanConstructor;
100
+ maskClose: import("vue-types").VueTypeValidableDef<boolean> & {
101
+ default: boolean;
102
+ } & {
99
103
  default: boolean;
100
104
  };
101
- fullscreen: {
102
- type: BooleanConstructor;
105
+ fullscreen: import("vue-types").VueTypeValidableDef<boolean> & {
106
+ default: boolean;
107
+ } & {
103
108
  default: boolean;
104
109
  };
105
- size: {
106
- type: StringConstructor;
110
+ size: import("vue-types").VueTypeDef<string> & {
107
111
  default: string;
108
- validator: (value: string) => boolean;
109
112
  };
110
- renderDirective: {
111
- type: StringConstructor;
113
+ draggable: import("vue-types").VueTypeValidableDef<boolean> & {
114
+ default: boolean;
115
+ } & {
116
+ default: boolean;
117
+ };
118
+ dialogType: import("vue-types").VueTypeDef<string> & {
112
119
  default: string;
113
- validator: (value: string) => boolean;
114
120
  };
115
121
  }>> & {
116
122
  onClosed?: (...args: any[]) => any;
117
123
  "onUpdate:isShow"?: (...args: any[]) => any;
118
124
  }, {
119
- width: string | number;
120
- height: string | number;
125
+ draggable: boolean;
121
126
  showMask: boolean;
122
127
  size: string;
123
128
  direction: string;
129
+ dialogType: string;
124
130
  isShow: boolean;
125
131
  customClass: string | unknown[];
126
132
  scrollable: boolean;
@@ -128,6 +134,5 @@ declare const _default: import("vue").DefineComponent<{
128
134
  escClose: boolean;
129
135
  maskClose: boolean;
130
136
  fullscreen: boolean;
131
- renderDirective: string;
132
137
  }>;
133
138
  export default _default;
@@ -45,3 +45,4 @@ import '../timeline/timeline.less';
45
45
  import '../code-diff/code-diff.less';
46
46
  import '../resize-layout/resize-layout.less';
47
47
  import '../tag-input/tag-input.less';
48
+ import '../container/container.less';
@@ -0,0 +1,8 @@
1
+ .clearfix-style::after {
2
+ display: block;
3
+ height: 0;
4
+ clear: both;
5
+ font-size: 0;
6
+ content: '';
7
+ visibility: hidden;
8
+ }
@@ -0,0 +1,10 @@
1
+ .clearfix-style {
2
+ &::after {
3
+ display: block;
4
+ height: 0;
5
+ clear: both;
6
+ font-size: 0;
7
+ content: '';
8
+ visibility: hidden;
9
+ }
10
+ }
@@ -0,0 +1,8 @@
1
+ .clearfix-style::after {
2
+ display: block;
3
+ height: 0;
4
+ clear: both;
5
+ font-size: 0;
6
+ content: '';
7
+ visibility: hidden;
8
+ }
@@ -19,3 +19,11 @@
19
19
  .bk-fade-transtion .bk-fade-leave-to {
20
20
  opacity: 0;
21
21
  }
22
+ .clearfix-style::after {
23
+ display: block;
24
+ height: 0;
25
+ clear: both;
26
+ font-size: 0;
27
+ content: '';
28
+ visibility: hidden;
29
+ }