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

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 (234) 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 +27 -13
  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/bootstrap-dark.css +0 -21
  33. package/styles/bootstrap.css +0 -21
  34. package/styles/bootstrap4.css +28 -49
  35. package/styles/bootstrap5-dark.css +0 -21
  36. package/styles/bootstrap5.css +0 -21
  37. package/styles/button-group/_all.scss +2 -0
  38. package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
  39. package/styles/button-group/_bootstrap-definition.scss +30 -0
  40. package/styles/button-group/_bootstrap4-definition.scss +30 -0
  41. package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
  42. package/styles/button-group/_bootstrap5-definition.scss +31 -0
  43. package/styles/button-group/_fabric-dark-definition.scss +33 -0
  44. package/styles/button-group/_fabric-definition.scss +30 -0
  45. package/styles/button-group/_fluent-dark-definition.scss +1 -0
  46. package/styles/button-group/_fluent-definition.scss +31 -0
  47. package/styles/button-group/_fusionnew-definition.scss +31 -0
  48. package/styles/button-group/_group-button-mixin.scss +72 -0
  49. package/styles/button-group/_highcontrast-definition.scss +32 -0
  50. package/styles/button-group/_highcontrast-light-definition.scss +35 -0
  51. package/styles/button-group/_layout.scss +288 -0
  52. package/styles/button-group/_material-dark-definition.scss +33 -0
  53. package/styles/button-group/_material-definition.scss +30 -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 +386 -0
  58. package/styles/button-group/bootstrap-dark.scss +4 -1
  59. package/styles/button-group/bootstrap.scss +4 -1
  60. package/styles/button-group/bootstrap4.css +24 -24
  61. package/styles/button-group/bootstrap4.scss +4 -1
  62. package/styles/button-group/bootstrap5-dark.scss +4 -1
  63. package/styles/button-group/bootstrap5.scss +4 -1
  64. package/styles/button-group/fabric-dark.scss +4 -1
  65. package/styles/button-group/fabric.scss +4 -1
  66. package/styles/button-group/fluent-dark.scss +4 -1
  67. package/styles/button-group/fluent.scss +4 -1
  68. package/styles/button-group/highcontrast-light.scss +4 -1
  69. package/styles/button-group/highcontrast.scss +4 -1
  70. package/styles/button-group/material-dark.scss +4 -1
  71. package/styles/button-group/material.scss +4 -1
  72. package/styles/button-group/tailwind-dark.scss +4 -1
  73. package/styles/button-group/tailwind.scss +4 -1
  74. package/styles/drop-down-button/_all.scss +2 -0
  75. package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
  76. package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
  77. package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
  78. package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
  79. package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
  80. package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
  81. package/styles/drop-down-button/_fabric-definition.scss +48 -0
  82. package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
  83. package/styles/drop-down-button/_fluent-definition.scss +52 -0
  84. package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
  85. package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
  86. package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
  87. package/styles/drop-down-button/_layout.scss +218 -0
  88. package/styles/drop-down-button/_material-dark-definition.scss +51 -0
  89. package/styles/drop-down-button/_material-definition.scss +48 -0
  90. package/styles/drop-down-button/_material3-definition.scss +50 -0
  91. package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
  92. package/styles/drop-down-button/_tailwind-definition.scss +49 -0
  93. package/styles/drop-down-button/_theme.scss +78 -0
  94. package/styles/drop-down-button/bootstrap-dark.scss +6 -1
  95. package/styles/drop-down-button/bootstrap.scss +6 -1
  96. package/styles/drop-down-button/bootstrap4.css +1 -1
  97. package/styles/drop-down-button/bootstrap4.scss +6 -1
  98. package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
  99. package/styles/drop-down-button/bootstrap5.scss +6 -1
  100. package/styles/drop-down-button/fabric-dark.scss +6 -1
  101. package/styles/drop-down-button/fabric.scss +6 -1
  102. package/styles/drop-down-button/fluent-dark.scss +6 -1
  103. package/styles/drop-down-button/fluent.scss +6 -1
  104. package/styles/drop-down-button/highcontrast-light.scss +6 -1
  105. package/styles/drop-down-button/highcontrast.scss +6 -1
  106. package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
  107. package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
  108. package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
  109. package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
  110. package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
  111. package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
  112. package/styles/drop-down-button/icons/_fabric.scss +10 -0
  113. package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
  114. package/styles/drop-down-button/icons/_fluent.scss +10 -0
  115. package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
  116. package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
  117. package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
  118. package/styles/drop-down-button/icons/_material-dark.scss +10 -0
  119. package/styles/drop-down-button/icons/_material.scss +10 -0
  120. package/styles/drop-down-button/icons/_material3.scss +10 -0
  121. package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
  122. package/styles/drop-down-button/icons/_tailwind.scss +10 -0
  123. package/styles/drop-down-button/material-dark.scss +6 -1
  124. package/styles/drop-down-button/material.scss +6 -1
  125. package/styles/drop-down-button/tailwind-dark.scss +6 -1
  126. package/styles/drop-down-button/tailwind.scss +6 -1
  127. package/styles/fabric-dark.css +0 -21
  128. package/styles/fabric.css +0 -21
  129. package/styles/fluent-dark.css +0 -21
  130. package/styles/fluent.css +0 -21
  131. package/styles/highcontrast-light.css +0 -21
  132. package/styles/highcontrast.css +0 -21
  133. package/styles/material-dark.css +0 -21
  134. package/styles/material.css +0 -21
  135. package/styles/progress-button/_all.scss +2 -0
  136. package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
  137. package/styles/progress-button/_bootstrap-definition.scss +24 -0
  138. package/styles/progress-button/_bootstrap4-definition.scss +24 -0
  139. package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
  140. package/styles/progress-button/_bootstrap5-definition.scss +21 -0
  141. package/styles/progress-button/_fabric-dark-definition.scss +27 -0
  142. package/styles/progress-button/_fabric-definition.scss +24 -0
  143. package/styles/progress-button/_fluent-dark-definition.scss +1 -0
  144. package/styles/progress-button/_fluent-definition.scss +21 -0
  145. package/styles/progress-button/_fusionnew-definition.scss +21 -0
  146. package/styles/progress-button/_highcontrast-definition.scss +24 -0
  147. package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
  148. package/styles/progress-button/_layout.scss +396 -0
  149. package/styles/progress-button/_material-dark-definition.scss +27 -0
  150. package/styles/progress-button/_material-definition.scss +24 -0
  151. package/styles/progress-button/_material3-definition.scss +21 -0
  152. package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
  153. package/styles/progress-button/_tailwind-definition.scss +21 -0
  154. package/styles/progress-button/_theme.scss +457 -0
  155. package/styles/progress-button/bootstrap-dark.scss +5 -1
  156. package/styles/progress-button/bootstrap.scss +5 -1
  157. package/styles/progress-button/bootstrap4.scss +5 -1
  158. package/styles/progress-button/bootstrap5-dark.scss +5 -1
  159. package/styles/progress-button/bootstrap5.scss +5 -1
  160. package/styles/progress-button/fabric-dark.scss +5 -1
  161. package/styles/progress-button/fabric.scss +5 -1
  162. package/styles/progress-button/fluent-dark.scss +5 -1
  163. package/styles/progress-button/fluent.scss +5 -1
  164. package/styles/progress-button/highcontrast-light.scss +5 -1
  165. package/styles/progress-button/highcontrast.scss +5 -1
  166. package/styles/progress-button/material-dark.scss +5 -1
  167. package/styles/progress-button/material.scss +5 -1
  168. package/styles/progress-button/tailwind-dark.scss +5 -1
  169. package/styles/progress-button/tailwind.scss +5 -1
  170. package/styles/split-button/_all.scss +2 -0
  171. package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
  172. package/styles/split-button/_bootstrap-definition.scss +23 -0
  173. package/styles/split-button/_bootstrap4-definition.scss +26 -0
  174. package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
  175. package/styles/split-button/_bootstrap5-definition.scss +24 -0
  176. package/styles/split-button/_fabric-dark-definition.scss +26 -0
  177. package/styles/split-button/_fabric-definition.scss +23 -0
  178. package/styles/split-button/_fluent-dark-definition.scss +1 -0
  179. package/styles/split-button/_fluent-definition.scss +24 -0
  180. package/styles/split-button/_fusionnew-definition.scss +24 -0
  181. package/styles/split-button/_highcontrast-definition.scss +23 -0
  182. package/styles/split-button/_highcontrast-light-definition.scss +26 -0
  183. package/styles/split-button/_layout.scss +420 -0
  184. package/styles/split-button/_material-dark-definition.scss +26 -0
  185. package/styles/split-button/_material-definition.scss +23 -0
  186. package/styles/split-button/_material3-definition.scss +24 -0
  187. package/styles/split-button/_tailwind-dark-definition.scss +1 -0
  188. package/styles/split-button/_tailwind-definition.scss +24 -0
  189. package/styles/split-button/_theme.scss +136 -0
  190. package/styles/split-button/bootstrap-dark.css +0 -21
  191. package/styles/split-button/bootstrap-dark.scss +6 -1
  192. package/styles/split-button/bootstrap.css +0 -21
  193. package/styles/split-button/bootstrap.scss +6 -1
  194. package/styles/split-button/bootstrap4.css +3 -24
  195. package/styles/split-button/bootstrap4.scss +6 -1
  196. package/styles/split-button/bootstrap5-dark.css +0 -21
  197. package/styles/split-button/bootstrap5-dark.scss +6 -1
  198. package/styles/split-button/bootstrap5.css +0 -21
  199. package/styles/split-button/bootstrap5.scss +6 -1
  200. package/styles/split-button/fabric-dark.css +0 -21
  201. package/styles/split-button/fabric-dark.scss +6 -1
  202. package/styles/split-button/fabric.css +0 -21
  203. package/styles/split-button/fabric.scss +6 -1
  204. package/styles/split-button/fluent-dark.css +0 -21
  205. package/styles/split-button/fluent-dark.scss +6 -1
  206. package/styles/split-button/fluent.css +0 -21
  207. package/styles/split-button/fluent.scss +6 -1
  208. package/styles/split-button/highcontrast-light.css +0 -21
  209. package/styles/split-button/highcontrast-light.scss +6 -1
  210. package/styles/split-button/highcontrast.css +0 -21
  211. package/styles/split-button/highcontrast.scss +6 -1
  212. package/styles/split-button/material-dark.css +0 -21
  213. package/styles/split-button/material-dark.scss +6 -1
  214. package/styles/split-button/material.css +0 -21
  215. package/styles/split-button/material.scss +6 -1
  216. package/styles/split-button/tailwind-dark.css +0 -21
  217. package/styles/split-button/tailwind-dark.scss +6 -1
  218. package/styles/split-button/tailwind.css +0 -21
  219. package/styles/split-button/tailwind.scss +6 -1
  220. package/styles/tailwind-dark.css +0 -21
  221. package/styles/tailwind.css +0 -21
  222. package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
  223. package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
  224. package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
  225. package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
  226. package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
  227. package/CHANGELOG.md +0 -242
  228. package/dist/ej2-angular-splitbuttons.umd.js +0 -603
  229. package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
  230. package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
  231. package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
  232. package/ej2-angular-splitbuttons.d.ts +0 -7
  233. package/ej2-angular-splitbuttons.metadata.json +0 -1
  234. package/postinstall/tagchange.js +0 -18
