@syncfusion/ej2-angular-splitbuttons 23.1.36-ngcc → 23.1.36
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/drop-down-button/dropdownbutton-all.module.mjs +23 -0
- package/esm2020/src/drop-down-button/dropdownbutton.component.mjs +64 -0
- package/esm2020/src/drop-down-button/dropdownbutton.module.mjs +34 -0
- package/esm2020/src/drop-down-button/items.directive.mjs +46 -0
- package/esm2020/src/index.mjs +13 -0
- package/esm2020/src/progress-button/progressbutton-all.module.mjs +23 -0
- package/esm2020/src/progress-button/progressbutton.component.mjs +59 -0
- package/esm2020/src/progress-button/progressbutton.module.mjs +25 -0
- package/esm2020/src/split-button/items.directive.mjs +46 -0
- package/esm2020/src/split-button/splitbutton-all.module.mjs +23 -0
- package/esm2020/src/split-button/splitbutton.component.mjs +64 -0
- package/esm2020/src/split-button/splitbutton.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-splitbuttons.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
- package/fesm2015/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs +405 -0
- package/fesm2020/syncfusion-ej2-angular-splitbuttons.mjs.map +1 -0
- package/package.json +26 -12
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/drop-down-button/dropdownbutton-all.module.d.ts +6 -0
- package/src/drop-down-button/dropdownbutton.component.d.ts +3 -0
- package/src/drop-down-button/dropdownbutton.module.d.ts +7 -0
- package/src/drop-down-button/items.directive.d.ts +5 -0
- package/src/progress-button/progressbutton-all.module.d.ts +6 -0
- package/src/progress-button/progressbutton.component.d.ts +3 -0
- package/src/progress-button/progressbutton.module.d.ts +6 -0
- package/src/split-button/items.directive.d.ts +5 -0
- package/src/split-button/splitbutton-all.module.d.ts +6 -0
- package/src/split-button/splitbutton.component.d.ts +3 -0
- package/src/split-button/splitbutton.module.d.ts +7 -0
- package/styles/button-group/_all.scss +2 -0
- package/styles/button-group/_bootstrap-dark-definition.scss +33 -0
- package/styles/button-group/_bootstrap-definition.scss +30 -0
- package/styles/button-group/_bootstrap4-definition.scss +30 -0
- package/styles/button-group/_bootstrap5-dark-definition.scss +1 -0
- package/styles/button-group/_bootstrap5-definition.scss +31 -0
- package/styles/button-group/_fabric-dark-definition.scss +33 -0
- package/styles/button-group/_fabric-definition.scss +30 -0
- package/styles/button-group/_fluent-dark-definition.scss +1 -0
- package/styles/button-group/_fluent-definition.scss +31 -0
- package/styles/button-group/_fusionnew-definition.scss +31 -0
- package/styles/button-group/_group-button-mixin.scss +72 -0
- package/styles/button-group/_highcontrast-definition.scss +32 -0
- package/styles/button-group/_highcontrast-light-definition.scss +35 -0
- package/styles/button-group/_layout.scss +294 -0
- package/styles/button-group/_material-dark-definition.scss +33 -0
- package/styles/button-group/_material-definition.scss +30 -0
- package/styles/button-group/_material3-dark-definition.scss +1 -0
- package/styles/button-group/_material3-definition.scss +31 -0
- package/styles/button-group/_tailwind-dark-definition.scss +1 -0
- package/styles/button-group/_tailwind-definition.scss +31 -0
- package/styles/button-group/_theme.scss +454 -0
- package/styles/button-group/bootstrap-dark.scss +4 -1
- package/styles/button-group/bootstrap.scss +4 -1
- package/styles/button-group/bootstrap4.scss +4 -1
- package/styles/button-group/bootstrap5-dark.scss +4 -1
- package/styles/button-group/bootstrap5.scss +4 -1
- package/styles/button-group/fabric-dark.scss +4 -1
- package/styles/button-group/fabric.scss +4 -1
- package/styles/button-group/fluent-dark.scss +4 -1
- package/styles/button-group/fluent.scss +4 -1
- package/styles/button-group/highcontrast-light.scss +4 -1
- package/styles/button-group/highcontrast.scss +4 -1
- package/styles/button-group/material-dark.css +1 -0
- package/styles/button-group/material-dark.scss +4 -1
- package/styles/button-group/material.css +1 -0
- package/styles/button-group/material.scss +4 -1
- package/styles/button-group/material3-dark.css +1 -0
- package/styles/button-group/material3-dark.scss +4 -1
- package/styles/button-group/material3.css +1 -0
- package/styles/button-group/material3.scss +4 -1
- package/styles/button-group/tailwind-dark.css +1 -0
- package/styles/button-group/tailwind-dark.scss +4 -1
- package/styles/button-group/tailwind.css +1 -0
- package/styles/button-group/tailwind.scss +4 -1
- package/styles/drop-down-button/_all.scss +2 -0
- package/styles/drop-down-button/_bootstrap-dark-definition.scss +51 -0
- package/styles/drop-down-button/_bootstrap-definition.scss +48 -0
- package/styles/drop-down-button/_bootstrap4-definition.scss +48 -0
- package/styles/drop-down-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/drop-down-button/_bootstrap5-definition.scss +50 -0
- package/styles/drop-down-button/_fabric-dark-definition.scss +51 -0
- package/styles/drop-down-button/_fabric-definition.scss +48 -0
- package/styles/drop-down-button/_fluent-dark-definition.scss +1 -0
- package/styles/drop-down-button/_fluent-definition.scss +52 -0
- package/styles/drop-down-button/_fusionnew-definition.scss +50 -0
- package/styles/drop-down-button/_highcontrast-definition.scss +47 -0
- package/styles/drop-down-button/_highcontrast-light-definition.scss +50 -0
- package/styles/drop-down-button/_layout.scss +238 -0
- package/styles/drop-down-button/_material-dark-definition.scss +51 -0
- package/styles/drop-down-button/_material-definition.scss +48 -0
- package/styles/drop-down-button/_material3-dark-definition.scss +1 -0
- package/styles/drop-down-button/_material3-definition.scss +51 -0
- package/styles/drop-down-button/_tailwind-dark-definition.scss +1 -0
- package/styles/drop-down-button/_tailwind-definition.scss +49 -0
- package/styles/drop-down-button/_theme.scss +83 -0
- package/styles/drop-down-button/bootstrap-dark.scss +6 -1
- package/styles/drop-down-button/bootstrap.scss +6 -1
- package/styles/drop-down-button/bootstrap4.scss +6 -1
- package/styles/drop-down-button/bootstrap5-dark.scss +6 -1
- package/styles/drop-down-button/bootstrap5.scss +6 -1
- package/styles/drop-down-button/fabric-dark.scss +6 -1
- package/styles/drop-down-button/fabric.scss +6 -1
- package/styles/drop-down-button/fluent-dark.scss +6 -1
- package/styles/drop-down-button/fluent.scss +6 -1
- package/styles/drop-down-button/highcontrast-light.scss +6 -1
- package/styles/drop-down-button/highcontrast.scss +6 -1
- package/styles/drop-down-button/icons/_bootstrap-dark.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap4.scss +10 -0
- package/styles/drop-down-button/icons/_bootstrap5-dark.scss +1 -0
- package/styles/drop-down-button/icons/_bootstrap5.scss +10 -0
- package/styles/drop-down-button/icons/_fabric-dark.scss +10 -0
- package/styles/drop-down-button/icons/_fabric.scss +10 -0
- package/styles/drop-down-button/icons/_fluent-dark.scss +1 -0
- package/styles/drop-down-button/icons/_fluent.scss +10 -0
- package/styles/drop-down-button/icons/_fusionnew.scss +10 -0
- package/styles/drop-down-button/icons/_highcontrast-light.scss +10 -0
- package/styles/drop-down-button/icons/_highcontrast.scss +10 -0
- package/styles/drop-down-button/icons/_material-dark.scss +10 -0
- package/styles/drop-down-button/icons/_material.scss +10 -0
- package/styles/drop-down-button/icons/_material3-dark.scss +1 -0
- package/styles/drop-down-button/icons/_material3.scss +10 -0
- package/styles/drop-down-button/icons/_tailwind-dark.scss +10 -0
- package/styles/drop-down-button/icons/_tailwind.scss +10 -0
- package/styles/drop-down-button/material-dark.css +1 -0
- package/styles/drop-down-button/material-dark.scss +6 -1
- package/styles/drop-down-button/material.css +1 -0
- package/styles/drop-down-button/material.scss +6 -1
- package/styles/drop-down-button/material3-dark.css +2 -1
- package/styles/drop-down-button/material3-dark.scss +6 -1
- package/styles/drop-down-button/material3.css +2 -1
- package/styles/drop-down-button/material3.scss +6 -1
- package/styles/drop-down-button/tailwind-dark.css +1 -0
- package/styles/drop-down-button/tailwind-dark.scss +6 -1
- package/styles/drop-down-button/tailwind.css +1 -0
- package/styles/drop-down-button/tailwind.scss +6 -1
- package/styles/material-dark.css +1 -0
- package/styles/material.css +1 -0
- package/styles/material3-dark.css +2 -166
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +2 -334
- package/styles/material3.scss +1 -0
- package/styles/progress-button/_all.scss +2 -0
- package/styles/progress-button/_bootstrap-dark-definition.scss +27 -0
- package/styles/progress-button/_bootstrap-definition.scss +24 -0
- package/styles/progress-button/_bootstrap4-definition.scss +24 -0
- package/styles/progress-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/progress-button/_bootstrap5-definition.scss +21 -0
- package/styles/progress-button/_fabric-dark-definition.scss +27 -0
- package/styles/progress-button/_fabric-definition.scss +24 -0
- package/styles/progress-button/_fluent-dark-definition.scss +1 -0
- package/styles/progress-button/_fluent-definition.scss +21 -0
- package/styles/progress-button/_fusionnew-definition.scss +21 -0
- package/styles/progress-button/_highcontrast-definition.scss +24 -0
- package/styles/progress-button/_highcontrast-light-definition.scss +24 -0
- package/styles/progress-button/_layout.scss +396 -0
- package/styles/progress-button/_material-dark-definition.scss +27 -0
- package/styles/progress-button/_material-definition.scss +24 -0
- package/styles/progress-button/_material3-dark-definition.scss +1 -0
- package/styles/progress-button/_material3-definition.scss +25 -0
- package/styles/progress-button/_tailwind-dark-definition.scss +1 -0
- package/styles/progress-button/_tailwind-definition.scss +21 -0
- package/styles/progress-button/_theme.scss +638 -0
- package/styles/progress-button/bootstrap-dark.scss +5 -1
- package/styles/progress-button/bootstrap.scss +5 -1
- package/styles/progress-button/bootstrap4.scss +5 -1
- package/styles/progress-button/bootstrap5-dark.scss +5 -1
- package/styles/progress-button/bootstrap5.scss +5 -1
- package/styles/progress-button/fabric-dark.scss +5 -1
- package/styles/progress-button/fabric.scss +5 -1
- package/styles/progress-button/fluent-dark.scss +5 -1
- package/styles/progress-button/fluent.scss +5 -1
- package/styles/progress-button/highcontrast-light.scss +5 -1
- package/styles/progress-button/highcontrast.scss +5 -1
- package/styles/progress-button/material-dark.css +1 -0
- package/styles/progress-button/material-dark.scss +5 -1
- package/styles/progress-button/material.css +1 -0
- package/styles/progress-button/material.scss +5 -1
- package/styles/progress-button/material3-dark.css +1 -0
- package/styles/progress-button/material3-dark.scss +5 -1
- package/styles/progress-button/material3.css +1 -0
- package/styles/progress-button/material3.scss +5 -1
- package/styles/progress-button/tailwind-dark.css +1 -0
- package/styles/progress-button/tailwind-dark.scss +5 -1
- package/styles/progress-button/tailwind.css +1 -0
- package/styles/progress-button/tailwind.scss +5 -1
- package/styles/split-button/_all.scss +2 -0
- package/styles/split-button/_bootstrap-dark-definition.scss +26 -0
- package/styles/split-button/_bootstrap-definition.scss +23 -0
- package/styles/split-button/_bootstrap4-definition.scss +26 -0
- package/styles/split-button/_bootstrap5-dark-definition.scss +1 -0
- package/styles/split-button/_bootstrap5-definition.scss +24 -0
- package/styles/split-button/_fabric-dark-definition.scss +26 -0
- package/styles/split-button/_fabric-definition.scss +23 -0
- package/styles/split-button/_fluent-dark-definition.scss +1 -0
- package/styles/split-button/_fluent-definition.scss +24 -0
- package/styles/split-button/_fusionnew-definition.scss +24 -0
- package/styles/split-button/_highcontrast-definition.scss +23 -0
- package/styles/split-button/_highcontrast-light-definition.scss +26 -0
- package/styles/split-button/_layout.scss +484 -0
- package/styles/split-button/_material-dark-definition.scss +26 -0
- package/styles/split-button/_material-definition.scss +23 -0
- package/styles/split-button/_material3-dark-definition.scss +1 -0
- package/styles/split-button/_material3-definition.scss +26 -0
- package/styles/split-button/_tailwind-dark-definition.scss +1 -0
- package/styles/split-button/_tailwind-definition.scss +24 -0
- package/styles/split-button/_theme.scss +187 -0
- package/styles/split-button/bootstrap-dark.scss +6 -1
- package/styles/split-button/bootstrap.scss +6 -1
- package/styles/split-button/bootstrap4.scss +6 -1
- package/styles/split-button/bootstrap5-dark.scss +6 -1
- package/styles/split-button/bootstrap5.scss +6 -1
- package/styles/split-button/fabric-dark.scss +6 -1
- package/styles/split-button/fabric.scss +6 -1
- package/styles/split-button/fluent-dark.scss +6 -1
- package/styles/split-button/fluent.scss +6 -1
- package/styles/split-button/highcontrast-light.scss +6 -1
- package/styles/split-button/highcontrast.scss +6 -1
- package/styles/split-button/material-dark.css +1 -0
- package/styles/split-button/material-dark.scss +6 -1
- package/styles/split-button/material.css +1 -0
- package/styles/split-button/material.scss +6 -1
- package/styles/split-button/material3-dark.css +1 -0
- package/styles/split-button/material3-dark.scss +6 -1
- package/styles/split-button/material3.css +1 -0
- package/styles/split-button/material3.scss +6 -1
- package/styles/split-button/tailwind-dark.css +1 -0
- package/styles/split-button/tailwind-dark.scss +6 -1
- package/styles/split-button/tailwind.css +1 -0
- package/styles/split-button/tailwind.scss +6 -1
- package/styles/tailwind-dark.css +4 -0
- package/styles/tailwind.css +4 -0
- package/syncfusion-ej2-angular-splitbuttons.d.ts +5 -0
- package/@syncfusion/ej2-angular-splitbuttons.es5.js +0 -565
- package/@syncfusion/ej2-angular-splitbuttons.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-splitbuttons.js +0 -516
- package/@syncfusion/ej2-angular-splitbuttons.js.map +0 -1
- package/CHANGELOG.md +0 -256
- package/dist/ej2-angular-splitbuttons.umd.js +0 -603
- package/dist/ej2-angular-splitbuttons.umd.js.map +0 -1
- package/dist/ej2-angular-splitbuttons.umd.min.js +0 -11
- package/dist/ej2-angular-splitbuttons.umd.min.js.map +0 -1
- package/ej2-angular-splitbuttons.d.ts +0 -7
- package/ej2-angular-splitbuttons.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './fluent.scss';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import './material3.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/material-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/material-dark-definition.scss';
|
|
4
|
+
@import 'material-dark-definition.scss';
|
|
5
|
+
@import 'icons/material-dark.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/material-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/material-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/material-definition.scss';
|
|
4
|
+
@import 'material-definition.scss';
|
|
5
|
+
@import 'icons/material.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
1
2
|
:root {
|
|
2
3
|
--color-sf-black: 0, 0, 0;
|
|
3
4
|
--color-sf-white: 255, 255, 255;
|
|
@@ -75,7 +76,7 @@
|
|
|
75
76
|
}
|
|
76
77
|
.e-dropdown-btn:focus-visible,
|
|
77
78
|
.e-dropdown-btn.e-btn:focus-visible {
|
|
78
|
-
box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
79
|
+
box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff !important; /* stylelint-disable-line declaration-no-important */
|
|
79
80
|
}
|
|
80
81
|
.e-dropdown-btn:active,
|
|
81
82
|
.e-dropdown-btn.e-btn:active {
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
+
@import 'ej2-base/styles/material3-dark-definition.scss';
|
|
1
2
|
|
|
2
|
-
@import 'ej2-
|
|
3
|
+
@import 'ej2-buttons/styles/button/material3-dark-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/popup/material3-dark-definition.scss';
|
|
5
|
+
@import 'material3-dark-definition.scss';
|
|
6
|
+
@import 'icons/material3-dark.scss';
|
|
7
|
+
@import 'all.scss';
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
1
2
|
:root {
|
|
2
3
|
--color-sf-black: 0, 0, 0;
|
|
3
4
|
--color-sf-white: 255, 255, 255;
|
|
@@ -131,7 +132,7 @@
|
|
|
131
132
|
}
|
|
132
133
|
.e-dropdown-btn:focus-visible,
|
|
133
134
|
.e-dropdown-btn.e-btn:focus-visible {
|
|
134
|
-
box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #000000;
|
|
135
|
+
box-shadow: 0 0 0 1px #ffffff, 0 0 0 3px #000000 !important; /* stylelint-disable-line declaration-no-important */
|
|
135
136
|
}
|
|
136
137
|
.e-dropdown-btn:active,
|
|
137
138
|
.e-dropdown-btn.e-btn:active {
|
|
@@ -1,2 +1,7 @@
|
|
|
1
|
+
@import 'ej2-base/styles/material3-definition.scss';
|
|
1
2
|
|
|
2
|
-
@import 'ej2-
|
|
3
|
+
@import 'ej2-buttons/styles/button/material3-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/popup/material3-definition.scss';
|
|
5
|
+
@import 'material3-definition.scss';
|
|
6
|
+
@import 'icons/material3.scss';
|
|
7
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-dark-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/tailwind-dark-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/tailwind-dark-definition.scss';
|
|
4
|
+
@import 'tailwind-dark-definition.scss';
|
|
5
|
+
@import 'icons/tailwind-dark.scss';
|
|
6
|
+
@import 'all.scss';
|
|
@@ -1 +1,6 @@
|
|
|
1
|
-
@import 'ej2-
|
|
1
|
+
@import 'ej2-base/styles/tailwind-definition.scss';
|
|
2
|
+
@import 'ej2-buttons/styles/button/tailwind-definition.scss';
|
|
3
|
+
@import 'ej2-popups/styles/popup/tailwind-definition.scss';
|
|
4
|
+
@import 'tailwind-definition.scss';
|
|
5
|
+
@import 'icons/tailwind.scss';
|
|
6
|
+
@import 'all.scss';
|
package/styles/material-dark.css
CHANGED
package/styles/material.css
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
1
2
|
:root {
|
|
2
3
|
--color-sf-black: 0, 0, 0;
|
|
3
4
|
--color-sf-white: 255, 255, 255;
|
|
@@ -75,7 +76,7 @@
|
|
|
75
76
|
}
|
|
76
77
|
.e-dropdown-btn:focus-visible,
|
|
77
78
|
.e-dropdown-btn.e-btn:focus-visible {
|
|
78
|
-
box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
79
|
+
box-shadow: 0 0 0 1px #000000, 0 0 0 3px #ffffff !important; /* stylelint-disable-line declaration-no-important */
|
|
79
80
|
}
|
|
80
81
|
.e-dropdown-btn:active,
|
|
81
82
|
.e-dropdown-btn.e-btn:active {
|
|
@@ -291,61 +292,6 @@
|
|
|
291
292
|
color: inherit;
|
|
292
293
|
}
|
|
293
294
|
|
|
294
|
-
:root {
|
|
295
|
-
--color-sf-black: 0, 0, 0;
|
|
296
|
-
--color-sf-white: 255, 255, 255;
|
|
297
|
-
--color-sf-primary: 208, 188, 255;
|
|
298
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
299
|
-
--color-sf-secondary: 204, 194, 220;
|
|
300
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
301
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
302
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
303
|
-
--color-sf-surface: 28, 27, 31;
|
|
304
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
305
|
-
--color-sf-background: var(--color-sf-surface);
|
|
306
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
307
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
308
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
309
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
310
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
311
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
312
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
313
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
314
|
-
--color-sf-on-background: 230, 225, 229;
|
|
315
|
-
--color-sf-outline: 147, 143, 153;
|
|
316
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
317
|
-
--color-sf-shadow: 0, 0, 0;
|
|
318
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
319
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
320
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
321
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
322
|
-
--color-sf-scrim: 0, 0, 0;
|
|
323
|
-
--color-sf-error: 242, 184, 181;
|
|
324
|
-
--color-sf-error-container: 140, 29, 24;
|
|
325
|
-
--color-sf-on-error: 96, 20, 16;
|
|
326
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
327
|
-
--color-sf-success: 83, 202, 23;
|
|
328
|
-
--color-sf-success-container: 22, 62, 2;
|
|
329
|
-
--color-sf-on-success: 13, 39, 0;
|
|
330
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
331
|
-
--color-sf-info: 71, 172, 251;
|
|
332
|
-
--color-sf-info-container: 0, 67, 120;
|
|
333
|
-
--color-sf-on-info: 0, 51, 91;
|
|
334
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
335
|
-
--color-sf-warning: 245, 180, 130;
|
|
336
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
337
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
338
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
339
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
340
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
341
|
-
--color-sf-success-text: 0, 0, 0;
|
|
342
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
343
|
-
--color-sf-info-text: 0, 0, 0;
|
|
344
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
345
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
346
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
347
|
-
}
|
|
348
|
-
|
|
349
295
|
/* stylelint-disable-line no-empty-source */
|
|
350
296
|
/*! splitbutton layout */
|
|
351
297
|
.e-split-btn-wrapper {
|
|
@@ -704,61 +650,6 @@
|
|
|
704
650
|
border-color: transparent;
|
|
705
651
|
}
|
|
706
652
|
|
|
707
|
-
:root {
|
|
708
|
-
--color-sf-black: 0, 0, 0;
|
|
709
|
-
--color-sf-white: 255, 255, 255;
|
|
710
|
-
--color-sf-primary: 208, 188, 255;
|
|
711
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
712
|
-
--color-sf-secondary: 204, 194, 220;
|
|
713
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
714
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
715
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
716
|
-
--color-sf-surface: 28, 27, 31;
|
|
717
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
718
|
-
--color-sf-background: var(--color-sf-surface);
|
|
719
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
720
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
721
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
722
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
723
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
724
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
725
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
726
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
727
|
-
--color-sf-on-background: 230, 225, 229;
|
|
728
|
-
--color-sf-outline: 147, 143, 153;
|
|
729
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
730
|
-
--color-sf-shadow: 0, 0, 0;
|
|
731
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
732
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
733
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
734
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
735
|
-
--color-sf-scrim: 0, 0, 0;
|
|
736
|
-
--color-sf-error: 242, 184, 181;
|
|
737
|
-
--color-sf-error-container: 140, 29, 24;
|
|
738
|
-
--color-sf-on-error: 96, 20, 16;
|
|
739
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
740
|
-
--color-sf-success: 83, 202, 23;
|
|
741
|
-
--color-sf-success-container: 22, 62, 2;
|
|
742
|
-
--color-sf-on-success: 13, 39, 0;
|
|
743
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
744
|
-
--color-sf-info: 71, 172, 251;
|
|
745
|
-
--color-sf-info-container: 0, 67, 120;
|
|
746
|
-
--color-sf-on-info: 0, 51, 91;
|
|
747
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
748
|
-
--color-sf-warning: 245, 180, 130;
|
|
749
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
750
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
751
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
752
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
753
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
754
|
-
--color-sf-success-text: 0, 0, 0;
|
|
755
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
756
|
-
--color-sf-info-text: 0, 0, 0;
|
|
757
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
758
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
759
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
760
|
-
}
|
|
761
|
-
|
|
762
653
|
/* stylelint-disable */
|
|
763
654
|
*.e-btn-group,
|
|
764
655
|
*.e-css.e-btn-group {
|
|
@@ -1606,61 +1497,6 @@
|
|
|
1606
1497
|
border-right: transparent;
|
|
1607
1498
|
}
|
|
1608
1499
|
|
|
1609
|
-
:root {
|
|
1610
|
-
--color-sf-black: 0, 0, 0;
|
|
1611
|
-
--color-sf-white: 255, 255, 255;
|
|
1612
|
-
--color-sf-primary: 208, 188, 255;
|
|
1613
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1614
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1615
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1616
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1617
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1618
|
-
--color-sf-surface: 28, 27, 31;
|
|
1619
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
1620
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1621
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1622
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1623
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1624
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1625
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1626
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1627
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1628
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1629
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1630
|
-
--color-sf-outline: 147, 143, 153;
|
|
1631
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1632
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1633
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1634
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1635
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1636
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1637
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1638
|
-
--color-sf-error: 242, 184, 181;
|
|
1639
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1640
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1641
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1642
|
-
--color-sf-success: 83, 202, 23;
|
|
1643
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1644
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1645
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1646
|
-
--color-sf-info: 71, 172, 251;
|
|
1647
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1648
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1649
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1650
|
-
--color-sf-warning: 245, 180, 130;
|
|
1651
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1652
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1653
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1654
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1655
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1656
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1657
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1658
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1659
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1660
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1661
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1662
|
-
}
|
|
1663
|
-
|
|
1664
1500
|
/* stylelint-disable property-no-vendor-prefix */
|
|
1665
1501
|
@keyframes material-spinner-rotate {
|
|
1666
1502
|
0% {
|