bkui-vue 0.0.1-beta.190 → 0.0.1-beta.192
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.
- package/dist/index.cjs.js +20 -20
- package/dist/index.esm.js +12 -6
- package/dist/index.umd.js +20 -20
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/dialog/dialog.d.ts +7 -0
- package/lib/dialog/index.d.ts +16 -1
- package/lib/dialog/props.d.ts +3 -0
- package/lib/modal/index.d.ts +19 -1
- package/lib/modal/index.js +1 -1
- package/lib/modal/modal.d.ts +7 -0
- package/lib/modal/props.mixin.d.ts +3 -0
- package/lib/sideslider/index.d.ts +16 -1
- package/lib/sideslider/sideslider.css +1 -0
- package/lib/sideslider/sideslider.d.ts +7 -0
- package/lib/sideslider/sideslider.less +1 -0
- package/lib/sideslider/sideslider.variable.css +1 -0
- package/lib/table/index.d.ts +11 -0
- package/lib/table/index.js +1 -1
- package/lib/table/props.d.ts +2 -0
- package/lib/table-column/index.d.ts +11 -0
- package/lib/table-column/index.js +1 -1
- package/lib/tag/tag.css +25 -7
- package/lib/tag/tag.less +23 -4
- package/lib/tag/tag.variable.css +25 -7
- package/package.json +1 -1
package/lib/dialog/dialog.d.ts
CHANGED
@@ -108,6 +108,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
108
108
|
} & {
|
109
109
|
default: boolean;
|
110
110
|
};
|
111
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
112
|
+
default: number;
|
113
|
+
};
|
111
114
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
112
115
|
default: string;
|
113
116
|
};
|
@@ -257,6 +260,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
257
260
|
} & {
|
258
261
|
default: boolean;
|
259
262
|
};
|
263
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
264
|
+
default: number;
|
265
|
+
};
|
260
266
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
261
267
|
default: string;
|
262
268
|
};
|
@@ -290,6 +296,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
290
296
|
}, {
|
291
297
|
title: string;
|
292
298
|
multiInstance: boolean;
|
299
|
+
zIndex: number;
|
293
300
|
showMask: boolean;
|
294
301
|
theme: string;
|
295
302
|
extCls: string | unknown[];
|
package/lib/dialog/index.d.ts
CHANGED
@@ -5,6 +5,7 @@ declare const BkDialog: {
|
|
5
5
|
$props: Partial<{
|
6
6
|
title: string;
|
7
7
|
multiInstance: boolean;
|
8
|
+
zIndex: number;
|
8
9
|
showMask: boolean;
|
9
10
|
theme: string;
|
10
11
|
extCls: string | unknown[];
|
@@ -144,6 +145,9 @@ declare const BkDialog: {
|
|
144
145
|
} & {
|
145
146
|
default: boolean;
|
146
147
|
};
|
148
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
149
|
+
default: number;
|
150
|
+
};
|
147
151
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
148
152
|
default: string;
|
149
153
|
};
|
@@ -174,7 +178,7 @@ declare const BkDialog: {
|
|
174
178
|
onNext?: (...args: any[]) => any;
|
175
179
|
onClosed?: (...args: any[]) => any;
|
176
180
|
"onValue-change"?: (...args: any[]) => any;
|
177
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "showMask" | "theme" | "extCls" | "width" | "height" | "isShow" | "draggable" | "size" | "direction" | "maxHeight" | "renderDirective" | "transfer" | "dialogType" | "infoType" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType" | "headerAlign" | "footerAlign" | "confirmText" | "cancelText" | "prevText" | "nextText" | "current" | "totalStep" | "isLoading">;
|
181
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "theme" | "extCls" | "width" | "height" | "isShow" | "draggable" | "size" | "direction" | "maxHeight" | "renderDirective" | "transfer" | "dialogType" | "infoType" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType" | "headerAlign" | "footerAlign" | "confirmText" | "cancelText" | "prevText" | "nextText" | "current" | "totalStep" | "isLoading">;
|
178
182
|
$attrs: {
|
179
183
|
[x: string]: unknown;
|
180
184
|
};
|
@@ -298,6 +302,9 @@ declare const BkDialog: {
|
|
298
302
|
} & {
|
299
303
|
default: boolean;
|
300
304
|
};
|
305
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
306
|
+
default: number;
|
307
|
+
};
|
301
308
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
302
309
|
default: string;
|
303
310
|
};
|
@@ -347,6 +354,7 @@ declare const BkDialog: {
|
|
347
354
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:isShow" | "confirm" | "prev" | "next" | "closed" | "value-change")[], string, {
|
348
355
|
title: string;
|
349
356
|
multiInstance: boolean;
|
357
|
+
zIndex: number;
|
350
358
|
showMask: boolean;
|
351
359
|
theme: string;
|
352
360
|
extCls: string | unknown[];
|
@@ -506,6 +514,9 @@ declare const BkDialog: {
|
|
506
514
|
} & {
|
507
515
|
default: boolean;
|
508
516
|
};
|
517
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
518
|
+
default: number;
|
519
|
+
};
|
509
520
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
510
521
|
default: string;
|
511
522
|
};
|
@@ -666,6 +677,9 @@ declare const BkDialog: {
|
|
666
677
|
} & {
|
667
678
|
default: boolean;
|
668
679
|
};
|
680
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
681
|
+
default: number;
|
682
|
+
};
|
669
683
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
670
684
|
default: string;
|
671
685
|
};
|
@@ -715,6 +729,7 @@ declare const BkDialog: {
|
|
715
729
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:isShow" | "confirm" | "prev" | "next" | "closed" | "value-change")[], "update:isShow" | "confirm" | "prev" | "next" | "closed" | "value-change", {
|
716
730
|
title: string;
|
717
731
|
multiInstance: boolean;
|
732
|
+
zIndex: number;
|
718
733
|
showMask: boolean;
|
719
734
|
theme: string;
|
720
735
|
extCls: string | unknown[];
|
package/lib/dialog/props.d.ts
CHANGED
package/lib/modal/index.d.ts
CHANGED
@@ -8,6 +8,7 @@ declare const BkModal: {
|
|
8
8
|
$props: Partial<{
|
9
9
|
title: string;
|
10
10
|
multiInstance: boolean;
|
11
|
+
zIndex: number;
|
11
12
|
showMask: boolean;
|
12
13
|
extCls: string | unknown[];
|
13
14
|
width: string | number;
|
@@ -87,6 +88,9 @@ declare const BkModal: {
|
|
87
88
|
} & {
|
88
89
|
default: boolean;
|
89
90
|
};
|
91
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
92
|
+
default: number;
|
93
|
+
};
|
90
94
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
91
95
|
default: string;
|
92
96
|
};
|
@@ -124,7 +128,7 @@ declare const BkModal: {
|
|
124
128
|
"onQuick-close"?: (...args: any[]) => any;
|
125
129
|
onQuickClose?: (...args: any[]) => any;
|
126
130
|
onShown?: (...args: any[]) => any;
|
127
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "showMask" | "extCls" | "width" | "height" | "isShow" | "draggable" | "size" | "direction" | "maxHeight" | "renderDirective" | "transfer" | "dialogType" | "infoType" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType">;
|
131
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "extCls" | "width" | "height" | "isShow" | "draggable" | "size" | "direction" | "maxHeight" | "renderDirective" | "transfer" | "dialogType" | "infoType" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType">;
|
128
132
|
$attrs: {
|
129
133
|
[x: string]: unknown;
|
130
134
|
};
|
@@ -198,6 +202,9 @@ declare const BkModal: {
|
|
198
202
|
} & {
|
199
203
|
default: boolean;
|
200
204
|
};
|
205
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
206
|
+
default: number;
|
207
|
+
};
|
201
208
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
202
209
|
default: string;
|
203
210
|
};
|
@@ -247,6 +254,7 @@ declare const BkModal: {
|
|
247
254
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "hidden" | "quick-close" | "quickClose" | "shown")[], string, {
|
248
255
|
title: string;
|
249
256
|
multiInstance: boolean;
|
257
|
+
zIndex: number;
|
250
258
|
showMask: boolean;
|
251
259
|
extCls: string | unknown[];
|
252
260
|
width: string | number;
|
@@ -346,6 +354,9 @@ declare const BkModal: {
|
|
346
354
|
} & {
|
347
355
|
default: boolean;
|
348
356
|
};
|
357
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
358
|
+
default: number;
|
359
|
+
};
|
349
360
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
350
361
|
default: string;
|
351
362
|
};
|
@@ -456,6 +467,9 @@ declare const BkModal: {
|
|
456
467
|
} & {
|
457
468
|
default: boolean;
|
458
469
|
};
|
470
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
471
|
+
default: number;
|
472
|
+
};
|
459
473
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
460
474
|
default: string;
|
461
475
|
};
|
@@ -505,6 +519,7 @@ declare const BkModal: {
|
|
505
519
|
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("close" | "hidden" | "quick-close" | "quickClose" | "shown")[], "close" | "hidden" | "quick-close" | "quickClose" | "shown", {
|
506
520
|
title: string;
|
507
521
|
multiInstance: boolean;
|
522
|
+
zIndex: number;
|
508
523
|
showMask: boolean;
|
509
524
|
extCls: string | unknown[];
|
510
525
|
width: string | number;
|
@@ -585,6 +600,9 @@ declare const BkModal: {
|
|
585
600
|
} & {
|
586
601
|
default: boolean;
|
587
602
|
};
|
603
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
604
|
+
default: number;
|
605
|
+
};
|
588
606
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
589
607
|
default: string;
|
590
608
|
};
|
package/lib/modal/index.js
CHANGED
@@ -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.oneOfType([String,Number]).def("50%"),height:e.PropTypes.oneOfType([String,Number]).def("50%"),extCls: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),fullscreen:e.PropTypes.bool.def(!1),size:e.PropTypes.commonType(["normal","small","medium","large"],"size").def(),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,title:e.PropTypes.string.def(""),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),infoType:e.PropTypes.commonType(["success","warning","danger","loading"],"infoType").def()};const i=(0,o.defineComponent)({name:"Modal",props:Object.assign({},t),emits:["quick-close","quickClose","hidden","shown","close"],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"}},fullscreenStyle:function(){return{width:"".concat(100,"%"),height:"".concat(100,"%")}}},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"),t.$emit("quick-close",t.$el),t.$emit("quickClose",t.$el)})):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,c,p,h,u=this,f=this.maxHeight?{maxHeight:this.maxHeight}:{},y="bk-modal-body ".concat("slide"===this.animateType?this.direction:"");return(0,o.createVNode)("div",{class:["bk-modal-wrapper",this.extCls,this.size],style:[this.compStyle,this.fullscreen?this.fullscreenStyle:""]},[(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[u.isShow?(0,o.createVNode)("div",{class:y},[(0,o.createVNode)("div",{class:"bk-modal-header"},[null!==(i=null===(t=(e=u.$slots).header)||void 0===t?void 0:t.call(e))&&void 0!==i?i:""]),(0,o.createVNode)("div",{class:"bk-modal-content",style:["show"===u.dialogType?"padding-bottom: 20px":"",Object.assign({},f)]},[null!==(n=null===(r=(s=u.$slots).default)||void 0===r?void 0:r.call(s))&&void 0!==n?n:""]),"show"===u.dialogType?"":(0,o.createVNode)("div",{class:"bk-modal-footer"},[null!==(a=null===(d=(l=u.$slots).footer)||void 0===d?void 0:d.call(l))&&void 0!==a?a:""]),(0,o.createVNode)("div",{class:["bk-modal-close",u.closeIcon?"":"close-icon"]},[null!==(h=null===(p=(c=u.$slots).close)||void 0===p?void 0:p.call(c))&&void 0!==h?h:""])]):""]}})])}});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:()=>l,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%"),extCls: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),fullscreen:e.PropTypes.bool.def(!1),size:e.PropTypes.commonType(["normal","small","medium","large"],"size").def(),draggable:e.PropTypes.bool.def(!0),quickClose:e.PropTypes.bool.def(!0),transfer:e.PropTypes.bool.def(!1),zIndex:e.PropTypes.number,maxHeight:e.PropTypes.string,direction:e.PropTypes.string,title:e.PropTypes.string.def(""),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),infoType:e.PropTypes.commonType(["success","warning","danger","loading"],"infoType").def()};const i=(0,o.defineComponent)({name:"Modal",props:Object.assign({},t),emits:["quick-close","quickClose","hidden","shown","close"],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"}},fullscreenStyle:function(){return{width:"".concat(100,"%"),height:"".concat(100,"%")}}},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.zIndex),t.$emit("shown"),t.$emit("quick-close",t.$el),t.$emit("quickClose",t.$el)})):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,c,p,h,u=this,f=this.maxHeight?{maxHeight:this.maxHeight}:{},y="bk-modal-body ".concat("slide"===this.animateType?this.direction:"");return(0,o.createVNode)("div",{class:["bk-modal-wrapper",this.extCls,this.size],style:[this.compStyle,this.fullscreen?this.fullscreenStyle:""]},[(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[u.isShow?(0,o.createVNode)("div",{class:y},[(0,o.createVNode)("div",{class:"bk-modal-header"},[null!==(i=null===(t=(e=u.$slots).header)||void 0===t?void 0:t.call(e))&&void 0!==i?i:""]),(0,o.createVNode)("div",{class:"bk-modal-content",style:["show"===u.dialogType?"padding-bottom: 20px":"",Object.assign({},f)]},[null!==(n=null===(r=(s=u.$slots).default)||void 0===r?void 0:r.call(s))&&void 0!==n?n:""]),"show"===u.dialogType?"":(0,o.createVNode)("div",{class:"bk-modal-footer"},[null!==(a=null===(d=(l=u.$slots).footer)||void 0===d?void 0:d.call(l))&&void 0!==a?a:""]),(0,o.createVNode)("div",{class:["bk-modal-close",u.closeIcon?"":"close-icon"]},[null!==(h=null===(p=(c=u.$slots).close)||void 0===p?void 0:p.call(c))&&void 0!==h?h:""])]):""]}})])}});var n=(0,e.withInstallProps)(i,{propsMixin:t},!0);const l=n})(),r})()));
|
package/lib/modal/modal.d.ts
CHANGED
@@ -58,6 +58,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
58
58
|
} & {
|
59
59
|
default: boolean;
|
60
60
|
};
|
61
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
62
|
+
default: number;
|
63
|
+
};
|
61
64
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
62
65
|
default: string;
|
63
66
|
};
|
@@ -158,6 +161,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
158
161
|
} & {
|
159
162
|
default: boolean;
|
160
163
|
};
|
164
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
165
|
+
default: number;
|
166
|
+
};
|
161
167
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
162
168
|
default: string;
|
163
169
|
};
|
@@ -198,6 +204,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
198
204
|
}, {
|
199
205
|
title: string;
|
200
206
|
multiInstance: boolean;
|
207
|
+
zIndex: number;
|
201
208
|
showMask: boolean;
|
202
209
|
extCls: string | unknown[];
|
203
210
|
width: string | number;
|
@@ -5,6 +5,7 @@ declare const BkSideslider: {
|
|
5
5
|
$props: Partial<{
|
6
6
|
title: string;
|
7
7
|
multiInstance: boolean;
|
8
|
+
zIndex: number;
|
8
9
|
showMask: boolean;
|
9
10
|
extCls: string | unknown[];
|
10
11
|
width: string | number;
|
@@ -89,6 +90,9 @@ declare const BkSideslider: {
|
|
89
90
|
} & {
|
90
91
|
default: boolean;
|
91
92
|
};
|
93
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
94
|
+
default: number;
|
95
|
+
};
|
92
96
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
93
97
|
default: string;
|
94
98
|
};
|
@@ -123,7 +127,7 @@ declare const BkSideslider: {
|
|
123
127
|
onShown?: (...args: any[]) => any;
|
124
128
|
onClosed?: (...args: any[]) => any;
|
125
129
|
"onAnimation-end"?: (...args: any[]) => any;
|
126
|
-
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "showMask" | "extCls" | "width" | "height" | "isShow" | "draggable" | "size" | "direction" | "maxHeight" | "renderDirective" | "transfer" | "dialogType" | "infoType" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType">;
|
130
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "title" | "multiInstance" | "zIndex" | "showMask" | "extCls" | "width" | "height" | "isShow" | "draggable" | "size" | "direction" | "maxHeight" | "renderDirective" | "transfer" | "dialogType" | "infoType" | "quickClose" | "scrollable" | "closeIcon" | "escClose" | "fullscreen" | "animateType">;
|
127
131
|
$attrs: {
|
128
132
|
[x: string]: unknown;
|
129
133
|
};
|
@@ -202,6 +206,9 @@ declare const BkSideslider: {
|
|
202
206
|
} & {
|
203
207
|
default: boolean;
|
204
208
|
};
|
209
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
210
|
+
default: number;
|
211
|
+
};
|
205
212
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
206
213
|
default: string;
|
207
214
|
};
|
@@ -239,6 +246,7 @@ declare const BkSideslider: {
|
|
239
246
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("hidden" | "update:isShow" | "shown" | "closed" | "animation-end")[], string, {
|
240
247
|
title: string;
|
241
248
|
multiInstance: boolean;
|
249
|
+
zIndex: number;
|
242
250
|
showMask: boolean;
|
243
251
|
extCls: string | unknown[];
|
244
252
|
width: string | number;
|
@@ -343,6 +351,9 @@ declare const BkSideslider: {
|
|
343
351
|
} & {
|
344
352
|
default: boolean;
|
345
353
|
};
|
354
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
355
|
+
default: number;
|
356
|
+
};
|
346
357
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
347
358
|
default: string;
|
348
359
|
};
|
@@ -446,6 +457,9 @@ declare const BkSideslider: {
|
|
446
457
|
} & {
|
447
458
|
default: boolean;
|
448
459
|
};
|
460
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
461
|
+
default: number;
|
462
|
+
};
|
449
463
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
450
464
|
default: string;
|
451
465
|
};
|
@@ -483,6 +497,7 @@ declare const BkSideslider: {
|
|
483
497
|
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("hidden" | "update:isShow" | "shown" | "closed" | "animation-end")[], "hidden" | "update:isShow" | "shown" | "closed" | "animation-end", {
|
484
498
|
title: string;
|
485
499
|
multiInstance: boolean;
|
500
|
+
zIndex: number;
|
486
501
|
showMask: boolean;
|
487
502
|
extCls: string | unknown[];
|
488
503
|
width: string | number;
|
@@ -63,6 +63,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
63
63
|
} & {
|
64
64
|
default: boolean;
|
65
65
|
};
|
66
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
67
|
+
default: number;
|
68
|
+
};
|
66
69
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
67
70
|
default: string;
|
68
71
|
};
|
@@ -156,6 +159,9 @@ declare const _default: import("vue").DefineComponent<{
|
|
156
159
|
} & {
|
157
160
|
default: boolean;
|
158
161
|
};
|
162
|
+
zIndex: import("vue-types").VueTypeValidableDef<number> & {
|
163
|
+
default: number;
|
164
|
+
};
|
159
165
|
maxHeight: import("vue-types").VueTypeValidableDef<string> & {
|
160
166
|
default: string;
|
161
167
|
};
|
@@ -193,6 +199,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
193
199
|
}, {
|
194
200
|
title: string;
|
195
201
|
multiInstance: boolean;
|
202
|
+
zIndex: number;
|
196
203
|
showMask: boolean;
|
197
204
|
extCls: string | unknown[];
|
198
205
|
width: string | number;
|
package/lib/table/index.d.ts
CHANGED
@@ -670,6 +670,7 @@ declare const BkColumn: {
|
|
670
670
|
sort: string | boolean | {
|
671
671
|
sortFn: any;
|
672
672
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
673
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
673
674
|
};
|
674
675
|
type: string;
|
675
676
|
minWidth: string | number;
|
@@ -707,10 +708,12 @@ declare const BkColumn: {
|
|
707
708
|
sort: import("vue-types").VueTypeDef<string | boolean | {
|
708
709
|
sortFn: any;
|
709
710
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
711
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
710
712
|
}> & {
|
711
713
|
default: string | boolean | (() => {
|
712
714
|
sortFn: any;
|
713
715
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
716
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
714
717
|
});
|
715
718
|
};
|
716
719
|
filter: import("vue-types").VueTypeDef<string | boolean | {
|
@@ -775,10 +778,12 @@ declare const BkColumn: {
|
|
775
778
|
sort: import("vue-types").VueTypeDef<string | boolean | {
|
776
779
|
sortFn: any;
|
777
780
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
781
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
778
782
|
}> & {
|
779
783
|
default: string | boolean | (() => {
|
780
784
|
sortFn: any;
|
781
785
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
786
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
782
787
|
});
|
783
788
|
};
|
784
789
|
filter: import("vue-types").VueTypeDef<string | boolean | {
|
@@ -811,6 +816,7 @@ declare const BkColumn: {
|
|
811
816
|
sort: string | boolean | {
|
812
817
|
sortFn: any;
|
813
818
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
819
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
814
820
|
};
|
815
821
|
type: string;
|
816
822
|
minWidth: string | number;
|
@@ -868,10 +874,12 @@ declare const BkColumn: {
|
|
868
874
|
sort: import("vue-types").VueTypeDef<string | boolean | {
|
869
875
|
sortFn: any;
|
870
876
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
877
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
871
878
|
}> & {
|
872
879
|
default: string | boolean | (() => {
|
873
880
|
sortFn: any;
|
874
881
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
882
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
875
883
|
});
|
876
884
|
};
|
877
885
|
filter: import("vue-types").VueTypeDef<string | boolean | {
|
@@ -926,10 +934,12 @@ declare const BkColumn: {
|
|
926
934
|
sort: import("vue-types").VueTypeDef<string | boolean | {
|
927
935
|
sortFn: any;
|
928
936
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
937
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
929
938
|
}> & {
|
930
939
|
default: string | boolean | (() => {
|
931
940
|
sortFn: any;
|
932
941
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
942
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
933
943
|
});
|
934
944
|
};
|
935
945
|
filter: import("vue-types").VueTypeDef<string | boolean | {
|
@@ -962,6 +972,7 @@ declare const BkColumn: {
|
|
962
972
|
sort: string | boolean | {
|
963
973
|
sortFn: any;
|
964
974
|
sortScope: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
975
|
+
value: (string | object | (() => string) | ((props: Record<string, unknown>) => string)) & string;
|
965
976
|
};
|
966
977
|
type: string;
|
967
978
|
minWidth: string | number;
|