@@ -1,5 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./progressbutton.module";
1
4
  /**
2
5
  * NgModule definition for the ProgressButton component with providers.
3
6
  */
4
7
  export declare class ProgressButtonAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressButtonAllModule, never, [typeof i1.CommonModule, typeof i2.ProgressButtonModule], [typeof i2.ProgressButtonModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ProgressButtonAllModule>;
5
11
  }
@@ -1,6 +1,7 @@
1
1
  import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
2
  import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
3
  import { ProgressButton } from '@syncfusion/ej2-splitbuttons';
4
+ import * as i0 from "@angular/core";
4
5
  export declare const inputs: string[];
5
6
  export declare const outputs: string[];
6
7
  export declare const twoWays: string[];
@@ -29,4 +30,6 @@ export declare class ProgressButtonComponent extends ProgressButton implements I
29
30
  ngAfterContentChecked(): void;
30
31
  registerEvents: (eventList: string[]) => void;
31
32
  addTwoWay: (propList: string[]) => void;
33
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonComponent, never>;
34
+ static ɵcmp: i0.ɵɵComponentDeclaration<ProgressButtonComponent, "[ejs-progressbutton]", never, { "animationSettings": "animationSettings"; "content": "content"; "cssClass": "cssClass"; "disabled": "disabled"; "duration": "duration"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enableProgress": "enableProgress"; "iconCss": "iconCss"; "iconPosition": "iconPosition"; "isPrimary": "isPrimary"; "isToggle": "isToggle"; "spinSettings": "spinSettings"; }, { "begin": "begin"; "created": "created"; "end": "end"; "fail": "fail"; "progress": "progress"; }, never, ["*"]>;
32
35
  }
