bk-magic-vue 2.4.4 → 2.4.7

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 (56) hide show
  1. package/dist/bk-magic-vue.css +132 -113
  2. package/dist/bk-magic-vue.js +1810 -1052
  3. package/dist/bk-magic-vue.min.css +1 -1
  4. package/dist/bk-magic-vue.min.css.gz +0 -0
  5. package/dist/bk-magic-vue.min.css.map +1 -1
  6. package/dist/bk-magic-vue.min.js +1 -1
  7. package/dist/bk-magic-vue.min.js.gz +0 -0
  8. package/dist/bk-magic-vue.min.js.map +1 -1
  9. package/lib/affix.js +5 -2
  10. package/lib/big-tree.js +9 -1
  11. package/lib/button.js +263 -94
  12. package/lib/card.js +2 -0
  13. package/lib/cascade.js +7 -0
  14. package/lib/dialog.js +278 -109
  15. package/lib/dropdown-menu.js +1936 -1891
  16. package/lib/image-viewer.js +2 -2
  17. package/lib/image.js +2 -2
  18. package/lib/info-box.js +277 -108
  19. package/lib/input.js +2 -0
  20. package/lib/pagination.js +303 -68
  21. package/lib/select.js +255 -20
  22. package/lib/slider.js +2 -0
  23. package/lib/table-setting-content.js +202 -33
  24. package/lib/table.js +88 -8
  25. package/lib/transfer.js +2 -0
  26. package/lib/ui/bk-magic-vue.css +132 -113
  27. package/lib/ui/bk-magic-vue.min.css +1 -1
  28. package/lib/ui/bk-magic-vue.min.css.gz +0 -0
  29. package/lib/ui/bk-magic-vue.min.css.map +1 -1
  30. package/lib/ui/button.css +11 -2
  31. package/lib/ui/button.min.css +1 -1
  32. package/lib/ui/button.min.css.map +1 -1
  33. package/lib/ui/divider.css +0 -17
  34. package/lib/ui/divider.min.css +1 -1
  35. package/lib/ui/divider.min.css.map +1 -1
  36. package/lib/ui/dropdown-menu.css +87 -88
  37. package/lib/ui/dropdown-menu.min.css +1 -1
  38. package/lib/ui/dropdown-menu.min.css.map +1 -1
  39. package/lib/ui/image-viewer.css +14 -8
  40. package/lib/ui/image-viewer.min.css +1 -1
  41. package/lib/ui/image-viewer.min.css.map +1 -1
  42. package/lib/ui/pagination.css +1 -0
  43. package/lib/ui/pagination.min.css +1 -1
  44. package/lib/ui/pagination.min.css.map +1 -1
  45. package/lib/ui/select.css +19 -0
  46. package/lib/ui/select.min.css +1 -1
  47. package/lib/ui/select.min.css.map +1 -1
  48. package/lib/ui/table.css +6 -0
  49. package/lib/ui/table.min.css +1 -1
  50. package/lib/ui/table.min.css.map +1 -1
  51. package/lib/ui/zoom-image.css +1 -0
  52. package/lib/ui/zoom-image.min.css +1 -1
  53. package/lib/ui/zoom-image.min.css.map +1 -1
  54. package/lib/upload.js +1308 -20
  55. package/lib/version-detail.js +238 -69
  56. package/package.json +5 -4
package/lib/dialog.js CHANGED
@@ -809,105 +809,80 @@
809
809
  var _parseInt$2 = _parseInt$1;
810
810
 
