@mdsfe/mds-ui 0.2.0 → 0.2.9-rc.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.
Files changed (131) hide show
  1. package/CHANGELOG.md +178 -0
  2. package/README.md +9 -9
  3. package/dist/_mixin/popper.js +1 -0
  4. package/dist/_util/_popper/dom-helper.js +284 -0
  5. package/dist/_util/_popper/popper-mixin.js +35 -0
  6. package/dist/_util/_popper/popper.js +1267 -0
  7. package/dist/_util/_popper/popup/popup-main.js +224 -0
  8. package/dist/_util/_popper/popup/popup-manager.js +205 -0
  9. package/dist/_util/_popper/vue-popper.js +204 -0
  10. package/dist/_util/popup/index.js +1 -1
  11. package/dist/_util/tree/node.js +2 -0
  12. package/dist/_util/tree/tree.js +65 -21
  13. package/dist/_util/util.js +29 -1
  14. package/dist/affix.js +18 -18
  15. package/dist/anchor.js +18 -18
  16. package/dist/avatar.js +17 -17
  17. package/dist/backtop.js +19 -19
  18. package/dist/badge.js +21 -21
  19. package/dist/bordershadow.js +20 -9
  20. package/dist/breadcrumb.js +18 -18
  21. package/dist/button.js +21 -21
  22. package/dist/card.js +18 -18
  23. package/dist/carousel.js +76 -76
  24. package/dist/cascader.js +4980 -0
  25. package/dist/cascaderpanel.js +645 -603
  26. package/dist/checkbox.js +23 -23
  27. package/dist/col.js +14 -14
  28. package/dist/collapse.js +6 -6
  29. package/dist/color.js +6 -6
  30. package/dist/datepicker.js +2487 -266
  31. package/dist/divider.js +19 -19
  32. package/dist/drawer.js +787 -37
  33. package/dist/dropdown.js +150 -104
  34. package/dist/empty.js +19 -19
  35. package/dist/font/iconfont.28359fa.ttf +0 -0
  36. package/dist/font/iconfont.486e3d3.woff2 +0 -0
  37. package/dist/font/iconfont.675049e.woff +0 -0
  38. package/dist/font.js +6 -6
  39. package/dist/form.js +28 -26
  40. package/dist/icon.js +55 -47
  41. package/dist/index.js +1 -1
  42. package/dist/input.js +65 -49
  43. package/dist/inputnumber.js +59 -39
  44. package/dist/layout.js +25 -25
  45. package/dist/list.js +17 -17
  46. package/dist/loading.js +21 -8
  47. package/dist/mds-ui.min.css +3 -3
  48. package/dist/mds-ui.min.js +19183 -15407
  49. package/dist/menu.js +31 -31
  50. package/dist/message.js +773 -24
  51. package/dist/modal.js +1146 -307
  52. package/dist/notification.js +27 -27
  53. package/dist/pagination.js +78 -55
  54. package/dist/popconfirm.js +36 -36
  55. package/dist/popover.js +2778 -48
  56. package/dist/progress.js +107 -65
  57. package/dist/radio.js +56 -54
  58. package/dist/rate.js +67 -59
  59. package/dist/row.js +14 -14
  60. package/dist/select.js +847 -503
  61. package/dist/slider.js +25 -25
  62. package/dist/slottable.js +2663 -129
  63. package/dist/steps.js +18 -18
  64. package/dist/style/affix.css +224 -2
  65. package/dist/style/anchor.css +224 -2
  66. package/dist/style/avatar.css +224 -2
  67. package/dist/style/badge.css +224 -2
  68. package/dist/style/bordershadow.css +236 -59
  69. package/dist/style/breadcrumb.css +224 -2
  70. package/dist/style/button.css +234 -5
  71. package/dist/style/card.css +224 -2
  72. package/dist/style/carousel.css +224 -2
  73. package/dist/style/cascader.css +214 -0
  74. package/dist/style/cascaderpanel.css +13 -16
  75. package/dist/style/checkbox.css +230 -8
  76. package/dist/style/col.css +225 -3
  77. package/dist/style/collapse.css +224 -2
  78. package/dist/style/color.css +224 -2
  79. package/dist/style/datepicker.css +236 -2
  80. package/dist/style/divider.css +227 -2
  81. package/dist/style/drawer.css +224 -2
  82. package/dist/style/dropdown.css +234 -5
  83. package/dist/style/empty.css +224 -2
  84. package/dist/style/font.css +226 -4
  85. package/dist/style/form.css +224 -2
  86. package/dist/style/icon.css +226 -3
  87. package/dist/style/input.css +231 -5
  88. package/dist/style/inputnumber.css +224 -2
  89. package/dist/style/layout.css +224 -2
  90. package/dist/style/list.css +224 -2
  91. package/dist/style/loading.css +2527 -2
  92. package/dist/style/menu.css +340 -129
  93. package/dist/style/message.css +1 -4
  94. package/dist/style/modal.css +247 -25
  95. package/dist/style/notification.css +224 -2
  96. package/dist/style/pagination.css +236 -7
  97. package/dist/style/popconfirm.css +334 -180
  98. package/dist/style/popover.css +324 -177
  99. package/dist/style/progress.css +226 -3
  100. package/dist/style/radio.css +225 -3
  101. package/dist/style/rate.css +226 -3
  102. package/dist/style/row.css +225 -3
  103. package/dist/style/select.css +240 -12
  104. package/dist/style/slider.css +224 -2
  105. package/dist/style/slottable.css +350 -149
  106. package/dist/style/steps.css +224 -2
  107. package/dist/style/switch.css +224 -2
  108. package/dist/style/table.css +458 -314
  109. package/dist/style/tabs.css +225 -18
  110. package/dist/style/tag.css +224 -2
  111. package/dist/style/text.css +224 -2
  112. package/dist/style/timeline.css +224 -2
  113. package/dist/style/timepicker.css +231 -6
  114. package/dist/style/tooltip.css +340 -129
  115. package/dist/style/tree.css +228 -6
  116. package/dist/style/typography.css +224 -2
  117. package/dist/style/upload.css +224 -2
  118. package/dist/switch.js +20 -20
  119. package/dist/table.js +3071 -201
  120. package/dist/tabs.js +24 -22
  121. package/dist/tag.js +17 -23
  122. package/dist/text.js +38 -22
  123. package/dist/timeline.js +14 -14
  124. package/dist/timepicker.js +3063 -172
  125. package/dist/tooltip.js +2550 -27
  126. package/dist/transfer.js +28 -28
  127. package/dist/transition.js +6 -6
  128. package/dist/tree.js +316 -171
  129. package/dist/typography.js +6 -6
  130. package/dist/upload.js +46 -38
  131. package/package.json +9 -5
