@syncfusion/ej2-splitbuttons 19.4.38 → 19.4.52

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 (51) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +1 -1
  3. package/dist/ej2-splitbuttons.umd.min.js +2 -2
  4. package/dist/ej2-splitbuttons.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-splitbuttons.es2015.js +20 -1
  6. package/dist/es6/ej2-splitbuttons.es2015.js.map +1 -1
  7. package/dist/es6/ej2-splitbuttons.es5.js +20 -1
  8. package/dist/es6/ej2-splitbuttons.es5.js.map +1 -1
  9. package/dist/global/ej2-splitbuttons.min.js +2 -2
  10. package/dist/global/ej2-splitbuttons.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +7 -7
  13. package/src/common/common-model.d.ts +1 -1
  14. package/src/common/common.js +4 -1
  15. package/src/drop-down-button/drop-down-button-model.d.ts +1 -1
  16. package/src/drop-down-button/drop-down-button.js +22 -1
  17. package/styles/bootstrap-dark.css +1 -1
  18. package/styles/bootstrap.css +1 -1
  19. package/styles/bootstrap5-dark.css +12 -12
  20. package/styles/bootstrap5.css +12 -12
  21. package/styles/drop-down-button/_bootstrap5-definition.scss +1 -1
  22. package/styles/drop-down-button/_tailwind-definition.scss +1 -1
  23. package/styles/drop-down-button/bootstrap5-dark.css +3 -3
  24. package/styles/drop-down-button/bootstrap5.css +3 -3
  25. package/styles/drop-down-button/tailwind-dark.css +3 -3
  26. package/styles/drop-down-button/tailwind.css +3 -3
  27. package/styles/fabric-dark.css +1 -1
  28. package/styles/fabric.css +1 -1
  29. package/styles/highcontrast-light.css +1 -1
  30. package/styles/highcontrast.css +1 -1
  31. package/styles/material-dark.css +1 -1
  32. package/styles/material.css +1 -1
  33. package/styles/progress-button/_bootstrap5-definition.scss +7 -7
  34. package/styles/progress-button/_tailwind-definition.scss +7 -7
  35. package/styles/progress-button/bootstrap5-dark.css +8 -8
  36. package/styles/progress-button/bootstrap5.css +8 -8
  37. package/styles/progress-button/tailwind-dark.css +8 -8
  38. package/styles/progress-button/tailwind.css +8 -8
  39. package/styles/split-button/_layout.scss +1 -1
  40. package/styles/split-button/bootstrap-dark.css +1 -1
  41. package/styles/split-button/bootstrap.css +1 -1
  42. package/styles/split-button/bootstrap5-dark.css +1 -1
  43. package/styles/split-button/bootstrap5.css +1 -1
  44. package/styles/split-button/fabric-dark.css +1 -1
  45. package/styles/split-button/fabric.css +1 -1
  46. package/styles/split-button/highcontrast-light.css +1 -1
  47. package/styles/split-button/highcontrast.css +1 -1
  48. package/styles/split-button/material-dark.css +1 -1
  49. package/styles/split-button/material.css +1 -1
  50. package/styles/tailwind-dark.css +11 -11
  51. package/styles/tailwind.css +11 -11
@@ -593,38 +593,38 @@
593
593
  }
594
594
 
595
595
  .e-progress {
596
- background-color: rgba(55, 65, 81, 0.2);
596
+ background-color: rgba(107, 114, 128, 0.2);
597
597
  }
598
598
 
599
599
  *.e-primary .e-progress,
600
600
  *.e-success .e-progress,
601
601
  *.e-danger .e-progress,
602
602
  *.e-info .e-progress {
603
- background-color: rgba(55, 65, 81, 0.2);
603
+ background-color: rgba(107, 114, 128, 0.2);
604
604
  }
605
605
 
606
606
  *.e-warning .e-progress {
607
- background-color: rgba(55, 65, 81, 0.2);
607
+ background-color: rgba(107, 114, 128, 0.2);
608
608
  }
609
609
 
610
610
  *.e-flat.e-primary .e-progress {
611
- background-color: rgba(255, 255, 255, 0.2);
611
+ background-color: rgba(79, 70, 229, 0.2);
612
612
  }
613
613
 
614
614
  *.e-flat.e-success .e-progress {
615
- background-color: rgba(255, 255, 255, 0.2);
615
+ background-color: rgba(21, 128, 61, 0.2);
616
616
  }
617
617
 
618
618
  *.e-flat.e-info .e-progress {
619
- background-color: rgba(255, 255, 255, 0.2);
619
+ background-color: rgba(14, 116, 144, 0.2);
620
620
  }
