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

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 (301) 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/src/drop-down-button/dropdownbutton-all.module.d.ts +6 -0
  21. package/src/drop-down-button/dropdownbutton.component.d.ts +3 -0
  22. package/src/drop-down-button/dropdownbutton.module.d.ts +7 -0
  23. package/src/drop-down-button/items.directive.d.ts +5 -0
  24. package/src/progress-button/progressbutton-all.module.d.ts +6 -0
  25. package/src/progress-button/progressbutton.component.d.ts +3 -0
  26. package/src/progress-button/progressbutton.module.d.ts +6 -0
  27. package/src/split-button/items.directive.d.ts +5 -0
  28. package/src/split-button/splitbutton-all.module.d.ts +6 -0
  29. package/src/split-button/splitbutton.component.d.ts +3 -0
  30. package/src/split-button/splitbutton.module.d.ts +7 -0
  31. package/styles/bootstrap-dark.css +1761 -1
  32. package/styles/bootstrap.css +1811 -1
  33. package/styles/bootstrap4.css +1836 -1
  34. package/styles/bootstrap5-dark.css +1851 -1
  35. package/styles/bootstrap5.css +1851 -1
  36. package/styles/button-group/_all.scss +2 -0
  37. package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
  38. package/styles/button-group/_bootstrap-definition.scss +30 -0
  39. package/styles/button-group/_bootstrap4-definition.scss +30 -0
  40. package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
  41. package/styles/button-group/_bootstrap5-definition.scss +31 -0
  42. package/styles/button-group/_fabric-dark-definition.scss +33 -0
  43. package/styles/button-group/_fabric-definition.scss +30 -0
  44. package/styles/button-group/_fluent-dark-definition.scss +1 -0
  45. package/styles/button-group/_fluent-definition.scss +31 -0
  46. package/styles/button-group/_fusionnew-definition.scss +31 -0
  47. package/styles/button-group/_group-button-mixin.scss +72 -0
  48. package/styles/button-group/_highcontrast-definition.scss +32 -0
  49. package/styles/button-group/_highcontrast-light-definition.scss +35 -0
  50. package/styles/button-group/_layout.scss +294 -0
  51. package/styles/button-group/_material-dark-definition.scss +33 -0
  52. package/styles/button-group/_material-definition.scss +30 -0
  53. package/styles/button-group/_material3-dark-definition.scss +1 -0
  54. package/styles/button-group/_material3-definition.scss +31 -0
  55. package/styles/button-group/_tailwind-dark-definition.scss +1 -0
  56. package/styles/button-group/_tailwind-definition.scss +31 -0
  57. package/styles/button-group/_theme.scss +454 -0
  58. package/styles/button-group/bootstrap-dark.css +752 -1
  59. package/styles/button-group/bootstrap-dark.scss +4 -1
  60. package/styles/button-group/bootstrap.css +726 -1
  61. package/styles/button-group/bootstrap.scss +4 -1
  62. package/styles/button-group/bootstrap4.css +756 -1
  63. package/styles/button-group/bootstrap4.scss +4 -1
  64. package/styles/button-group/bootstrap5-dark.css +751 -1
  65. package/styles/button-group/bootstrap5-dark.scss +4 -1
  66. package/styles/button-group/bootstrap5.css +751 -1
  67. package/styles/button-group/bootstrap5.scss +4 -1
  68. package/styles/button-group/fabric-dark.css +752 -1
  69. package/styles/button-group/fabric-dark.scss +4 -1
  70. package/styles/button-group/fabric.css +758 -1
  71. package/styles/button-group/fabric.scss +4 -1
  72. package/styles/button-group/fluent-dark.css +755 -1
  73. package/styles/button-group/fluent-dark.scss +4 -1
  74. package/styles/button-group/fluent.css +755 -1
  75. package/styles/button-group/fluent.scss +4 -1
  76. package/styles/button-group/highcontrast-light.css +752 -1
  77. package/styles/button-group/highcontrast-light.scss +4 -1
  78. package/styles/button-group/highcontrast.css +803 -1
  79. package/styles/button-group/highcontrast.scss +4 -1
  80. package/styles/button-group/material-dark.css +752 -1
  81. package/styles/button-group/material-dark.scss +4 -1
  82. package/styles/button-group/material.css +756 -1
  83. package/styles/button-group/material.scss +4 -1
  84. package/styles/button-group/material3-dark.css +901 -1
  85. package/styles/button-group/material3-dark.scss +4 -1
  86. package/styles/button-group/material3.css +957 -1
  87. package/styles/button-group/material3.scss +4 -1
  88. package/styles/button-group/tailwind-dark.css +739 -1
  89. package/styles/button-group/tailwind-dark.scss +4 -1
  90. package/styles/button-group/tailwind.css +739 -1
  91. package/styles/button-group/tailwind.scss +4 -1
  92. package/styles/drop-down-button/_all.scss +2 -0
  93. package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
  94. package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
  95. package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
  96. package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
  97. package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
  98. package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
  99. package/styles/drop-down-button/_fabric-definition.scss +48 -0
  100. package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
  101. package/styles/drop-down-button/_fluent-definition.scss +52 -0
  102. package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
  103. package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
  104. package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
  105. package/styles/drop-down-button/_layout.scss +238 -0
  106. package/styles/drop-down-button/_material-dark-definition.scss +51 -0
  107. package/styles/drop-down-button/_material-definition.scss +48 -0
  108. package/styles/drop-down-button/_material3-dark-definition.scss +1 -0
  109. package/styles/drop-down-button/_material3-definition.scss +51 -0
  110. package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
  111. package/styles/drop-down-button/_tailwind-definition.scss +49 -0
  112. package/styles/drop-down-button/_theme.scss +83 -0
  113. package/styles/drop-down-button/bootstrap-dark.css +231 -1
  114. package/styles/drop-down-button/bootstrap-dark.scss +6 -1
  115. package/styles/drop-down-button/bootstrap.css +231 -1
  116. package/styles/drop-down-button/bootstrap.scss +6 -1
  117. package/styles/drop-down-button/bootstrap4.css +226 -1
  118. package/styles/drop-down-button/bootstrap4.scss +6 -1
  119. package/styles/drop-down-button/bootstrap5-dark.css +236 -1
  120. package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
  121. package/styles/drop-down-button/bootstrap5.css +236 -1
  122. package/styles/drop-down-button/bootstrap5.scss +6 -1
  123. package/styles/drop-down-button/fabric-dark.css +231 -1
  124. package/styles/drop-down-button/fabric-dark.scss +6 -1
  125. package/styles/drop-down-button/fabric.css +231 -1
  126. package/styles/drop-down-button/fabric.scss +6 -1
  127. package/styles/drop-down-button/fluent-dark.css +233 -1
  128. package/styles/drop-down-button/fluent-dark.scss +6 -1
  129. package/styles/drop-down-button/fluent.css +233 -1
  130. package/styles/drop-down-button/fluent.scss +6 -1
  131. package/styles/drop-down-button/highcontrast-light.css +231 -1
  132. package/styles/drop-down-button/highcontrast-light.scss +6 -1
  133. package/styles/drop-down-button/highcontrast.css +232 -1
  134. package/styles/drop-down-button/highcontrast.scss +6 -1
  135. package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
  136. package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
  137. package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
  138. package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
  139. package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
  140. package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
  141. package/styles/drop-down-button/icons/_fabric.scss +10 -0
  142. package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
  143. package/styles/drop-down-button/icons/_fluent.scss +10 -0
  144. package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
  145. package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
  146. package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
  147. package/styles/drop-down-button/icons/_material-dark.scss +10 -0
  148. package/styles/drop-down-button/icons/_material.scss +10 -0
  149. package/styles/drop-down-button/icons/_material3-dark.scss +1 -0
  150. package/styles/drop-down-button/icons/_material3.scss +10 -0
  151. package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
  152. package/styles/drop-down-button/icons/_tailwind.scss +10 -0
  153. package/styles/drop-down-button/material-dark.css +231 -1
  154. package/styles/drop-down-button/material-dark.scss +6 -1
  155. package/styles/drop-down-button/material.css +231 -1
  156. package/styles/drop-down-button/material.scss +6 -1
  157. package/styles/drop-down-button/material3-dark.css +292 -1
  158. package/styles/drop-down-button/material3-dark.scss +6 -1
  159. package/styles/drop-down-button/material3.css +348 -1
  160. package/styles/drop-down-button/material3.scss +6 -1
  161. package/styles/drop-down-button/tailwind-dark.css +241 -1
  162. package/styles/drop-down-button/tailwind-dark.scss +6 -1
  163. package/styles/drop-down-button/tailwind.css +241 -1
  164. package/styles/drop-down-button/tailwind.scss +6 -1
  165. package/styles/fabric-dark.css +1761 -1
  166. package/styles/fabric.css +1841 -1
  167. package/styles/fluent-dark.css +1852 -1
  168. package/styles/fluent.css +1852 -1
  169. package/styles/highcontrast-light.css +1761 -1
  170. package/styles/highcontrast.css +1813 -1
  171. package/styles/material-dark.css +1761 -1
  172. package/styles/material.css +1839 -1
  173. package/styles/material3-dark.css +1999 -1
  174. package/styles/material3-dark.scss +1 -0
  175. package/styles/material3.css +2049 -1
  176. package/styles/material3.scss +1 -0
  177. package/styles/progress-button/_all.scss +2 -0
  178. package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
  179. package/styles/progress-button/_bootstrap-definition.scss +24 -0
  180. package/styles/progress-button/_bootstrap4-definition.scss +24 -0
  181. package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
  182. package/styles/progress-button/_bootstrap5-definition.scss +21 -0
  183. package/styles/progress-button/_fabric-dark-definition.scss +27 -0
  184. package/styles/progress-button/_fabric-definition.scss +24 -0
  185. package/styles/progress-button/_fluent-dark-definition.scss +1 -0
  186. package/styles/progress-button/_fluent-definition.scss +21 -0
  187. package/styles/progress-button/_fusionnew-definition.scss +21 -0
  188. package/styles/progress-button/_highcontrast-definition.scss +24 -0
  189. package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
  190. package/styles/progress-button/_layout.scss +396 -0
  191. package/styles/progress-button/_material-dark-definition.scss +27 -0
  192. package/styles/progress-button/_material-definition.scss +24 -0
  193. package/styles/progress-button/_material3-dark-definition.scss +1 -0
  194. package/styles/progress-button/_material3-definition.scss +25 -0
  195. package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
  196. package/styles/progress-button/_tailwind-definition.scss +21 -0
  197. package/styles/progress-button/_theme.scss +638 -0
  198. package/styles/progress-button/bootstrap-dark.css +445 -1
  199. package/styles/progress-button/bootstrap-dark.scss +5 -1
  200. package/styles/progress-button/bootstrap.css +522 -1
  201. package/styles/progress-button/bootstrap.scss +5 -1
  202. package/styles/progress-button/bootstrap4.css +525 -1
  203. package/styles/progress-button/bootstrap4.scss +5 -1
  204. package/styles/progress-button/bootstrap5-dark.css +538 -1
  205. package/styles/progress-button/bootstrap5-dark.scss +5 -1
  206. package/styles/progress-button/bootstrap5.css +538 -1
  207. package/styles/progress-button/bootstrap5.scss +5 -1
  208. package/styles/progress-button/fabric-dark.css +445 -1
  209. package/styles/progress-button/fabric-dark.scss +5 -1
  210. package/styles/progress-button/fabric.css +522 -1
  211. package/styles/progress-button/fabric.scss +5 -1
  212. package/styles/progress-button/fluent-dark.css +538 -1
  213. package/styles/progress-button/fluent-dark.scss +5 -1
  214. package/styles/progress-button/fluent.css +538 -1
  215. package/styles/progress-button/fluent.scss +5 -1
  216. package/styles/progress-button/highcontrast-light.css +445 -1
  217. package/styles/progress-button/highcontrast-light.scss +5 -1
  218. package/styles/progress-button/highcontrast.css +445 -1
  219. package/styles/progress-button/highcontrast.scss +5 -1
  220. package/styles/progress-button/material-dark.css +445 -1
  221. package/styles/progress-button/material-dark.scss +5 -1
  222. package/styles/progress-button/material.css +522 -1
  223. package/styles/progress-button/material.scss +5 -1
  224. package/styles/progress-button/material3-dark.css +556 -1
  225. package/styles/progress-button/material3-dark.scss +5 -1
  226. package/styles/progress-button/material3.css +612 -1
  227. package/styles/progress-button/material3.scss +5 -1
  228. package/styles/progress-button/tailwind-dark.css +542 -1
  229. package/styles/progress-button/tailwind-dark.scss +5 -1
  230. package/styles/progress-button/tailwind.css +542 -1
  231. package/styles/progress-button/tailwind.scss +5 -1
  232. package/styles/split-button/_all.scss +2 -0
  233. package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
  234. package/styles/split-button/_bootstrap-definition.scss +23 -0
  235. package/styles/split-button/_bootstrap4-definition.scss +26 -0
  236. package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
  237. package/styles/split-button/_bootstrap5-definition.scss +24 -0
  238. package/styles/split-button/_fabric-dark-definition.scss +26 -0
  239. package/styles/split-button/_fabric-definition.scss +23 -0
  240. package/styles/split-button/_fluent-dark-definition.scss +1 -0
  241. package/styles/split-button/_fluent-definition.scss +24 -0
  242. package/styles/split-button/_fusionnew-definition.scss +24 -0
  243. package/styles/split-button/_highcontrast-definition.scss +23 -0
  244. package/styles/split-button/_highcontrast-light-definition.scss +26 -0
  245. package/styles/split-button/_layout.scss +484 -0
  246. package/styles/split-button/_material-dark-definition.scss +26 -0
  247. package/styles/split-button/_material-definition.scss +23 -0
  248. package/styles/split-button/_material3-dark-definition.scss +1 -0
  249. package/styles/split-button/_material3-definition.scss +26 -0
  250. package/styles/split-button/_tailwind-dark-definition.scss +1 -0
  251. package/styles/split-button/_tailwind-definition.scss +24 -0
  252. package/styles/split-button/_theme.scss +187 -0
  253. package/styles/split-button/bootstrap-dark.css +330 -1
  254. package/styles/split-button/bootstrap-dark.scss +6 -1
  255. package/styles/split-button/bootstrap.css +330 -1
  256. package/styles/split-button/bootstrap.scss +6 -1
  257. package/styles/split-button/bootstrap4.css +326 -1
  258. package/styles/split-button/bootstrap4.scss +6 -1
  259. package/styles/split-button/bootstrap5-dark.css +323 -1
  260. package/styles/split-button/bootstrap5-dark.scss +6 -1
  261. package/styles/split-button/bootstrap5.css +323 -1
  262. package/styles/split-button/bootstrap5.scss +6 -1
  263. package/styles/split-button/fabric-dark.css +330 -1
  264. package/styles/split-button/fabric-dark.scss +6 -1
  265. package/styles/split-button/fabric.css +327 -1
  266. package/styles/split-button/fabric.scss +6 -1
  267. package/styles/split-button/fluent-dark.css +323 -1
  268. package/styles/split-button/fluent-dark.scss +6 -1
  269. package/styles/split-button/fluent.css +323 -1
  270. package/styles/split-button/fluent.scss +6 -1
  271. package/styles/split-button/highcontrast-light.css +330 -1
  272. package/styles/split-button/highcontrast-light.scss +6 -1
  273. package/styles/split-button/highcontrast.css +330 -1
  274. package/styles/split-button/highcontrast.scss +6 -1
  275. package/styles/split-button/material-dark.css +330 -1
  276. package/styles/split-button/material-dark.scss +6 -1
  277. package/styles/split-button/material.css +327 -1
  278. package/styles/split-button/material.scss +6 -1
  279. package/styles/split-button/material3-dark.css +412 -1
  280. package/styles/split-button/material3-dark.scss +6 -1
  281. package/styles/split-button/material3.css +462 -1
  282. package/styles/split-button/material3.scss +6 -1
  283. package/styles/split-button/tailwind-dark.css +344 -1
  284. package/styles/split-button/tailwind-dark.scss +6 -1
  285. package/styles/split-button/tailwind.css +344 -1
  286. package/styles/split-button/tailwind.scss +6 -1
  287. package/styles/tailwind-dark.css +1868 -1
  288. package/styles/tailwind.css +1868 -1
  289. package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
  290. package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
  291. package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
  292. package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
  293. package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
  294. package/CHANGELOG.md +0 -256
  295. package/dist/ej2-angular-splitbuttons.umd.js +0 -603
  296. package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
  297. package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
  298. package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
  299. package/ej2-angular-splitbuttons.d.ts +0 -7
  300. package/ej2-angular-splitbuttons.metadata.json +0 -1
  301. package/postinstall/tagchange.js +0 -18
