@syncfusion/ej2-angular-splitbuttons 23.1.36-ngcc → 23.1.36

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 (247) hide show
  1. package/esm2020/public_api.mjs +3 -0
  2. package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +23 -0
  3. package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +64 -0
  4. package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +34 -0
  5. package/esm2020/src/drop-down-button/items.directive.mjs +46 -0
  6. package/esm2020/src/index.mjs +13 -0
  7. package/esm2020/src/progress-button/progressbutton-all.module.mjs +23 -0
  8. package/esm2020/src/progress-button/progressbutton.component.mjs +59 -0
  9. package/esm2020/src/progress-button/progressbutton.module.mjs +25 -0
  10. package/esm2020/src/split-button/items.directive.mjs +46 -0
  11. package/esm2020/src/split-button/splitbutton-all.module.mjs +23 -0
  12. package/esm2020/src/split-button/splitbutton.component.mjs +64 -0
  13. package/esm2020/src/split-button/splitbutton.module.mjs +34 -0
  14. package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
  16. package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
  18. package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
  19. package/package.json +26 -12
  20. package/schematics/utils/lib-details.d.ts +2 -2
  21. package/src/drop-down-button/dropdownbutton-all.module.d.ts +6 -0
  22. package/src/drop-down-button/dropdownbutton.component.d.ts +3 -0
  23. package/src/drop-down-button/dropdownbutton.module.d.ts +7 -0
  24. package/src/drop-down-button/items.directive.d.ts +5 -0
  25. package/src/progress-button/progressbutton-all.module.d.ts +6 -0
  26. package/src/progress-button/progressbutton.component.d.ts +3 -0
  27. package/src/progress-button/progressbutton.module.d.ts +6 -0
  28. package/src/split-button/items.directive.d.ts +5 -0
  29. package/src/split-button/splitbutton-all.module.d.ts +6 -0
  30. package/src/split-button/splitbutton.component.d.ts +3 -0
  31. package/src/split-button/splitbutton.module.d.ts +7 -0
  32. package/styles/button-group/_all.scss +2 -0
  33. package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
  34. package/styles/button-group/_bootstrap-definition.scss +30 -0
  35. package/styles/button-group/_bootstrap4-definition.scss +30 -0
  36. package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
  37. package/styles/button-group/_bootstrap5-definition.scss +31 -0
  38. package/styles/button-group/_fabric-dark-definition.scss +33 -0
  39. package/styles/button-group/_fabric-definition.scss +30 -0
  40. package/styles/button-group/_fluent-dark-definition.scss +1 -0
  41. package/styles/button-group/_fluent-definition.scss +31 -0
  42. package/styles/button-group/_fusionnew-definition.scss +31 -0
  43. package/styles/button-group/_group-button-mixin.scss +72 -0
  44. package/styles/button-group/_highcontrast-definition.scss +32 -0
  45. package/styles/button-group/_highcontrast-light-definition.scss +35 -0
  46. package/styles/button-group/_layout.scss +294 -0
  47. package/styles/button-group/_material-dark-definition.scss +33 -0
  48. package/styles/button-group/_material-definition.scss +30 -0
  49. package/styles/button-group/_material3-dark-definition.scss +1 -0
  50. package/styles/button-group/_material3-definition.scss +31 -0
  51. package/styles/button-group/_tailwind-dark-definition.scss +1 -0
  52. package/styles/button-group/_tailwind-definition.scss +31 -0
  53. package/styles/button-group/_theme.scss +454 -0
  54. package/styles/button-group/bootstrap-dark.scss +4 -1
  55. package/styles/button-group/bootstrap.scss +4 -1
  56. package/styles/button-group/bootstrap4.scss +4 -1
  57. package/styles/button-group/bootstrap5-dark.scss +4 -1
  58. package/styles/button-group/bootstrap5.scss +4 -1
  59. package/styles/button-group/fabric-dark.scss +4 -1
  60. package/styles/button-group/fabric.scss +4 -1
  61. package/styles/button-group/fluent-dark.scss +4 -1
  62. package/styles/button-group/fluent.scss +4 -1
  63. package/styles/button-group/highcontrast-light.scss +4 -1
  64. package/styles/button-group/highcontrast.scss +4 -1
  65. package/styles/button-group/material-dark.css +1 -0
  66. package/styles/button-group/material-dark.scss +4 -1
  67. package/styles/button-group/material.css +1 -0
  68. package/styles/button-group/material.scss +4 -1
  69. package/styles/button-group/material3-dark.css +1 -0
  70. package/styles/button-group/material3-dark.scss +4 -1
  71. package/styles/button-group/material3.css +1 -0
  72. package/styles/button-group/material3.scss +4 -1
  73. package/styles/button-group/tailwind-dark.css +1 -0
  74. package/styles/button-group/tailwind-dark.scss +4 -1
  75. package/styles/button-group/tailwind.css +1 -0
  76. package/styles/button-group/tailwind.scss +4 -1
  77. package/styles/drop-down-button/_all.scss +2 -0
  78. package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
  79. package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
  80. package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
  81. package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
  82. package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
  83. package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
  84. package/styles/drop-down-button/_fabric-definition.scss +48 -0
  85. package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
  86. package/styles/drop-down-button/_fluent-definition.scss +52 -0
  87. package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
  88. package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
  89. package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
  90. package/styles/drop-down-button/_layout.scss +238 -0
  91. package/styles/drop-down-button/_material-dark-definition.scss +51 -0
  92. package/styles/drop-down-button/_material-definition.scss +48 -0
  93. package/styles/drop-down-button/_material3-dark-definition.scss +1 -0
  94. package/styles/drop-down-button/_material3-definition.scss +51 -0
  95. package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
  96. package/styles/drop-down-button/_tailwind-definition.scss +49 -0
  97. package/styles/drop-down-button/_theme.scss +83 -0
  98. package/styles/drop-down-button/bootstrap-dark.scss +6 -1
  99. package/styles/drop-down-button/bootstrap.scss +6 -1
  100. package/styles/drop-down-button/bootstrap4.scss +6 -1
  101. package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
  102. package/styles/drop-down-button/bootstrap5.scss +6 -1
  103. package/styles/drop-down-button/fabric-dark.scss +6 -1
  104. package/styles/drop-down-button/fabric.scss +6 -1
  105. package/styles/drop-down-button/fluent-dark.scss +6 -1
  106. package/styles/drop-down-button/fluent.scss +6 -1
  107. package/styles/drop-down-button/highcontrast-light.scss +6 -1
  108. package/styles/drop-down-button/highcontrast.scss +6 -1
  109. package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
  110. package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
  111. package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
  112. package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
  113. package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
  114. package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
  115. package/styles/drop-down-button/icons/_fabric.scss +10 -0
  116. package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
  117. package/styles/drop-down-button/icons/_fluent.scss +10 -0
  118. package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
  119. package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
  120. package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
  121. package/styles/drop-down-button/icons/_material-dark.scss +10 -0
  122. package/styles/drop-down-button/icons/_material.scss +10 -0
  123. package/styles/drop-down-button/icons/_material3-dark.scss +1 -0
  124. package/styles/drop-down-button/icons/_material3.scss +10 -0
  125. package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
  126. package/styles/drop-down-button/icons/_tailwind.scss +10 -0
  127. package/styles/drop-down-button/material-dark.css +1 -0
  128. package/styles/drop-down-button/material-dark.scss +6 -1
  129. package/styles/drop-down-button/material.css +1 -0
  130. package/styles/drop-down-button/material.scss +6 -1
  131. package/styles/drop-down-button/material3-dark.css +2 -1
  132. package/styles/drop-down-button/material3-dark.scss +6 -1
  133. package/styles/drop-down-button/material3.css +2 -1
  134. package/styles/drop-down-button/material3.scss +6 -1
  135. package/styles/drop-down-button/tailwind-dark.css +1 -0
  136. package/styles/drop-down-button/tailwind-dark.scss +6 -1
  137. package/styles/drop-down-button/tailwind.css +1 -0
  138. package/styles/drop-down-button/tailwind.scss +6 -1
  139. package/styles/material-dark.css +1 -0
  140. package/styles/material.css +1 -0
  141. package/styles/material3-dark.css +2 -166
  142. package/styles/material3-dark.scss +1 -0
  143. package/styles/material3.css +2 -334
  144. package/styles/material3.scss +1 -0
  145. package/styles/progress-button/_all.scss +2 -0
  146. package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
  147. package/styles/progress-button/_bootstrap-definition.scss +24 -0
  148. package/styles/progress-button/_bootstrap4-definition.scss +24 -0
  149. package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
  150. package/styles/progress-button/_bootstrap5-definition.scss +21 -0
  151. package/styles/progress-button/_fabric-dark-definition.scss +27 -0
  152. package/styles/progress-button/_fabric-definition.scss +24 -0
  153. package/styles/progress-button/_fluent-dark-definition.scss +1 -0
  154. package/styles/progress-button/_fluent-definition.scss +21 -0
  155. package/styles/progress-button/_fusionnew-definition.scss +21 -0
  156. package/styles/progress-button/_highcontrast-definition.scss +24 -0
  157. package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
  158. package/styles/progress-button/_layout.scss +396 -0
  159. package/styles/progress-button/_material-dark-definition.scss +27 -0
  160. package/styles/progress-button/_material-definition.scss +24 -0
  161. package/styles/progress-button/_material3-dark-definition.scss +1 -0
  162. package/styles/progress-button/_material3-definition.scss +25 -0
  163. package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
  164. package/styles/progress-button/_tailwind-definition.scss +21 -0
  165. package/styles/progress-button/_theme.scss +638 -0
  166. package/styles/progress-button/bootstrap-dark.scss +5 -1
  167. package/styles/progress-button/bootstrap.scss +5 -1
  168. package/styles/progress-button/bootstrap4.scss +5 -1
  169. package/styles/progress-button/bootstrap5-dark.scss +5 -1
  170. package/styles/progress-button/bootstrap5.scss +5 -1
  171. package/styles/progress-button/fabric-dark.scss +5 -1
  172. package/styles/progress-button/fabric.scss +5 -1
  173. package/styles/progress-button/fluent-dark.scss +5 -1
  174. package/styles/progress-button/fluent.scss +5 -1
  175. package/styles/progress-button/highcontrast-light.scss +5 -1
  176. package/styles/progress-button/highcontrast.scss +5 -1
  177. package/styles/progress-button/material-dark.css +1 -0
  178. package/styles/progress-button/material-dark.scss +5 -1
  179. package/styles/progress-button/material.css +1 -0
  180. package/styles/progress-button/material.scss +5 -1
  181. package/styles/progress-button/material3-dark.css +1 -0
  182. package/styles/progress-button/material3-dark.scss +5 -1
  183. package/styles/progress-button/material3.css +1 -0
  184. package/styles/progress-button/material3.scss +5 -1
  185. package/styles/progress-button/tailwind-dark.css +1 -0
  186. package/styles/progress-button/tailwind-dark.scss +5 -1
  187. package/styles/progress-button/tailwind.css +1 -0
  188. package/styles/progress-button/tailwind.scss +5 -1
  189. package/styles/split-button/_all.scss +2 -0
  190. package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
  191. package/styles/split-button/_bootstrap-definition.scss +23 -0
  192. package/styles/split-button/_bootstrap4-definition.scss +26 -0
  193. package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
  194. package/styles/split-button/_bootstrap5-definition.scss +24 -0
  195. package/styles/split-button/_fabric-dark-definition.scss +26 -0
  196. package/styles/split-button/_fabric-definition.scss +23 -0
  197. package/styles/split-button/_fluent-dark-definition.scss +1 -0
  198. package/styles/split-button/_fluent-definition.scss +24 -0
  199. package/styles/split-button/_fusionnew-definition.scss +24 -0
  200. package/styles/split-button/_highcontrast-definition.scss +23 -0
  201. package/styles/split-button/_highcontrast-light-definition.scss +26 -0
  202. package/styles/split-button/_layout.scss +484 -0
  203. package/styles/split-button/_material-dark-definition.scss +26 -0
  204. package/styles/split-button/_material-definition.scss +23 -0
  205. package/styles/split-button/_material3-dark-definition.scss +1 -0
  206. package/styles/split-button/_material3-definition.scss +26 -0
  207. package/styles/split-button/_tailwind-dark-definition.scss +1 -0
  208. package/styles/split-button/_tailwind-definition.scss +24 -0
  209. package/styles/split-button/_theme.scss +187 -0
  210. package/styles/split-button/bootstrap-dark.scss +6 -1
  211. package/styles/split-button/bootstrap.scss +6 -1
  212. package/styles/split-button/bootstrap4.scss +6 -1
  213. package/styles/split-button/bootstrap5-dark.scss +6 -1
  214. package/styles/split-button/bootstrap5.scss +6 -1
  215. package/styles/split-button/fabric-dark.scss +6 -1
  216. package/styles/split-button/fabric.scss +6 -1
  217. package/styles/split-button/fluent-dark.scss +6 -1
  218. package/styles/split-button/fluent.scss +6 -1
  219. package/styles/split-button/highcontrast-light.scss +6 -1
  220. package/styles/split-button/highcontrast.scss +6 -1
  221. package/styles/split-button/material-dark.css +1 -0
  222. package/styles/split-button/material-dark.scss +6 -1
  223. package/styles/split-button/material.css +1 -0
  224. package/styles/split-button/material.scss +6 -1
  225. package/styles/split-button/material3-dark.css +1 -0
  226. package/styles/split-button/material3-dark.scss +6 -1
  227. package/styles/split-button/material3.css +1 -0
  228. package/styles/split-button/material3.scss +6 -1
  229. package/styles/split-button/tailwind-dark.css +1 -0
  230. package/styles/split-button/tailwind-dark.scss +6 -1
  231. package/styles/split-button/tailwind.css +1 -0
  232. package/styles/split-button/tailwind.scss +6 -1
  233. package/styles/tailwind-dark.css +4 -0
  234. package/styles/tailwind.css +4 -0
  235. package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
  236. package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
  237. package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
  238. package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
  239. package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
  240. package/CHANGELOG.md +0 -256
  241. package/dist/ej2-angular-splitbuttons.umd.js +0 -603
  242. package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
  243. package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
  244. package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
  245. package/ej2-angular-splitbuttons.d.ts +0 -7
  246. package/ej2-angular-splitbuttons.metadata.json +0 -1
  247. package/postinstall/tagchange.js +0 -18
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-bootstrap5-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e70d';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-fabric-dark-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e36a';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-fabric-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e36a';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1 @@
1
+ @import './fluent.scss';
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-fluent-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e729';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-fusionnew-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e70d';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-highcontrast-light-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e966';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-highcontrast-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e966';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-material-dark-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e969';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-material-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e969';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1 @@
1
+ @import './material3.scss';
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-material3-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e70d';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-tailwind-dark-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e70d';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-tailwind-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e729';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
1
2
  .e-dropdown-btn .e-caret::before,
