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

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 (360) 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.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/bootstrap-dark.css +226 -5
  33. package/styles/bootstrap-dark.scss +1 -0
  34. package/styles/bootstrap.css +221 -0
  35. package/styles/bootstrap.scss +1 -0
  36. package/styles/bootstrap4.css +222 -1
  37. package/styles/bootstrap4.scss +1 -0
  38. package/styles/bootstrap5-dark.css +223 -0
  39. package/styles/bootstrap5-dark.scss +1 -0
  40. package/styles/bootstrap5.css +223 -0
  41. package/styles/bootstrap5.scss +1 -0
  42. package/styles/button-group/_all.scss +2 -0
  43. package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
  44. package/styles/button-group/_bootstrap-definition.scss +30 -0
  45. package/styles/button-group/_bootstrap4-definition.scss +30 -0
  46. package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
  47. package/styles/button-group/_bootstrap5-definition.scss +31 -0
  48. package/styles/button-group/_fabric-dark-definition.scss +33 -0
  49. package/styles/button-group/_fabric-definition.scss +30 -0
  50. package/styles/button-group/_fluent-dark-definition.scss +1 -0
  51. package/styles/button-group/_fluent-definition.scss +31 -0
  52. package/styles/button-group/_fusionnew-definition.scss +31 -0
  53. package/styles/button-group/_group-button-mixin.scss +72 -0
  54. package/styles/button-group/_highcontrast-definition.scss +32 -0
  55. package/styles/button-group/_highcontrast-light-definition.scss +35 -0
  56. package/styles/button-group/_layout.scss +288 -0
  57. package/styles/button-group/_material-dark-definition.scss +33 -0
  58. package/styles/button-group/_material-definition.scss +30 -0
  59. package/styles/button-group/_material3-definition.scss +31 -0
  60. package/styles/button-group/_tailwind-dark-definition.scss +1 -0
  61. package/styles/button-group/_tailwind-definition.scss +31 -0
  62. package/styles/button-group/_theme.scss +386 -0
  63. package/styles/button-group/bootstrap-dark.css +2 -0
  64. package/styles/button-group/bootstrap-dark.scss +4 -1
  65. package/styles/button-group/bootstrap.css +2 -0
  66. package/styles/button-group/bootstrap.scss +4 -1
  67. package/styles/button-group/bootstrap4.css +2 -0
  68. package/styles/button-group/bootstrap4.scss +4 -1
  69. package/styles/button-group/bootstrap5-dark.css +2 -0
  70. package/styles/button-group/bootstrap5-dark.scss +4 -1
  71. package/styles/button-group/bootstrap5.css +2 -0
  72. package/styles/button-group/bootstrap5.scss +4 -1
  73. package/styles/button-group/fabric-dark.css +2 -0
  74. package/styles/button-group/fabric-dark.scss +4 -1
  75. package/styles/button-group/fabric.css +2 -0
  76. package/styles/button-group/fabric.scss +4 -1
  77. package/styles/button-group/fluent-dark.css +2 -0
  78. package/styles/button-group/fluent-dark.scss +4 -1
  79. package/styles/button-group/fluent.css +2 -0
  80. package/styles/button-group/fluent.scss +4 -1
  81. package/styles/button-group/highcontrast-light.css +2 -0
  82. package/styles/button-group/highcontrast-light.scss +4 -1
  83. package/styles/button-group/highcontrast.css +2 -0
  84. package/styles/button-group/highcontrast.scss +4 -1
  85. package/styles/button-group/material-dark.css +2 -0
  86. package/styles/button-group/material-dark.scss +4 -1
  87. package/styles/button-group/material.css +2 -0
  88. package/styles/button-group/material.scss +4 -1
  89. package/styles/button-group/tailwind-dark.css +2 -0
  90. package/styles/button-group/tailwind-dark.scss +4 -1
  91. package/styles/button-group/tailwind.css +2 -0
  92. package/styles/button-group/tailwind.scss +4 -1
  93. package/styles/drop-down-button/_all.scss +2 -0
  94. package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
  95. package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
  96. package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
  97. package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
  98. package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
  99. package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
  100. package/styles/drop-down-button/_fabric-definition.scss +48 -0
  101. package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
  102. package/styles/drop-down-button/_fluent-definition.scss +52 -0
  103. package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
  104. package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
  105. package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
  106. package/styles/drop-down-button/_layout.scss +218 -0
  107. package/styles/drop-down-button/_material-dark-definition.scss +51 -0
  108. package/styles/drop-down-button/_material-definition.scss +48 -0
  109. package/styles/drop-down-button/_material3-definition.scss +50 -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 +58 -0
  113. package/styles/drop-down-button/bootstrap-dark.scss +6 -1
  114. package/styles/drop-down-button/bootstrap.scss +6 -1
  115. package/styles/drop-down-button/bootstrap4.scss +6 -1
  116. package/styles/drop-down-button/bootstrap5-dark.css +1 -0
  117. package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
  118. package/styles/drop-down-button/bootstrap5.css +1 -0
  119. package/styles/drop-down-button/bootstrap5.scss +6 -1
  120. package/styles/drop-down-button/fabric-dark.scss +6 -1
  121. package/styles/drop-down-button/fabric.scss +6 -1
  122. package/styles/drop-down-button/fluent-dark.css +1 -0
  123. package/styles/drop-down-button/fluent-dark.scss +6 -1
  124. package/styles/drop-down-button/fluent.css +1 -0
  125. package/styles/drop-down-button/fluent.scss +6 -1
  126. package/styles/drop-down-button/highcontrast-light.scss +6 -1
  127. package/styles/drop-down-button/highcontrast.scss +6 -1
  128. package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
  129. package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
  130. package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
  131. package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
  132. package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
  133. package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
  134. package/styles/drop-down-button/icons/_fabric.scss +10 -0
  135. package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
  136. package/styles/drop-down-button/icons/_fluent.scss +10 -0
  137. package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
  138. package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
  139. package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
  140. package/styles/drop-down-button/icons/_material-dark.scss +10 -0
  141. package/styles/drop-down-button/icons/_material.scss +10 -0
  142. package/styles/drop-down-button/icons/_material3.scss +10 -0
  143. package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
  144. package/styles/drop-down-button/icons/_tailwind.scss +10 -0
  145. package/styles/drop-down-button/material-dark.scss +6 -1
  146. package/styles/drop-down-button/material.scss +6 -1
  147. package/styles/drop-down-button/tailwind-dark.css +1 -0
  148. package/styles/drop-down-button/tailwind-dark.scss +6 -1
  149. package/styles/drop-down-button/tailwind.css +1 -0
  150. package/styles/drop-down-button/tailwind.scss +6 -1
  151. package/styles/fabric-dark.css +221 -0
  152. package/styles/fabric-dark.scss +1 -0
  153. package/styles/fabric.css +221 -0
  154. package/styles/fabric.scss +1 -0
  155. package/styles/fluent-dark.css +223 -0
  156. package/styles/fluent-dark.scss +1 -0
  157. package/styles/fluent.css +223 -0
  158. package/styles/fluent.scss +1 -0
  159. package/styles/highcontrast-light.css +221 -0
  160. package/styles/highcontrast-light.scss +1 -0
  161. package/styles/highcontrast.css +223 -2
  162. package/styles/highcontrast.scss +1 -0
  163. package/styles/material-dark.css +221 -0
  164. package/styles/material-dark.scss +1 -0
  165. package/styles/material.css +221 -0
  166. package/styles/material.scss +1 -0
  167. package/styles/progress-button/_all.scss +2 -0
  168. package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
  169. package/styles/progress-button/_bootstrap-definition.scss +24 -0
  170. package/styles/progress-button/_bootstrap4-definition.scss +24 -0
  171. package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
  172. package/styles/progress-button/_bootstrap5-definition.scss +21 -0
  173. package/styles/progress-button/_fabric-dark-definition.scss +27 -0
  174. package/styles/progress-button/_fabric-definition.scss +24 -0
  175. package/styles/progress-button/_fluent-dark-definition.scss +1 -0
  176. package/styles/progress-button/_fluent-definition.scss +21 -0
  177. package/styles/progress-button/_fusionnew-definition.scss +21 -0
  178. package/styles/progress-button/_highcontrast-definition.scss +24 -0
  179. package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
  180. package/styles/progress-button/_layout.scss +396 -0
  181. package/styles/progress-button/_material-dark-definition.scss +27 -0
  182. package/styles/progress-button/_material-definition.scss +24 -0
  183. package/styles/progress-button/_material3-definition.scss +21 -0
  184. package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
  185. package/styles/progress-button/_tailwind-definition.scss +21 -0
  186. package/styles/progress-button/_theme.scss +457 -0
  187. package/styles/progress-button/bootstrap-dark.css +6 -5
  188. package/styles/progress-button/bootstrap-dark.scss +5 -1
  189. package/styles/progress-button/bootstrap.css +1 -0
  190. package/styles/progress-button/bootstrap.scss +5 -1
  191. package/styles/progress-button/bootstrap4.css +2 -1
  192. package/styles/progress-button/bootstrap4.scss +5 -1
  193. package/styles/progress-button/bootstrap5-dark.css +1 -0
  194. package/styles/progress-button/bootstrap5-dark.scss +5 -1
  195. package/styles/progress-button/bootstrap5.css +1 -0
  196. package/styles/progress-button/bootstrap5.scss +5 -1
  197. package/styles/progress-button/fabric-dark.css +1 -0
  198. package/styles/progress-button/fabric-dark.scss +5 -1
  199. package/styles/progress-button/fabric.css +1 -0
  200. package/styles/progress-button/fabric.scss +5 -1
  201. package/styles/progress-button/fluent-dark.css +1 -0
  202. package/styles/progress-button/fluent-dark.scss +5 -1
  203. package/styles/progress-button/fluent.css +1 -0
  204. package/styles/progress-button/fluent.scss +5 -1
  205. package/styles/progress-button/highcontrast-light.css +1 -0
  206. package/styles/progress-button/highcontrast-light.scss +5 -1
  207. package/styles/progress-button/highcontrast.css +3 -2
  208. package/styles/progress-button/highcontrast.scss +5 -1
  209. package/styles/progress-button/material-dark.css +1 -0
  210. package/styles/progress-button/material-dark.scss +5 -1
  211. package/styles/progress-button/material.css +1 -0
  212. package/styles/progress-button/material.scss +5 -1
  213. package/styles/progress-button/tailwind-dark.css +1 -0
  214. package/styles/progress-button/tailwind-dark.scss +5 -1
  215. package/styles/progress-button/tailwind.css +1 -0
  216. package/styles/progress-button/tailwind.scss +5 -1
  217. package/styles/speed-dial/_all.scss +2 -0
  218. package/styles/speed-dial/_bootstrap-dark-definition.scss +37 -0
  219. package/styles/speed-dial/_bootstrap-definition.scss +37 -0
  220. package/styles/speed-dial/_bootstrap4-definition.scss +37 -0
  221. package/styles/speed-dial/_bootstrap5-dark-definition.scss +1 -0
  222. package/styles/speed-dial/_bootstrap5-definition.scss +37 -0
  223. package/styles/speed-dial/_fabric-dark-definition.scss +37 -0
  224. package/styles/speed-dial/_fabric-definition.scss +37 -0
  225. package/styles/speed-dial/_fluent-dark-definition.scss +1 -0
  226. package/styles/speed-dial/_fluent-definition.scss +37 -0
  227. package/styles/speed-dial/_fusionnew-definition.scss +37 -0
  228. package/styles/speed-dial/_highcontrast-definition.scss +37 -0
  229. package/styles/speed-dial/_highcontrast-light-definition.scss +37 -0
  230. package/styles/speed-dial/_layout.scss +249 -0
  231. package/styles/speed-dial/_material-dark-definition.scss +37 -0
  232. package/styles/speed-dial/_material-definition.scss +37 -0
  233. package/styles/speed-dial/_material3-definition.scss +37 -0
  234. package/styles/speed-dial/_tailwind-dark-definition.scss +1 -0
  235. package/styles/speed-dial/_tailwind-definition.scss +37 -0
  236. package/styles/speed-dial/_theme.scss +27 -0
  237. package/styles/speed-dial/bootstrap-dark.css +217 -0
  238. package/styles/speed-dial/bootstrap-dark.scss +4 -0
  239. package/styles/speed-dial/bootstrap.css +217 -0
  240. package/styles/speed-dial/bootstrap.scss +4 -0
  241. package/styles/speed-dial/bootstrap4.css +217 -0
  242. package/styles/speed-dial/bootstrap4.scss +4 -0
  243. package/styles/speed-dial/bootstrap5-dark.css +217 -0
  244. package/styles/speed-dial/bootstrap5-dark.scss +4 -0
  245. package/styles/speed-dial/bootstrap5.css +217 -0
  246. package/styles/speed-dial/bootstrap5.scss +4 -0
  247. package/styles/speed-dial/fabric-dark.css +217 -0
  248. package/styles/speed-dial/fabric-dark.scss +4 -0
  249. package/styles/speed-dial/fabric.css +217 -0
  250. package/styles/speed-dial/fabric.scss +4 -0
  251. package/styles/speed-dial/fluent-dark.css +217 -0
  252. package/styles/speed-dial/fluent-dark.scss +4 -0
  253. package/styles/speed-dial/fluent.css +217 -0
  254. package/styles/speed-dial/fluent.scss +4 -0
  255. package/styles/speed-dial/highcontrast-light.css +217 -0
  256. package/styles/speed-dial/highcontrast-light.scss +4 -0
  257. package/styles/speed-dial/highcontrast.css +217 -0
  258. package/styles/speed-dial/highcontrast.scss +4 -0
  259. package/styles/speed-dial/material-dark.css +218 -0
  260. package/styles/speed-dial/material-dark.scss +4 -0
  261. package/styles/speed-dial/material.css +218 -0
  262. package/styles/speed-dial/material.scss +4 -0
  263. package/styles/speed-dial/tailwind-dark.css +218 -0
  264. package/styles/speed-dial/tailwind-dark.scss +4 -0
  265. package/styles/speed-dial/tailwind.css +218 -0
  266. package/styles/speed-dial/tailwind.scss +4 -0
  267. package/styles/split-button/_all.scss +2 -0
  268. package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
  269. package/styles/split-button/_bootstrap-definition.scss +23 -0
  270. package/styles/split-button/_bootstrap4-definition.scss +26 -0
  271. package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
  272. package/styles/split-button/_bootstrap5-definition.scss +24 -0
  273. package/styles/split-button/_fabric-dark-definition.scss +26 -0
  274. package/styles/split-button/_fabric-definition.scss +23 -0
  275. package/styles/split-button/_fluent-dark-definition.scss +1 -0
  276. package/styles/split-button/_fluent-definition.scss +24 -0
  277. package/styles/split-button/_fusionnew-definition.scss +24 -0
  278. package/styles/split-button/_highcontrast-definition.scss +23 -0
  279. package/styles/split-button/_highcontrast-light-definition.scss +26 -0
  280. package/styles/split-button/_layout.scss +420 -0
  281. package/styles/split-button/_material-dark-definition.scss +26 -0
  282. package/styles/split-button/_material-definition.scss +23 -0
  283. package/styles/split-button/_material3-definition.scss +24 -0
  284. package/styles/split-button/_tailwind-dark-definition.scss +1 -0
  285. package/styles/split-button/_tailwind-definition.scss +24 -0
  286. package/styles/split-button/_theme.scss +136 -0
  287. package/styles/split-button/bootstrap-dark.scss +6 -1
  288. package/styles/split-button/bootstrap.scss +6 -1
  289. package/styles/split-button/bootstrap4.scss +6 -1
  290. package/styles/split-button/bootstrap5-dark.css +1 -0
  291. package/styles/split-button/bootstrap5-dark.scss +6 -1
  292. package/styles/split-button/bootstrap5.css +1 -0
  293. package/styles/split-button/bootstrap5.scss +6 -1
  294. package/styles/split-button/fabric-dark.scss +6 -1
  295. package/styles/split-button/fabric.scss +6 -1
  296. package/styles/split-button/fluent-dark.css +1 -0
  297. package/styles/split-button/fluent-dark.scss +6 -1
  298. package/styles/split-button/fluent.css +1 -0
  299. package/styles/split-button/fluent.scss +6 -1
  300. package/styles/split-button/highcontrast-light.scss +6 -1
  301. package/styles/split-button/highcontrast.scss +6 -1
  302. package/styles/split-button/material-dark.scss +6 -1
  303. package/styles/split-button/material.scss +6 -1
  304. package/styles/split-button/tailwind-dark.css +1 -0
  305. package/styles/split-button/tailwind-dark.scss +6 -1
  306. package/styles/split-button/tailwind.css +1 -0
  307. package/styles/split-button/tailwind.scss +6 -1
  308. package/styles/tailwind-dark.css +224 -0
  309. package/styles/tailwind-dark.scss +1 -0
  310. package/styles/tailwind.css +224 -0
  311. package/styles/tailwind.scss +1 -0
  312. package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
  313. package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
  314. package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
  315. package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
  316. package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
  317. package/CHANGELOG.md +0 -256
  318. package/dist/ej2-angular-splitbuttons.umd.js +0 -603
  319. package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
  320. package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
  321. package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
  322. package/ej2-angular-splitbuttons.d.ts +0 -7
  323. package/ej2-angular-splitbuttons.metadata.json +0 -1
  324. package/postinstall/tagchange.js +0 -18
  325. package/schematics/collection.json +0 -25
  326. package/schematics/generators/dropdownbutton-default/index.d.ts +0 -3
  327. package/schematics/generators/dropdownbutton-default/index.js +0 -8
  328. package/schematics/generators/dropdownbutton-default/sample-details.d.ts +0 -5
  329. package/schematics/generators/dropdownbutton-default/sample-details.js +0 -7
  330. package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -49
  331. package/schematics/generators/dropdownbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
  332. package/schematics/generators/dropdownbutton-default/schema.d.ts +0 -3
  333. package/schematics/generators/dropdownbutton-default/schema.js +0 -2
  334. package/schematics/generators/dropdownbutton-default/schema.json +0 -125
  335. package/schematics/generators/progressbutton-default/index.d.ts +0 -3
  336. package/schematics/generators/progressbutton-default/index.js +0 -8
  337. package/schematics/generators/progressbutton-default/sample-details.d.ts +0 -5
  338. package/schematics/generators/progressbutton-default/sample-details.js +0 -7
  339. package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -47
  340. package/schematics/generators/progressbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -53
  341. package/schematics/generators/progressbutton-default/schema.d.ts +0 -3
  342. package/schematics/generators/progressbutton-default/schema.js +0 -2
  343. package/schematics/generators/progressbutton-default/schema.json +0 -125
  344. package/schematics/generators/splitbutton-default/index.d.ts +0 -3
  345. package/schematics/generators/splitbutton-default/index.js +0 -8
  346. package/schematics/generators/splitbutton-default/sample-details.d.ts +0 -5
  347. package/schematics/generators/splitbutton-default/sample-details.js +0 -7
  348. package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -37
  349. package/schematics/generators/splitbutton-default/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -18
  350. package/schematics/generators/splitbutton-default/schema.d.ts +0 -3
  351. package/schematics/generators/splitbutton-default/schema.js +0 -2
  352. package/schematics/generators/splitbutton-default/schema.json +0 -125
  353. package/schematics/ng-add/index.d.ts +0 -3
  354. package/schematics/ng-add/index.js +0 -9
  355. package/schematics/ng-add/schema.d.ts +0 -13
  356. package/schematics/ng-add/schema.js +0 -2
  357. package/schematics/ng-add/schema.json +0 -34
  358. package/schematics/tsconfig.json +0 -25
  359. package/schematics/utils/lib-details.d.ts +0 -4
  360. package/schematics/utils/lib-details.js +0 -6
