bk-magic-vue 2.4.8 → 2.4.9-beta.1

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.
@@ -13498,6 +13498,10 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
13498
13498
  -webkit-animation-direction:normal;
13499
13499
  animation-direction:normal;
13500
13500
  }
13501
+ .bk-spin .bk-spin-rotation.bk-spin-rotation-default .rotate{
13502
+ -webkit-animation-name:fadeDefault;
13503
+ animation-name:fadeDefault;
13504
+ }
13501
13505
  .bk-spin .bk-spin-rotation.bk-spin-rotation-primary .rotate{
13502
13506
  -webkit-animation-name:fadePrimary;
13503
13507
  animation-name:fadePrimary;
@@ -13518,6 +13522,9 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
13518
13522
  -webkit-animation-name:fadeInfo;
13519
13523
  animation-name:fadeInfo;
13520
13524
  }
13525
+ .bk-spin .bk-spin-rotation.bk-spin-rotation-default-wait .rotate{
13526
+ background-color:#c4c6cc;
13527
+ }
13521
13528
  .bk-spin .bk-spin-rotation.bk-spin-rotation-primary-wait .rotate{
13522
13529
  background-color:#3c96ff;
13523
13530
  }
@@ -13642,19 +13649,22 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
13642
13649
  }
13643
13650
  .bk-spin .bk-spin-icon-wait{
13644
13651
  -webkit-animation:none;
13645
- animation:none
13652
+ animation:none;
13653
+ }
13654
+ .bk-spin .bk-spin-icon-default{
13655
+ color:#c4c6cc;
13646
13656
  }
13647
13657
  .bk-spin .bk-spin-icon-primary{
13648
- color:#3c96ff
13658
+ color:#3c96ff;
13649
13659
  }
13650
13660
  .bk-spin .bk-spin-icon-success{
13651
- color:#2dcb56
13661
+ color:#2dcb56;
13652
13662
  }
13653
13663
  .bk-spin .bk-spin-icon-warning{
13654
- color:#ffb848
13664
+ color:#ffb848;
13655
13665
  }
13656
13666
  .bk-spin .bk-spin-icon-danger{
13657
- color:#ff5656
13667
+ color:#ff5656;
13658
13668
  }
13659
13669
  .bk-spin .bk-spin-icon-info{
13660
13670
  color:#979ba5;
@@ -13706,6 +13716,24 @@ th.bk-table-column-selection .cell, th.bk-table-column-expand .cell, td.bk-table
13706
13716
  -ms-flex-align:center;
13707
13717
  align-items:center;
13708
13718
  }
13719
+ @-webkit-keyframes fadeDefault{
13720
+ 0%{
13721
+ background-color:#c4c6cc;
13722
+ }
13723
+
13724
+ 100%{
13725
+ background-color:none;
13726
+ }
13727
+ }
13728
+ @keyframes fadeDefault{
13729
+ 0%{
13730
+ background-color:#c4c6cc;
13731
+ }
13732
+
13733
+ 100%{
13734
+ background-color:none;
13735
+ }
13736
+ }
13709
13737
  @keyframes fadePrimary{
13710
13738
  0%{
13711
13739
  background-color:#3c96ff;
@@ -2041,7 +2041,7 @@
2041
2041
  type: String,
2042
2042
  default: 'primary',
2043
2043
  validator: function validator(value) {
2044
- if (!['primary', 'warning', 'success', 'danger', 'info'].includes(value)) {
2044
+ if (!['default', 'primary', 'warning', 'success', 'danger', 'info'].includes(value)) {
2045
2045
  console.error("theme property is not valid: '".concat(value, "'"));
2046
2046
  return false;
2047
2047
  }