811
811
  var script = {
812
- name: 'bk-button',
812
+ name: 'bk-spin',
813
813
  props: {
814
814
  theme: {
815
815
  type: String,
816
- default: 'default',
816
+ default: 'primary',
817
817
  validator: function validator(value) {
818
- if (['default', 'primary', 'warning', 'success', 'danger'].indexOf(value) < 0) {
818
+ if (!['primary', 'warning', 'success', 'danger', 'info'].includes(value)) {
819
819
  console.error("theme property is not valid: '".concat(value, "'"));
820
820
  return false;
821
821
  }
822
822
  return true;
823
823
  }
824
824
  },
825
- hoverTheme: {
826
- type: String,
827
- default: '',
828
- validator: function validator(value) {
829
- if (['', 'primary', 'warning', 'success', 'danger'].indexOf(value) < 0) {
830
- console.error("hoverTheme property is not valid: '".concat(value, "'"));
831
- return false;
832
- }
833
- return true;
834
- }
835
- },
836
825
  size: {
837
826
  type: String,
838
- default: 'normal',
827
+ default: 'small',
839
828
  validator: function validator(value) {
840
- if (['small', 'normal', 'large'].indexOf(value) < 0) {
829
+ if (!['large', 'normal', 'small', 'mini'].includes(value)) {
841
830
  console.error("size property is not valid: '".concat(value, "'"));
842
831
  return false;
843
832
  }
844
833
  return true;
845
834
  }
846
835
  },
847
- title: {
836
+ icon: {
848
837
  type: String,
849
838
  default: ''
850
839
  },
851
- icon: String,
852
- iconRight: String,
853
- disabled: Boolean,
854
- loading: Boolean,
855
- outline: Boolean,
856
- text: Boolean,
857
- nativeType: {
858
- type: String,
859
- default: 'button'
860
- },
861
840
  extCls: {
862
841
  type: String,
863
842
  default: ''
864
- }
865
- },
866
- data: function data() {
867
- return {
868
- showSlot: true
869
- };
870
- },
871
- computed: {
872
- iconType: function iconType() {
873
- var icon = this.icon || '';
874
- if (icon) {
875
- if (icon.indexOf('icon') === 0) {
876
- icon = icon.replace(/^(icon-)/, '');
877
- }
878
- }
879
- return icon;
880
843
  },
881
- iconRightType: function iconRightType() {
882
- var iconRight = this.iconRight || '';
883
- if (iconRight) {
884
- if (iconRight.indexOf('icon') === 0) {
885
- iconRight = iconRight.replace(/^(icon-)/, '');
886
- }
887
- }
888
- return iconRight;
889
- },
890
- themeType: function themeType() {
891
- if (this.text) {
892
- if (this.theme === 'default') {
893
- return 'primary';
844
+ placement: {
845
+ type: String,
846
+ default: 'bottom',
847
+ validator: function validator(value) {
848
+ if (!['bottom', 'right'].includes(value)) {
849
+ console.error("placement property is not valid: '".concat(value, "'"));
850
+ return false;
894
851
  }
852
+ return true;
895
853
  }
896
- return this.theme;
897
854
  },
898
- buttonCls: function buttonCls() {
899
- return ["bk-".concat(this.themeType), "bk-button-".concat(this.size), this.hoverTheme ? "bk-button-hover bk-".concat(this.hoverTheme) : this.text ? 'bk-button-text' : 'bk-button', this.disabled ? 'is-disabled' : '', this.loading ? 'is-loading' : '', this.outline ? 'is-outline' : '', !this.showSlot ? 'no-slot' : ''];
855
+ spinning: {
856
+ type: Boolean,
857
+ default: true
900
858
  }
901
859
  },
902
- mounted: function mounted() {
903
- this.showSlot = this.$slots.default !== undefined;
860
+ data: function data() {
861
+ return {};
904
862
  },
905
- methods: {
906
- handleClick: function handleClick(e) {
907
- if (!this.disabled && !this.loading) {
908
- this.$emit('click', e);
909
- this.$el.blur();
910
- }
863
+ computed: {
864
+ dotClass: function dotClass() {
865
+ var dotClass = ["bk-spin-rotation", "bk-spin-rotation-".concat(this.size), "bk-spin-rotation-".concat(this.theme)];
866
+ !this.spinning && dotClass.push("bk-spin-rotation-".concat(this.theme, "-wait"));
867
+ this.placement === 'right' && dotClass.push("bk-spin-rotation-flex");
868
+ this.placement === 'bottom' && dotClass.push("bk-spin-rotation-margin");
869
+ return dotClass;
870
+ },
871
+ slotTypeClass: function slotTypeClass() {
872
+ var slotType = ["rotate"];
873
+ this.$slots.default && this.placement === 'right' && slotType.push("slots-".concat(this.placement, "-rotate"));
874
+ return slotType;
875
+ },
876
+ iconClass: function iconClass() {
877
+ var iconClass = ["bk-spin-icon", "bk-spin-icon-".concat(this.size), "bk-spin-icon-".concat(this.theme)];
878
+ !this.spinning && iconClass.push("bk-spin-icon-wait");
879
+ this.placement === 'right' && iconClass.push("bk-display-flex");
880
+ return iconClass;
881
+ },
882
+ slotClass: function slotClass() {
883
+ var slotClass = ["bk-spin-title", "bk-spin-title-".concat(this.placement)];
884
+ this.placement === 'right' && slotClass.push("bk-spin-title-".concat(this.size), "bk-display-flex");
885
+ return slotClass;
911
886
  }
912
887
  }
913
888
  };
@@ -982,39 +957,49 @@
982
957
 
983
958
  var _c = _vm._self._c || _h;
984
959
 
985
- return _c('button', _vm._b({
986
- class: [_vm.buttonCls, _vm.extCls],
960
+ return _c('transition', {
987
961
  attrs: {
988
- "title": _vm.title,
989
- "disabled": _vm.disabled,
990
- "type": _vm.nativeType
991
- },
992
- on: {
993
- "click": _vm.handleClick
962
+ "name": "fade"
994
963
  }
995
- }, 'button', _vm.$attrs, false), [_vm.loading ? _c('div', {
996
- staticClass: "bk-button-loading"
997
964
  }, [_c('div', {
998
- staticClass: "bounce1"
965
+ class: ['bk-spin', _vm.extCls]
966
+ }, [_c('div', {
967
+ style: {
968
+ display: _vm.placement === 'right' ? 'flex' : ''
969
+ }
970
+ }, [!_vm.icon ? _c('div', {
971
+ class: [_vm.dotClass]
972
+ }, [_c('div', {
973
+ staticClass: "rotate1",
974
+ class: _vm.slotTypeClass
999
975
  }), _c('div', {
1000
- staticClass: "bounce2"
976
+ staticClass: "rotate2",
977
+ class: _vm.slotTypeClass
1001
978
  }), _c('div', {
1002
- staticClass: "bounce3"
979
+ staticClass: "rotate3",
980
+ class: _vm.slotTypeClass
1003
981
  }), _c('div', {
1004
- staticClass: "bounce4"
1005
- })]) : _vm._e(), _c('div', {
1006
- class: _vm.loading ? 'bk-loading-wrapper' : ''
1007
- }, [_vm.iconType ? _c('i', {
1008
- staticClass: "bk-icon left-icon",
1009
- class: ['icon-' + _vm.iconType, _vm.iconType === 'loading' ? 'bk-button-icon-loading' : '']
1010
- }, [_vm.iconType === 'loading' ? [_c('span', {
1011
- staticClass: "loading"
1012
- })] : _vm._e()], 2) : _vm._e(), _c('span', [_vm._t("default")], 2), _vm.iconRightType ? _c('i', {
1013
- staticClass: "bk-icon right-icon",
1014
- class: ['icon-' + _vm.iconRightType, _vm.iconRightType === 'loading' ? 'bk-button-icon-loading' : '']
1015
- }, [_vm.iconRightType === 'loading' ? [_c('span', {
1016
- staticClass: "loading"
1017
- })] : _vm._e()], 2) : _vm._e()])]);
982
+ staticClass: "rotate4",
983
+ class: _vm.slotTypeClass
984
+ }), _c('div', {
985
+ staticClass: "rotate5",
986
+ class: _vm.slotTypeClass
987
+ }), _c('div', {
988
+ staticClass: "rotate6",
989
+ class: _vm.slotTypeClass
990
+ }), _c('div', {
991
+ staticClass: "rotate7",
992
+ class: _vm.slotTypeClass
993
+ }), _c('div', {
994
+ staticClass: "rotate8",
995
+ class: _vm.slotTypeClass
996
+ })]) : _vm._e(), _vm.icon ? _c('div', {
997
+ class: [_vm.iconClass]
998
+ }, [_c('i', {
999
+ class: ['bk-icon', 'icon-' + _vm.icon]
1000
+ })]) : _vm._e(), _vm.$slots.default ? _c('div', {
1001
+ class: [_vm.slotClass]
1002
+ }, [_vm._t("default")], 2) : _vm._e()])])]);
1018
1003
  };
1019
1004
 
1020
1005
  var __vue_staticRenderFns__ = [];
@@ -1177,6 +1162,190 @@
1177
1162
 
1178
1163
  setInstaller(__vue_component__);
1179
1164
 
1165
+ var script$1 = {
1166
+ name: 'bk-button',
1167
+ components: {
1168
+ BkSpin: __vue_component__
1169
+ },
1170
+ props: {
1171
+ theme: {
1172
+ type: String,
1173
+ default: 'default',
1174
+ validator: function validator(value) {
1175
+ if (['default', 'primary', 'warning', 'success', 'danger'].indexOf(value) < 0) {
1176
+ console.error("theme property is not valid: '".concat(value, "'"));
1177
+ return false;
1178
+ }
1179
+ return true;
1180
+ }
1181
+ },
1182
+ hoverTheme: {
1183
+ type: String,
1184
+ default: '',
1185
+ validator: function validator(value) {
1186
+ if (['', 'primary', 'warning', 'success', 'danger'].indexOf(value) < 0) {
1187
+ console.error("hoverTheme property is not valid: '".concat(value, "'"));
1188
+ return false;
1189
+ }
1190
+ return true;
1191
+ }
1192
+ },
1193
+ size: {
1194
+ type: String,
1195
+ default: 'normal',
1196
+ validator: function validator(value) {
1197
+ if (['small', 'normal', 'large'].indexOf(value) < 0) {
1198
+ console.error("size property is not valid: '".concat(value, "'"));
1199
+ return false;
1200
+ }
1201
+ return true;
1202
+ }
1203
+ },
1204
+ title: {
1205
+ type: String,
1206
+ default: ''
1207
+ },
1208
+ icon: String,
1209
+ iconRight: String,
1210
+ disabled: Boolean,
1211
+ loading: Boolean,
1212
+ outline: Boolean,
1213
+ text: Boolean,
1214
+ nativeType: {
1215
+ type: String,
1216
+ default: 'button'
1217
+ },
1218
+ extCls: {
1219
+ type: String,
1220
+ default: ''
1221
+ }
1222
+ },
1223
+ data: function data() {
1224
+ return {
1225
+ showSlot: true
1226
+ };
1227
+ },
1228
+ computed: {
1229
+ iconType: function iconType() {
1230
+ var icon = this.icon || '';
1231
+ if (icon) {
1232
+ if (icon.indexOf('icon') === 0) {
1233
+ icon = icon.replace(/^(icon-)/, '');
1234
+ }
1235
+ }
1236
+ return icon;
1237
+ },
1238
+ iconRightType: function iconRightType() {
1239
+ var iconRight = this.iconRight || '';
1240
+ if (iconRight) {
1241
+ if (iconRight.indexOf('icon') === 0) {
1242
+ iconRight = iconRight.replace(/^(icon-)/, '');
1243
+ }
1244
+ }
1245
+ return iconRight;
1246
+ },
1247
+ themeType: function themeType() {
1248
+ if (this.text) {
1249
+ if (this.theme === 'default') {
1250
+ return 'primary';
1251
+ }
1252
+ }
1253
+ return this.theme;
1254
+ },
1255
+ buttonCls: function buttonCls() {
1256
+ return ["bk-".concat(this.themeType), "bk-button-".concat(this.size), this.hoverTheme ? "bk-button-hover bk-".concat(this.hoverTheme) : this.text ? 'bk-button-text' : 'bk-button', this.disabled ? 'is-disabled' : '', this.loading ? 'is-loading' : '', this.outline ? 'is-outline' : '', !this.showSlot ? 'no-slot' : ''];
1257
+ }
1258
+ },
1259
+ mounted: function mounted() {
1260
+ this.showSlot = this.$slots.default !== undefined;
1261
+ },
1262
+ methods: {
1263
+ handleClick: function handleClick(e) {
1264
+ if (!this.disabled && !this.loading) {
1265
+ this.$emit('click', e);
1266
+ this.$el.blur();
1267
+ }
1268
+ }
1269
+ }
1270
+ };
1271
+
1272
+ /* script */
1273
+ var __vue_script__$1 = script$1;
1274
+ /* template */
1275
+
1276
+ var __vue_render__$1 = function __vue_render__() {
1277
+ var _vm = this;
1278
+
1279
+ var _h = _vm.$createElement;
1280
+
1281
+ var _c = _vm._self._c || _h;
1282
+
1283
+ return _c('button', _vm._b({
1284
+ class: [_vm.buttonCls, _vm.extCls],
1285
+ attrs: {
1286
+ "title": _vm.title,
1287
+ "disabled": _vm.disabled,
1288
+ "type": _vm.nativeType
1289
+ },
1290
+ on: {
1291
+ "click": _vm.handleClick
1292
+ }
1293
+ }, 'button', _vm.$attrs, false), [_vm.loading ? _c('div', {
1294
+ staticClass: "bk-button-loading"
1295
+ }, [!_vm.text ? [_c('div', {
1296
+ staticClass: "bounce bounce1"
1297
+ }), _c('div', {
1298
+ staticClass: "bounce bounce2"
1299
+ }), _c('div', {
1300
+ staticClass: "bounce bounce3"
1301
+ }), _c('div', {
1302
+ staticClass: "bounce bounce4"
1303
+ })] : [_c('bk-spin', {
1304
+ attrs: {
1305
+ "size": "mini",
1306
+ "theme": _vm.theme
1307
+ }
1308
+ })]], 2) : _vm._e(), _c('div', {
1309
+ class: _vm.loading ? 'bk-loading-wrapper' : ''
1310
+ }, [_vm.iconType ? _c('i', {
1311
+ staticClass: "bk-icon left-icon",
1312
+ class: ['icon-' + _vm.iconType, _vm.iconType === 'loading' ? 'bk-button-icon-loading' : '']
1313
+ }, [_vm.iconType === 'loading' ? [_c('span', {
1314
+ staticClass: "loading"
1315
+ })] : _vm._e()], 2) : _vm._e(), _c('span', [_vm._t("default")], 2), _vm.iconRightType ? _c('i', {
1316
+ staticClass: "bk-icon right-icon",
1317
+ class: ['icon-' + _vm.iconRightType, _vm.iconRightType === 'loading' ? 'bk-button-icon-loading' : '']
1318
+ }, [_vm.iconRightType === 'loading' ? [_c('span', {
1319
+ staticClass: "loading"
1320
+ })] : _vm._e()], 2) : _vm._e()])]);
1321
+ };
1322
+
1323
+ var __vue_staticRenderFns__$1 = [];
1324
+ /* style */
1325
+
1326
+ var __vue_inject_styles__$1 = undefined;
1327
+ /* scoped */
1328
+
1329
+ var __vue_scope_id__$1 = undefined;
1330
+ /* module identifier */
1331
+
1332
+ var __vue_module_identifier__$1 = undefined;
1333
+ /* functional template */
1334
+
1335
+ var __vue_is_functional_template__$1 = false;
1336
+ /* style inject */
1337
+
1338
+ /* style inject SSR */
1339
+
1340
+ /* style inject shadow dom */
1341
+
1342
+ var __vue_component__$1 = /*#__PURE__*/normalizeComponent_1({
1343
+ render: __vue_render__$1,
1344
+ staticRenderFns: __vue_staticRenderFns__$1
1345
+ }, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, undefined, undefined);
1346
+
1347
+ setInstaller(__vue_component__$1);
1348
+
1180
1349
  var _stringAt = function (TO_STRING) {
1181
1350
  return function (that, pos) {
1182
1351
  var s = String(_defined(that));
@@ -1971,10 +2140,10 @@
1971
2140
  }
1972
2141
  };
1973
2142
 
1974
- var script$1 = {
2143
+ var script$2 = {
1975
2144
  name: 'bk-dialog',
1976
2145
  components: {
1977
- bkButton: __vue_component__
2146
+ bkButton: __vue_component__$1
1978
2147
  },
1979
2148
  directives: {
1980
2149
  transferDom: transferDom
@@ -2542,9 +2711,9 @@
2542
2711
  var img = new Image(); img.src = 'data:image/png;base64,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'; var __$_require_ui_images_default_loading_png__ = img.src;
2543
2712
 
2544
2713
  /* script */
2545
- var __vue_script__$1 = script$1;
2714
+ var __vue_script__$2 = script$2;
2546
2715
 
2547
- var __vue_render__$1 = function __vue_render__() {
2716
+ var __vue_render__$2 = function __vue_render__() {
2548
2717
  var _vm = this;
2549
2718
 
2550
2719
  var _h = _vm.$createElement;
@@ -2793,33 +2962,33 @@
2793
2962
  }) : _vm._e()])]) : _vm._e()]], 2)], 1)]);
