bkui-vue 1.0.3-beta.66.dialog.3 → 1.0.3-beta.67
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 +70 -70
- package/dist/index.esm.js +18476 -19285
- package/dist/index.umd.js +70 -70
- package/dist/style.css +1 -1
- package/dist/style.variable.css +1 -1
- package/lib/components.d.ts +0 -1
- package/lib/components.js +0 -1
- package/lib/dialog/dialog.css +84 -135
- package/lib/dialog/dialog.d.ts +133 -32
- package/lib/dialog/dialog.less +76 -9
- package/lib/dialog/dialog.variable.css +84 -135
- package/lib/dialog/index.d.ts +314 -84
- package/lib/dialog/index.js +221 -206
- package/lib/dialog/props.d.ts +48 -8
- package/lib/info-box/index.d.ts +2 -2
- package/lib/info-box/index.js +173 -318
- package/lib/info-box/info-box.css +7 -63
- package/lib/info-box/info-box.d.ts +16 -17
- package/lib/info-box/info-box.less +14 -76
- package/lib/info-box/info-box.variable.css +7 -63
- package/lib/modal/hooks.d.ts +1 -1
- package/lib/modal/index.d.ts +350 -16
- package/lib/modal/index.js +675 -183
- package/lib/modal/modal.css +32 -131
- package/lib/modal/modal.d.ts +134 -6
- package/lib/modal/modal.less +29 -84
- package/lib/modal/modal.variable.css +32 -131
- package/lib/modal/props.mixin.d.ts +53 -2
- package/lib/overflow-title/index.js +52 -46
- package/lib/resize-layout/index.js +1 -1
- package/lib/select/index.js +2 -2
- package/lib/shared/index.d.ts +1 -0
- package/lib/shared/index.js +48 -1
- package/lib/shared/mask.d.ts +11 -0
- package/lib/sideslider/index.d.ts +222 -31
- package/lib/sideslider/index.js +40 -64
- package/lib/sideslider/sideslider.css +86 -17
- package/lib/sideslider/sideslider.d.ts +105 -14
- package/lib/sideslider/sideslider.less +107 -27
- package/lib/sideslider/sideslider.variable.css +86 -17
- package/lib/table/const.d.ts +1 -1
- package/lib/table/index.d.ts +0 -23
- package/lib/table/index.js +77 -220
- package/lib/table/plugins/head-filter.css +4 -8
- package/lib/table/plugins/head-filter.less +3 -6
- package/lib/table/plugins/head-filter.variable.css +4 -8
- package/lib/table/plugins/use-fixed-column.d.ts +1 -1
- package/lib/table/plugins/use-pagination.d.ts +1 -3
- package/lib/table/props.d.ts +0 -8
- package/lib/table/table.css +46 -106
- package/lib/table/table.d.ts +0 -11
- package/lib/table/table.less +58 -43
- package/lib/table/table.variable.css +46 -106
- package/lib/table/use-attributes.d.ts +0 -1
- package/lib/table/use-render.d.ts +1 -1
- package/lib/table-column/index.js +2 -6
- package/lib/tree/index.d.ts +0 -23
- package/lib/tree/index.js +3 -9
- package/lib/tree/props.d.ts +0 -8
- package/lib/tree/tree.css +2 -76
- package/lib/tree/tree.d.ts +0 -11
- package/lib/tree/tree.variable.css +2 -76
- package/lib/virtual-render/index.d.ts +0 -27
- package/lib/virtual-render/index.js +76 -285
- package/lib/virtual-render/props.d.ts +0 -16
- package/lib/virtual-render/use-fix-top.d.ts +7 -2
- package/lib/virtual-render/v-virtual-render.d.ts +1 -2
- package/lib/virtual-render/virtual-render.css +2 -76
- package/lib/virtual-render/virtual-render.d.ts +0 -13
- package/lib/virtual-render/virtual-render.less +3 -3
- package/lib/virtual-render/virtual-render.variable.css +2 -76
- package/package.json +1 -1
- package/lib/info-box/render-component.d.ts +0 -4
- package/lib/modal/mask.d.ts +0 -6
- package/lib/scrollbar/index.d.ts +0 -15
- package/lib/scrollbar/index.js +0 -18756
- package/lib/scrollbar/scrollbar-core/can-use-dom.d.ts +0 -2
- package/lib/scrollbar/scrollbar-core/helpers.d.ts +0 -5
- package/lib/scrollbar/scrollbar-core/index.d.ts +0 -240
- package/lib/scrollbar/scrollbar-core/mouse-wheel.d.ts +0 -5
- package/lib/scrollbar/scrollbar-core/scrollbar-width.d.ts +0 -1
- package/lib/scrollbar/scrollbar.css +0 -75
- package/lib/scrollbar/scrollbar.less +0 -94
- package/lib/scrollbar/scrollbar.variable.css +0 -204
- package/lib/table/plugins/use-shift-key.d.ts +0 -11
- package/lib/virtual-render/use-scrollbar.d.ts +0 -24
package/lib/table/index.d.ts
CHANGED
@@ -162,11 +162,6 @@ declare const BkTable: {
|
|
162
162
|
rowDraggable: import("vue-types").VueTypeDef<any> & {
|
163
163
|
default: any;
|
164
164
|
};
|
165
|
-
shiftMultiChecked: import("vue-types").VueTypeValidableDef<boolean> & {
|
166
|
-
default: boolean;
|
167
|
-
} & {
|
168
|
-
default: boolean;
|
169
|
-
};
|
170
165
|
}>> & {
|
171
166
|
onDragend?: (_args: {
|
172
167
|
sourceEvent: DragEvent;
|
@@ -491,11 +486,6 @@ declare const BkTable: {
|
|
491
486
|
rowDraggable: import("vue-types").VueTypeDef<any> & {
|
492
487
|
default: any;
|
493
488
|
};
|
494
|
-
shiftMultiChecked: import("vue-types").VueTypeValidableDef<boolean> & {
|
495
|
-
default: boolean;
|
496
|
-
} & {
|
497
|
-
default: boolean;
|
498
|
-
};
|
499
489
|
}>> & {
|
500
490
|
onDragend?: (_args: {
|
501
491
|
sourceEvent: DragEvent;
|
@@ -622,7 +612,6 @@ declare const BkTable: {
|
|
622
612
|
prependStyle: import("vue").CSSProperties;
|
623
613
|
isFlex: boolean;
|
624
614
|
rowDraggable: any;
|
625
|
-
shiftMultiChecked: boolean;
|
626
615
|
}, true, {}, {}, {
|
627
616
|
P: {};
|
628
617
|
B: {};
|
@@ -788,11 +777,6 @@ declare const BkTable: {
|
|
788
777
|
rowDraggable: import("vue-types").VueTypeDef<any> & {
|
789
778
|
default: any;
|
790
779
|
};
|
791
|
-
shiftMultiChecked: import("vue-types").VueTypeValidableDef<boolean> & {
|
792
|
-
default: boolean;
|
793
|
-
} & {
|
794
|
-
default: boolean;
|
795
|
-
};
|
796
780
|
}>> & {
|
797
781
|
onDragend?: (_args: {
|
798
782
|
sourceEvent: DragEvent;
|
@@ -919,7 +903,6 @@ declare const BkTable: {
|
|
919
903
|
prependStyle: import("vue").CSSProperties;
|
920
904
|
isFlex: boolean;
|
921
905
|
rowDraggable: any;
|
922
|
-
shiftMultiChecked: boolean;
|
923
906
|
}>;
|
924
907
|
__isFragment?: never;
|
925
908
|
__isTeleport?: never;
|
@@ -1082,11 +1065,6 @@ declare const BkTable: {
|
|
1082
1065
|
rowDraggable: import("vue-types").VueTypeDef<any> & {
|
1083
1066
|
default: any;
|
1084
1067
|
};
|
1085
|
-
shiftMultiChecked: import("vue-types").VueTypeValidableDef<boolean> & {
|
1086
|
-
default: boolean;
|
1087
|
-
} & {
|
1088
|
-
default: boolean;
|
1089
|
-
};
|
1090
1068
|
}>> & {
|
1091
1069
|
onDragend?: (_args: {
|
1092
1070
|
sourceEvent: DragEvent;
|
@@ -1296,7 +1274,6 @@ declare const BkTable: {
|
|
1296
1274
|
prependStyle: import("vue").CSSProperties;
|
1297
1275
|
isFlex: boolean;
|
1298
1276
|
rowDraggable: any;
|
1299
|
-
shiftMultiChecked: boolean;
|
1300
1277
|
}, {}, string, {}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("vue").Plugin<any[]> & Readonly<{
|
1301
1278
|
Column: import("vue").DefineComponent<{
|
1302
1279
|
label: import("vue-types").VueTypeDef<import("./props").LabelFunctionString>;
|