@@ -1,5 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./progressbutton.component";
3
+ import * as i2 from "@angular/common";
1
4
  /**
2
5
  * NgModule definition for the ProgressButton component.
3
6
  */
4
7
  export declare class ProgressButtonModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<ProgressButtonModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ProgressButtonModule, [typeof i1.ProgressButtonComponent], [typeof i2.CommonModule], [typeof i1.ProgressButtonComponent]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<ProgressButtonModule>;
5
11
  }
@@ -1,5 +1,6 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
3
4
  export declare class SplitButtonItemDirective extends ComplexBase<SplitButtonItemDirective> {
4
5
  private viewContainerRef;
5
6
  directivePropList: any;
@@ -35,6 +36,8 @@ export declare class SplitButtonItemDirective extends ComplexBase<SplitButtonIte
35
36
  */
36
37
  url: any;
37
38
  constructor(viewContainerRef: ViewContainerRef);
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonItemDirective, never>;
40
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SplitButtonItemDirective, "e-splitbuttonitems>e-splitbuttonitem", never, { "disabled": "disabled"; "iconCss": "iconCss"; "id": "id"; "separator": "separator"; "text": "text"; "url": "url"; }, {}, never>;
38
41
  }
39
42
  /**
40
43
  * SplitButtonItem Array Directive
@@ -42,4 +45,6 @@ export declare class SplitButtonItemDirective extends ComplexBase<SplitButtonIte
42
45
  */
43
46
  export declare class SplitButtonItemsDirective extends ArrayBase<SplitButtonItemsDirective> {
44
47
  constructor();
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonItemsDirective, never>;
49
+ static ɵdir: i0.ɵɵDirectiveDeclaration<SplitButtonItemsDirective, "ejs-splitbutton>e-splitbuttonitems", never, {}, {}, ["children"]>;
45
50
  }
@@ -1,5 +1,11 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./splitbutton.module";
1
4
  /**
2
5
  * NgModule definition for the SplitButton component with providers.
3
6
  */
4
7
  export declare class SplitButtonAllModule {
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonAllModule, never>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonAllModule, never, [typeof i1.CommonModule, typeof i2.SplitButtonModule], [typeof i2.SplitButtonModule]>;
10
+ static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonAllModule>;
5
11
  }
@@ -2,6 +2,7 @@ import { ElementRef, ViewContainerRef, Renderer2, Injector, QueryList } from '@a
2
2
  import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
3
  import { SplitButton } from '@syncfusion/ej2-splitbuttons';
4
4
  import { SplitButtonItemsDirective } from './items.directive';
5
+ import * as i0 from "@angular/core";
5
6
  export declare const inputs: string[];
6
7
  export declare const outputs: string[];
7
8
  export declare const twoWays: string[];
@@ -35,4 +36,6 @@ export declare class SplitButtonComponent extends SplitButton implements ICompon
35
36
  ngAfterContentChecked(): void;
36
37
  registerEvents: (eventList: string[]) => void;
37
38
  addTwoWay: (propList: string[]) => void;