@@ -1 +1,6 @@
1
- @import 'ej2-splitbuttons/styles/drop-down-button/fluent.scss';
1
+ @import 'ej2-base/styles/definition/fluent.scss';
2
+ @import 'ej2-buttons/styles/button/fluent-definition.scss';
3
+ @import 'ej2-popups/styles/popup/fluent-definition.scss';
4
+ @import 'fluent-definition.scss';
5
+ @import 'icons/fluent.scss';
6
+ @import 'all.scss';
@@ -1 +1,231 @@
1
- @import '@syncfusion/ej2-splitbuttons/styles/drop-down-button/highcontrast-light.css';
1
+ .e-dropdown-btn .e-caret::before,
2
+ .e-dropdown-btn.e-btn .e-caret::before {
3
+ content: "\e966";
4
+ }
5
+
6
+ /*! drop-down button layout */
7
+ .e-dropdown-btn,
8
+ .e-dropdown-btn.e-btn {
9
+ box-shadow: none;
10
+ text-transform: none;
11
+ white-space: normal;
12
+ }
13
+ .e-dropdown-btn:hover,
14
+ .e-dropdown-btn.e-btn:hover {
15
+ box-shadow: none;
16
+ }
17
+ .e-dropdown-btn:focus,
18
+ .e-dropdown-btn.e-btn:focus {
19
+ box-shadow: none;
20
+ }
21
+ .e-dropdown-btn:active,
22
+ .e-dropdown-btn.e-btn:active {
23
+ box-shadow: none;
24
+ }
25
+ .e-dropdown-btn .e-btn-icon,
26
+ .e-dropdown-btn.e-btn .e-btn-icon {
27
+ font-size: 14px;
28
+ }
29
+ .e-dropdown-btn .e-caret,
30
+ .e-dropdown-btn.e-btn .e-caret {
31
+ font-size: 8px;
32
+ }
33
+ .e-dropdown-btn.e-vertical,
34
+ .e-dropdown-btn.e-btn.e-vertical {
35
+ line-height: 1;
36
+ padding: 8px 20px;
37
+ }
38
+ .e-dropdown-btn.e-caret-hide .e-caret,
39
+ .e-dropdown-btn.e-btn.e-caret-hide .e-caret {
40
+ display: none;
41
+ }
42
+ .e-dropdown-btn.e-small .e-dropdown-popup ul,
43
+ .e-dropdown-btn.e-btn.e-small .e-dropdown-popup ul {
44
+ padding: 0;
45
+ }
46
+ .e-dropdown-btn.e-small .e-dropdown-popup ul .e-item,
47
+ .e-dropdown-btn.e-btn.e-small .e-dropdown-popup ul .e-item {
48
+ padding: 0 10px;
49
+ }
50
+ .e-dropdown-btn.e-small.e-vertical,
51
+ .e-dropdown-btn.e-btn.e-small.e-vertical {
52
+ line-height: 1;
53
+ padding: 8px 20px;
54
+ }
55
+
56
+ .e-bigger .e-dropdown-btn .e-btn-icon,
57
+ .e-bigger.e-dropdown-btn .e-btn-icon {
58
+ font-size: 16px;
59
+ }
60
+ .e-bigger .e-dropdown-btn .e-caret,
61
+ .e-bigger.e-dropdown-btn .e-caret {
62
+ font-size: 10px;
63
+ }
64
+ .e-bigger .e-dropdown-btn.e-vertical,
65
+ .e-bigger.e-dropdown-btn.e-vertical {
66
+ line-height: 1;
67
+ padding: 10px 24px;
68
+ }
69
+ .e-bigger .e-dropdown-btn.e-small.e-vertical,
70
+ .e-bigger.e-dropdown-btn.e-small.e-vertical {
71
+ line-height: 1;
72
+ padding: 10px 24px;
73
+ }
74
+
75
+ .e-dropdown-popup {
76
+ position: absolute;
77
+ }
78
+ .e-dropdown-popup ul {
79
+ border: 1px solid #757575;
80
+ border-radius: 0;
81
+ box-shadow: 0 6px 12px rgba(255, 255, 255, 0.175);
82
+ box-sizing: border-box;
83
+ font-size: 14px;
84
+ font-weight: normal;
85
+ list-style-image: none;
86
+ list-style-position: outside;
87
+ list-style-type: none;
88
+ margin: 0;
89
+ min-width: 120px;
90
+ overflow: hidden;
91
+ padding: 0;
92
+ -webkit-user-select: none;
93
+ -ms-user-select: none;
94
+ user-select: none;
95
+ white-space: nowrap;
96
+ }
97
+ .e-dropdown-popup ul .e-item {
98
+ cursor: pointer;
99
+ display: -ms-flexbox;
100
+ display: flex;
101
+ height: 36px;
102
+ line-height: 36px;
103
+ padding: 0 10px;
104
+ }
105
+ .e-dropdown-popup ul .e-item.e-url {
106
+ padding: 0;
107
+ }
108
+ .e-dropdown-popup ul .e-item .e-menu-url {
109
+ display: block;
110
+ padding: 0 10px;
111
+ text-decoration: none;
112
+ width: 100%;
113
+ }
114
+ .e-dropdown-popup ul .e-item .e-menu-icon {
115
+ float: left;
116
+ font-size: 16px;
117
+ line-height: 36px;
118
+ margin-right: 10px;
119
+ vertical-align: middle;
120
+ width: 1em;
121
+ }
122
+ .e-dropdown-popup ul .e-item.e-disabled {
123
+ cursor: auto;
124
+ pointer-events: none;
125
+ }
126
+ .e-dropdown-popup ul .e-item.e-separator {
127
+ border-bottom-style: solid;
128
+ border-bottom-width: 1px;
129
+ cursor: auto;
130
+ height: auto;
131
+ line-height: normal;
132
+ margin: 0;
133
+ pointer-events: none;
134
+ }
135
+ .e-dropdown-popup.e-transparent {
136
+ background: transparent;
137
+ box-shadow: none;
138
+ }
139
+ .e-dropdown-popup.e-transparent .e-dropdown-menu {
140
+ border: 0;
141
+ height: 1px;
142
+ min-width: 0;
143
+ padding: 0;
144
+ width: 1px;
145
+ }
146
+
147
+ .e-rtl.e-dropdown-popup .e-item .e-menu-icon {
148
+ float: right;
149
+ margin-left: 10px;
150
+ margin-right: 0;
151
+ }
152
+
153
+ *.e-bigger .e-dropdown-popup ul,
154
+ *.e-bigger.e-dropdown-popup ul {
155
+ box-shadow: 0 6px 12px rgba(255, 255, 255, 0.175);
156
+ font-size: 15px;
157
+ max-width: 280px;
158
+ min-width: 112px;
159
+ padding: 0;
160
+ }
161
+ *.e-bigger .e-dropdown-popup ul .e-item,
162
+ *.e-bigger.e-dropdown-popup ul .e-item {
163
+ height: 48px;
164
+ line-height: 48px;
165
+ padding: 0 10px;
166
+ }
167
+ *.e-bigger .e-dropdown-popup ul .e-item.e-url,
168
+ *.e-bigger.e-dropdown-popup ul .e-item.e-url {
169
+ padding: 0;
170
+ }
171
+ *.e-bigger .e-dropdown-popup ul .e-item .e-menu-icon,
172
+ *.e-bigger.e-dropdown-popup ul .e-item .e-menu-icon {
173
+ font-size: 18px;
174
+ line-height: 48px;
175
+ }
176
+ *.e-bigger .e-dropdown-popup ul .e-item.e-separator,
177
+ *.e-bigger.e-dropdown-popup ul .e-item.e-separator {
178
+ height: auto;
179
+ line-height: normal;
180
+ }
181
+
182
+ /*! drop-down button theme */
183
+ .e-dropdown-popup {
184
+ background-color: #fff;
185
+ color: #000;
186
+ }
187
+ .e-dropdown-popup ul .e-item .e-menu-url {
188
+ color: #000;
189
+ }
190
+ .e-dropdown-popup ul .e-item .e-menu-icon {
191
+ color: #000;
192
+ }
193
+ .e-dropdown-popup ul .e-item.e-focused {
194
+ background-color: transparent;
195
+ box-shadow: 0 0 0 1px #000 inset;
196
+ }
197
+ .e-dropdown-popup ul .e-item:hover {
198
+ background-color: #ecf;
199
+ color: #000;
200
+ }
201
+ .e-dropdown-popup ul .e-item:active, .e-dropdown-popup ul .e-item.e-selected {
202
+ background-color: #400074;
203
+ color: #fff;
204
+ }
205
+ .e-dropdown-popup ul .e-item:active .e-menu-url, .e-dropdown-popup ul .e-item.e-selected .e-menu-url {
206
+ color: #fff;
207
+ }
208
+ .e-dropdown-popup ul .e-item:active .e-menu-icon, .e-dropdown-popup ul .e-item.e-selected .e-menu-icon {
209
+ color: #fff;
210
+ }
211
+ .e-dropdown-popup ul .e-separator {
212
+ border-bottom-color: #000;
213
+ }
214
+
215
+ .e-dropdown-btn.e-inherit,
216
+ .e-dropdown-btn.e-btn.e-inherit {
217
+ background: inherit;
218
+ border-color: transparent;
219
+ box-shadow: none;
220
+ color: inherit;
221
+ }
222
+ .e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
223
+ .e-dropdown-btn.e-btn.e-inherit:hover,
224
+ .e-dropdown-btn.e-btn.e-inherit:focus,
225
+ .e-dropdown-btn.e-btn.e-inherit:active,
226
+ .e-dropdown-btn.e-btn.e-inherit.e-active {
227
+ background-color: rgba(0, 0, 0, 0.056);
228
+ border-color: transparent;
229
+ box-shadow: none;
230
+ color: inherit;
231
+ }
@@ -1 +1,6 @@
1
- @import 'ej2-splitbuttons/styles/drop-down-button/highcontrast-light.scss';
1
+ @import 'ej2-base/styles/definition/highcontrast-light.scss';
2
+ @import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
3
+ @import 'ej2-popups/styles/popup/highcontrast-light-definition.scss';
4
+ @import 'highcontrast-light-definition.scss';
5
+ @import 'icons/highcontrast-light.scss';
6
+ @import 'all.scss';
@@ -1 +1,232 @@
1
- @import '@syncfusion/ej2-splitbuttons/styles/drop-down-button/highcontrast.css';
1
+ .e-dropdown-btn .e-caret::before,
2
+ .e-dropdown-btn.e-btn .e-caret::before {
3
+ content: "\e966";
4
+ }
5
+
6
+ /*! drop-down button layout */
7
+ .e-dropdown-btn,
8
+ .e-dropdown-btn.e-btn {
9
+ box-shadow: none;
10
+ text-transform: none;
11
+ white-space: normal;
12
+ }
13
+ .e-dropdown-btn:hover,
14
+ .e-dropdown-btn.e-btn:hover {
15
+ box-shadow: none;
16
+ }
17
+ .e-dropdown-btn:focus,
18
+ .e-dropdown-btn.e-btn:focus {
19
+ box-shadow: none;
20
+ }
21
+ .e-dropdown-btn:active,
22
+ .e-dropdown-btn.e-btn:active {
23
+ box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2);
24
+ }
25
+ .e-dropdown-btn .e-btn-icon,
26
+ .e-dropdown-btn.e-btn .e-btn-icon {
27
+ font-size: 14px;
28
+ }
29
+ .e-dropdown-btn .e-caret,
30
+ .e-dropdown-btn.e-btn .e-caret {
31
+ font-size: 8px;
32
+ margin-top: 0;
33
+ }
34
+ .e-dropdown-btn.e-vertical,
35
+ .e-dropdown-btn.e-btn.e-vertical {
36
+ line-height: 1;
37
+ padding: 8px 20px;
38
+ }
39
+ .e-dropdown-btn.e-caret-hide .e-caret,
40
+ .e-dropdown-btn.e-btn.e-caret-hide .e-caret {
41
+ display: none;
42
+ }
43
+ .e-dropdown-btn.e-small .e-dropdown-popup ul,
44
+ .e-dropdown-btn.e-btn.e-small .e-dropdown-popup ul {
45
+ padding: 0;
46
+ }
47
+ .e-dropdown-btn.e-small .e-dropdown-popup ul .e-item,
48
+ .e-dropdown-btn.e-btn.e-small .e-dropdown-popup ul .e-item {
49
+ padding: 0 10px;
50
+ }
51
+ .e-dropdown-btn.e-small.e-vertical,
52
+ .e-dropdown-btn.e-btn.e-small.e-vertical {
53
+ line-height: 1;
54
+ padding: 8px 20px;
55
+ }
56
+
57
+ .e-bigger .e-dropdown-btn .e-btn-icon,
58
+ .e-bigger.e-dropdown-btn .e-btn-icon {
59
+ font-size: 16px;
60
+ }
61
+ .e-bigger .e-dropdown-btn .e-caret,
62
+ .e-bigger.e-dropdown-btn .e-caret {
63
+ font-size: 10px;
64
+ }
65
+ .e-bigger .e-dropdown-btn.e-vertical,
66
+ .e-bigger.e-dropdown-btn.e-vertical {
67
+ line-height: 1;
68
+ padding: 10px 24px;
69
+ }
70
+ .e-bigger .e-dropdown-btn.e-small.e-vertical,
71
+ .e-bigger.e-dropdown-btn.e-small.e-vertical {
72
+ line-height: 1;
73
+ padding: 10px 24px;
74
+ }
75
+
76
+ .e-dropdown-popup {
77
+ position: absolute;
78
+ }
79
+ .e-dropdown-popup ul {
80
+ border: 1px solid #969696;
81
+ border-radius: 0;
82
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
83
+ box-sizing: border-box;
84
+ font-size: 14px;
85
+ font-weight: normal;
86
+ list-style-image: none;
87
+ list-style-position: outside;
88
+ list-style-type: none;
89
+ margin: 0;
90
+ min-width: 120px;
91
+ overflow: hidden;
92
+ padding: 0;
93
+ -webkit-user-select: none;
94
+ -ms-user-select: none;
95
+ user-select: none;
96
+ white-space: nowrap;
97
+ }
98
+ .e-dropdown-popup ul .e-item {
99
+ cursor: pointer;
100
+ display: -ms-flexbox;
101
+ display: flex;
102
+ height: 36px;
103
+ line-height: 36px;
104
+ padding: 0 10px;
105
+ }
106
+ .e-dropdown-popup ul .e-item.e-url {
107
+ padding: 0;
108
+ }
109
+ .e-dropdown-popup ul .e-item .e-menu-url {
110
+ display: block;
111
+ padding: 0 10px;
112
+ text-decoration: none;
113
+ width: 100%;
114
+ }
115
+ .e-dropdown-popup ul .e-item .e-menu-icon {
116
+ float: left;
117
+ font-size: 16px;
118
+ line-height: 36px;
119
+ margin-right: 10px;
120
+ vertical-align: middle;
121
+ width: 1em;
122
+ }
123
+ .e-dropdown-popup ul .e-item.e-disabled {
124
+ cursor: auto;
125
+ pointer-events: none;
126
+ }
127
+ .e-dropdown-popup ul .e-item.e-separator {
128
+ border-bottom-style: solid;
129
+ border-bottom-width: 1px;
130
+ cursor: auto;
131
+ height: auto;
132
+ line-height: normal;
133
+ margin: 0;
134
+ pointer-events: none;
135
+ }
136
+ .e-dropdown-popup.e-transparent {
137
+ background: transparent;
138
+ box-shadow: none;
139
+ }
140
+ .e-dropdown-popup.e-transparent .e-dropdown-menu {
141
+ border: 0;
142
+ height: 1px;
143
+ min-width: 0;
144
+ padding: 0;
145
+ width: 1px;
146
+ }
147
+
148
+ .e-rtl.e-dropdown-popup .e-item .e-menu-icon {
149
+ float: right;
150
+ margin-left: 10px;
151
+ margin-right: 0;
152
+ }
153
+
154
+ *.e-bigger .e-dropdown-popup ul,
155
+ *.e-bigger.e-dropdown-popup ul {
156
+ box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
157
+ font-size: 15px;
158
+ max-width: 280px;
159
+ min-width: 112px;
160
+ padding: 0;
161
+ }
162
+ *.e-bigger .e-dropdown-popup ul .e-item,
163
+ *.e-bigger.e-dropdown-popup ul .e-item {
164
+ height: 48px;
165
+ line-height: 48px;
166
+ padding: 0 10px;
167
+ }
168
+ *.e-bigger .e-dropdown-popup ul .e-item.e-url,
169
+ *.e-bigger.e-dropdown-popup ul .e-item.e-url {
170
+ padding: 0;
171
+ }
172
+ *.e-bigger .e-dropdown-popup ul .e-item .e-menu-icon,
173
+ *.e-bigger.e-dropdown-popup ul .e-item .e-menu-icon {
174
+ font-size: 18px;
175
+ line-height: 48px;
176
+ }
177
+ *.e-bigger .e-dropdown-popup ul .e-item.e-separator,
178
+ *.e-bigger.e-dropdown-popup ul .e-item.e-separator {
179
+ height: auto;
180
+ line-height: normal;
181
+ }
182
+
183
+ /*! drop-down button theme */
184
+ .e-dropdown-popup {
185
+ background-color: #000;
186
+ color: #fff;
187
+ }
188
+ .e-dropdown-popup ul .e-item .e-menu-url {
189
+ color: #fff;
190
+ }
191
+ .e-dropdown-popup ul .e-item .e-menu-icon {
192
+ color: #fff;
193
+ }
194
+ .e-dropdown-popup ul .e-item.e-focused {
195
+ background-color: transparent;
196
+ box-shadow: 0 0 0 1px #fff inset;
197
+ }
198
+ .e-dropdown-popup ul .e-item:hover {
199
+ background-color: #685708;
200
+ color: #fff;
201
+ }
202
+ .e-dropdown-popup ul .e-item:active, .e-dropdown-popup ul .e-item.e-selected {
203
+ background-color: #ffd939;
204
+ color: #000;
205
+ }
206
+ .e-dropdown-popup ul .e-item:active .e-menu-url, .e-dropdown-popup ul .e-item.e-selected .e-menu-url {
207
+ color: #000;
208
+ }
209
+ .e-dropdown-popup ul .e-item:active .e-menu-icon, .e-dropdown-popup ul .e-item.e-selected .e-menu-icon {
210
+ color: #000;
211
+ }
212
+ .e-dropdown-popup ul .e-separator {
213
+ border-bottom-color: #fff;
214
+ }
215
+
216
+ .e-dropdown-btn.e-inherit,
217
+ .e-dropdown-btn.e-btn.e-inherit {
218
+ background: inherit;
219
+ border-color: transparent;
220
+ box-shadow: none;
221
+ color: inherit;
222
+ }
223
+ .e-dropdown-btn.e-inherit:hover, .e-dropdown-btn.e-inherit:focus, .e-dropdown-btn.e-inherit:active, .e-dropdown-btn.e-inherit.e-active,
224
+ .e-dropdown-btn.e-btn.e-inherit:hover,
225
+ .e-dropdown-btn.e-btn.e-inherit:focus,
226
+ .e-dropdown-btn.e-btn.e-inherit:active,
227
+ .e-dropdown-btn.e-btn.e-inherit.e-active {
228
+ background-color: rgba(0, 0, 0, 0.056);
229
+ border-color: transparent;
230
+ box-shadow: none;
231
+ color: inherit;
232
+ }
@@ -1 +1,6 @@
1
- @import 'ej2-splitbuttons/styles/drop-down-button/highcontrast.scss';
1
+ @import 'ej2-base/styles/definition/highcontrast.scss';
2
+ @import 'ej2-buttons/styles/button/highcontrast-definition.scss';
3
+ @import 'ej2-popups/styles/popup/highcontrast-definition.scss';
4
+ @import 'highcontrast-definition.scss';
5
+ @import 'icons/highcontrast.scss';
6
+ @import 'all.scss';
@@ -0,0 +1,10 @@
1
+ @include export-module('drop-down-button-bootstrap-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-bootstrap-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-bootstrap4-icons') {
2
+ .e-dropdown-btn,
3
+ .e-dropdown-btn.e-btn {
4
+ .e-caret {
5
+ &::before {
6
+ content: '\e744';
7
+ }
8
+ }
9
+ }
10
+ }
@@ -0,0 +1 @@
1
+ @import './bootstrap5.scss';
@@ -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
+ }