bkui-vue 0.0.1-beta.73 → 0.0.1-beta.74

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.
@@ -6,7 +6,7 @@ declare const BkModal: {
6
6
  visible: boolean;
7
7
  };
8
8
  $props: Partial<{
9
- title: string;
9
+ multiInstance: boolean;
10
10
  showMask: boolean;
11
11
  width: string | number;
12
12
  height: string | number;
@@ -18,6 +18,7 @@ declare const BkModal: {
18
18
  isShow: boolean;
19
19
  transfer: boolean;
20
20
  renderDirective: string;
21
+ dialogType: string;
21
22
  customClass: string | unknown[];
22
23
  scrollable: boolean;
23
24
  closeIcon: boolean;
@@ -32,20 +33,12 @@ declare const BkModal: {
32
33
  } & {
33
34
  default: boolean;
34
35
  };
35
- width: (import("vue-types").VueTypeValidableDef<number> & {
36
- default: number;
37
- }) | (import("vue-types").VueTypeValidableDef<string> & {
38
- default: string;
39
- } & {
40
- default: string;
41
- });
42
- height: (import("vue-types").VueTypeValidableDef<number> & {
43
- default: number;
44
- }) | (import("vue-types").VueTypeValidableDef<string> & {
45
- default: string;
46
- } & {
47
- default: string;
48
- });
36
+ width: import("vue-types").VueTypeDef<string | number> & {
37
+ default: string | number;
38
+ };
39
+ height: import("vue-types").VueTypeDef<string | number> & {
40
+ default: string | number;
41
+ };
49
42
  customClass: (import("vue-types").VueTypeValidableDef<string> & {
50
43
  default: string;
51
44
  }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -104,11 +97,6 @@ declare const BkModal: {
104
97
  } & {
105
98
  default: boolean;
106
99
  };
107
- title: import("vue-types").VueTypeValidableDef<string> & {
108
- default: string;
109
- } & {
110
- default: string;
111
- };
112
100
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
113
101
  default: string;
114
102
  };
@@ -124,7 +112,15 @@ declare const BkModal: {
124
112
  default: string;
125
113
  };
126
114
  beforeClose: import("vue-types").VueTypeDef<unknown>;
127
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "showMask" | "width" | "height" | "draggable" | "size" | "extCls" | "direction" | "maxHeight" | "isShow" | "transfer" | "renderDirective" | "customClass" | "scrollable" | "closeIcon" | "escClose" | "maskClose" | "fullscreen" | "quickClose" | "animateType">;
115
+ dialogType: import("vue-types").VueTypeDef<string> & {
116
+ default: string;
117
+ };
118
+ multiInstance: import("vue-types").VueTypeValidableDef<boolean> & {
119
+ default: boolean;
120
+ } & {
121
+ default: boolean;
122
+ };
123
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "multiInstance" | "showMask" | "width" | "height" | "draggable" | "size" | "extCls" | "direction" | "maxHeight" | "isShow" | "transfer" | "renderDirective" | "dialogType" | "customClass" | "scrollable" | "closeIcon" | "escClose" | "maskClose" | "fullscreen" | "quickClose" | "animateType">;
128
124
  $attrs: {
129
125
  [x: string]: unknown;
130
126
  };
@@ -144,20 +140,12 @@ declare const BkModal: {
144
140
  } & {
145
141
  default: boolean;
146
142
  };
147
- width: (import("vue-types").VueTypeValidableDef<number> & {
148
- default: number;
149
- }) | (import("vue-types").VueTypeValidableDef<string> & {
150
- default: string;
151
- } & {
152
- default: string;
153
- });
154
- height: (import("vue-types").VueTypeValidableDef<number> & {
155
- default: number;
156
- }) | (import("vue-types").VueTypeValidableDef<string> & {
157
- default: string;
158
- } & {
159
- default: string;
160
- });
143
+ width: import("vue-types").VueTypeDef<string | number> & {
144
+ default: string | number;
145
+ };
146
+ height: import("vue-types").VueTypeDef<string | number> & {
147
+ default: string | number;
148
+ };
161
149
  customClass: (import("vue-types").VueTypeValidableDef<string> & {
162
150
  default: string;
163
151
  }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -216,11 +204,6 @@ declare const BkModal: {
216
204
  } & {
217
205
  default: boolean;
218
206
  };
219
- title: import("vue-types").VueTypeValidableDef<string> & {
220
- default: string;
221
- } & {
222
- default: string;
223
- };
224
207
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
225
208
  default: string;
226
209
  };
@@ -236,6 +219,14 @@ declare const BkModal: {
236
219
  default: string;
237
220
  };
238
221
  beforeClose: import("vue-types").VueTypeDef<unknown>;
222
+ dialogType: import("vue-types").VueTypeDef<string> & {
223
+ default: string;
224
+ };
225
+ multiInstance: import("vue-types").VueTypeValidableDef<boolean> & {
226
+ default: boolean;
227
+ } & {
228
+ default: boolean;
229
+ };
239
230
  }>>, unknown, {
240
231
  visible: boolean;
241
232
  }, {
@@ -245,7 +236,7 @@ declare const BkModal: {
245
236
  }, {
246
237
  handleClickOutSide(): void;
247
238
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
248
- title: string;
239
+ multiInstance: boolean;
249
240
  showMask: boolean;
250
241
  width: string | number;
251
242
  height: string | number;
@@ -257,6 +248,7 @@ declare const BkModal: {
257
248
  isShow: boolean;
258
249
  transfer: boolean;
259
250
  renderDirective: string;
251
+ dialogType: string;
260
252
  customClass: string | unknown[];
261
253
  scrollable: boolean;
262
254
  closeIcon: boolean;
@@ -291,20 +283,12 @@ declare const BkModal: {
291
283
  } & {
292
284
  default: boolean;
293
285
  };
294
- width: (import("vue-types").VueTypeValidableDef<number> & {
295
- default: number;
296
- }) | (import("vue-types").VueTypeValidableDef<string> & {
297
- default: string;
298
- } & {
299
- default: string;
300
- });
301
- height: (import("vue-types").VueTypeValidableDef<number> & {
302
- default: number;
303
- }) | (import("vue-types").VueTypeValidableDef<string> & {
304
- default: string;
305
- } & {
306
- default: string;
307
- });
286
+ width: import("vue-types").VueTypeDef<string | number> & {
287
+ default: string | number;
288
+ };
289
+ height: import("vue-types").VueTypeDef<string | number> & {
290
+ default: string | number;
291
+ };
308
292
  customClass: (import("vue-types").VueTypeValidableDef<string> & {
309
293
  default: string;
310
294
  }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -363,11 +347,6 @@ declare const BkModal: {
363
347
  } & {
364
348
  default: boolean;
365
349
  };
366
- title: import("vue-types").VueTypeValidableDef<string> & {
367
- default: string;
368
- } & {
369
- default: string;
370
- };
371
350
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
372
351
  default: string;
373
352
  };
@@ -383,6 +362,14 @@ declare const BkModal: {
383
362
  default: string;
384
363
  };
385
364
  beforeClose: import("vue-types").VueTypeDef<unknown>;
365
+ dialogType: import("vue-types").VueTypeDef<string> & {
366
+ default: string;
367
+ };
368
+ multiInstance: import("vue-types").VueTypeValidableDef<boolean> & {
369
+ default: boolean;
370
+ } & {
371
+ default: boolean;
372
+ };
386
373
  }>> & import("vue").ShallowUnwrapRef<{}> & {
387
374
  visible: boolean;
388
375
  } & {
@@ -401,20 +388,12 @@ declare const BkModal: {
401
388
  } & {
402
389
  default: boolean;
403
390
  };
404
- width: (import("vue-types").VueTypeValidableDef<number> & {
405
- default: number;
406
- }) | (import("vue-types").VueTypeValidableDef<string> & {
407
- default: string;
408
- } & {
409
- default: string;
410
- });
411
- height: (import("vue-types").VueTypeValidableDef<number> & {
412
- default: number;
413
- }) | (import("vue-types").VueTypeValidableDef<string> & {
414
- default: string;
415
- } & {
416
- default: string;
417
- });
391
+ width: import("vue-types").VueTypeDef<string | number> & {
392
+ default: string | number;
393
+ };
394
+ height: import("vue-types").VueTypeDef<string | number> & {
395
+ default: string | number;
396
+ };
418
397
  customClass: (import("vue-types").VueTypeValidableDef<string> & {
419
398
  default: string;
420
399
  }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -473,11 +452,6 @@ declare const BkModal: {
473
452
  } & {
474
453
  default: boolean;
475
454
  };
476
- title: import("vue-types").VueTypeValidableDef<string> & {
477
- default: string;
478
- } & {
479
- default: string;
480
- };
481
455
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
482
456
  default: string;
483
457
  };
@@ -493,6 +467,14 @@ declare const BkModal: {
493
467
  default: string;
494
468
  };
495
469
  beforeClose: import("vue-types").VueTypeDef<unknown>;
470
+ dialogType: import("vue-types").VueTypeDef<string> & {
471
+ default: string;
472
+ };
473
+ multiInstance: import("vue-types").VueTypeValidableDef<boolean> & {
474
+ default: boolean;
475
+ } & {
476
+ default: boolean;
477
+ };
496
478
  }>>, unknown, {
497
479
  visible: boolean;
498
480
  }, {
@@ -502,7 +484,7 @@ declare const BkModal: {
502
484
  }, {
503
485
  handleClickOutSide(): void;
504
486
  }, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, {
505
- title: string;
487
+ multiInstance: boolean;
506
488
  showMask: boolean;
507
489
  width: string | number;
508
490
  height: string | number;
@@ -514,6 +496,7 @@ declare const BkModal: {
514
496
  isShow: boolean;
515
497
  transfer: boolean;
516
498
  renderDirective: string;
499
+ dialogType: string;
517
500
  customClass: string | unknown[];
518
501
  scrollable: boolean;
519
502
  closeIcon: boolean;
@@ -529,20 +512,12 @@ declare const BkModal: {
529
512
  } & {
530
513
  default: boolean;
531
514
  };
532
- width: (import("vue-types").VueTypeValidableDef<number> & {
533
- default: number;
534
- }) | (import("vue-types").VueTypeValidableDef<string> & {
535
- default: string;
536
- } & {
537
- default: string;
538
- });
539
- height: (import("vue-types").VueTypeValidableDef<number> & {
540
- default: number;
541
- }) | (import("vue-types").VueTypeValidableDef<string> & {
542
- default: string;
543
- } & {
544
- default: string;
545
- });
515
+ width: import("vue-types").VueTypeDef<string | number> & {
516
+ default: string | number;
517
+ };
518
+ height: import("vue-types").VueTypeDef<string | number> & {
519
+ default: string | number;
520
+ };
546
521
  customClass: (import("vue-types").VueTypeValidableDef<string> & {
547
522
  default: string;
548
523
  }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -601,11 +576,6 @@ declare const BkModal: {
601
576
  } & {
602
577
  default: boolean;
603
578
  };
604
- title: import("vue-types").VueTypeValidableDef<string> & {
605
- default: string;
606
- } & {
607
- default: string;
608
- };
609
579
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
610
580
  default: string;
611
581
  };
@@ -621,6 +591,14 @@ declare const BkModal: {
621
591
  default: string;
622
592
  };
623
593
  beforeClose: import("vue-types").VueTypeDef<unknown>;
594
+ dialogType: import("vue-types").VueTypeDef<string> & {
595
+ default: string;
596
+ };
597
+ multiInstance: import("vue-types").VueTypeValidableDef<boolean> & {
598
+ default: boolean;
599
+ } & {
600
+ default: boolean;
601
+ };
624
602
  };
625
603
  }>;
626
604
  export default BkModal;
@@ -1 +1 @@
1
- !function(e,o){if("object"==typeof exports&&"object"==typeof module)module.exports=o(require("../shared"),require("vue"));else if("function"==typeof define&&define.amd)define(["../shared","vue"],o);else{var t="object"==typeof exports?o(require("../shared"),require("vue")):o(e["../shared"],e.vue);for(var i in t)("object"==typeof exports?exports:e)[i]=t[i]}}(self,((e,o)=>(()=>{"use strict";var t={4212:o=>{o.exports=e},748:e=>{e.exports=o}},i={};function s(e){var o=i[e];if(void 0!==o)return o.exports;var r=i[e]={exports:{}};return t[e](r,r.exports,s),r.exports}s.d=(e,o)=>{for(var t in o)s.o(o,t)&&!s.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},s.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),s.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};return(()=>{s.r(r),s.d(r,{BkModal:()=>n,default:()=>l,propsMixin:()=>t});var e=s(4212),o=s(748),t={isShow:e.PropTypes.bool.def(!1),width:e.PropTypes.string.def("50%")||e.PropTypes.number,height:e.PropTypes.string.def("50%")||e.PropTypes.number,customClass:e.PropTypes.string||e.PropTypes.array,scrollable:e.PropTypes.bool.def(!0),showMask:e.PropTypes.bool.def(!0),closeIcon:e.PropTypes.bool.def(!0),escClose:e.PropTypes.bool.def(!0),maskClose:e.PropTypes.bool.def(!0),fullscreen:e.PropTypes.bool.def(!1),extCls:e.PropTypes.string.def(""),size:e.PropTypes.commonType(["normal","small","medium","large"],"size").def("normal"),draggable:e.PropTypes.bool.def(!0),quickClose:e.PropTypes.bool.def(!0),transfer:e.PropTypes.bool.def(!1),title:e.PropTypes.string.def("Header"),maxHeight:e.PropTypes.string,direction:e.PropTypes.string,animateType:e.PropTypes.string.def("slide"),renderDirective:e.PropTypes.commonType(["show","if"],"renderDirective").def("show"),beforeClose:e.PropTypes.custom((function(){return!0}))};const i=(0,o.defineComponent)({name:"Modal",props:Object.assign({},t),data:function(){return{visible:!1}},computed:{dialogWidth:function(){return/^\d+$/.test("".concat(this.width))?"".concat(this.width,"px"):this.width},dialogHeight:function(){return/^\d+$/.test("".concat(this.height))?"".concat(this.height,"px"):this.height},compStyle:function(){return{width:this.dialogWidth,height:this.dialogHeight,minHeigth:"".concat(200,"px"),display:this.visible?"inherit":"none"}}},watch:{isShow:{handler:function(e){var o=this;e?this.visible=e:(this.$emit("hidden"),setTimeout((function(){o.visible=e}),250))},deep:!0},visible:function(o){var t=this;o?this.$nextTick((function(){var o=t.showMask?{}:{"background-color":"rgba(0,0,0,0)"};e.bkPopIndexManager.show(t.$el,t.showMask,o,t.transfer),t.$emit("shown")})):e.bkPopIndexManager.hide(this.$el,this.transfer)}},beforeUnmount:function(){e.bkPopIndexManager.hide(this.$el)},methods:{handleClickOutSide:function(){this.quickClose&&this.$emit("close")}},render:function(){var e,t,i,s,r,n,l,d,a,p=this,c=this.maxHeight?{maxHeight:this.maxHeight}:{},h="bk-modal-body ".concat("slide"===this.animateType?this.direction:"");return(0,o.createVNode)("div",{class:["bk-modal-wrapper",this.size,this.customClass,this.fullscreen?"bk-model-fullscreen":""],style:this.compStyle},[(0,o.withDirectives)((0,o.createVNode)("div",{class:"bk-modal-outside",onClick:this.handleClickOutSide},null),[[o.vShow,this.isShow]]),(0,o.createVNode)(o.Transition,{name:this.animateType},{default:function(){return[p.isShow?(0,o.createVNode)("div",{class:h},[(0,o.createVNode)("div",{class:"bk-modal-header"},[null!==(i=null===(t=(e=p.$slots).header)||void 0===t?void 0:t.call(e))&&void 0!==i?i:""]),(0,o.createVNode)("div",{class:"bk-modal-content",style:Object.assign({},c)},[null!==(n=null===(r=(s=p.$slots).default)||void 0===r?void 0:r.call(s))&&void 0!==n?n:""]),(0,o.createVNode)("div",{class:"bk-modal-footer"},[null!==(a=null===(d=(l=p.$slots).footer)||void 0===d?void 0:d.call(l))&&void 0!==a?a:""])]):""]}})])}});var n=(0,e.withInstallProps)(i,{propsMixin:t},!0);const l=n})(),r})()));
1
+ !function(e,o){if("object"==typeof exports&&"object"==typeof module)module.exports=o(require("../shared"),require("vue"));else if("function"==typeof define&&define.amd)define(["../shared","vue"],o);else{var t="object"==typeof exports?o(require("../shared"),require("vue")):o(e["../shared"],e.vue);for(var i in t)("object"==typeof exports?exports:e)[i]=t[i]}}(self,((e,o)=>(()=>{"use strict";var t={4212:o=>{o.exports=e},748:e=>{e.exports=o}},i={};function s(e){var o=i[e];if(void 0!==o)return o.exports;var r=i[e]={exports:{}};return t[e](r,r.exports,s),r.exports}s.d=(e,o)=>{for(var t in o)s.o(o,t)&&!s.o(e,t)&&Object.defineProperty(e,t,{enumerable:!0,get:o[t]})},s.o=(e,o)=>Object.prototype.hasOwnProperty.call(e,o),s.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var r={};return(()=>{s.r(r),s.d(r,{BkModal:()=>n,default:()=>a,propsMixin:()=>t});var e=s(4212),o=s(748),t={isShow:e.PropTypes.bool.def(!1),width:e.PropTypes.oneOfType([String,Number]).def("50%"),height:e.PropTypes.oneOfType([String,Number]).def("50%"),customClass:e.PropTypes.string||e.PropTypes.array,scrollable:e.PropTypes.bool.def(!0),showMask:e.PropTypes.bool.def(!0),closeIcon:e.PropTypes.bool.def(!0),escClose:e.PropTypes.bool.def(!0),maskClose:e.PropTypes.bool.def(!0),fullscreen:e.PropTypes.bool.def(!1),extCls:e.PropTypes.string.def(""),size:e.PropTypes.commonType(["normal","small","medium","large"],"size").def("normal"),draggable:e.PropTypes.bool.def(!0),quickClose:e.PropTypes.bool.def(!0),transfer:e.PropTypes.bool.def(!1),maxHeight:e.PropTypes.string,direction:e.PropTypes.string,animateType:e.PropTypes.string.def("slide"),renderDirective:e.PropTypes.commonType(["show","if"],"renderDirective").def("show"),beforeClose:e.PropTypes.custom((function(){return!0})),dialogType:e.PropTypes.commonType(["show","operation","confirm","process"],"dialogType").def("operation"),multiInstance:e.PropTypes.bool.def(!0)};const i=(0,o.defineComponent)({name:"Modal",props:Object.assign({},t),data:function(){return{visible:!1}},computed:{dialogWidth:function(){return/^\d+$/.test("".concat(this.width))?"".concat(this.width,"px"):this.width},dialogHeight:function(){return/^\d+$/.test("".concat(this.height))?"".concat(this.height,"px"):this.height},compStyle:function(){return{width:this.dialogWidth,height:this.dialogHeight,minHeigth:"".concat(200,"px"),display:this.visible?"inherit":"none"}}},watch:{isShow:{handler:function(e){var o=this;e?this.visible=e:(this.$emit("hidden"),setTimeout((function(){o.visible=e}),250))},deep:!0},visible:function(o){var t=this;o?this.$nextTick((function(){var o=t.showMask?{}:{"background-color":"rgba(0,0,0,0)"};e.bkPopIndexManager.show(t.$el,t.showMask,o,t.transfer),t.$emit("shown")})):e.bkPopIndexManager.hide(this.$el,this.transfer)}},beforeUnmount:function(){e.bkPopIndexManager.hide(this.$el)},methods:{handleClickOutSide:function(){this.quickClose&&this.$emit("close")}},render:function(){var e,t,i,s,r,n,a,l,d,p=this,c=this.maxHeight?{maxHeight:this.maxHeight}:{},h="bk-modal-body ".concat("slide"===this.animateType?this.direction:"");return(0,o.createVNode)("div",{class:["bk-modal-wrapper",this.customClass],style:this.compStyle},[(0,o.withDirectives)((0,o.createVNode)("div",{class:"bk-modal-outside",onClick:this.handleClickOutSide},null),[[o.vShow,this.isShow]]),(0,o.createVNode)(o.Transition,{name:this.animateType},{default:function(){return[p.isShow?(0,o.createVNode)("div",{class:h},[(0,o.createVNode)("div",{class:"bk-modal-header"},[null!==(i=null===(t=(e=p.$slots).header)||void 0===t?void 0:t.call(e))&&void 0!==i?i:""]),(0,o.createVNode)("div",{class:"bk-modal-content",style:["show"===p.dialogType?"height: calc(100% - 74px);margin-bottom: 0px":"",Object.assign({},c)]},[null!==(n=null===(r=(s=p.$slots).default)||void 0===r?void 0:r.call(s))&&void 0!==n?n:""]),"show"===p.dialogType?"":(0,o.createVNode)("div",{class:"bk-modal-footer"},[null!==(d=null===(l=(a=p.$slots).footer)||void 0===l?void 0:l.call(a))&&void 0!==d?d:""])]):""]}})])}});var n=(0,e.withInstallProps)(i,{propsMixin:t},!0);const a=n})(),r})()));
@@ -4,20 +4,12 @@ declare const _default: import("vue").DefineComponent<{
4
4
  } & {
5
5
  default: boolean;
6
6
  };
7
- width: (import("vue-types").VueTypeValidableDef<number> & {
8
- default: number;
9
- }) | (import("vue-types").VueTypeValidableDef<string> & {
10
- default: string;
11
- } & {
12
- default: string;
13
- });
14
- height: (import("vue-types").VueTypeValidableDef<number> & {
15
- default: number;
16
- }) | (import("vue-types").VueTypeValidableDef<string> & {
17
- default: string;
18
- } & {
19
- default: string;
20
- });
7
+ width: import("vue-types").VueTypeDef<string | number> & {
8
+ default: string | number;
9
+ };
10
+ height: import("vue-types").VueTypeDef<string | number> & {
11
+ default: string | number;
12
+ };
21
13
  customClass: (import("vue-types").VueTypeValidableDef<string> & {
22
14
  default: string;
23
15
  }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -76,11 +68,6 @@ declare const _default: import("vue").DefineComponent<{
76
68
  } & {
77
69
  default: boolean;
78
70
  };
79
- title: import("vue-types").VueTypeValidableDef<string> & {
80
- default: string;
81
- } & {
82
- default: string;
83
- };
84
71
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
85
72
  default: string;
86
73
  };
@@ -96,6 +83,14 @@ declare const _default: import("vue").DefineComponent<{
96
83
  default: string;
97
84
  };
98
85
  beforeClose: import("vue-types").VueTypeDef<unknown>;
86
+ dialogType: import("vue-types").VueTypeDef<string> & {
87
+ default: string;
88
+ };
89
+ multiInstance: import("vue-types").VueTypeValidableDef<boolean> & {
90
+ default: boolean;
91
+ } & {
92
+ default: boolean;
93
+ };
99
94
  }, unknown, {
100
95
  visible: boolean;
101
96
  }, {
@@ -110,20 +105,12 @@ declare const _default: import("vue").DefineComponent<{
110
105
  } & {
111
106
  default: boolean;
112
107
  };
113
- width: (import("vue-types").VueTypeValidableDef<number> & {
114
- default: number;
115
- }) | (import("vue-types").VueTypeValidableDef<string> & {
116
- default: string;
117
- } & {
118
- default: string;
119
- });
120
- height: (import("vue-types").VueTypeValidableDef<number> & {
121
- default: number;
122
- }) | (import("vue-types").VueTypeValidableDef<string> & {
123
- default: string;
124
- } & {
125
- default: string;
126
- });
108
+ width: import("vue-types").VueTypeDef<string | number> & {
109
+ default: string | number;
110
+ };
111
+ height: import("vue-types").VueTypeDef<string | number> & {
112
+ default: string | number;
113
+ };
127
114
  customClass: (import("vue-types").VueTypeValidableDef<string> & {
128
115
  default: string;
129
116
  }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -182,11 +169,6 @@ declare const _default: import("vue").DefineComponent<{
182
169
  } & {
183
170
  default: boolean;
184
171
  };
185
- title: import("vue-types").VueTypeValidableDef<string> & {
186
- default: string;
187
- } & {
188
- default: string;
189
- };
190
172
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
191
173
  default: string;
192
174
  };
@@ -202,8 +184,16 @@ declare const _default: import("vue").DefineComponent<{
202
184
  default: string;
203
185
  };
204
186
  beforeClose: import("vue-types").VueTypeDef<unknown>;
187
+ dialogType: import("vue-types").VueTypeDef<string> & {
188
+ default: string;
189
+ };
190
+ multiInstance: import("vue-types").VueTypeValidableDef<boolean> & {
191
+ default: boolean;
192
+ } & {
193
+ default: boolean;
194
+ };
205
195
  }>>, {
206
- title: string;
196
+ multiInstance: boolean;
207
197
  showMask: boolean;
208
198
  width: string | number;
209
199
  height: string | number;
@@ -215,6 +205,7 @@ declare const _default: import("vue").DefineComponent<{
215
205
  isShow: boolean;
216
206
  transfer: boolean;
217
207
  renderDirective: string;
208
+ dialogType: string;
218
209
  customClass: string | unknown[];
219
210
  scrollable: boolean;
220
211
  closeIcon: boolean;
@@ -4,20 +4,12 @@ export declare const propsMixin: {
4
4
  } & {
5
5
  default: boolean;
6
6
  };
7
- width: (import("vue-types").VueTypeValidableDef<number> & {
8
- default: number;
9
- }) | (import("vue-types").VueTypeValidableDef<string> & {
10
- default: string;
11
- } & {
12
- default: string;
13
- });
14
- height: (import("vue-types").VueTypeValidableDef<number> & {
15
- default: number;
16
- }) | (import("vue-types").VueTypeValidableDef<string> & {
17
- default: string;
18
- } & {
19
- default: string;
20
- });
7
+ width: import("vue-types").VueTypeDef<string | number> & {
8
+ default: string | number;
9
+ };
10
+ height: import("vue-types").VueTypeDef<string | number> & {
11
+ default: string | number;
12
+ };
21
13
  customClass: (import("vue-types").VueTypeValidableDef<string> & {
22
14
  default: string;
23
15
  }) | (import("vue-types").VueTypeValidableDef<unknown[]> & {
@@ -76,11 +68,6 @@ export declare const propsMixin: {
76
68
  } & {
77
69
  default: boolean;
78
70
  };
79
- title: import("vue-types").VueTypeValidableDef<string> & {
80
- default: string;
81
- } & {
82
- default: string;
83
- };
84
71
  maxHeight: import("vue-types").VueTypeValidableDef<string> & {
85
72
  default: string;
86
73
  };
@@ -96,4 +83,12 @@ export declare const propsMixin: {
96
83
  default: string;
97
84
  };
98
85
  beforeClose: import("vue-types").VueTypeDef<unknown>;
86
+ dialogType: import("vue-types").VueTypeDef<string> & {
87
+ default: string;
88
+ };
89
+ multiInstance: import("vue-types").VueTypeValidableDef<boolean> & {
90
+ default: boolean;
91
+ } & {
92
+ default: boolean;
93
+ };
99
94
  };