39
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonComponent, never>;
40
+ static ɵcmp: i0.ɵɵComponentDeclaration<SplitButtonComponent, "ejs-splitbutton", never, { "closeActionEvents": "closeActionEvents"; "content": "content"; "createPopupOnClick": "createPopupOnClick"; "cssClass": "cssClass"; "disabled": "disabled"; "enableHtmlSanitizer": "enableHtmlSanitizer"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "iconCss": "iconCss"; "iconPosition": "iconPosition"; "items": "items"; "locale": "locale"; "target": "target"; }, { "beforeClose": "beforeClose"; "beforeItemRender": "beforeItemRender"; "beforeOpen": "beforeOpen"; "click": "click"; "close": "close"; "created": "created"; "open": "open"; "select": "select"; }, ["childItems"], ["*"]>;
38
41
  }
@@ -1,5 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./splitbutton.component";
3
+ import * as i2 from "./items.directive";
4
+ import * as i3 from "@angular/common";
1
5
  /**
2
6
  * NgModule definition for the SplitButton component.
3
7
  */
4
8
  export declare class SplitButtonModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<SplitButtonModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SplitButtonModule, [typeof i1.SplitButtonComponent, typeof i2.SplitButtonItemDirective, typeof i2.SplitButtonItemsDirective], [typeof i3.CommonModule], [typeof i1.SplitButtonComponent, typeof i2.SplitButtonItemDirective, typeof i2.SplitButtonItemsDirective]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<SplitButtonModule>;
5
12
  }
@@ -314,9 +314,6 @@
314
314
  .e-split-btn-wrapper .e-btn:disabled {
315
315
  box-shadow: none;
316
316
  }
317
- .e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
318
- box-shadow: none;
319
- }
320
317
  .e-split-btn-wrapper.e-rtl .e-split-btn {
321
318
  border-bottom-left-radius: 0;
322
319
  border-bottom-right-radius: 4px;
@@ -475,9 +472,6 @@
475
472
  .e-split-btn-wrapper .e-split-btn:disabled {
476
473
  border-right-color: rgba(57, 57, 57, 0.4);
477
474
  }
478
- .e-split-btn-wrapper .e-split-btn.e-inherit {
479
- border-color: transparent;
480
- }
481
475
  .e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
482
476
  border-right-color: #676767;
483
477
  }
@@ -500,9 +494,6 @@
500
494
  border-left-color: rgba(88, 88, 88, 0.4);
501
495
  border-right-color: rgba(172, 172, 172, 0.65);
502
496
  }
503
- .e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
504
- border-color: transparent;
505
- }
506
497
  .e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
507
498
  border-left-color: #676767;
508
499
  border-right-color: #676767;
@@ -514,9 +505,6 @@
514
505
  border-bottom-color: #585858;
515
506
  border-right-color: #585858;
516
507
  }
517
- .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
518
- border-color: transparent;
519
- }
520
508
  .e-split-btn-wrapper.e-vertical .e-split-btn:focus {
521
509
  border-bottom-color: #585858;
522
510
  border-right-color: #585858;
@@ -533,18 +521,12 @@
533
521
  border-bottom-color: #676767;
534
522
  border-right-color: #676767;
535
523
  }
536
- .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
537
- border-color: transparent;
538
- }
539
524
  .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
540
525
  border-bottom-color: rgba(88, 88, 88, 0.4);
541
526
  }
542
527
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
543
528
  border-left-color: #585858;
544
529
  }
545
- .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
546
- border-color: transparent;
547
- }
548
530
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
549
531
  border-left-color: #585858;
550
532
  }
@@ -557,9 +539,6 @@
557
539
  .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
558
540
  border-left-color: #676767;
559
541
  }
560
- .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
561
- border-color: transparent;
562
- }
563
542
 
564
543
  /* stylelint-disable */
565
544
  *.e-btn-group,
@@ -314,9 +314,6 @@
314
314
  .e-split-btn-wrapper .e-btn:disabled {
315
315
  box-shadow: none;
316
316
  }
317
- .e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
318
- box-shadow: none;
319
- }
320
317
  .e-split-btn-wrapper.e-rtl .e-split-btn {
321
318
  border-bottom-left-radius: 0;
322
319
  border-bottom-right-radius: 4px;
@@ -475,9 +472,6 @@
475
472
  .e-split-btn-wrapper .e-split-btn:disabled {
476
473
  border-right-color: rgba(255, 255, 255, 0.65);
477
474
  }
478
- .e-split-btn-wrapper .e-split-btn.e-inherit {
479
- border-color: transparent;
480
- }
481
475
  .e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
482
476
  border-right-color: #adadad;
483
477
  }
@@ -500,9 +494,6 @@
500
494
  border-left-color: rgba(204, 204, 204, 0.65);
501
495
  border-right-color: rgba(204, 204, 204, 0.65);
502
496
  }
503
- .e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
504
- border-color: transparent;
505
- }
506
497
  .e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
507
498
  border-left-color: #adadad;
508
499
  border-right-color: #adadad;
@@ -514,9 +505,6 @@
514
505
  border-bottom-color: #ccc;
515
506
  border-right-color: #ccc;
516
507
  }
517
- .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
518
- border-color: transparent;
519
- }
520
508
  .e-split-btn-wrapper.e-vertical .e-split-btn:focus {
521
509
  border-bottom-color: #8c8c8c;
522
510
  border-right-color: #8c8c8c;
@@ -533,18 +521,12 @@
533
521
  border-bottom-color: #adadad;
534
522
  border-right-color: #adadad;
535
523
  }
536
- .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
537
- border-color: transparent;
538
- }
539
524
  .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
540
525
  border-bottom-color: rgba(204, 204, 204, 0.65);
541
526
  }
542
527
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
543
528
  border-left-color: #ccc;
544
529
  }
