bkui-vue 1.0.3-beta.66.dialog.4 → 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.
Files changed (84) hide show
  1. package/dist/index.cjs.js +70 -70
  2. package/dist/index.esm.js +18482 -19291
  3. package/dist/index.umd.js +70 -70
  4. package/dist/style.css +1 -1
  5. package/dist/style.variable.css +1 -1
  6. package/lib/components.d.ts +0 -1
  7. package/lib/components.js +0 -1
  8. package/lib/dialog/dialog.css +84 -135
  9. package/lib/dialog/dialog.d.ts +133 -32
  10. package/lib/dialog/dialog.less +76 -9
  11. package/lib/dialog/dialog.variable.css +84 -135
  12. package/lib/dialog/index.d.ts +314 -84
  13. package/lib/dialog/index.js +221 -206
  14. package/lib/dialog/props.d.ts +48 -8
  15. package/lib/info-box/index.d.ts +2 -2
  16. package/lib/info-box/index.js +173 -318
  17. package/lib/info-box/info-box.css +7 -63
  18. package/lib/info-box/info-box.d.ts +16 -17
  19. package/lib/info-box/info-box.less +14 -76
  20. package/lib/info-box/info-box.variable.css +7 -63
  21. package/lib/modal/hooks.d.ts +1 -1
  22. package/lib/modal/index.d.ts +350 -16
  23. package/lib/modal/index.js +675 -183
  24. package/lib/modal/modal.css +32 -131
  25. package/lib/modal/modal.d.ts +134 -6
  26. package/lib/modal/modal.less +29 -84
  27. package/lib/modal/modal.variable.css +32 -131
  28. package/lib/modal/props.mixin.d.ts +53 -2
  29. package/lib/overflow-title/index.js +52 -46
  30. package/lib/shared/index.d.ts +1 -0
  31. package/lib/shared/index.js +48 -1
  32. package/lib/shared/mask.d.ts +11 -0
  33. package/lib/sideslider/index.d.ts +222 -31
  34. package/lib/sideslider/index.js +40 -64
  35. package/lib/sideslider/sideslider.css +86 -17
  36. package/lib/sideslider/sideslider.d.ts +105 -14
  37. package/lib/sideslider/sideslider.less +107 -27
  38. package/lib/sideslider/sideslider.variable.css +86 -17
  39. package/lib/table/const.d.ts +1 -1
  40. package/lib/table/index.d.ts +0 -23
  41. package/lib/table/index.js +77 -220
  42. package/lib/table/plugins/head-filter.css +4 -8
  43. package/lib/table/plugins/head-filter.less +3 -6
  44. package/lib/table/plugins/head-filter.variable.css +4 -8
  45. package/lib/table/plugins/use-fixed-column.d.ts +1 -1
  46. package/lib/table/plugins/use-pagination.d.ts +1 -3
  47. package/lib/table/props.d.ts +0 -8
  48. package/lib/table/table.css +46 -106
  49. package/lib/table/table.d.ts +0 -11
  50. package/lib/table/table.less +58 -43
  51. package/lib/table/table.variable.css +46 -106
  52. package/lib/table/use-attributes.d.ts +0 -1
  53. package/lib/table/use-render.d.ts +1 -1
  54. package/lib/table-column/index.js +2 -6
  55. package/lib/tree/index.d.ts +0 -23
  56. package/lib/tree/index.js +3 -9
  57. package/lib/tree/props.d.ts +0 -8
  58. package/lib/tree/tree.css +2 -76
  59. package/lib/tree/tree.d.ts +0 -11
  60. package/lib/tree/tree.variable.css +2 -76
  61. package/lib/virtual-render/index.d.ts +0 -27
  62. package/lib/virtual-render/index.js +76 -285
  63. package/lib/virtual-render/props.d.ts +0 -16
  64. package/lib/virtual-render/use-fix-top.d.ts +7 -2
  65. package/lib/virtual-render/v-virtual-render.d.ts +1 -2
  66. package/lib/virtual-render/virtual-render.css +2 -76
  67. package/lib/virtual-render/virtual-render.d.ts +0 -13
  68. package/lib/virtual-render/virtual-render.less +3 -3
  69. package/lib/virtual-render/virtual-render.variable.css +2 -76
  70. package/package.json +1 -1
  71. package/lib/info-box/render-component.d.ts +0 -4
  72. package/lib/modal/mask.d.ts +0 -6
  73. package/lib/scrollbar/index.d.ts +0 -15
  74. package/lib/scrollbar/index.js +0 -18756
  75. package/lib/scrollbar/scrollbar-core/can-use-dom.d.ts +0 -2
  76. package/lib/scrollbar/scrollbar-core/helpers.d.ts +0 -5
  77. package/lib/scrollbar/scrollbar-core/index.d.ts +0 -240
  78. package/lib/scrollbar/scrollbar-core/mouse-wheel.d.ts +0 -5
  79. package/lib/scrollbar/scrollbar-core/scrollbar-width.d.ts +0 -1
  80. package/lib/scrollbar/scrollbar.css +0 -75
  81. package/lib/scrollbar/scrollbar.less +0 -94
  82. package/lib/scrollbar/scrollbar.variable.css +0 -204
  83. package/lib/table/plugins/use-shift-key.d.ts +0 -11
  84. package/lib/virtual-render/use-scrollbar.d.ts +0 -24
@@ -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>;