2
3
  .e-dropdown-btn.e-btn .e-caret::before {
3
4
  content: "\e969";
@@ -1 +1,6 @@
1
- @import 'ej2-splitbuttons/styles/drop-down-button/material-dark.scss';
1
+ @import 'ej2-base/styles/material-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/material-dark-definition.scss';
3
+ @import 'ej2-popups/styles/popup/material-dark-definition.scss';
4
+ @import 'material-dark-definition.scss';
5
+ @import 'icons/material-dark.scss';
6
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
1
2
  .e-dropdown-btn .e-caret::before,
2
3
  .e-dropdown-btn.e-btn .e-caret::before {
3
4
  content: "\e969";
@@ -1 +1,6 @@
1
- @import 'ej2-splitbuttons/styles/drop-down-button/material.scss';
1
+ @import 'ej2-base/styles/material-definition.scss';
2
+ @import 'ej2-buttons/styles/button/material-definition.scss';
3
+ @import 'ej2-popups/styles/popup/material-definition.scss';
4
+ @import 'material-definition.scss';
5
+ @import 'icons/material.scss';
6
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
1
2
  :root {
2
3
  --color-sf-black: 0, 0, 0;
3
4
  --color-sf-white: 255, 255, 255;
@@ -75,7 +76,7 @@
75
76
  }
76
77
  .e-dropdown-btn:focus-visible,
77
78
  .e-dropdown-btn.e-btn:focus-visible {
78
- box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
79
+ box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff !important; /* stylelint-disable-line declaration-no-important */
79
80
  }
80
81
  .e-dropdown-btn:active,
81
82
  .e-dropdown-btn.e-btn:active {
@@ -1,2 +1,7 @@
1
+ @import 'ej2-base/styles/material3-dark-definition.scss';
1
2
 
2
- @import 'ej2-splitbuttons/styles/drop-down-button/material3-dark.scss';
3
+ @import 'ej2-buttons/styles/button/material3-dark-definition.scss';
4
+ @import 'ej2-popups/styles/popup/material3-dark-definition.scss';
5
+ @import 'material3-dark-definition.scss';
6
+ @import 'icons/material3-dark.scss';
7
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
1
2
  :root {
2
3
  --color-sf-black: 0, 0, 0;
3
4
  --color-sf-white: 255, 255, 255;
@@ -131,7 +132,7 @@
131
132
  }
132
133
  .e-dropdown-btn:focus-visible,
133
134
  .e-dropdown-btn.e-btn:focus-visible {
134
- box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #000000;
135
+ box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #000000 !important; /* stylelint-disable-line declaration-no-important */
135
136
  }
136
137
  .e-dropdown-btn:active,
137
138
  .e-dropdown-btn.e-btn:active {
@@ -1,2 +1,7 @@
1
+ @import 'ej2-base/styles/material3-definition.scss';
1
2
 
2
- @import 'ej2-splitbuttons/styles/drop-down-button/material3.scss';
3
+ @import 'ej2-buttons/styles/button/material3-definition.scss';
4
+ @import 'ej2-popups/styles/popup/material3-definition.scss';
5
+ @import 'material3-definition.scss';
6
+ @import 'icons/material3.scss';
7
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
1
2
  /* stylelint-disable-line no-empty-source */
2
3
  .e-dropdown-btn .e-caret::before,
3
4
  .e-dropdown-btn.e-btn .e-caret::before {
@@ -1 +1,6 @@
1
- @import 'ej2-splitbuttons/styles/drop-down-button/tailwind-dark.scss';
1
+ @import 'ej2-base/styles/tailwind-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
3
+ @import 'ej2-popups/styles/popup/tailwind-dark-definition.scss';
4
+ @import 'tailwind-dark-definition.scss';
5
+ @import 'icons/tailwind-dark.scss';
6
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
1
2
  /* stylelint-disable-line no-empty-source */
2
3
  .e-dropdown-btn .e-caret::before,
3
4
  .e-dropdown-btn.e-btn .e-caret::before {
@@ -1 +1,6 @@
1
- @import 'ej2-splitbuttons/styles/drop-down-button/tailwind.scss';
1
+ @import 'ej2-base/styles/tailwind-definition.scss';
2
+ @import 'ej2-buttons/styles/button/tailwind-definition.scss';
3
+ @import 'ej2-popups/styles/popup/tailwind-definition.scss';
4
+ @import 'tailwind-definition.scss';
5
+ @import 'icons/tailwind.scss';
6
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
1
2
  .e-dropdown-btn .e-caret::before,
2
3
  .e-dropdown-btn.e-btn .e-caret::before {
3
4
  content: "\e969";
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
1
2
  .e-dropdown-btn .e-caret::before,
2
3
  .e-dropdown-btn.e-btn .e-caret::before {
3
4
  content: "\e969";
@@ -1,3 +1,4 @@
1
+ @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
1
2
  :root {
2
3
  --color-sf-black: 0, 0, 0;
3
4
  --color-sf-white: 255, 255, 255;
@@ -75,7 +76,7 @@
75
76
  }
76
77
  .e-dropdown-btn:focus-visible,
77
78
  .e-dropdown-btn.e-btn:focus-visible {
78
- box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
79
+ box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff !important; /* stylelint-disable-line declaration-no-important */
79
80
  }
80
81
  .e-dropdown-btn:active,
81
82
  .e-dropdown-btn.e-btn:active {
@@ -291,61 +292,6 @@
291
292
  color: inherit;
292
293
  }
293
294
 
294
- :root {
295
- --color-sf-black: 0, 0, 0;
296
- --color-sf-white: 255, 255, 255;
297
- --color-sf-primary: 208, 188, 255;
298
- --color-sf-primary-container: 79, 55, 139;
299
- --color-sf-secondary: 204, 194, 220;
300
- --color-sf-secondary-container: 74, 68, 88;
301
- --color-sf-tertiary: 239, 184, 200;
302
- --color-sf-tertiary-container: 99, 59, 72;
303
- --color-sf-surface: 28, 27, 31;
304
- --color-sf-surface-variant: 73, 69, 79;
305
- --color-sf-background: var(--color-sf-surface);
306
- --color-sf-on-primary: 55, 30, 115;
307
- --color-sf-on-primary-container: 234, 221, 255;
308
- --color-sf-on-secondary: 51, 45, 65;
309
- --color-sf-on-secondary-container: 232, 222, 248;
310
- --color-sf-on-tertiary: 73, 37, 50;
311
- --color-sf-on-tertiary-containe: 255, 216, 228;
312
- --color-sf-on-surface: 230, 225, 229;
313
- --color-sf-on-surface-variant: 202, 196, 208;
314
- --color-sf-on-background: 230, 225, 229;
315
- --color-sf-outline: 147, 143, 153;
316
- --color-sf-outline-variant: 68, 71, 70;
317
- --color-sf-shadow: 0, 0, 0;
318
- --color-sf-surface-tint-color: 208, 188, 255;
319
- --color-sf-inverse-surface: 230, 225, 229;
320
- --color-sf-inverse-on-surface: 49, 48, 51;
321
- --color-sf-inverse-primary: 103, 80, 164;
322
- --color-sf-scrim: 0, 0, 0;
323
- --color-sf-error: 242, 184, 181;
324
- --color-sf-error-container: 140, 29, 24;
325
- --color-sf-on-error: 96, 20, 16;
326
- --color-sf-on-error-container: 249, 222, 220;
327
- --color-sf-success: 83, 202, 23;
328
- --color-sf-success-container: 22, 62, 2;
329
- --color-sf-on-success: 13, 39, 0;
330
- --color-sf-on-success-container: 183, 250, 150;
331
- --color-sf-info: 71, 172, 251;
332
- --color-sf-info-container: 0, 67, 120;
333
- --color-sf-on-info: 0, 51, 91;
334
- --color-sf-on-info-container: 173, 219, 255;
335
- --color-sf-warning: 245, 180, 130;
336
- --color-sf-warning-container: 123, 65, 0;
337
- --color-sf-on-warning: 99, 52, 0;
338
- --color-sf-on-warning-container: 255, 220, 193;
339
- --color-sf-spreadsheet-gridline: 231, 224, 236;
340
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
341
- --color-sf-success-text: 0, 0, 0;
342
- --color-sf-warning-text: 0, 0, 0;
343
- --color-sf-info-text: 0, 0, 0;
344
- --color-sf-danger-text: 0, 0, 0;
345
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
346
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
347
- }
348
-
349
295
  /* stylelint-disable-line no-empty-source */
350
296
  /*! splitbutton layout */
351
297
  .e-split-btn-wrapper {
@@ -704,61 +650,6 @@
704
650
  border-color: transparent;
705
651
  }
706
652
 
707
- :root {
708
- --color-sf-black: 0, 0, 0;
709
- --color-sf-white: 255, 255, 255;
710
- --color-sf-primary: 208, 188, 255;
711
- --color-sf-primary-container: 79, 55, 139;
712
- --color-sf-secondary: 204, 194, 220;
713
- --color-sf-secondary-container: 74, 68, 88;
714
- --color-sf-tertiary: 239, 184, 200;
715
- --color-sf-tertiary-container: 99, 59, 72;
716
- --color-sf-surface: 28, 27, 31;
717
- --color-sf-surface-variant: 73, 69, 79;
718
- --color-sf-background: var(--color-sf-surface);
719
- --color-sf-on-primary: 55, 30, 115;
720
- --color-sf-on-primary-container: 234, 221, 255;
721
- --color-sf-on-secondary: 51, 45, 65;
722
- --color-sf-on-secondary-container: 232, 222, 248;
723
- --color-sf-on-tertiary: 73, 37, 50;
724
- --color-sf-on-tertiary-containe: 255, 216, 228;
725
- --color-sf-on-surface: 230, 225, 229;
726
- --color-sf-on-surface-variant: 202, 196, 208;
727
- --color-sf-on-background: 230, 225, 229;
728
- --color-sf-outline: 147, 143, 153;
729
- --color-sf-outline-variant: 68, 71, 70;
730
- --color-sf-shadow: 0, 0, 0;
731
- --color-sf-surface-tint-color: 208, 188, 255;
732
- --color-sf-inverse-surface: 230, 225, 229;
733
- --color-sf-inverse-on-surface: 49, 48, 51;
734
- --color-sf-inverse-primary: 103, 80, 164;
735
- --color-sf-scrim: 0, 0, 0;
736
- --color-sf-error: 242, 184, 181;
737
- --color-sf-error-container: 140, 29, 24;
738
- --color-sf-on-error: 96, 20, 16;
739
- --color-sf-on-error-container: 249, 222, 220;
740
- --color-sf-success: 83, 202, 23;
741
- --color-sf-success-container: 22, 62, 2;
742
- --color-sf-on-success: 13, 39, 0;
743
- --color-sf-on-success-container: 183, 250, 150;
744
- --color-sf-info: 71, 172, 251;
745
- --color-sf-info-container: 0, 67, 120;
746
- --color-sf-on-info: 0, 51, 91;
747
- --color-sf-on-info-container: 173, 219, 255;
748
- --color-sf-warning: 245, 180, 130;
749
- --color-sf-warning-container: 123, 65, 0;
750
- --color-sf-on-warning: 99, 52, 0;
751
- --color-sf-on-warning-container: 255, 220, 193;
752
- --color-sf-spreadsheet-gridline: 231, 224, 236;
753
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
754
- --color-sf-success-text: 0, 0, 0;
755
- --color-sf-warning-text: 0, 0, 0;
756
- --color-sf-info-text: 0, 0, 0;
757
- --color-sf-danger-text: 0, 0, 0;
758
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
759
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
760
- }
761
-
762
653
  /* stylelint-disable */
763
654
  *.e-btn-group,
764
655
  *.e-css.e-btn-group {
@@ -1606,61 +1497,6 @@
1606
1497
  border-right: transparent;
1607
1498
  }
1608
1499
 
1609
- :root {
1610
- --color-sf-black: 0, 0, 0;
1611
- --color-sf-white: 255, 255, 255;
1612
- --color-sf-primary: 208, 188, 255;
1613
- --color-sf-primary-container: 79, 55, 139;
1614
- --color-sf-secondary: 204, 194, 220;
1615
- --color-sf-secondary-container: 74, 68, 88;
1616
- --color-sf-tertiary: 239, 184, 200;
1617
- --color-sf-tertiary-container: 99, 59, 72;
1618
- --color-sf-surface: 28, 27, 31;
1619
- --color-sf-surface-variant: 73, 69, 79;
1620
- --color-sf-background: var(--color-sf-surface);
1621
- --color-sf-on-primary: 55, 30, 115;
1622
- --color-sf-on-primary-container: 234, 221, 255;
1623
- --color-sf-on-secondary: 51, 45, 65;
1624
- --color-sf-on-secondary-container: 232, 222, 248;
1625
- --color-sf-on-tertiary: 73, 37, 50;
1626
- --color-sf-on-tertiary-containe: 255, 216, 228;
1627
- --color-sf-on-surface: 230, 225, 229;
1628
- --color-sf-on-surface-variant: 202, 196, 208;
1629
- --color-sf-on-background: 230, 225, 229;
1630
- --color-sf-outline: 147, 143, 153;
1631
- --color-sf-outline-variant: 68, 71, 70;
1632
- --color-sf-shadow: 0, 0, 0;
1633
- --color-sf-surface-tint-color: 208, 188, 255;
1634
- --color-sf-inverse-surface: 230, 225, 229;
1635
- --color-sf-inverse-on-surface: 49, 48, 51;
1636
- --color-sf-inverse-primary: 103, 80, 164;
1637
- --color-sf-scrim: 0, 0, 0;
1638
- --color-sf-error: 242, 184, 181;
1639
- --color-sf-error-container: 140, 29, 24;
1640
- --color-sf-on-error: 96, 20, 16;
1641
- --color-sf-on-error-container: 249, 222, 220;
1642
- --color-sf-success: 83, 202, 23;
1643
- --color-sf-success-container: 22, 62, 2;
1644
- --color-sf-on-success: 13, 39, 0;
1645
- --color-sf-on-success-container: 183, 250, 150;
1646
- --color-sf-info: 71, 172, 251;
1647
- --color-sf-info-container: 0, 67, 120;
1648
- --color-sf-on-info: 0, 51, 91;
1649
- --color-sf-on-info-container: 173, 219, 255;
1650
- --color-sf-warning: 245, 180, 130;
1651
- --color-sf-warning-container: 123, 65, 0;
1652
- --color-sf-on-warning: 99, 52, 0;
1653
- --color-sf-on-warning-container: 255, 220, 193;
1654
- --color-sf-spreadsheet-gridline: 231, 224, 236;
1655
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
1656
- --color-sf-success-text: 0, 0, 0;
1657
- --color-sf-warning-text: 0, 0, 0;
1658
- --color-sf-info-text: 0, 0, 0;
1659
- --color-sf-danger-text: 0, 0, 0;
1660
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
1661
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
1662
- }
1663
-
1664
1500
  /* stylelint-disable property-no-vendor-prefix */
1665
1501
  @keyframes material-spinner-rotate {
1666
1502
  0% {
@@ -1,4 +1,5 @@
1
1
 
2
+ @import 'ej2-base/styles/material3-dark-definition.scss';
2
3
  @import 'drop-down-button/material3-dark.scss';
3
4
  @import 'split-button/material3-dark.scss';
4
5
  @import 'button-group/material3-dark.scss';