545
- .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
546
- border-color: transparent;
547
- }
548
530
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
549
531
  border-left-color: #8c8c8c;
550
532
  }
@@ -557,9 +539,6 @@
557
539
  .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
558
540
  border-left-color: #adadad;
559
541
  }
560
- .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
561
- border-color: transparent;
562
- }
563
542
 
564
543
  /* stylelint-disable */
565
544
  *.e-btn-group,
@@ -15,7 +15,7 @@
15
15
  }
16
16
  .e-dropdown-btn:active,
17
17
  .e-dropdown-btn.e-btn:active {
18
- box-shadow: 0 0 0 0.2rem rgba(99, 105, 111, 0.5);
18
+ box-shadow: 0 0 0 0.2rem rgba(78, 85, 91, 0.5);
19
19
  }
20
20
  .e-dropdown-btn .e-btn-icon,
21
21
  .e-dropdown-btn.e-btn .e-btn-icon {
@@ -247,7 +247,7 @@
247
247
  box-shadow: none;
248
248
  }
249
249
  .e-split-btn-wrapper .e-split-btn:active {
250
- box-shadow: 0 0 0 0.2rem rgba(99, 105, 111, 0.5);
250
+ box-shadow: 0 0 0 0.2rem rgba(78, 85, 91, 0.5);
251
251
  z-index: 2;
252
252
  }
253
253
  .e-split-btn-wrapper .e-split-btn.e-top-icon-btn {
@@ -279,7 +279,7 @@
279
279
  padding-right: 8px;
280
280
  }
281
281
  .e-split-btn-wrapper .e-dropdown-btn:active {
282
- box-shadow: 0 0 0 0.2rem rgba(99, 105, 111, 0.5);
282
+ box-shadow: 0 0 0 0.2rem rgba(78, 85, 91, 0.5);
283
283
  z-index: 2;
284
284
  }
285
285
  .e-split-btn-wrapper .e-dropdown-btn:disabled:focus, .e-split-btn-wrapper .e-dropdown-btn:disabled:hover, .e-split-btn-wrapper .e-dropdown-btn:disabled:active {
@@ -292,14 +292,11 @@
292
292
  box-shadow: none;
293
293
  }
294
294
  .e-split-btn-wrapper .e-btn:active {
295
- box-shadow: 0 0 0 0.2rem rgba(99, 105, 111, 0.5);
295
+ box-shadow: 0 0 0 0.2rem rgba(78, 85, 91, 0.5);
296
296
  }
297
297
  .e-split-btn-wrapper .e-btn:disabled {
298
298
  box-shadow: none;
299
299
  }
300
- .e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
301
- box-shadow: none;
302
- }
303
300
  .e-split-btn-wrapper.e-rtl .e-split-btn {
304
301
  border-bottom-left-radius: 0;
305
302
  border-bottom-right-radius: 4px;
@@ -458,9 +455,6 @@
458
455
  .e-split-btn-wrapper .e-split-btn:disabled {
459
456
  border-right-color: rgba(108, 117, 125, 0.65);
460
457
  }
461
- .e-split-btn-wrapper .e-split-btn.e-inherit {
462
- border-color: transparent;
463
- }
464
458
  .e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
465
459
  border-right-color: #545b62;
466
460
  }
@@ -483,9 +477,6 @@
483
477
  border-left-color: transparent;
484
478
  border-right-color: rgba(108, 117, 125, 0.65);
485
479
  }
486
- .e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
487
- border-color: transparent;
488
- }
489
480
  .e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
490
481
  border-left-color: #545b62;
491
482
  border-right-color: #545b62;
@@ -497,9 +488,6 @@
497
488
  border-bottom-color: #6c757d;
498
489
  border-right-color: #6c757d;
499
490
  }
500
- .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
501
- border-color: transparent;
502
- }
503
491
  .e-split-btn-wrapper.e-vertical .e-split-btn:focus {
504
492
  border-bottom-color: #6c757d;
505
493
  border-right-color: #6c757d;
@@ -516,18 +504,12 @@
516
504
  border-bottom-color: #545b62;
517
505
  border-right-color: #545b62;
518
506
  }
519
- .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
520
- border-color: transparent;
521
- }
522
507
  .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
523
508
  border-bottom-color: transparent;
524
509
  }
525
510
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
526
511
  border-left-color: #6c757d;
527
512
  }
528
- .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
529
- border-color: transparent;
530
- }
531
513
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
532
514
  border-left-color: #6c757d;
533
515
  }
@@ -540,9 +522,6 @@
540
522
  .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
541
523
  border-left-color: #545b62;
542
524
  }
543
- .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
544
- border-color: transparent;
545
- }
546
525
 
547
526
  /* stylelint-disable */
548
527
  *.e-btn-group,
@@ -803,7 +782,7 @@
803
782
  color: #fff;
804
783
  outline: #6c757d 0 solid;
805
784
  outline-offset: 0;
806
- box-shadow: 0 0 0 0.25em rgba(128, 136, 143, 0.5);
785
+ box-shadow: 0 0 0 0.25em rgba(108, 117, 125, 0.5);
807
786
  box-shadow: none;
808
787
  outline-color: inherit;
809
788
  }
@@ -815,7 +794,7 @@
815
794
  border-color: #007bff;
816
795
  color: #fff;
817
796
  outline: #6c757d 0 solid;
818
- box-shadow: 0 0 0 0.25em rgba(38, 143, 255, 0.5);
797
+ box-shadow: 0 0 0 0.25em rgba(0, 123, 255, 0.5);
819
798
  box-shadow: none;
820
799
  outline-color: inherit;