621
621
 
622
622
  *.e-flat.e-warning .e-progress {
623
- background-color: rgba(255, 255, 255, 0.2);
623
+ background-color: rgba(194, 65, 12, 0.2);
624
624
  }
625
625
 
626
626
  *.e-flat.e-danger .e-progress {
627
- background-color: rgba(255, 255, 255, 0.2);
627
+ background-color: rgba(220, 38, 38, 0.2);
628
628
  }
629
629
 
630
630
  *.e-outline:not(:focus).e-primary .e-progress {
@@ -23,7 +23,7 @@
23
23
  }
24
24
  @else {
25
25
  padding-left: 10px;
26
- padding-right: 4px;
26
+ padding-right: 10px;
27
27
  }
28
28
 
29
29
  &:focus {
@@ -12,7 +12,7 @@
12
12
  text-transform: none;
13
13
  z-index: 1;
14
14
  padding-left: 10px;
15
- padding-right: 4px;
15
+ padding-right: 10px;
16
16
  }
17
17
 
18
18
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -12,7 +12,7 @@
12
12
  text-transform: none;
13
13
  z-index: 1;
14
14
  padding-left: 10px;
15
- padding-right: 4px;
15
+ padding-right: 10px;
16
16
  }
17
17
 
18
18
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -12,7 +12,7 @@
12
12
  text-transform: none;
13
13
  z-index: 1;
14
14
  padding-left: 10px;
15
- padding-right: 4px;
15
+ padding-right: 10px;
16
16
  }
17
17
 
18
18
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -12,7 +12,7 @@
12
12
  text-transform: none;
13
13
  z-index: 1;
14
14
  padding-left: 10px;
15
- padding-right: 4px;
15
+ padding-right: 10px;
16
16
  }
17
17
 
18
18
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -12,7 +12,7 @@
12
12
  text-transform: none;
13
13
  z-index: 1;
14
14
  padding-left: 10px;
15
- padding-right: 4px;
15
+ padding-right: 10px;
16
16
  }
17
17
 
18
18
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -12,7 +12,7 @@
12
12
  text-transform: none;
13
13
  z-index: 1;
14
14
  padding-left: 10px;
15
- padding-right: 4px;
15
+ padding-right: 10px;
16
16
  }
17
17
 
18
18
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -12,7 +12,7 @@
12
12
  text-transform: none;
13
13
  z-index: 1;
14
14
  padding-left: 10px;
15
- padding-right: 4px;
15
+ padding-right: 10px;
16
16
  }
17
17
 
18
18
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -12,7 +12,7 @@
12
12
  text-transform: none;
13
13
  z-index: 1;
14
14
  padding-left: 10px;
15
- padding-right: 4px;
15
+ padding-right: 10px;
16
16
  }
17
17
 
18
18
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -13,7 +13,7 @@
13
13
  text-transform: none;
14
14
  z-index: 1;
15
15
  padding-left: 10px;
16
- padding-right: 4px;
16
+ padding-right: 10px;
17
17
  }
18
18
 
19
19
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -13,7 +13,7 @@
13
13
  text-transform: none;
14
14
  z-index: 1;
15
15
  padding-left: 10px;
16
- padding-right: 4px;
16
+ padding-right: 10px;
17
17
  }
18
18
 
19
19
  .e-split-btn-wrapper .e-split-btn:focus {
@@ -118,8 +118,8 @@
118
118
  cursor: pointer;
119
119
  display: -ms-flexbox;
120
120
  display: flex;
121
- height: 30px;
122
- line-height: 30px;
121
+ height: 28px;
122
+ line-height: 28px;
123
123
  padding: 0 12px;
124
124
  }
125
125
 
@@ -137,7 +137,7 @@
137
137
  .e-dropdown-popup ul .e-item .e-menu-icon {
138
138
  float: left;
139
139
  font-size: 18px;
140
- line-height: 30px;
140
+ line-height: 28px;
141
141
  margin-right: 11px;
142
142
  vertical-align: middle;
143
143
  width: 1em;
@@ -2081,38 +2081,38 @@
2081
2081
  }
2082
2082
 
2083
2083
  .e-progress {
2084
- background-color: rgba(255, 255, 255, 0.2);
2084
+ background-color: rgba(209, 213, 219, 0.2);
2085
2085
  }
2086
2086
 
2087
2087
  *.e-primary .e-progress,
2088
2088
  *.e-success .e-progress,
2089
2089
  *.e-danger .e-progress,