2794
2963
  };
2795
2964
 
2796
- var __vue_staticRenderFns__$1 = [];
2965
+ var __vue_staticRenderFns__$2 = [];
2797
2966
  /* style */
2798
2967
 
2799
- var __vue_inject_styles__$1 = undefined;
2968
+ var __vue_inject_styles__$2 = undefined;
2800
2969
  /* scoped */
2801
2970
 
2802
- var __vue_scope_id__$1 = undefined;
2971
+ var __vue_scope_id__$2 = undefined;
2803
2972
  /* module identifier */
2804
2973
 
2805
- var __vue_module_identifier__$1 = undefined;
2974
+ var __vue_module_identifier__$2 = undefined;
2806
2975
  /* functional template */
2807
2976
 
2808
- var __vue_is_functional_template__$1 = false;
2977
+ var __vue_is_functional_template__$2 = false;
2809
2978
  /* style inject */
2810
2979
 
2811
2980
  /* style inject SSR */
2812
2981
 
2813
2982
  /* style inject shadow dom */
2814
2983
 
2815
- var __vue_component__$1 = /*#__PURE__*/normalizeComponent_1({
2816
- render: __vue_render__$1,
2817
- staticRenderFns: __vue_staticRenderFns__$1
2818
- }, __vue_inject_styles__$1, __vue_script__$1, __vue_scope_id__$1, __vue_is_functional_template__$1, __vue_module_identifier__$1, false, undefined, undefined, undefined);
2984
+ var __vue_component__$2 = /*#__PURE__*/normalizeComponent_1({
2985
+ render: __vue_render__$2,
2986
+ staticRenderFns: __vue_staticRenderFns__$2
2987
+ }, __vue_inject_styles__$2, __vue_script__$2, __vue_scope_id__$2, __vue_is_functional_template__$2, __vue_module_identifier__$2, false, undefined, undefined, undefined);
2819
2988
 
2820
- setInstaller(__vue_component__$1);
2989
+ setInstaller(__vue_component__$2);
2821
2990
 
2822
- exports.default = __vue_component__$1;
2991
+ exports.default = __vue_component__$2;
2823
2992
 
2824
2993
  Object.defineProperty(exports, '__esModule', { value: true });
2825
2994