821
800
  }
@@ -826,7 +805,7 @@
826
805
  background-color: #28a745;
827
806
  border-color: #28a745;
828
807
  color: #fff;
829
- box-shadow: 0 0 0 0.25em rgba(66, 179, 92, 0.5);
808
+ box-shadow: 0 0 0 0.25em rgba(40, 167, 69, 0.5);
830
809
  box-shadow: none;
831
810
  outline-color: inherit;
832
811
  }
@@ -837,7 +816,7 @@
837
816
  background-color: #17a2b8;
838
817
  border-color: #17a2b8;
839
818
  color: #fff;
840
- box-shadow: 0 0 0 0.25em rgba(51, 174, 194, 0.5);
819
+ box-shadow: 0 0 0 0.25em rgba(23, 162, 184, 0.5);
841
820
  box-shadow: none;
842
821
  outline-color: inherit;
843
822
  }
@@ -848,7 +827,7 @@
848
827
  background-color: #ffc107;
849
828
  border-color: #ffc107;
850
829
  color: #212529;
851
- box-shadow: 0 0 0 0.25em rgba(255, 202, 44, 0.5);
830
+ box-shadow: 0 0 0 0.25em rgba(255, 193, 7, 0.5);
852
831
  box-shadow: none;
853
832
  outline-color: inherit;
854
833
  }
@@ -859,7 +838,7 @@
859
838
  background-color: #dc3545;
860
839
  border-color: #dc3545;
861
840
  color: #fff;
862
- box-shadow: 0 0 0 0.25em rgba(225, 83, 97, 0.5);
841
+ box-shadow: 0 0 0 0.25em rgba(220, 53, 69, 0.5);
863
842
  box-shadow: none;
864
843
  outline-color: inherit;
865
844
  }
@@ -882,42 +861,42 @@
882
861
  .e-btn-group input:focus + label.e-btn.e-outline,
883
862
  .e-css.e-btn-group .e-btn:focus.e-outline,
884
863
  .e-css.e-btn-group input:focus + label.e-btn.e-outline {
885
- box-shadow: 0 0 0 0.25em rgba(128, 136, 143, 0.5);
864
+ box-shadow: 0 0 0 0.25em rgba(108, 117, 125, 0.5);
886
865
  box-shadow: none;
887
866
  }
888
867
  .e-btn-group .e-btn:focus.e-outline.e-primary,
889
868
  .e-btn-group input:focus + label.e-btn.e-outline.e-primary,
890
869
  .e-css.e-btn-group .e-btn:focus.e-outline.e-primary,
891
870
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-primary {
892
- box-shadow: 0 0 0 0.25em rgba(38, 143, 255, 0.5);
871
+ box-shadow: 0 0 0 0.25em rgba(0, 123, 255, 0.5);
893
872
  box-shadow: none;
894
873
  }
895
874
  .e-btn-group .e-btn:focus.e-outline.e-success,
896
875
  .e-btn-group input:focus + label.e-btn.e-outline.e-success,
897
876
  .e-css.e-btn-group .e-btn:focus.e-outline.e-success,
898
877
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-success {
899
- box-shadow: 0 0 0 0.25em rgba(66, 179, 92, 0.5);
878
+ box-shadow: 0 0 0 0.25em rgba(40, 167, 69, 0.5);
900
879
  box-shadow: none;
901
880
  }
902
881
  .e-btn-group .e-btn:focus.e-outline.e-info,
903
882
  .e-btn-group input:focus + label.e-btn.e-outline.e-info,
904
883
  .e-css.e-btn-group .e-btn:focus.e-outline.e-info,
905
884
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-info {
906
- box-shadow: 0 0 0 0.25em rgba(46, 173, 193, 0.5);
885
+ box-shadow: 0 0 0 0.25em rgba(23, 162, 184, 0.5);
907
886
  box-shadow: none;
908
887
  }
909
888
  .e-btn-group .e-btn:focus.e-outline.e-warning,
910
889
  .e-btn-group input:focus + label.e-btn.e-outline.e-warning,
911
890
  .e-css.e-btn-group .e-btn:focus.e-outline.e-warning,
912
891
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-warning {
913
- box-shadow: 0 0 0 0.25em rgba(255, 201, 40, 0.5);
892
+ box-shadow: 0 0 0 0.25em rgba(255, 193, 7, 0.5);
914
893
  box-shadow: none;
915
894
  }
916
895
  .e-btn-group .e-btn:focus.e-outline.e-danger,
917
896
  .e-btn-group input:focus + label.e-btn.e-outline.e-danger,
918
897
  .e-css.e-btn-group .e-btn:focus.e-outline.e-danger,
919
898
  .e-css.e-btn-group input:focus + label.e-btn.e-outline.e-danger {
920
- box-shadow: 0 0 0 0.25em rgba(225, 81, 95, 0.5);
899
+ box-shadow: 0 0 0 0.25em rgba(220, 53, 69, 0.5);
921
900
  box-shadow: none;
922
901
  }
923
902
  .e-btn-group .e-btn:active,
@@ -931,7 +910,7 @@
931
910
  color: #fff;
932
911
  outline: #6c757d 0 solid;
933
912
  outline-offset: 0;
934
- box-shadow: 0 0 0 0.25em rgba(99, 105, 111, 0.5);
913
+ box-shadow: 0 0 0 0.25em rgba(78, 85, 91, 0.5);
935
914
  }
936
915
  .e-btn-group .e-btn:active.e-primary,
937
916
  .e-btn-group input:active + label.e-btn.e-primary,