2090
2090
  *.e-info .e-progress {
2091
- background-color: rgba(255, 255, 255, 0.2);
2091
+ background-color: rgba(209, 213, 219, 0.2);
2092
2092
  }
2093
2093
 
2094
2094
  *.e-warning .e-progress {
2095
- background-color: rgba(255, 255, 255, 0.2);
2095
+ background-color: rgba(209, 213, 219, 0.2);
2096
2096
  }
2097
2097
 
2098
2098
  *.e-flat.e-primary .e-progress {
2099
- background-color: rgba(0, 0, 0, 0.2);
2099
+ background-color: rgba(34, 211, 238, 0.2);
2100
2100
  }
2101
2101
 
2102
2102
  *.e-flat.e-success .e-progress {
2103
- background-color: rgba(0, 0, 0, 0.2);
2103
+ background-color: rgba(34, 197, 94, 0.2);
2104
2104
  }
2105
2105
 
2106
2106
  *.e-flat.e-info .e-progress {
2107
- background-color: rgba(0, 0, 0, 0.2);
2107
+ background-color: rgba(56, 189, 248, 0.2);
2108
2108
  }
2109
2109
 
2110
2110
  *.e-flat.e-warning .e-progress {
2111
- background-color: rgba(0, 0, 0, 0.2);
2111
+ background-color: rgba(249, 115, 22, 0.2);
2112
2112
  }
2113
2113
 
2114
2114
  *.e-flat.e-danger .e-progress {
2115
- background-color: rgba(0, 0, 0, 0.2);
2115
+ background-color: rgba(248, 113, 113, 0.2);
2116
2116
  }
2117
2117
 
2118
2118
  *.e-outline:not(:focus).e-primary .e-progress {
@@ -118,8 +118,8 @@
118
118
  cursor: pointer;
119
119
  display: -ms-flexbox;
120
120
  display: flex;
121
- height: 30px;
122
- line-height: 30px;
121
+ height: 28px;
122
+ line-height: 28px;
123
123
  padding: 0 12px;
124
124
  }
125
125
 
@@ -137,7 +137,7 @@
137
137
  .e-dropdown-popup ul .e-item .e-menu-icon {
138
138
  float: left;
139
139
  font-size: 18px;
140
- line-height: 30px;
140
+ line-height: 28px;
141
141
  margin-right: 11px;
142
142
  vertical-align: middle;
143
143
  width: 1em;
@@ -2081,38 +2081,38 @@
2081
2081
  }
2082
2082
 
2083
2083
  .e-progress {
2084
- background-color: rgba(55, 65, 81, 0.2);
2084
+ background-color: rgba(107, 114, 128, 0.2);
2085
2085
  }
2086
2086
 
2087
2087
  *.e-primary .e-progress,
2088
2088
  *.e-success .e-progress,
2089
2089
  *.e-danger .e-progress,
2090
2090
  *.e-info .e-progress {
2091
- background-color: rgba(55, 65, 81, 0.2);
2091
+ background-color: rgba(107, 114, 128, 0.2);
2092
2092
  }
2093
2093
 
2094
2094
  *.e-warning .e-progress {
2095
- background-color: rgba(55, 65, 81, 0.2);
2095
+ background-color: rgba(107, 114, 128, 0.2);
2096
2096
  }
2097
2097
 
2098
2098
  *.e-flat.e-primary .e-progress {
2099
- background-color: rgba(255, 255, 255, 0.2);
2099
+ background-color: rgba(79, 70, 229, 0.2);
2100
2100
  }
2101
2101
 
2102
2102
  *.e-flat.e-success .e-progress {
2103
- background-color: rgba(255, 255, 255, 0.2);
2103
+ background-color: rgba(21, 128, 61, 0.2);
2104
2104
  }
2105
2105
 
2106
2106
  *.e-flat.e-info .e-progress {
2107
- background-color: rgba(255, 255, 255, 0.2);
2107
+ background-color: rgba(14, 116, 144, 0.2);
2108
2108
  }
2109
2109
 
2110
2110
  *.e-flat.e-warning .e-progress {
2111
- background-color: rgba(255, 255, 255, 0.2);
2111
+ background-color: rgba(194, 65, 12, 0.2);
2112
2112
  }
2113
2113
 
2114
2114
  *.e-flat.e-danger .e-progress {
2115
- background-color: rgba(255, 255, 255, 0.2);
2115
+ background-color: rgba(220, 38, 38, 0.2);
2116
2116
  }
2117
2117
 
2118
2118
  *.e-outline:not(:focus).e-primary .e-progress {