@@ -504,7 +504,7 @@ a {
504
504
  }
505
505
  a:focus {
506
506
  text-decoration: underline;
507
- text-decoration-skip: ink;
507
+ text-decoration-skip-ink: auto;
508
508
  }
509
509
  a:hover {
510
510
  color: #3f89ff;
@@ -554,7 +554,7 @@ samp {
554
554
  font-display: auto;
555
555
  font-style: normal;
556
556
  /* project id 1921203 */
557
- src: url('//at.alicdn.com/t/font_1921203_dze2k4tp7o.woff2?t=1629700491964') format('woff2'), url('//at.alicdn.com/t/font_1921203_dze2k4tp7o.woff?t=1629700491964') format('woff'), url('//at.alicdn.com/t/font_1921203_dze2k4tp7o.ttf?t=1629700491964') format('truetype');
557
+ src: url(/dist/font/iconfont.486e3d3.woff2) format('woff2'), url(/dist/font/iconfont.675049e.woff) format('woff'), url(/dist/font/iconfont.28359fa.ttf) format('truetype');
558
558
  }
559
559
  .mdsicon {
560
560
  display: inline-block;
@@ -2071,6 +2071,54 @@ samp {
2071
2071
  .mdsicon-line-process:before {
2072
2072
  content: "\E60B";
2073
2073
  }
2074
+ .mdsicon-line-cluster:before {
2075
+ content: "\E6D2";
2076
+ }
2077
+ .mdsicon-line-approval:before {
2078
+ content: "\E6D1";
2079
+ }
2080
+ .mdsicon-line-whistory:before {
2081
+ content: "\E6D0";
2082
+ }
2083
+ .mdsicon-line-wtable:before {
2084
+ content: "\E6CF";
2085
+ }
2086
+ .mdsicon-line-Apply:before {
2087
+ content: "\E6CE";
2088
+ }
2089
+ .mdsicon-line-wlist:before {
2090
+ content: "\E6CD";
2091
+ }
2092
+ .mdsicon-line-monitor:before {
2093
+ content: "\E6CC";
2094
+ }
2095
+ .mdsicon-line-deploy:before {
2096
+ content: "\E6CB";
2097
+ }
2098
+ .mdsicon-line-gateway:before {
2099
+ content: "\E6CA";
2100
+ }
2101
+ .mdsicon-line-measure:before {
2102
+ content: "\E6C9";
2103
+ }
2104
+ .mdsicon-line-new:before {
2105
+ content: "\E6C8";
2106
+ }
2107
+ .mdsicon-line-data:before {
2108
+ content: "\E6C7";
2109
+ }
2110
+ .mdsicon-line-SCF:before {
2111
+ content: "\E6C6";
2112
+ }
2113
+ .mdsicon-line-order:before {
2114
+ content: "\E6C5";
2115
+ }
2116
+ .mdsicon-line-alert:before {
2117
+ content: "\E6C4";
2118
+ }
2119
+ .mdsicon-line-management:before {
2120
+ content: "\E6C3";
2121
+ }
2074
2122
  .mdsicon-line-trend-up:before {
2075
2123
  content: "\EA63";
2076
2124
  }
@@ -2509,6 +2557,9 @@ samp {
2509
2557
  .mdsicon-line-electronic-archives:before {
2510
2558
  content: "\E60D";
2511
2559
  }
2560
+ .mdsicon-line-doc:before {
2561
+ content: "\E707";
2562
+ }
2512
2563
  .mdsicon-line-send-forward:before {
2513
2564
  content: "\EAC6";
2514
2565
  }
@@ -4673,6 +4724,177 @@ samp {
4673
4724
  display: inline-block;
4674
4725
  animation: loadingCircle 6s infinite linear;
4675
4726
  }
4727
+ .mdsicon-line-recommended-2:before {
4728
+ content: "\E698";
4729
+ }
4730
+ .mdsicon-line-history-2:before {
4731
+ content: "\E697";
4732
+ }
4733
+ .mdsicon-fill-collect-1:before {
4734
+ content: "\E669";
4735
+ }
4736
+ .mdsicon-fill-praise-1:before {
4737
+ content: "\E66D";
4738
+ }
4739
+ .mdsicon-line-show:before {
4740
+ content: "\E659";
4741
+ }
4742
+ .mdsicon-line-praise-1:before {
4743
+ content: "\E65D";
4744
+ }
4745
+ .mdsicon-fill-book1:before {
4746
+ content: "\E63F";
4747
+ }
4748
+ .mdsicon-fill-beans:before {
4749
+ content: "\E640";
4750
+ }
4751
+ .mdsicon-fill-article:before {
4752
+ content: "\E641";
4753
+ }
4754
+ .mdsicon-fill-delete1:before {
4755
+ content: "\E642";
4756
+ }
4757
+ .mdsicon-fill-recommend:before {
4758
+ content: "\E643";
4759
+ }
4760
+ .mdsicon-fill-message:before {
4761
+ content: "\E644";
4762
+ }
4763
+ .mdsicon-fill-ranking:before {
4764
+ content: "\E645";
4765
+ }
4766
+ .mdsicon-fill-achievement:before {
4767
+ content: "\E646";
4768
+ }
4769
+ .mdsicon-fill-circle:before {
4770
+ content: "\E647";
4771
+ }
4772
+ .mdsicon-fill-figure-1:before {
4773
+ content: "\E648";
4774
+ }
4775
+ .mdsicon-fill-figure-2:before {
4776
+ content: "\E64A";
4777
+ }
4778
+ .mdsicon-fill-figure-7:before {
4779
+ content: "\E64B";
4780
+ }
4781
+ .mdsicon-fill-figure-4:before {
4782
+ content: "\E64C";
4783
+ }
4784
+ .mdsicon-fill-figure-10:before {
4785
+ content: "\E652";
4786
+ }
4787
+ .mdsicon-fill-figure-5:before {
4788
+ content: "\E653";
4789
+ }
4790
+ .mdsicon-fill-figure-3:before {
4791
+ content: "\E654";
4792
+ }
4793
+ .mdsicon-fill-figure-9:before {
4794
+ content: "\E655";
4795
+ }
4796
+ .mdsicon-fill-figure-6:before {
4797
+ content: "\E656";
4798
+ }
4799
+ .mdsicon-fill-figure-8:before {
4800
+ content: "\E657";
4801
+ }
4802
+ .mdsicon-line-article:before {
4803
+ content: "\E658";
4804
+ }
4805
+ .mdsicon-line-calendar1:before {
4806
+ content: "\E65A";
4807
+ }
4808
+ .mdsicon-line-add:before {
4809
+ content: "\E65B";
4810
+ }
4811
+ .mdsicon-line-download1:before {
4812
+ content: "\E65C";
4813
+ }
4814
+ .mdsicon-line-dynamic:before {
4815
+ content: "\E65E";
4816
+ }
4817
+ .mdsicon-line-change:before {
4818
+ content: "\E65F";
4819
+ }
4820
+ .mdsicon-line-course:before {
4821
+ content: "\E660";
4822
+ }
4823
+ .mdsicon-line-edit1:before {
4824
+ content: "\E661";
4825
+ }
4826
+ .mdsicon-line-comment:before {
4827
+ content: "\E662";
4828
+ }
4829
+ .mdsicon-line-delete1:before {
4830
+ content: "\E663";
4831
+ }
4832
+ .mdsicon-line-email:before {
4833
+ content: "\E664";
4834
+ }
4835
+ .mdsicon-line-message:before {
4836
+ content: "\E665";
4837
+ }
4838
+ .mdsicon-line-feedback:before {
4839
+ content: "\E666";
4840
+ }
4841
+ .mdsicon-line-face1:before {
4842
+ content: "\E667";
4843
+ }
4844
+ .mdsicon-line-link1:before {
4845
+ content: "\E668";
4846
+ }
4847
+ .mdsicon-line-member:before {
4848
+ content: "\E66A";
4849
+ }
4850
+ .mdsicon-line-picture:before {
4851
+ content: "\E66B";
4852
+ }
4853
+ .mdsicon-line-PSQ:before {
4854
+ content: "\E66C";
4855
+ }
4856
+ .mdsicon-line-time1:before {
4857
+ content: "\E66E";
4858
+ }
4859
+ .mdsicon-line-setting1:before {
4860
+ content: "\E66F";
4861
+ }
4862
+ .mdsicon-line-topic:before {
4863
+ content: "\E670";
4864
+ }
4865
+ .mdsicon-line-transmit:before {
4866
+ content: "\E671";
4867
+ }
4868
+ .mdsicon-line-select:before {
4869
+ content: "\E672";
4870
+ }
4871
+ .mdsicon-line-management1:before {
4872
+ content: "\E673";
4873
+ }
4874
+ .mdsicon-line-search1:before {
4875
+ content: "\E674";
4876
+ }
4877
+ .mdsicon-line-vote:before {
4878
+ content: "\E675";
4879
+ }
4880
+ .mdsicon-line-prompt:before {
4881
+ content: "\E676";
4882
+ }
4883
+ .mdsicon-line-video:before {
4884
+ content: "\E678";
4885
+ }
4886
+ .mdsicon-line-wechat:before {
4887
+ content: "\E67A";
4888
+ }
4889
+ .mdsicon-line-close1:before {
4890
+ content: "\E67B";
4891
+ }
4892
+ .mdsicon-line-home1:before {
4893
+ content: "\E67C";
4894
+ }
4895
+ .mdsicon-line-landmark:before {
4896
+ content: "\E67D";
4897
+ }
4676
4898
  .fade-enter,
4677
4899
  .fade-appear {
4678
4900
  animation-duration: 0.2s;
@@ -5520,169 +5742,158 @@ samp {
5520
5742
  /* stylelint-disable declaration-bang-space-before */
5521
5743
  .mds-tooltip {
5522
5744
  position: absolute;
5523
- z-index: 1060;
5524
- display: block;
5525
- visibility: visible;
5526
- word-break: break-all;
5745
+ border-radius: 4px;
5746
+ padding: 10px;
5527
5747
  font-size: 12px;
5528
5748
  line-height: 1.5;
5749
+ min-width: 10px;
5750
+ word-wrap: break-word;
5751
+ font-size: 14px;
5752
+ }
5753
+ .mds-tooltip .popper__arrow,
5754
+ .mds-tooltip .popper__arrow::after {
5755
+ position: absolute;
5756
+ display: block;
5757
+ width: 0;
5758
+ height: 0;
5759
+ border-color: transparent;
5760
+ border-style: solid;
5761
+ }
5762
+ .mds-tooltip .popper__arrow::after {
5763
+ content: " ";
5764
+ border-width: 5px;
5529
5765
  }
5530
5766
  .mds-tooltip-hidden {
5531
5767
  display: none;
5532
5768
  }
5769
+ .mds-tooltip.dark-mode {
5770
+ background: #303133;
5771
+ color: #ffffff;
5772
+ }
5773
+ .mds-tooltip.light-mode {
5774
+ background: #ffffff;
5775
+ box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
5776
+ }
5533
5777
  .mds-tooltip-placement-top,
5534
- .mds-tooltip-placement-topLeft,
5535
- .mds-tooltip-placement-topRight {
5536
- margin-bottom: 8px;
5778
+ .mds-tooltip-placement-top-start,
5779
+ .mds-tooltip-placement-top-end {
5780
+ margin-bottom: 9px;
5537
5781
  }
5538
5782
  .mds-tooltip-placement-right,
5539
- .mds-tooltip-placement-rightTop,
5540
- .mds-tooltip-placement-rightBottom {
5541
- margin-left: 8px;
5783
+ .mds-tooltip-placement-right-start,
5784
+ .mds-tooltip-placement-right-end {
5785
+ margin-left: 9px;
5542
5786
  }
5543
5787
  .mds-tooltip-placement-bottom,
5544
- .mds-tooltip-placement-bottomLeft,
5545
- .mds-tooltip-placement-bottomRight {
5546
- margin-top: 8px;
5788
+ .mds-tooltip-placement-bottom-start,
5789
+ .mds-tooltip-placement-bottom-end {
5790
+ margin-top: 9px;
5547
5791
  }
5548
5792
  .mds-tooltip-placement-left,
5549
- .mds-tooltip-placement-leftTop,
5550
- .mds-tooltip-placement-leftBottom {
5551
- margin-right: 8px;
5552
- }
5553
- .mds-tooltip-inner {
5554
- max-width: 250px;
5555
- padding: 8px 16px;
5556
- color: #fff;
5557
- text-align: center;
5558
- text-decoration: none;
5559
- background-color: #354052;
5560
- border-radius: 4px;
5561
- box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
5562
- min-height: 34px;
5563
- font-size: 14px;
5564
- font-family: PingFangSC-Regular;
5565
- font-weight: 400;
5566
- line-height: 22px;
5567
- }
5568
- .mds-tooltip-arrow {
5569
- position: absolute;
5570
- width: 0;
5571
- height: 0;
5572
- border-color: transparent;
5573
- border-style: solid;
5793
+ .mds-tooltip-placement-left-start,
5794
+ .mds-tooltip-placement-left-end {
5795
+ margin-right: 9px;
5796
+ }
5797
+ .mds-tooltip-placement-top .popper__arrow,
5798
+ .mds-tooltip-placement-top-start .popper__arrow,
5799
+ .mds-tooltip-placement-top-end .popper__arrow {
5800
+ bottom: -6px;
5801
+ border-width: 6px 6px 0;
5802
+ border-top-color: #354052;
5574
5803
  }
5575
- .mds-tooltip-placement-top .mds-tooltip-arrow,
5576
- .mds-tooltip-placement-topLeft .mds-tooltip-arrow,
5577
- .mds-tooltip-placement-topRight .mds-tooltip-arrow {
5578
- bottom: -5px;
5579
- border-width: 5px 5px 0;
5804
+ .mds-tooltip-placement-top .popper__arrow::after,
5805
+ .mds-tooltip-placement-top-start .popper__arrow::after,
5806
+ .mds-tooltip-placement-top-end .popper__arrow::after {
5807
+ bottom: 1px;
5580
5808
  border-top-color: #354052;
5809
+ border-width: 5px 5px 0;
5810
+ margin-left: -5px;
5581
5811
  }
5582
- .mds-tooltip-placement-top .mds-tooltip-light .mds-tooltip-inner,
5583
- .mds-tooltip-placement-topLeft .mds-tooltip-light .mds-tooltip-inner,
5584
- .mds-tooltip-placement-topRight .mds-tooltip-light .mds-tooltip-inner {
5585
- color: #354052;
5586
- background-color: #fff;
5812
+ .mds-tooltip-placement-top.light-mode .popper__arrow,
5813
+ .mds-tooltip-placement-top-start.light-mode .popper__arrow,
5814
+ .mds-tooltip-placement-top-end.light-mode .popper__arrow {
5815
+ border-top-color: #ebeef5;
5587
5816
  }
5588
- .mds-tooltip-placement-top .mds-tooltip-light .mds-tooltip-arrow,
5589
- .mds-tooltip-placement-topLeft .mds-tooltip-light .mds-tooltip-arrow,
5590
- .mds-tooltip-placement-topRight .mds-tooltip-light .mds-tooltip-arrow {
5817
+ .mds-tooltip-placement-top.light-mode .popper__arrow::after,
5818
+ .mds-tooltip-placement-top-start.light-mode .popper__arrow::after,
5819
+ .mds-tooltip-placement-top-end.light-mode .popper__arrow::after {
5591
5820
  border-top-color: #fff;
5592
5821
  }
5593
- .mds-tooltip-placement-top .mds-tooltip-arrow {
5594
- left: 50%;
5595
- margin-left: -5px;
5596
- }
5597
- .mds-tooltip-placement-topLeft .mds-tooltip-arrow {
5598
- left: 16px;
5599
- }
5600
- .mds-tooltip-placement-topRight .mds-tooltip-arrow {
5601
- right: 16px;
5822
+ .mds-tooltip-placement-right .popper__arrow,
5823
+ .mds-tooltip-placement-right-start .popper__arrow,
5824
+ .mds-tooltip-placement-right-end .popper__arrow {
5825
+ left: -6px;
5826
+ border-width: 6px 6px 6px 0;
5827
+ border-right-color: #354052;
5602
5828
  }
5603
- .mds-tooltip-placement-right .mds-tooltip-arrow,
5604
- .mds-tooltip-placement-rightTop .mds-tooltip-arrow,
5605
- .mds-tooltip-placement-rightBottom .mds-tooltip-arrow {
5606
- left: -5px;
5607
- border-width: 5px 5px 5px 0;
5829
+ .mds-tooltip-placement-right .popper__arrow::after,
5830
+ .mds-tooltip-placement-right-start .popper__arrow::after,
5831
+ .mds-tooltip-placement-right-end .popper__arrow::after {
5832
+ left: 1px;
5608
5833
  border-right-color: #354052;
5834
+ border-width: 5px 5px 5px 0;
5835
+ bottom: -5px;
5609
5836
  }
5610
- .mds-tooltip-placement-right .mds-tooltip-light .mds-tooltip-inner,
5611
- .mds-tooltip-placement-rightTop .mds-tooltip-light .mds-tooltip-inner,
5612
- .mds-tooltip-placement-rightBottom .mds-tooltip-light .mds-tooltip-inner {
5613
- color: #354052;
5614
- background-color: #fff;
5837
+ .mds-tooltip-placement-right.light-mode .popper__arrow,
5838
+ .mds-tooltip-placement-right-start.light-mode .popper__arrow,
5839
+ .mds-tooltip-placement-right-end.light-mode .popper__arrow {
5840
+ border-right-color: #ebeef5;
5615
5841
  }
5616
- .mds-tooltip-placement-right .mds-tooltip-light .mds-tooltip-arrow,
5617
- .mds-tooltip-placement-rightTop .mds-tooltip-light .mds-tooltip-arrow,
5618
- .mds-tooltip-placement-rightBottom .mds-tooltip-light .mds-tooltip-arrow {
5842
+ .mds-tooltip-placement-right.light-mode .popper__arrow::after,
5843
+ .mds-tooltip-placement-right-start.light-mode .popper__arrow::after,
5844
+ .mds-tooltip-placement-right-end.light-mode .popper__arrow::after {
5619
5845
  border-right-color: #fff;
5620
5846
  }
5621
- .mds-tooltip-placement-right .mds-tooltip-arrow {
5622
- top: 50%;
5623
- margin-top: -5px;
5624
- }
5625
- .mds-tooltip-placement-rightTop .mds-tooltip-arrow {
5626
- top: 8px;
5627
- }
5628
- .mds-tooltip-placement-rightBottom .mds-tooltip-arrow {
5629
- bottom: 8px;
5847
+ .mds-tooltip-placement-left .popper__arrow,
5848
+ .mds-tooltip-placement-left-start .popper__arrow,
5849
+ .mds-tooltip-placement-left-end .popper__arrow {
5850
+ right: -6px;
5851
+ border-width: 6px 0 6px 6px;
5852
+ border-left-color: #354052;
5630
5853
  }
5631
- .mds-tooltip-placement-left .mds-tooltip-arrow,
5632
- .mds-tooltip-placement-leftTop .mds-tooltip-arrow,
5633
- .mds-tooltip-placement-leftBottom .mds-tooltip-arrow {
5634
- right: -5px;
5635
- border-width: 5px 0 5px 5px;
5854
+ .mds-tooltip-placement-left .popper__arrow::after,
5855
+ .mds-tooltip-placement-left-start .popper__arrow::after,
5856
+ .mds-tooltip-placement-left-end .popper__arrow::after {
5857
+ right: 1px;
5636
5858
  border-left-color: #354052;
5859
+ border-width: 5px 0 5px 5px;
5860
+ margin-left: -5px;
5861
+ bottom: -5px;
5637
5862
  }
5638
- .mds-tooltip-placement-left .mds-tooltip-light .mds-tooltip-inner,
5639
- .mds-tooltip-placement-leftTop .mds-tooltip-light .mds-tooltip-inner,
5640
- .mds-tooltip-placement-leftBottom .mds-tooltip-light .mds-tooltip-inner {
5641
- color: #354052;
5642
- background-color: #fff;
5863
+ .mds-tooltip-placement-left.light-mode .popper__arrow,
5864
+ .mds-tooltip-placement-left-start.light-mode .popper__arrow,
5865
+ .mds-tooltip-placement-left-end.light-mode .popper__arrow {
5866
+ border-left-color: #ebeef5;
5643
5867
  }
5644
- .mds-tooltip-placement-left .mds-tooltip-light .mds-tooltip-arrow,
5645
- .mds-tooltip-placement-leftTop .mds-tooltip-light .mds-tooltip-arrow,
5646
- .mds-tooltip-placement-leftBottom .mds-tooltip-light .mds-tooltip-arrow {
5868
+ .mds-tooltip-placement-left.light-mode .popper__arrow::after,
5869
+ .mds-tooltip-placement-left-start.light-mode .popper__arrow::after,
5870
+ .mds-tooltip-placement-left-end.light-mode .popper__arrow::after {
5647
5871
  border-left-color: #fff;
5648
5872
  }
5649
- .mds-tooltip-placement-left .mds-tooltip-arrow {
5650
- top: 50%;
5651
- margin-top: -5px;
5652
- }
5653
- .mds-tooltip-placement-leftTop .mds-tooltip-arrow {
5654
- top: 8px;
5655
- }
5656
- .mds-tooltip-placement-leftBottom .mds-tooltip-arrow {
5657
- bottom: 8px;
5658
- }
5659
- .mds-tooltip-placement-bottom .mds-tooltip-arrow,
5660
- .mds-tooltip-placement-bottomLeft .mds-tooltip-arrow,
5661
- .mds-tooltip-placement-bottomRight .mds-tooltip-arrow {
5662
- top: -5px;
5663
- border-width: 0 5px 5px;
5873
+ .mds-tooltip-placement-bottom .popper__arrow,
5874
+ .mds-tooltip-placement-bottom-start .popper__arrow,
5875
+ .mds-tooltip-placement-bottom-end .popper__arrow {
5876
+ top: -6px;
5877
+ border-width: 0 6px 6px;
5664
5878
  border-bottom-color: #354052;
5665
5879
  }
5666
- .mds-tooltip-placement-bottom .mds-tooltip-light .mds-tooltip-inner,
5667
- .mds-tooltip-placement-bottomLeft .mds-tooltip-light .mds-tooltip-inner,
5668
- .mds-tooltip-placement-bottomRight .mds-tooltip-light .mds-tooltip-inner {
5669
- color: #354052;
5670
- background-color: #fff;
5671
- }
5672
- .mds-tooltip-placement-bottom .mds-tooltip-light .mds-tooltip-arrow,
5673
- .mds-tooltip-placement-bottomLeft .mds-tooltip-light .mds-tooltip-arrow,
5674
- .mds-tooltip-placement-bottomRight .mds-tooltip-light .mds-tooltip-arrow {
5675
- border-bottom-color: #fff;
5676
- }
5677
- .mds-tooltip-placement-bottom .mds-tooltip-arrow {
5678
- left: 50%;
5880
+ .mds-tooltip-placement-bottom .popper__arrow::after,
5881
+ .mds-tooltip-placement-bottom-start .popper__arrow::after,
5882
+ .mds-tooltip-placement-bottom-end .popper__arrow::after {
5883
+ top: 1px;
5884
+ border-top-color: #354052;
5885
+ border-width: 0 5px 5px;
5679
5886
  margin-left: -5px;
5680
5887
  }
5681
- .mds-tooltip-placement-bottomLeft .mds-tooltip-arrow {
5682
- left: 16px;
5888
+ .mds-tooltip-placement-bottom.light-mode .popper__arrow,
5889
+ .mds-tooltip-placement-bottom-start.light-mode .popper__arrow,
5890
+ .mds-tooltip-placement-bottom-end.light-mode .popper__arrow {
5891
+ border-bottom-color: #ebeef5;
5683
5892
  }
5684
- .mds-tooltip-placement-bottomRight .mds-tooltip-arrow {
5685
- right: 16px;
5893
+ .mds-tooltip-placement-bottom.light-mode .popper__arrow::after,
5894
+ .mds-tooltip-placement-bottom-start.light-mode .popper__arrow::after,
5895
+ .mds-tooltip-placement-bottom-end.light-mode .popper__arrow::after {
5896
+ border-bottom-color: #fff;
5686
5897
  }
5687
5898
  /* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
5688
5899
  /* stylelint-disable declaration-bang-space-before */
@@ -5698,20 +5909,6 @@ samp {
5698
5909
  table-layout: fixed;
5699
5910
  color: #354052;
5700
5911
  }
5701
- .mds-slot-table-tooltip {
5702
- max-height: 72px;
5703
- overflow-y: auto;
5704
- margin: 0;
5705
- border-radius: 2px;
5706
- box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.15);
5707
- }
5708
- .mds-slot-table-tooltip .mds-tooltip-inner {
5709
- padding: 6px 8px;
5710
- border-radius: 0;
5711
- }
5712
- .mds-slot-table-tooltip .mds-tooltip-arrow {
5713
- display: none;
5714
- }
5715
5912
  .mds-slot-table-loading-container {
5716
5913
  transition: all .3s;
5717
5914
  }
@@ -5733,14 +5930,18 @@ samp {
5733
5930
  .mds-slot-table-slot {
5734
5931
  display: none;
5735
5932
  }
5736
- .mds-slot-table-normal {
5737
- height: 56px;
5738
- padding: 17px 24px;
5933
+ th.mds-slot-table-normal {
5934
+ padding: 16px 24px;
5739
5935
  }
5740
- .mds-slot-table-mini {
5741
- height: 40px;
5936
+ td.mds-slot-table-normal .cell {
5937
+ padding: 16px 24px;
5938
+ }
5939
+ th.mds-slot-table-mini {
5742
5940
  font-size: 12px;
5743
- padding: 11px 16px;
5941
+ padding: 10px 16px;
5942
+ }
5943
+ td.mds-slot-table-mini .cell {
5944
+ padding: 10px 16px;
5744
5945
  }
5745
5946
  .mds-slot-table-header {
5746
5947
  overflow: hidden;