@@ -943,7 +922,7 @@
943
922
  border-color: #005cbf;
944
923
  color: #fff;
945
924
  outline: #6c757d 0 solid;
946
- box-shadow: 0 0 0 0.25em rgba(31, 113, 201, 0.5);
925
+ box-shadow: 0 0 0 0.25em rgba(0, 92, 191, 0.5);
947
926
  }
948
927
  .e-btn-group .e-btn:active.e-success,
949
928
  .e-btn-group input:active + label.e-btn.e-success,
@@ -954,7 +933,7 @@
954
933
  background-color: #1e7e34;
955
934
  border-color: #1c7430;
956
935
  color: #fff;
957
- box-shadow: 0 0 0 0.25em rgba(50, 134, 69, 0.5);
936
+ box-shadow: 0 0 0 0.25em rgba(28, 116, 48, 0.5);
958
937
  }
959
938
  .e-btn-group .e-btn:active.e-info,
960
939
  .e-btn-group input:active + label.e-btn.e-info,
@@ -965,7 +944,7 @@
965
944
  background-color: #117a8b;
966
945
  color: #fff;
967
946
  border-color: #10707f;
968
- box-shadow: 0 0 0 0.25em rgba(39, 130, 145, 0.5);
947
+ box-shadow: 0 0 0 0.25em rgba(16, 112, 127, 0.5);
969
948
  }
970
949
  .e-btn-group .e-btn:active.e-warning,
971
950
  .e-btn-group input:active + label.e-btn.e-warning,
@@ -976,7 +955,7 @@
976
955
  background-color: #d39e00;
977
956
  border-color: #c69500;
978
957
  color: #212529;
979
- box-shadow: 0 0 0 0.25em rgba(207, 163, 32, 0.5);
958
+ box-shadow: 0 0 0 0.25em rgba(198, 149, 0, 0.5);
980
959
  }
981
960
  .e-btn-group .e-btn:active.e-danger,
982
961
  .e-btn-group input:active + label.e-btn.e-danger,
@@ -987,7 +966,7 @@
987
966
  background-color: #bd2130;
988
967
  border-color: #b21f2d;
989
968
  color: #fff;
990
- box-shadow: 0 0 0 0.25em rgba(189, 60, 73, 0.5);
969
+ box-shadow: 0 0 0 0.25em rgba(178, 31, 45, 0.5);
991
970
  }
992
971
  .e-btn-group .e-btn:active.e-outline,
993
972
  .e-btn-group input:active + label.e-btn.e-outline,
@@ -997,7 +976,7 @@
997
976
  .e-css.e-btn-group input:checked + label.e-btn.e-outline {
998
977
  background-color: #6c757d;
999
978
  border-color: transparent;
1000
- box-shadow: 0 0 0 0.25em rgba(99, 105, 111, 0.5);
979
+ box-shadow: 0 0 0 0.25em rgba(78, 85, 91, 0.5);
1001
980
  color: #fff;
1002
981
  }
1003
982
  .e-btn-group .e-btn:active.e-outline.e-primary,
@@ -1008,7 +987,7 @@
1008
987
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-primary {
1009
988
  background-color: #007bff;
1010
989
  border-color: transparent;
1011
- box-shadow: 0 0 0 0.25em rgba(31, 139, 255, 0.5);
990
+ box-shadow: 0 0 0 0.25em rgba(0, 123, 255, 0.5);
1012
991
  color: #fff;
1013
992
  }
1014
993
  .e-btn-group .e-btn:active.e-outline.e-success,
@@ -1019,7 +998,7 @@
1019
998
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-success {
1020
999
  background-color: #28a745;
1021
1000
  border-color: transparent;
1022
- box-shadow: 0 0 0 0.25em rgba(50, 134, 69, 0.5);
1001
+ box-shadow: 0 0 0 0.25em rgba(28, 116, 48, 0.5);
1023
1002
  color: #fff;
1024
1003
  }
1025
1004
  .e-btn-group .e-btn:active.e-outline.e-info,
@@ -1030,7 +1009,7 @@
1030
1009
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-info {
1031
1010
  background-color: #17a2b8;
1032
1011
  border-color: transparent;
1033
- box-shadow: 0 0 0 0.25em rgba(39, 130, 145, 0.5);
1012
+ box-shadow: 0 0 0 0.25em rgba(16, 112, 127, 0.5);
1034
1013
  color: #fff;
1035
1014
  }
1036
1015
  .e-btn-group .e-btn:active.e-outline.e-warning,
@@ -1041,7 +1020,7 @@
1041
1020
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-warning {
1042
1021
  background-color: #ffc107;
1043
1022
  border-color: transparent;
1044
- box-shadow: 0 0 0 0.25em rgba(207, 163, 32, 0.5);
1023
+ box-shadow: 0 0 0 0.25em rgba(198, 149, 0, 0.5);
1045
1024
  color: #212529;
1046
1025
  }
1047
1026
  .e-btn-group .e-btn:active.e-outline.e-danger,
@@ -1052,7 +1031,7 @@
1052
1031
  .e-css.e-btn-group input:checked + label.e-btn.e-outline.e-danger {
1053
1032
  background-color: #dc3545;
1054
1033
  border-color: transparent;
1055
- box-shadow: 0 0 0 0.25em rgba(189, 60, 73, 0.5);
1034
+ box-shadow: 0 0 0 0.25em rgba(178, 31, 45, 0.5);
1056
1035
  color: #fff;
1057
1036
  }
1058
1037
  .e-btn-group .e-btn:disabled,