@@ -0,0 +1,457 @@
1
+ @include export-module('progress-button-theme') {
2
+
3
+ /*! Progress Button Theme */
4
+ .e-progress-btn {
5
+ .e-spinner-pane .e-spinner-inner svg {
6
+ fill: $progress-btn-color;
7
+ stroke: $progress-btn-color;
8
+
9
+ .e-path-circle {
10
+ stroke: fade-out($btn-color, $progress-btn-circle-opacity);
11
+ @if $skin-name == 'bootstrap4' {
12
+ stroke-width: 1px;
13
+ }
14
+ @else if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
15
+ stroke-width: 3px;
16
+ }
17
+ }
18
+
19
+ .e-path-arc {
20
+ stroke: $btn-color;
21
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
22
+ stroke-width: 3px;
23
+ }
24
+ }
25
+ }
26
+
27
+ #{if(&, '&', '*')}.e-primary,
28
+ #{if(&, '&', '*')}.e-primary.e-outline:hover,
29
+ #{if(&, '&', '*')}.e-primary.e-outline:focus,
30
+ #{if(&, '&', '*')}.e-primary.e-flat:hover,
31
+ #{if(&, '&', '*')}.e-primary.e-flat:focus {
32
+ .e-spinner-pane .e-spinner-inner svg {
33
+ fill: $btn-primary-color;
34
+ stroke: $btn-primary-color;
35
+
36
+ .e-path-circle {
37
+ stroke: fade-out($btn-primary-color, $progress-btn-circle-opacity);
38
+ }
39
+
40
+ .e-path-arc {
41
+ stroke: $btn-primary-color;
42
+ }
43
+ }
44
+
45
+ &.e-flat {
46
+ .e-spinner-pane .e-spinner-inner svg {
47
+ fill: $btn-flat-primary-color;
48
+ stroke: $btn-flat-primary-color;
49
+
50
+ .e-path-circle {
51
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
52
+ stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
53
+ }
54
+ @else {
55
+ stroke: fade-out($btn-flat-primary-color, $progress-btn-circle-opacity);
56
+ }
57
+ }
58
+
59
+ .e-path-arc {
60
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' or $skin-name == 'bootstrap5' {
61
+ stroke: $btn-flat-primary-path-arc;
62
+ }
63
+ @else {
64
+ stroke: $btn-flat-primary-color;
65
+ }
66
+ }
67
+ }
68
+ }
69
+ }
70
+
71
+ #{if(&, '&', '*')}.e-success,
72
+ #{if(&, '&', '*')}.e-success.e-outline:hover,
73
+ #{if(&, '&', '*')}.e-success.e-outline:focus,
74
+ #{if(&, '&', '*')}.e-success.e-flat:hover,
75
+ #{if(&, '&', '*')}.e-success.e-flat:focus {
76
+ .e-spinner-pane .e-spinner-inner svg {
77
+ fill: $btn-success-color;
78
+ stroke: $btn-success-color;
79
+
80
+ .e-path-circle {
81
+ stroke: fade-out($btn-success-color, $progress-btn-circle-opacity);
82
+ }
83
+
84
+ .e-path-arc {
85
+ stroke: $btn-success-color;
86
+ }
87
+ }
88
+
89
+ &.e-flat {
90
+ .e-spinner-pane .e-spinner-inner svg {
91
+ fill: $btn-flat-success-color;
92
+ stroke: $btn-flat-success-color;
93
+
94
+ .e-path-circle {
95
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
96
+ stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
97
+ }
98
+ @else {
99
+ stroke: fade-out($btn-flat-success-color, $progress-btn-circle-opacity);
100
+ }
101
+ }
102
+
103
+ .e-path-arc {
104
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
105
+ stroke: $btn-flat-primary-path-arc;
106
+ }
107
+ @else {
108
+ stroke: $btn-flat-success-color;
109
+ }
110
+ }
111
+ }
112
+ }
113
+ }
114
+
115
+ &.e-info,
116
+ &.e-info.e-outline:hover,
117
+ &.e-info.e-outline:focus,
118
+ &.e-info.e-flat:hover,
119
+ &.e-info.e-flat:focus {
120
+ .e-spinner-pane .e-spinner-inner svg {
121
+ fill: $btn-info-color;
122
+ stroke: $btn-info-color;
123
+
124
+ .e-path-circle {
125
+ stroke: fade-out($btn-info-color, $progress-btn-circle-opacity);
126
+ }
127
+
128
+ .e-path-arc {
129
+ stroke: $btn-info-color;
130
+ }
131
+ }
132
+
133
+ &.e-flat {
134
+ .e-spinner-pane .e-spinner-inner svg {
135
+ fill: $btn-flat-info-color;
136
+ stroke: $btn-flat-info-color;
137
+
138
+ .e-path-circle {
139
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
140
+ stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
141
+ }
142
+ @else {
143
+ stroke: fade-out($btn-flat-info-color, $progress-btn-circle-opacity);
144
+ }
145
+ }
146
+
147
+ .e-path-arc {
148
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
149
+ stroke: $btn-flat-primary-path-arc;
150
+ }
151
+ @else {
152
+ stroke: $btn-flat-info-color;
153
+ }
154
+ }
155
+ }
156
+ }
157
+ }
158
+
159
+ &.e-warning,
160
+ &.e-warning.e-outline:hover,
161
+ &.e-warning.e-outline:focus,
162
+ &.e-warning.e-flat:hover,
163
+ &.e-warning.e-flat:focus {
164
+ .e-spinner-pane .e-spinner-inner svg {
165
+ fill: $btn-warning-color;
166
+ stroke: $btn-warning-color;
167
+
168
+ .e-path-circle {
169
+ stroke: fade-out($btn-warning-color, $progress-btn-circle-opacity);
170
+ }
171
+
172
+ .e-path-arc {
173
+ stroke: $btn-warning-color;
174
+ }
175
+ }
176
+
177
+ &.e-flat {
178
+ .e-spinner-pane .e-spinner-inner svg {
179
+ fill: $btn-flat-warning-color;
180
+ stroke: $btn-flat-warning-color;
181
+
182
+ .e-path-circle {
183
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
184
+ stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
185
+ }
186
+ @else {
187
+ stroke: fade-out($btn-flat-warning-color, $progress-btn-circle-opacity);
188
+ }
189
+ }
190
+
191
+ .e-path-arc {
192
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
193
+ stroke: $btn-flat-primary-path-arc;
194
+ }
195
+ @else {
196
+ stroke: $btn-flat-warning-color;
197
+ }
198
+ }
199
+ }
200
+ }
201
+ }
202
+
203
+ &.e-danger,
204
+ &.e-danger.e-outline:hover,
205
+ &.e-danger.e-outline:focus,
206
+ &.e-danger.e-flat:hover,
207
+ &.e-danger.e-flat:focus {
208
+ .e-spinner-pane .e-spinner-inner svg {
209
+ fill: $btn-danger-color;
210
+ stroke: $btn-danger-color;
211
+
212
+ .e-path-circle {
213
+ stroke: fade-out($btn-danger-color, $progress-btn-circle-opacity);
214
+ }
215
+
216
+ .e-path-arc {
217
+ stroke: $btn-danger-color;
218
+ }
219
+ }
220
+
221
+ &.e-flat {
222
+ .e-spinner-pane .e-spinner-inner svg {
223
+ fill: $btn-flat-danger-color;
224
+ stroke: $btn-flat-danger-color;
225
+
226
+ .e-path-circle {
227
+ @if $skin-name == 'tailwind' or $skin-name == 'FluentUI' or $skin-name == 'bootstrap5' {
228
+ stroke: fade-out($btn-flat-primary-path-arc, $progress-btn-circle-opacity);
229
+ }
230
+ @else {
231
+ stroke: fade-out($btn-flat-danger-color, $progress-btn-circle-opacity);
232
+ }
233
+ }
234
+
235
+ .e-path-arc {
236
+ @if $skin-name == 'tailwind' or $skin-name == 'tailwind-dark' {
237
+ stroke: $btn-flat-primary-path-arc;
238
+ }
239
+ @else {
240
+ stroke: $btn-flat-danger-color;
241
+ }
242
+ }
243
+ }
244
+ }
245
+ }
246
+
247
+ &.e-outline,
248
+ &.e-flat {
249
+ &.e-primary {
250
+ .e-spinner-pane .e-spinner-inner svg {
251
+ fill: $btn-primary-bgcolor;
252
+ stroke: $btn-primary-bgcolor;
253
+
254
+ .e-path-circle {
255
+ stroke: fade-out($btn-primary-bgcolor, $progress-btn-circle-opacity);
256
+ }
257
+
258
+ .e-path-arc {
259
+ stroke: $btn-primary-bgcolor;
260
+ }
261
+ }
262
+ }
263
+
264
+ &.e-success {
265
+ .e-spinner-pane .e-spinner-inner svg {
266
+ fill: $btn-success-bgcolor;
267
+ stroke: $btn-success-bgcolor;
268
+
269
+ .e-path-circle {
270
+ stroke: fade-out($btn-success-bgcolor, $progress-btn-circle-opacity);
271
+ }
272
+
273
+ .e-path-arc {
274
+ stroke: $btn-success-bgcolor;
275
+ }
276
+ }
277
+ }
278
+
279
+ &.e-info {
280
+ .e-spinner-pane .e-spinner-inner svg {
281
+ fill: $btn-info-bgcolor;
282
+ stroke: $btn-info-bgcolor;
283
+
284
+ .e-path-circle {
285
+ stroke: fade-out($btn-info-bgcolor, $progress-btn-circle-opacity);
286
+ }
287
+
288
+ .e-path-arc {
289
+ stroke: $btn-info-bgcolor;
290
+ }
291
+ }
292
+ }
293
+
294
+ &.e-warning {
295
+ .e-spinner-pane .e-spinner-inner svg {
296
+ fill: $btn-warning-bgcolor;
297
+ stroke: $btn-warning-bgcolor;
298
+
299
+ .e-path-circle {
300
+ stroke: fade-out($btn-warning-bgcolor, $progress-btn-circle-opacity);
301
+ }
302
+
303
+ .e-path-arc {
304
+ stroke: $btn-warning-bgcolor;
305
+ }
306
+ }
307
+ }
308
+
309
+ &.e-danger {
310
+ .e-spinner-pane .e-spinner-inner svg {
311
+ fill: $btn-danger-bgcolor;
312
+ stroke: $btn-danger-bgcolor;
313
+
314
+ .e-path-circle {
315
+ stroke: fade-out($btn-danger-bgcolor, $progress-btn-circle-opacity);
316
+ }
317
+
318
+ .e-path-arc {
319
+ stroke: $btn-danger-bgcolor;
320
+ }
321
+ }
322
+ }
323
+ }
324
+
325
+ &.e-link {
326
+ .e-spinner-pane .e-spinner-inner svg {
327
+ fill: $btn-link-color;
328
+ stroke: $btn-link-color;
329
+
330
+ .e-path-circle {
331
+ stroke: fade-out($btn-link-color, $progress-btn-circle-opacity);
332
+ }
333
+
334
+ .e-path-arc {
335
+ stroke: $btn-link-color;
336
+ }
337
+ }
338
+ }
339
+ }
340
+
341
+ .e-progress {
342
+ background-color: $progress-btn-bgcolor-normal;
343
+ }
344
+
345
+ #{if(&, '&', '*')}.e-primary,
346
+ #{if(&, '&', '*')}.e-success,
347
+ #{if(&, '&', '*')}.e-danger,
348
+ #{if(&, '&', '*')}.e-info {
349
+ .e-progress {
350
+ background-color: $progress-btn-bgcolor;
351
+ }
352
+ }
353
+
354
+ #{if(&, '&', '*')}.e-warning {
355
+ .e-progress {
356
+ background-color: $progress-btn-warning-progress-color;
357
+ }
358
+ }
359
+
360
+ #{if(&, '&', '*')}.e-flat {
361
+ &.e-primary {
362
+ .e-progress {
363
+ background-color: fade-out($progress-btn-flat-primary-progress-color, .8);
364
+ }
365
+ }
366
+
367
+ &.e-success {
368
+ .e-progress {
369
+ background-color: fade-out($progress-btn-flat-success-progress-color, .8);
370
+ }
371
+ }
372
+
373
+ &.e-info {
374
+ .e-progress {
375
+ background-color: fade-out($progress-btn-flat-info-progress-color, .8);
376
+ }
377
+ }
378
+
379
+ &.e-warning {
380
+ .e-progress {
381
+ background-color: fade-out($progress-btn-flat-warning-progress-color, .8);
382
+ }
383
+ }
384
+
385
+ &.e-danger {
386
+ .e-progress {
387
+ background-color: fade-out($progress-btn-flat-danger-progress-color, .8);
388
+ }
389
+ }
390
+ }
391
+
392
+ #{if(&, '&', '*')}.e-outline:not(:focus) {
393
+ &.e-primary {
394
+ .e-progress {
395
+ background-color: fade-out($btn-primary-bgcolor, .8);
396
+ }
397
+ }
398
+
399
+ &.e-success {
400
+ .e-progress {
401
+ background-color: fade-out($btn-success-bgcolor, .8);
402
+ }
403
+ }
404
+
405
+ &.e-info {
406
+ .e-progress {
407
+ background-color: fade-out($btn-info-bgcolor, .8);
408
+ }
409
+ }
410
+
411
+ &.e-warning {
412
+ .e-progress {
413
+ background-color: fade-out($btn-warning-bgcolor, .8);
414
+ }
415
+ }
416
+
417
+ &.e-danger {
418
+ .e-progress {
419
+ background-color: fade-out($btn-danger-bgcolor, .8);
420
+ }
421
+ }
422
+ }
423
+
424
+ #{if(&, '&', '*')}.e-flat:not(:focus) {
425
+ @if $skin-name == 'bootstrap5' or $skin-name == 'tailwind' or $skin-name == 'FluentUI' {
426
+ &.e-primary {
427
+ .e-progress {
428
+ background-color: fade-out($btn-primary-bgcolor, .8);
429
+ }
430
+ }
431
+
432
+ &.e-success {
433
+ .e-progress {
434
+ background-color: fade-out($btn-success-bgcolor, .8);
435
+ }
436
+ }
437
+
438
+ &.e-info {
439
+ .e-progress {
440
+ background-color: fade-out($btn-info-bgcolor, .8);
441
+ }
442
+ }
443
+
444
+ &.e-warning {
445
+ .e-progress {
446
+ background-color: fade-out($btn-warning-bgcolor, .8);
447
+ }
448
+ }
449
+
450
+ &.e-danger {
451
+ .e-progress {
452
+ background-color: fade-out($btn-danger-bgcolor, .8);
453
+ }
454
+ }
455
+ }
456
+ }
457
+ }
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -496,19 +497,19 @@
496
497
  }
497
498
 
498
499
  *.e-flat.e-primary .e-progress {
499
- background-color: rgba(255, 255, 255, 0.2);
500
+ background-color: rgba(255, 64, 129, 0.2);
500
501
  }
501
502
  *.e-flat.e-success .e-progress {
502
- background-color: rgba(255, 255, 255, 0.2);
503
+ background-color: rgba(77, 132, 29, 0.2);
503
504
  }
504
505
  *.e-flat.e-info .e-progress {
505
- background-color: rgba(255, 255, 255, 0.2);
506
+ background-color: rgba(3, 120, 213, 0.2);
506
507
  }
507
508
  *.e-flat.e-warning .e-progress {
508
- background-color: rgba(255, 255, 255, 0.2);
509
+ background-color: rgba(193, 87, 0, 0.2);
509
510
  }
510
511
  *.e-flat.e-danger .e-progress {
511
- background-color: rgba(255, 255, 255, 0.2);
512
+ background-color: rgba(214, 65, 19, 0.2);
512
513
  }
513
514
 
514
515
  *.e-outline:not(:focus).e-primary .e-progress {
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/bootstrap-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap-dark-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/bootstrap-dark-definition.scss';
4
+ @import 'bootstrap-dark-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/bootstrap.scss';
1
+ @import 'ej2-base/styles/bootstrap-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/bootstrap-definition.scss';
4
+ @import 'bootstrap-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -489,7 +490,7 @@
489
490
  *.e-success .e-progress,
490
491
  *.e-danger .e-progress,
491
492
  *.e-info .e-progress {
492
- background-color: rgba(73, 80, 87, 0.2);
493
+ background-color: rgba(255, 255, 255, 0.25);
493
494
  }
494
495
 
495
496
  *.e-warning .e-progress {
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/bootstrap4.scss';
1
+ @import 'ej2-base/styles/bootstrap4-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap4-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/bootstrap4-definition.scss';
4
+ @import 'bootstrap4-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/bootstrap5-dark.scss';
1
+ @import 'ej2-base/styles/bootstrap5-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap5-dark-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/bootstrap5-dark-definition.scss';
4
+ @import 'bootstrap5-dark-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/bootstrap5.scss';
1
+ @import 'ej2-base/styles/bootstrap5-definition.scss';
2
+ @import 'ej2-buttons/styles/button/bootstrap5-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/bootstrap5-definition.scss';
4
+ @import 'bootstrap5-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/fabric-dark.scss';
1
+ @import 'ej2-base/styles/fabric-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/fabric-dark-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/fabric-dark-definition.scss';
4
+ @import 'fabric-dark-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/fabric.scss';
1
+ @import 'ej2-base/styles/fabric-definition.scss';
2
+ @import 'ej2-buttons/styles/button/fabric-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/fabric-definition.scss';
4
+ @import 'fabric-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/fluent-dark.scss';
1
+ @import 'ej2-base/styles/fluent-dark-definition.scss';
2
+ @import 'ej2-buttons/styles/button/fluent-dark-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/fluent-dark-definition.scss';
4
+ @import 'fluent-dark-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/fluent.scss';
1
+ @import 'ej2-base/styles/fluent-definition.scss';
2
+ @import 'ej2-buttons/styles/button/fluent-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/fluent-definition.scss';
4
+ @import 'fluent-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/highcontrast-light.scss';
1
+ @import 'ej2-base/styles/highcontrast-light-definition.scss';
2
+ @import 'ej2-buttons/styles/button/highcontrast-light-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/highcontrast-light-definition.scss';
4
+ @import 'highcontrast-light-definition.scss';
5
+ @import 'all.scss';
@@ -1,3 +1,4 @@
1
+ /* stylelint-disable property-no-vendor-prefix */
1
2
  @keyframes material-spinner-rotate {
2
3
  0% {
3
4
  transform: rotate(0);
@@ -488,11 +489,11 @@
488
489
  *.e-success .e-progress,
489
490
  *.e-danger .e-progress,
490
491
  *.e-info .e-progress {
491
- background-color: rgba(255, 255, 255, 0.2);
492
+ background-color: rgba(0, 0, 0, 0.3);
492
493
  }
493
494
 
494
495
  *.e-warning .e-progress {
495
- background-color: rgba(255, 255, 255, 0.2);
496
+ background-color: rgba(0, 0, 0, 0.3);
496
497
  }
497
498
 
498
499
  *.e-flat.e-primary .e-progress {
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-button/highcontrast.scss';
1
+ @import 'ej2-base/styles/highcontrast-definition.scss';
2
+ @import 'ej2-buttons/styles/button/highcontrast-definition.scss';
3
+ @import 'ej2-popups/styles/spinner/highcontrast-definition.scss';
4
+ @import 'highcontrast-definition.scss';
5
+ @import 'all.scss';
@@ -1,4 +1,5 @@
1
1
  @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
2
+ /* stylelint-disable property-no-vendor-prefix */
2
3
  @keyframes material-spinner-rotate {
3
4
  0% {
4
5
  transform: rotate(0deg);
@@ -1 +1,5 @@
1
- @import 'ej2-splitbuttons/styles/progress-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/spinner/material-dark-definition.scss';
4
+ @import 'material-dark-definition.scss';
5
+ @import 'all.scss';
@@ -1,4 +1,5 @@
1
1
  @import url("https://fonts.googleapis.com/css?family=Roboto:400,500");
2
+ /* stylelint-disable property-no-vendor-prefix */
2
3
  @keyframes material-spinner-rotate {
3
4
  0% {
4
5
  transform: rotate(0deg);