@@ -312,9 +312,6 @@
312
312
  .e-split-btn-wrapper .e-btn:disabled {
313
313
  box-shadow: none;
314
314
  }
315
- .e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
316
- box-shadow: none;
317
- }
318
315
  .e-split-btn-wrapper.e-rtl .e-split-btn {
319
316
  border-bottom-left-radius: 0;
320
317
  border-bottom-right-radius: 4px;
@@ -473,9 +470,6 @@
473
470
  .e-split-btn-wrapper .e-split-btn:disabled {
474
471
  border-right-color: rgba(108, 117, 125, 0.65);
475
472
  }
476
- .e-split-btn-wrapper .e-split-btn.e-inherit {
477
- border-color: transparent;
478
- }
479
473
  .e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
480
474
  border-right-color: #6c757d;
481
475
  }
@@ -498,9 +492,6 @@
498
492
  border-left-color: rgba(108, 117, 125, 0.65);
499
493
  border-right-color: #6c757d;
500
494
  }
501
- .e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
502
- border-color: transparent;
503
- }
504
495
  .e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
505
496
  border-left-color: #6c757d;
506
497
  border-right-color: #6c757d;
@@ -512,9 +503,6 @@
512
503
  border-bottom-color: #6c757d;
513
504
  border-right-color: #6c757d;
514
505
  }
515
- .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
516
- border-color: transparent;
517
- }
518
506
  .e-split-btn-wrapper.e-vertical .e-split-btn:focus {
519
507
  border-bottom-color: #6c757d;
520
508
  border-right-color: #6c757d;
@@ -531,18 +519,12 @@
531
519
  border-bottom-color: #6c757d;
532
520
  border-right-color: #6c757d;
533
521
  }
534
- .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
535
- border-color: transparent;
536
- }
537
522
  .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
538
523
  border-bottom-color: rgba(108, 117, 125, 0.65);
539
524
  }
540
525
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
541
526
  border-left-color: #6c757d;
542
527
  }
543
- .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
544
- border-color: transparent;
545
- }
546
528
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
547
529
  border-left-color: #6c757d;
548
530
  }
@@ -555,9 +537,6 @@
555
537
  .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
556
538
  border-left-color: #6c757d;
557
539
  }
558
- .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
559
- border-color: transparent;
560
- }
561
540
 
562
541
  /* stylelint-disable */
563
542
  *.e-btn-group,
@@ -312,9 +312,6 @@
312
312
  .e-split-btn-wrapper .e-btn:disabled {
313
313
  box-shadow: none;
314
314
  }
315
- .e-split-btn-wrapper .e-btn.e-inherit:focus, .e-split-btn-wrapper .e-btn.e-inherit:active {
316
- box-shadow: none;
317
- }
318
315
  .e-split-btn-wrapper.e-rtl .e-split-btn {
319
316
  border-bottom-left-radius: 0;
320
317
  border-bottom-right-radius: 4px;
@@ -473,9 +470,6 @@
473
470
  .e-split-btn-wrapper .e-split-btn:disabled {
474
471
  border-right-color: rgba(108, 117, 125, 0.65);
475
472
  }
476
- .e-split-btn-wrapper .e-split-btn.e-inherit {
477
- border-color: transparent;
478
- }
479
473
  .e-split-btn-wrapper:hover :not(e-active) .e-split-btn {
480
474
  border-right-color: #6c757d;
481
475
  }
@@ -498,9 +492,6 @@
498
492
  border-left-color: rgba(108, 117, 125, 0.65);
499
493
  border-right-color: #6c757d;
500
494
  }
501
- .e-split-btn-wrapper.e-rtl .e-split-btn.e-inherit {
502
- border-color: transparent;
503
- }
504
495
  .e-split-btn-wrapper.e-rtl:hover .e-split-btn :not(e-active) {
505
496
  border-left-color: #6c757d;
506
497
  border-right-color: #6c757d;
@@ -512,9 +503,6 @@
512
503
  border-bottom-color: #6c757d;
513
504
  border-right-color: #6c757d;
514
505
  }
515
- .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical .e-split-btn.e-inherit:disabled {
516
- border-color: transparent;
517
- }
518
506
  .e-split-btn-wrapper.e-vertical .e-split-btn:focus {
519
507
  border-bottom-color: #6c757d;
520
508
  border-right-color: #6c757d;
@@ -531,18 +519,12 @@
531
519
  border-bottom-color: #6c757d;
532
520
  border-right-color: #6c757d;
533
521
  }
534
- .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical:hover .e-split-btn.e-inherit:disabled {
535
- border-color: transparent;
536
- }
537
522
  .e-split-btn-wrapper.e-vertical:hover .e-split-btn:disabled {
538
523
  border-bottom-color: rgba(108, 117, 125, 0.65);
539
524
  }
540
525
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn {
541
526
  border-left-color: #6c757d;
542
527
  }
543
- .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:focus, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:active, .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn.e-inherit:disabled {
544
- border-color: transparent;
545
- }
546
528
  .e-split-btn-wrapper.e-vertical.e-rtl .e-split-btn:focus {
547
529
  border-left-color: #6c757d;
548
530
  }
@@ -555,9 +537,6 @@
555
537
  .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn {
556
538
  border-left-color: #6c757d;
557
539
  }
558
- .e-split-btn-wrapper.e-vertical.e-rtl:hover .e-split-btn.e-inherit {
559
- border-color: transparent;
560
- }
561
540
 
562
541
  /* stylelint-disable */
563
542
  *.e-btn-group,