@syncfusion/ej2-angular-calendars 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/calendar/calendar-all.module.mjs +29 -0
- package/esm2020/src/calendar/calendar.component.mjs +91 -0
- package/esm2020/src/calendar/calendar.module.mjs +25 -0
- package/esm2020/src/datepicker/datepicker-all.module.mjs +29 -0
- package/esm2020/src/datepicker/datepicker.component.mjs +99 -0
- package/esm2020/src/datepicker/datepicker.module.mjs +25 -0
- package/esm2020/src/daterangepicker/daterangepicker-all.module.mjs +23 -0
- package/esm2020/src/daterangepicker/daterangepicker.component.mjs +103 -0
- package/esm2020/src/daterangepicker/daterangepicker.module.mjs +34 -0
- package/esm2020/src/daterangepicker/presets.directive.mjs +58 -0
- package/esm2020/src/datetimepicker/datetimepicker-all.module.mjs +23 -0
- package/esm2020/src/datetimepicker/datetimepicker.component.mjs +99 -0
- package/esm2020/src/datetimepicker/datetimepicker.module.mjs +25 -0
- package/esm2020/src/index.mjs +18 -0
- package/esm2020/src/timepicker/timepicker-all.module.mjs +23 -0
- package/esm2020/src/timepicker/timepicker.component.mjs +92 -0
- package/esm2020/src/timepicker/timepicker.module.mjs +25 -0
- package/esm2020/syncfusion-ej2-angular-calendars.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-calendars.mjs +737 -0
- package/fesm2015/syncfusion-ej2-angular-calendars.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-calendars.mjs +737 -0
- package/fesm2020/syncfusion-ej2-angular-calendars.mjs.map +1 -0
- package/package.json +26 -12
- package/src/calendar/calendar-all.module.d.ts +6 -0
- package/src/calendar/calendar.component.d.ts +3 -0
- package/src/calendar/calendar.module.d.ts +6 -0
- package/src/datepicker/datepicker-all.module.d.ts +6 -0
- package/src/datepicker/datepicker.component.d.ts +3 -0
- package/src/datepicker/datepicker.module.d.ts +6 -0
- package/src/daterangepicker/daterangepicker-all.module.d.ts +6 -0
- package/src/daterangepicker/daterangepicker.component.d.ts +3 -0
- package/src/daterangepicker/daterangepicker.module.d.ts +7 -0
- package/src/daterangepicker/presets.directive.d.ts +5 -0
- package/src/datetimepicker/datetimepicker-all.module.d.ts +6 -0
- package/src/datetimepicker/datetimepicker.component.d.ts +3 -0
- package/src/datetimepicker/datetimepicker.module.d.ts +6 -0
- package/src/timepicker/timepicker-all.module.d.ts +6 -0
- package/src/timepicker/timepicker.component.d.ts +3 -0
- package/src/timepicker/timepicker.module.d.ts +6 -0
- package/styles/calendar/_all.scss +2 -0
- package/styles/calendar/_bootstrap-dark-definition.scss +228 -0
- package/styles/calendar/_bootstrap-definition.scss +228 -0
- package/styles/calendar/_bootstrap4-definition.scss +228 -0
- package/styles/calendar/_bootstrap5-dark-definition.scss +1 -0
- package/styles/calendar/_bootstrap5-definition.scss +250 -0
- package/styles/calendar/_fabric-dark-definition.scss +192 -0
- package/styles/calendar/_fabric-definition.scss +190 -0
- package/styles/calendar/_fluent-dark-definition.scss +1 -0
- package/styles/calendar/_fluent-definition.scss +252 -0
- package/styles/calendar/_fusionnew-definition.scss +250 -0
- package/styles/calendar/_highcontrast-definition.scss +189 -0
- package/styles/calendar/_highcontrast-light-definition.scss +192 -0
- package/styles/calendar/_layout.scss +786 -0
- package/styles/calendar/_material-dark-definition.scss +194 -0
- package/styles/calendar/_material-definition.scss +189 -0
- package/styles/calendar/_material3-dark-definition.scss +1 -0
- package/styles/calendar/_material3-definition.scss +195 -0
- package/styles/calendar/_tailwind-dark-definition.scss +1 -0
- package/styles/calendar/_tailwind-definition.scss +262 -0
- package/styles/calendar/_theme.scss +534 -0
- package/styles/calendar/bootstrap-dark.scss +5 -1
- package/styles/calendar/bootstrap.scss +5 -1
- package/styles/calendar/bootstrap4.scss +5 -1
- package/styles/calendar/bootstrap5-dark.scss +5 -1
- package/styles/calendar/bootstrap5.scss +5 -1
- package/styles/calendar/fabric-dark.scss +5 -1
- package/styles/calendar/fabric.scss +5 -1
- package/styles/calendar/fluent-dark.scss +5 -1
- package/styles/calendar/fluent.scss +5 -1
- package/styles/calendar/highcontrast-light.scss +5 -1
- package/styles/calendar/highcontrast.scss +5 -1
- package/styles/calendar/icons/_bootstrap-dark.scss +13 -0
- package/styles/calendar/icons/_bootstrap.scss +13 -0
- package/styles/calendar/icons/_bootstrap4.scss +13 -0
- package/styles/calendar/icons/_bootstrap5-dark.scss +1 -0
- package/styles/calendar/icons/_bootstrap5.scss +13 -0
- package/styles/calendar/icons/_fabric-dark.scss +13 -0
- package/styles/calendar/icons/_fabric.scss +13 -0
- package/styles/calendar/icons/_fluent-dark.scss +1 -0
- package/styles/calendar/icons/_fluent.scss +13 -0
- package/styles/calendar/icons/_fusionnew.scss +13 -0
- package/styles/calendar/icons/_highcontrast-light.scss +13 -0
- package/styles/calendar/icons/_highcontrast.scss +13 -0
- package/styles/calendar/icons/_material-dark.scss +13 -0
- package/styles/calendar/icons/_material.scss +13 -0
- package/styles/calendar/icons/_material3-dark.scss +1 -0
- package/styles/calendar/icons/_material3.scss +13 -0
- package/styles/calendar/icons/_tailwind-dark.scss +1 -0
- package/styles/calendar/icons/_tailwind.scss +13 -0
- package/styles/calendar/material-dark.scss +5 -1
- package/styles/calendar/material.scss +5 -1
- package/styles/calendar/material3-dark.scss +5 -1
- package/styles/calendar/material3.scss +5 -1
- package/styles/calendar/tailwind-dark.scss +5 -1
- package/styles/calendar/tailwind.scss +5 -1
- package/styles/datepicker/_all.scss +2 -0
- package/styles/datepicker/_bootstrap-dark-definition.scss +97 -0
- package/styles/datepicker/_bootstrap-definition.scss +96 -0
- package/styles/datepicker/_bootstrap4-definition.scss +101 -0
- package/styles/datepicker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/datepicker/_bootstrap5-definition.scss +107 -0
- package/styles/datepicker/_fabric-dark-definition.scss +98 -0
- package/styles/datepicker/_fabric-definition.scss +95 -0
- package/styles/datepicker/_fluent-dark-definition.scss +1 -0
- package/styles/datepicker/_fluent-definition.scss +107 -0
- package/styles/datepicker/_fusionnew-definition.scss +107 -0
- package/styles/datepicker/_highcontrast-definition.scss +96 -0
- package/styles/datepicker/_highcontrast-light-definition.scss +99 -0
- package/styles/datepicker/_layout.scss +434 -0
- package/styles/datepicker/_material-dark-definition.scss +103 -0
- package/styles/datepicker/_material-definition.scss +100 -0
- package/styles/datepicker/_material3-dark-definition.scss +1 -0
- package/styles/datepicker/_material3-definition.scss +116 -0
- package/styles/datepicker/_tailwind-dark-definition.scss +1 -0
- package/styles/datepicker/_tailwind-definition.scss +105 -0
- package/styles/datepicker/_theme.scss +53 -0
- package/styles/datepicker/bootstrap-dark.scss +7 -1
- package/styles/datepicker/bootstrap.scss +7 -1
- package/styles/datepicker/bootstrap4.scss +7 -1
- package/styles/datepicker/bootstrap5-dark.scss +7 -1
- package/styles/datepicker/bootstrap5.scss +7 -1
- package/styles/datepicker/fabric-dark.scss +7 -1
- package/styles/datepicker/fabric.scss +7 -1
- package/styles/datepicker/fluent-dark.scss +7 -1
- package/styles/datepicker/fluent.scss +7 -1
- package/styles/datepicker/highcontrast-light.scss +7 -1
- package/styles/datepicker/highcontrast.scss +7 -1
- package/styles/datepicker/icons/_bootstrap-dark.scss +73 -0
- package/styles/datepicker/icons/_bootstrap.scss +72 -0
- package/styles/datepicker/icons/_bootstrap4.scss +76 -0
- package/styles/datepicker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/datepicker/icons/_bootstrap5.scss +76 -0
- package/styles/datepicker/icons/_fabric-dark.scss +65 -0
- package/styles/datepicker/icons/_fabric.scss +65 -0
- package/styles/datepicker/icons/_fluent-dark.scss +1 -0
- package/styles/datepicker/icons/_fluent.scss +76 -0
- package/styles/datepicker/icons/_fusionnew.scss +76 -0
- package/styles/datepicker/icons/_highcontrast-light.scss +72 -0
- package/styles/datepicker/icons/_highcontrast.scss +72 -0
- package/styles/datepicker/icons/_material-dark.scss +99 -0
- package/styles/datepicker/icons/_material.scss +99 -0
- package/styles/datepicker/icons/_material3-dark.scss +1 -0
- package/styles/datepicker/icons/_material3.scss +79 -0
- package/styles/datepicker/icons/_tailwind-dark.scss +1 -0
- package/styles/datepicker/icons/_tailwind.scss +76 -0
- package/styles/datepicker/material-dark.scss +7 -1
- package/styles/datepicker/material.scss +7 -1
- package/styles/datepicker/material3-dark.scss +7 -1
- package/styles/datepicker/material3.scss +7 -1
- package/styles/datepicker/tailwind-dark.scss +7 -1
- package/styles/datepicker/tailwind.scss +7 -1
- package/styles/daterangepicker/_all.scss +2 -0
- package/styles/daterangepicker/_bootstrap-dark-definition.scss +258 -0
- package/styles/daterangepicker/_bootstrap-definition.scss +258 -0
- package/styles/daterangepicker/_bootstrap4-definition.scss +268 -0
- package/styles/daterangepicker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/daterangepicker/_bootstrap5-definition.scss +296 -0
- package/styles/daterangepicker/_fabric-dark-definition.scss +261 -0
- package/styles/daterangepicker/_fabric-definition.scss +258 -0
- package/styles/daterangepicker/_fluent-dark-definition.scss +1 -0
- package/styles/daterangepicker/_fluent-definition.scss +305 -0
- package/styles/daterangepicker/_fusionnew-definition.scss +295 -0
- package/styles/daterangepicker/_highcontrast-definition.scss +258 -0
- package/styles/daterangepicker/_highcontrast-light-definition.scss +261 -0
- package/styles/daterangepicker/_layout.scss +1031 -0
- package/styles/daterangepicker/_material-dark-definition.scss +266 -0
- package/styles/daterangepicker/_material-definition.scss +266 -0
- package/styles/daterangepicker/_material3-dark-definition.scss +1 -0
- package/styles/daterangepicker/_material3-definition.scss +281 -0
- package/styles/daterangepicker/_tailwind-dark-definition.scss +1 -0
- package/styles/daterangepicker/_tailwind-definition.scss +287 -0
- package/styles/daterangepicker/_theme.scss +455 -0
- package/styles/daterangepicker/bootstrap-dark.scss +7 -1
- package/styles/daterangepicker/bootstrap.scss +7 -1
- package/styles/daterangepicker/bootstrap4.scss +7 -1
- package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
- package/styles/daterangepicker/bootstrap5.scss +7 -1
- package/styles/daterangepicker/fabric-dark.scss +7 -1
- package/styles/daterangepicker/fabric.scss +7 -1
- package/styles/daterangepicker/fluent-dark.scss +7 -1
- package/styles/daterangepicker/fluent.scss +7 -1
- package/styles/daterangepicker/highcontrast-light.scss +7 -1
- package/styles/daterangepicker/highcontrast.scss +7 -1
- package/styles/daterangepicker/icons/_bootstrap-dark.scss +85 -0
- package/styles/daterangepicker/icons/_bootstrap.scss +85 -0
- package/styles/daterangepicker/icons/_bootstrap4.scss +94 -0
- package/styles/daterangepicker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/daterangepicker/icons/_bootstrap5.scss +92 -0
- package/styles/daterangepicker/icons/_fabric-dark.scss +85 -0
- package/styles/daterangepicker/icons/_fabric.scss +85 -0
- package/styles/daterangepicker/icons/_fluent-dark.scss +1 -0
- package/styles/daterangepicker/icons/_fluent.scss +92 -0
- package/styles/daterangepicker/icons/_fusionnew.scss +92 -0
- package/styles/daterangepicker/icons/_highcontrast-light.scss +85 -0
- package/styles/daterangepicker/icons/_highcontrast.scss +85 -0
- package/styles/daterangepicker/icons/_material-dark.scss +119 -0
- package/styles/daterangepicker/icons/_material.scss +119 -0
- package/styles/daterangepicker/icons/_material3-dark.scss +1 -0
- package/styles/daterangepicker/icons/_material3.scss +129 -0
- package/styles/daterangepicker/icons/_tailwind-dark.scss +1 -0
- package/styles/daterangepicker/icons/_tailwind.scss +92 -0
- package/styles/daterangepicker/material-dark.scss +7 -1
- package/styles/daterangepicker/material.scss +7 -1
- package/styles/daterangepicker/material3-dark.scss +7 -1
- package/styles/daterangepicker/material3.scss +7 -1
- package/styles/daterangepicker/tailwind-dark.scss +7 -1
- package/styles/daterangepicker/tailwind.scss +7 -1
- package/styles/datetimepicker/_all.scss +2 -0
- package/styles/datetimepicker/_bootstrap-dark-definition.scss +60 -0
- package/styles/datetimepicker/_bootstrap-definition.scss +59 -0
- package/styles/datetimepicker/_bootstrap4-definition.scss +65 -0
- package/styles/datetimepicker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/datetimepicker/_bootstrap5-definition.scss +65 -0
- package/styles/datetimepicker/_fabric-dark-definition.scss +60 -0
- package/styles/datetimepicker/_fabric-definition.scss +57 -0
- package/styles/datetimepicker/_fluent-dark-definition.scss +1 -0
- package/styles/datetimepicker/_fluent-definition.scss +65 -0
- package/styles/datetimepicker/_fusionnew-definition.scss +65 -0
- package/styles/datetimepicker/_highcontrast-definition.scss +57 -0
- package/styles/datetimepicker/_highcontrast-light-definition.scss +60 -0
- package/styles/datetimepicker/_layout.scss +238 -0
- package/styles/datetimepicker/_material-dark-definition.scss +64 -0
- package/styles/datetimepicker/_material-definition.scss +62 -0
- package/styles/datetimepicker/_material3-dark-definition.scss +1 -0
- package/styles/datetimepicker/_material3-definition.scss +71 -0
- package/styles/datetimepicker/_tailwind-dark-definition.scss +1 -0
- package/styles/datetimepicker/_tailwind-definition.scss +65 -0
- package/styles/datetimepicker/_theme.scss +70 -0
- package/styles/datetimepicker/bootstrap-dark.scss +8 -1
- package/styles/datetimepicker/bootstrap.scss +8 -1
- package/styles/datetimepicker/bootstrap4.scss +8 -1
- package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
- package/styles/datetimepicker/bootstrap5.scss +8 -1
- package/styles/datetimepicker/fabric-dark.scss +8 -1
- package/styles/datetimepicker/fabric.scss +8 -1
- package/styles/datetimepicker/fluent-dark.scss +8 -1
- package/styles/datetimepicker/fluent.scss +8 -1
- package/styles/datetimepicker/highcontrast-light.scss +8 -1
- package/styles/datetimepicker/highcontrast.scss +8 -1
- package/styles/datetimepicker/icons/_bootstrap-dark.scss +11 -0
- package/styles/datetimepicker/icons/_bootstrap.scss +11 -0
- package/styles/datetimepicker/icons/_bootstrap4.scss +11 -0
- package/styles/datetimepicker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/datetimepicker/icons/_bootstrap5.scss +11 -0
- package/styles/datetimepicker/icons/_fabric-dark.scss +11 -0
- package/styles/datetimepicker/icons/_fabric.scss +11 -0
- package/styles/datetimepicker/icons/_fluent-dark.scss +1 -0
- package/styles/datetimepicker/icons/_fluent.scss +11 -0
- package/styles/datetimepicker/icons/_fusionnew.scss +11 -0
- package/styles/datetimepicker/icons/_highcontrast-light.scss +11 -0
- package/styles/datetimepicker/icons/_highcontrast.scss +11 -0
- package/styles/datetimepicker/icons/_material-dark.scss +53 -0
- package/styles/datetimepicker/icons/_material.scss +62 -0
- package/styles/datetimepicker/icons/_material3-dark.scss +1 -0
- package/styles/datetimepicker/icons/_material3.scss +11 -0
- package/styles/datetimepicker/icons/_tailwind-dark.scss +1 -0
- package/styles/datetimepicker/icons/_tailwind.scss +11 -0
- package/styles/datetimepicker/material-dark.scss +8 -1
- package/styles/datetimepicker/material.scss +8 -1
- package/styles/datetimepicker/material3-dark.scss +8 -1
- package/styles/datetimepicker/material3.scss +8 -1
- package/styles/datetimepicker/tailwind-dark.scss +8 -1
- package/styles/datetimepicker/tailwind.scss +8 -1
- package/styles/material3-dark.css +0 -220
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +0 -444
- package/styles/material3.scss +1 -0
- package/styles/timepicker/_all.scss +2 -0
- package/styles/timepicker/_bootstrap-dark-definition.scss +80 -0
- package/styles/timepicker/_bootstrap-definition.scss +77 -0
- package/styles/timepicker/_bootstrap4-definition.scss +85 -0
- package/styles/timepicker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/timepicker/_bootstrap5-definition.scss +86 -0
- package/styles/timepicker/_fabric-dark-definition.scss +80 -0
- package/styles/timepicker/_fabric-definition.scss +77 -0
- package/styles/timepicker/_fluent-dark-definition.scss +1 -0
- package/styles/timepicker/_fluent-definition.scss +86 -0
- package/styles/timepicker/_fusionnew-definition.scss +86 -0
- package/styles/timepicker/_highcontrast-definition.scss +77 -0
- package/styles/timepicker/_highcontrast-light-definition.scss +80 -0
- package/styles/timepicker/_layout.scss +303 -0
- package/styles/timepicker/_material-dark-definition.scss +84 -0
- package/styles/timepicker/_material-definition.scss +81 -0
- package/styles/timepicker/_material3-dark-definition.scss +1 -0
- package/styles/timepicker/_material3-definition.scss +99 -0
- package/styles/timepicker/_tailwind-dark-definition.scss +1 -0
- package/styles/timepicker/_tailwind-definition.scss +84 -0
- package/styles/timepicker/_theme.scss +114 -0
- package/styles/timepicker/bootstrap-dark.scss +6 -1
- package/styles/timepicker/bootstrap.scss +6 -1
- package/styles/timepicker/bootstrap4.scss +6 -1
- package/styles/timepicker/bootstrap5-dark.scss +6 -1
- package/styles/timepicker/bootstrap5.scss +6 -1
- package/styles/timepicker/fabric-dark.scss +6 -1
- package/styles/timepicker/fabric.scss +6 -1
- package/styles/timepicker/fluent-dark.scss +6 -1
- package/styles/timepicker/fluent.scss +6 -1
- package/styles/timepicker/highcontrast-light.scss +6 -1
- package/styles/timepicker/highcontrast.scss +6 -1
- package/styles/timepicker/icons/_bootstrap-dark.scss +23 -0
- package/styles/timepicker/icons/_bootstrap.scss +24 -0
- package/styles/timepicker/icons/_bootstrap4.scss +24 -0
- package/styles/timepicker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/timepicker/icons/_bootstrap5.scss +24 -0
- package/styles/timepicker/icons/_fabric-dark.scss +24 -0
- package/styles/timepicker/icons/_fabric.scss +24 -0
- package/styles/timepicker/icons/_fluent-dark.scss +1 -0
- package/styles/timepicker/icons/_fluent.scss +24 -0
- package/styles/timepicker/icons/_fusionnew.scss +24 -0
- package/styles/timepicker/icons/_highcontrast-light.scss +24 -0
- package/styles/timepicker/icons/_highcontrast.scss +24 -0
- package/styles/timepicker/icons/_material-dark.scss +52 -0
- package/styles/timepicker/icons/_material.scss +54 -0
- package/styles/timepicker/icons/_material3-dark.scss +1 -0
- package/styles/timepicker/icons/_material3.scss +24 -0
- package/styles/timepicker/icons/_tailwind-dark.scss +1 -0
- package/styles/timepicker/icons/_tailwind.scss +24 -0
- package/styles/timepicker/material-dark.scss +6 -1
- package/styles/timepicker/material.scss +6 -1
- package/styles/timepicker/material3-dark.scss +6 -1
- package/styles/timepicker/material3.scss +6 -1
- package/styles/timepicker/tailwind-dark.scss +6 -1
- package/styles/timepicker/tailwind.scss +6 -1
- package/syncfusion-ej2-angular-calendars.d.ts +5 -0
- package/@syncfusion/ej2-angular-calendars.es5.js +0 -1048
- package/@syncfusion/ej2-angular-calendars.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-calendars.js +0 -981
- package/@syncfusion/ej2-angular-calendars.js.map +0 -1
- package/CHANGELOG.md +0 -1334
- package/dist/ej2-angular-calendars.umd.js +0 -1093
- package/dist/ej2-angular-calendars.umd.js.map +0 -1
- package/dist/ej2-angular-calendars.umd.min.js +0 -11
- package/dist/ej2-angular-calendars.umd.min.js.map +0 -1
- package/ej2-angular-calendars.d.ts +0 -9
- package/ej2-angular-calendars.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
package/styles/material3.css
CHANGED
|
@@ -948,117 +948,6 @@ ejs-calendar {
|
|
|
948
948
|
transform: scale(1);
|
|
949
949
|
}
|
|
950
950
|
}
|
|
951
|
-
:root {
|
|
952
|
-
--color-sf-black: 0, 0, 0;
|
|
953
|
-
--color-sf-white: 255, 255, 255;
|
|
954
|
-
--color-sf-primary: 103, 80, 164;
|
|
955
|
-
--color-sf-primary-container: 234, 221, 255;
|
|
956
|
-
--color-sf-secondary: 98, 91, 113;
|
|
957
|
-
--color-sf-secondary-container: 232, 222, 248;
|
|
958
|
-
--color-sf-tertiary: 125, 82, 96;
|
|
959
|
-
--color-sf-tertiary-container: 255, 216, 228;
|
|
960
|
-
--color-sf-surface: 255, 255, 255;
|
|
961
|
-
--color-sf-surface-variant: 231, 224, 236;
|
|
962
|
-
--color-sf-background: var(--color-sf-surface);
|
|
963
|
-
--color-sf-on-primary: 255, 255, 255;
|
|
964
|
-
--color-sf-on-primary-container: 33, 0, 94;
|
|
965
|
-
--color-sf-on-secondary: 255, 255, 255;
|
|
966
|
-
--color-sf-on-secondary-container: 30, 25, 43;
|
|
967
|
-
--color-sf-on-tertiary: 255, 255, 255;
|
|
968
|
-
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
969
|
-
--color-sf-on-surface: 28, 27, 31;
|
|
970
|
-
--color-sf-on-surface-variant: 73, 69, 78;
|
|
971
|
-
--color-sf-on-background: 28, 27, 31;
|
|
972
|
-
--color-sf-outline: 121, 116, 126;
|
|
973
|
-
--color-sf-outline-variant: 196, 199, 197;
|
|
974
|
-
--color-sf-shadow: 0, 0, 0;
|
|
975
|
-
--color-sf-surface-tint-color: 103, 80, 164;
|
|
976
|
-
--color-sf-inverse-surface: 49, 48, 51;
|
|
977
|
-
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
978
|
-
--color-sf-inverse-primary: 208, 188, 255;
|
|
979
|
-
--color-sf-scrim: 0, 0, 0;
|
|
980
|
-
--color-sf-error: 179, 38, 30;
|
|
981
|
-
--color-sf-error-container: 249, 222, 220;
|
|
982
|
-
--color-sf-on-error: 255, 250, 250;
|
|
983
|
-
--color-sf-on-error-container: 65, 14, 11;
|
|
984
|
-
--color-sf-success: 32, 81, 7;
|
|
985
|
-
--color-sf-success-container: 209, 255, 186;
|
|
986
|
-
--color-sf-on-success: 244, 255, 239;
|
|
987
|
-
--color-sf-on-success-container: 13, 39, 0;
|
|
988
|
-
--color-sf-info: 1, 87, 155;
|
|
989
|
-
--color-sf-info-container: 233, 245, 255;
|
|
990
|
-
--color-sf-on-info: 250, 253, 255;
|
|
991
|
-
--color-sf-on-info-container: 0, 51, 91;
|
|
992
|
-
--color-sf-warning: 145, 76, 0;
|
|
993
|
-
--color-sf-warning-container: 254, 236, 222;
|
|
994
|
-
--color-sf-on-warning: 255, 255, 255;
|
|
995
|
-
--color-sf-on-warning-container: 47, 21, 0;
|
|
996
|
-
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
997
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
998
|
-
--color-sf-diagram-palette-background: --color-sf-white;
|
|
999
|
-
--color-sf-success-text: 255, 255, 255;
|
|
1000
|
-
--color-sf-warning-text: 255, 255, 255;
|
|
1001
|
-
--color-sf-danger-text: 255, 255, 255;
|
|
1002
|
-
--color-sf-info-text: 255, 255, 255;
|
|
1003
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
1004
|
-
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
1005
|
-
}
|
|
1006
|
-
|
|
1007
|
-
.e-dark-mode {
|
|
1008
|
-
--color-sf-black: 0, 0, 0;
|
|
1009
|
-
--color-sf-white: 255, 255, 255;
|
|
1010
|
-
--color-sf-primary: 208, 188, 255;
|
|
1011
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1012
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1013
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1014
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1015
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1016
|
-
--color-sf-surface: 28, 27, 31;
|
|
1017
|
-
--color-sf-surface-variant: 28, 27, 31;
|
|
1018
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1019
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1020
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1021
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1022
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1023
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1024
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1025
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1026
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1027
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1028
|
-
--color-sf-outline: 147, 143, 153;
|
|
1029
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1030
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1031
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1032
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1033
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1034
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1035
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1036
|
-
--color-sf-error: 242, 184, 181;
|
|
1037
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1038
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1039
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1040
|
-
--color-sf-success: 83, 202, 23;
|
|
1041
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1042
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1043
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1044
|
-
--color-sf-info: 71, 172, 251;
|
|
1045
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1046
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1047
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1048
|
-
--color-sf-warning: 245, 180, 130;
|
|
1049
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1050
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1051
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1052
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1053
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1054
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1055
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1056
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1057
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1058
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1059
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
951
|
/* stylelint-disable property-no-vendor-prefix */
|
|
1063
952
|
@keyframes e-input-ripple {
|
|
1064
953
|
100% {
|
|
@@ -1403,117 +1292,6 @@ ejs-calendar {
|
|
|
1403
1292
|
font-weight: 500;
|
|
1404
1293
|
}
|
|
1405
1294
|
|
|
1406
|
-
:root {
|
|
1407
|
-
--color-sf-black: 0, 0, 0;
|
|
1408
|
-
--color-sf-white: 255, 255, 255;
|
|
1409
|
-
--color-sf-primary: 103, 80, 164;
|
|
1410
|
-
--color-sf-primary-container: 234, 221, 255;
|
|
1411
|
-
--color-sf-secondary: 98, 91, 113;
|
|
1412
|
-
--color-sf-secondary-container: 232, 222, 248;
|
|
1413
|
-
--color-sf-tertiary: 125, 82, 96;
|
|
1414
|
-
--color-sf-tertiary-container: 255, 216, 228;
|
|
1415
|
-
--color-sf-surface: 255, 255, 255;
|
|
1416
|
-
--color-sf-surface-variant: 231, 224, 236;
|
|
1417
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1418
|
-
--color-sf-on-primary: 255, 255, 255;
|
|
1419
|
-
--color-sf-on-primary-container: 33, 0, 94;
|
|
1420
|
-
--color-sf-on-secondary: 255, 255, 255;
|
|
1421
|
-
--color-sf-on-secondary-container: 30, 25, 43;
|
|
1422
|
-
--color-sf-on-tertiary: 255, 255, 255;
|
|
1423
|
-
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
1424
|
-
--color-sf-on-surface: 28, 27, 31;
|
|
1425
|
-
--color-sf-on-surface-variant: 73, 69, 78;
|
|
1426
|
-
--color-sf-on-background: 28, 27, 31;
|
|
1427
|
-
--color-sf-outline: 121, 116, 126;
|
|
1428
|
-
--color-sf-outline-variant: 196, 199, 197;
|
|
1429
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1430
|
-
--color-sf-surface-tint-color: 103, 80, 164;
|
|
1431
|
-
--color-sf-inverse-surface: 49, 48, 51;
|
|
1432
|
-
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
1433
|
-
--color-sf-inverse-primary: 208, 188, 255;
|
|
1434
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1435
|
-
--color-sf-error: 179, 38, 30;
|
|
1436
|
-
--color-sf-error-container: 249, 222, 220;
|
|
1437
|
-
--color-sf-on-error: 255, 250, 250;
|
|
1438
|
-
--color-sf-on-error-container: 65, 14, 11;
|
|
1439
|
-
--color-sf-success: 32, 81, 7;
|
|
1440
|
-
--color-sf-success-container: 209, 255, 186;
|
|
1441
|
-
--color-sf-on-success: 244, 255, 239;
|
|
1442
|
-
--color-sf-on-success-container: 13, 39, 0;
|
|
1443
|
-
--color-sf-info: 1, 87, 155;
|
|
1444
|
-
--color-sf-info-container: 233, 245, 255;
|
|
1445
|
-
--color-sf-on-info: 250, 253, 255;
|
|
1446
|
-
--color-sf-on-info-container: 0, 51, 91;
|
|
1447
|
-
--color-sf-warning: 145, 76, 0;
|
|
1448
|
-
--color-sf-warning-container: 254, 236, 222;
|
|
1449
|
-
--color-sf-on-warning: 255, 255, 255;
|
|
1450
|
-
--color-sf-on-warning-container: 47, 21, 0;
|
|
1451
|
-
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
1452
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
1453
|
-
--color-sf-diagram-palette-background: --color-sf-white;
|
|
1454
|
-
--color-sf-success-text: 255, 255, 255;
|
|
1455
|
-
--color-sf-warning-text: 255, 255, 255;
|
|
1456
|
-
--color-sf-danger-text: 255, 255, 255;
|
|
1457
|
-
--color-sf-info-text: 255, 255, 255;
|
|
1458
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
1459
|
-
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
1460
|
-
}
|
|
1461
|
-
|
|
1462
|
-
.e-dark-mode {
|
|
1463
|
-
--color-sf-black: 0, 0, 0;
|
|
1464
|
-
--color-sf-white: 255, 255, 255;
|
|
1465
|
-
--color-sf-primary: 208, 188, 255;
|
|
1466
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
1467
|
-
--color-sf-secondary: 204, 194, 220;
|
|
1468
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
1469
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
1470
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
1471
|
-
--color-sf-surface: 28, 27, 31;
|
|
1472
|
-
--color-sf-surface-variant: 28, 27, 31;
|
|
1473
|
-
--color-sf-background: var(--color-sf-surface);
|
|
1474
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
1475
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
1476
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
1477
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
1478
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
1479
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
1480
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
1481
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
1482
|
-
--color-sf-on-background: 230, 225, 229;
|
|
1483
|
-
--color-sf-outline: 147, 143, 153;
|
|
1484
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
1485
|
-
--color-sf-shadow: 0, 0, 0;
|
|
1486
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
1487
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
1488
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
1489
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
1490
|
-
--color-sf-scrim: 0, 0, 0;
|
|
1491
|
-
--color-sf-error: 242, 184, 181;
|
|
1492
|
-
--color-sf-error-container: 140, 29, 24;
|
|
1493
|
-
--color-sf-on-error: 96, 20, 16;
|
|
1494
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
1495
|
-
--color-sf-success: 83, 202, 23;
|
|
1496
|
-
--color-sf-success-container: 22, 62, 2;
|
|
1497
|
-
--color-sf-on-success: 13, 39, 0;
|
|
1498
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
1499
|
-
--color-sf-info: 71, 172, 251;
|
|
1500
|
-
--color-sf-info-container: 0, 67, 120;
|
|
1501
|
-
--color-sf-on-info: 0, 51, 91;
|
|
1502
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
1503
|
-
--color-sf-warning: 245, 180, 130;
|
|
1504
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
1505
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
1506
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
1507
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
1508
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
1509
|
-
--color-sf-success-text: 0, 0, 0;
|
|
1510
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
1511
|
-
--color-sf-info-text: 0, 0, 0;
|
|
1512
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
1513
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
1514
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
1515
|
-
}
|
|
1516
|
-
|
|
1517
1295
|
/* stylelint-disable property-no-vendor-prefix */
|
|
1518
1296
|
@keyframes e-input-ripple {
|
|
1519
1297
|
100% {
|
|
@@ -1999,117 +1777,6 @@ ejs-calendar {
|
|
|
1999
1777
|
background: rgba(var(--color-sf-on-surface), 0.08);
|
|
2000
1778
|
}
|
|
2001
1779
|
|
|
2002
|
-
:root {
|
|
2003
|
-
--color-sf-black: 0, 0, 0;
|
|
2004
|
-
--color-sf-white: 255, 255, 255;
|
|
2005
|
-
--color-sf-primary: 103, 80, 164;
|
|
2006
|
-
--color-sf-primary-container: 234, 221, 255;
|
|
2007
|
-
--color-sf-secondary: 98, 91, 113;
|
|
2008
|
-
--color-sf-secondary-container: 232, 222, 248;
|
|
2009
|
-
--color-sf-tertiary: 125, 82, 96;
|
|
2010
|
-
--color-sf-tertiary-container: 255, 216, 228;
|
|
2011
|
-
--color-sf-surface: 255, 255, 255;
|
|
2012
|
-
--color-sf-surface-variant: 231, 224, 236;
|
|
2013
|
-
--color-sf-background: var(--color-sf-surface);
|
|
2014
|
-
--color-sf-on-primary: 255, 255, 255;
|
|
2015
|
-
--color-sf-on-primary-container: 33, 0, 94;
|
|
2016
|
-
--color-sf-on-secondary: 255, 255, 255;
|
|
2017
|
-
--color-sf-on-secondary-container: 30, 25, 43;
|
|
2018
|
-
--color-sf-on-tertiary: 255, 255, 255;
|
|
2019
|
-
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
2020
|
-
--color-sf-on-surface: 28, 27, 31;
|
|
2021
|
-
--color-sf-on-surface-variant: 73, 69, 78;
|
|
2022
|
-
--color-sf-on-background: 28, 27, 31;
|
|
2023
|
-
--color-sf-outline: 121, 116, 126;
|
|
2024
|
-
--color-sf-outline-variant: 196, 199, 197;
|
|
2025
|
-
--color-sf-shadow: 0, 0, 0;
|
|
2026
|
-
--color-sf-surface-tint-color: 103, 80, 164;
|
|
2027
|
-
--color-sf-inverse-surface: 49, 48, 51;
|
|
2028
|
-
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
2029
|
-
--color-sf-inverse-primary: 208, 188, 255;
|
|
2030
|
-
--color-sf-scrim: 0, 0, 0;
|
|
2031
|
-
--color-sf-error: 179, 38, 30;
|
|
2032
|
-
--color-sf-error-container: 249, 222, 220;
|
|
2033
|
-
--color-sf-on-error: 255, 250, 250;
|
|
2034
|
-
--color-sf-on-error-container: 65, 14, 11;
|
|
2035
|
-
--color-sf-success: 32, 81, 7;
|
|
2036
|
-
--color-sf-success-container: 209, 255, 186;
|
|
2037
|
-
--color-sf-on-success: 244, 255, 239;
|
|
2038
|
-
--color-sf-on-success-container: 13, 39, 0;
|
|
2039
|
-
--color-sf-info: 1, 87, 155;
|
|
2040
|
-
--color-sf-info-container: 233, 245, 255;
|
|
2041
|
-
--color-sf-on-info: 250, 253, 255;
|
|
2042
|
-
--color-sf-on-info-container: 0, 51, 91;
|
|
2043
|
-
--color-sf-warning: 145, 76, 0;
|
|
2044
|
-
--color-sf-warning-container: 254, 236, 222;
|
|
2045
|
-
--color-sf-on-warning: 255, 255, 255;
|
|
2046
|
-
--color-sf-on-warning-container: 47, 21, 0;
|
|
2047
|
-
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
2048
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
2049
|
-
--color-sf-diagram-palette-background: --color-sf-white;
|
|
2050
|
-
--color-sf-success-text: 255, 255, 255;
|
|
2051
|
-
--color-sf-warning-text: 255, 255, 255;
|
|
2052
|
-
--color-sf-danger-text: 255, 255, 255;
|
|
2053
|
-
--color-sf-info-text: 255, 255, 255;
|
|
2054
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
2055
|
-
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
2056
|
-
}
|
|
2057
|
-
|
|
2058
|
-
.e-dark-mode {
|
|
2059
|
-
--color-sf-black: 0, 0, 0;
|
|
2060
|
-
--color-sf-white: 255, 255, 255;
|
|
2061
|
-
--color-sf-primary: 208, 188, 255;
|
|
2062
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
2063
|
-
--color-sf-secondary: 204, 194, 220;
|
|
2064
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
2065
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
2066
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
2067
|
-
--color-sf-surface: 28, 27, 31;
|
|
2068
|
-
--color-sf-surface-variant: 28, 27, 31;
|
|
2069
|
-
--color-sf-background: var(--color-sf-surface);
|
|
2070
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
2071
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
2072
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
2073
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
2074
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
2075
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
2076
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
2077
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
2078
|
-
--color-sf-on-background: 230, 225, 229;
|
|
2079
|
-
--color-sf-outline: 147, 143, 153;
|
|
2080
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
2081
|
-
--color-sf-shadow: 0, 0, 0;
|
|
2082
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
2083
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
2084
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
2085
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
2086
|
-
--color-sf-scrim: 0, 0, 0;
|
|
2087
|
-
--color-sf-error: 242, 184, 181;
|
|
2088
|
-
--color-sf-error-container: 140, 29, 24;
|
|
2089
|
-
--color-sf-on-error: 96, 20, 16;
|
|
2090
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
2091
|
-
--color-sf-success: 83, 202, 23;
|
|
2092
|
-
--color-sf-success-container: 22, 62, 2;
|
|
2093
|
-
--color-sf-on-success: 13, 39, 0;
|
|
2094
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
2095
|
-
--color-sf-info: 71, 172, 251;
|
|
2096
|
-
--color-sf-info-container: 0, 67, 120;
|
|
2097
|
-
--color-sf-on-info: 0, 51, 91;
|
|
2098
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
2099
|
-
--color-sf-warning: 245, 180, 130;
|
|
2100
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
2101
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
2102
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
2103
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
2104
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
2105
|
-
--color-sf-success-text: 0, 0, 0;
|
|
2106
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
2107
|
-
--color-sf-info-text: 0, 0, 0;
|
|
2108
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
2109
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
2110
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
2111
|
-
}
|
|
2112
|
-
|
|
2113
1780
|
/* stylelint-disable property-no-vendor-prefix */
|
|
2114
1781
|
@keyframes e-input-ripple {
|
|
2115
1782
|
100% {
|
|
@@ -3381,117 +3048,6 @@ ejs-calendar {
|
|
|
3381
3048
|
color: rgba(var(--color-sf-on-primary));
|
|
3382
3049
|
}
|
|
3383
3050
|
|
|
3384
|
-
:root {
|
|
3385
|
-
--color-sf-black: 0, 0, 0;
|
|
3386
|
-
--color-sf-white: 255, 255, 255;
|
|
3387
|
-
--color-sf-primary: 103, 80, 164;
|
|
3388
|
-
--color-sf-primary-container: 234, 221, 255;
|
|
3389
|
-
--color-sf-secondary: 98, 91, 113;
|
|
3390
|
-
--color-sf-secondary-container: 232, 222, 248;
|
|
3391
|
-
--color-sf-tertiary: 125, 82, 96;
|
|
3392
|
-
--color-sf-tertiary-container: 255, 216, 228;
|
|
3393
|
-
--color-sf-surface: 255, 255, 255;
|
|
3394
|
-
--color-sf-surface-variant: 231, 224, 236;
|
|
3395
|
-
--color-sf-background: var(--color-sf-surface);
|
|
3396
|
-
--color-sf-on-primary: 255, 255, 255;
|
|
3397
|
-
--color-sf-on-primary-container: 33, 0, 94;
|
|
3398
|
-
--color-sf-on-secondary: 255, 255, 255;
|
|
3399
|
-
--color-sf-on-secondary-container: 30, 25, 43;
|
|
3400
|
-
--color-sf-on-tertiary: 255, 255, 255;
|
|
3401
|
-
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
3402
|
-
--color-sf-on-surface: 28, 27, 31;
|
|
3403
|
-
--color-sf-on-surface-variant: 73, 69, 78;
|
|
3404
|
-
--color-sf-on-background: 28, 27, 31;
|
|
3405
|
-
--color-sf-outline: 121, 116, 126;
|
|
3406
|
-
--color-sf-outline-variant: 196, 199, 197;
|
|
3407
|
-
--color-sf-shadow: 0, 0, 0;
|
|
3408
|
-
--color-sf-surface-tint-color: 103, 80, 164;
|
|
3409
|
-
--color-sf-inverse-surface: 49, 48, 51;
|
|
3410
|
-
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
3411
|
-
--color-sf-inverse-primary: 208, 188, 255;
|
|
3412
|
-
--color-sf-scrim: 0, 0, 0;
|
|
3413
|
-
--color-sf-error: 179, 38, 30;
|
|
3414
|
-
--color-sf-error-container: 249, 222, 220;
|
|
3415
|
-
--color-sf-on-error: 255, 250, 250;
|
|
3416
|
-
--color-sf-on-error-container: 65, 14, 11;
|
|
3417
|
-
--color-sf-success: 32, 81, 7;
|
|
3418
|
-
--color-sf-success-container: 209, 255, 186;
|
|
3419
|
-
--color-sf-on-success: 244, 255, 239;
|
|
3420
|
-
--color-sf-on-success-container: 13, 39, 0;
|
|
3421
|
-
--color-sf-info: 1, 87, 155;
|
|
3422
|
-
--color-sf-info-container: 233, 245, 255;
|
|
3423
|
-
--color-sf-on-info: 250, 253, 255;
|
|
3424
|
-
--color-sf-on-info-container: 0, 51, 91;
|
|
3425
|
-
--color-sf-warning: 145, 76, 0;
|
|
3426
|
-
--color-sf-warning-container: 254, 236, 222;
|
|
3427
|
-
--color-sf-on-warning: 255, 255, 255;
|
|
3428
|
-
--color-sf-on-warning-container: 47, 21, 0;
|
|
3429
|
-
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
3430
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
3431
|
-
--color-sf-diagram-palette-background: --color-sf-white;
|
|
3432
|
-
--color-sf-success-text: 255, 255, 255;
|
|
3433
|
-
--color-sf-warning-text: 255, 255, 255;
|
|
3434
|
-
--color-sf-danger-text: 255, 255, 255;
|
|
3435
|
-
--color-sf-info-text: 255, 255, 255;
|
|
3436
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
3437
|
-
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
3438
|
-
}
|
|
3439
|
-
|
|
3440
|
-
.e-dark-mode {
|
|
3441
|
-
--color-sf-black: 0, 0, 0;
|
|
3442
|
-
--color-sf-white: 255, 255, 255;
|
|
3443
|
-
--color-sf-primary: 208, 188, 255;
|
|
3444
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
3445
|
-
--color-sf-secondary: 204, 194, 220;
|
|
3446
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
3447
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
3448
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
3449
|
-
--color-sf-surface: 28, 27, 31;
|
|
3450
|
-
--color-sf-surface-variant: 28, 27, 31;
|
|
3451
|
-
--color-sf-background: var(--color-sf-surface);
|
|
3452
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
3453
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
3454
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
3455
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
3456
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
3457
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
3458
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
3459
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
3460
|
-
--color-sf-on-background: 230, 225, 229;
|
|
3461
|
-
--color-sf-outline: 147, 143, 153;
|
|
3462
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
3463
|
-
--color-sf-shadow: 0, 0, 0;
|
|
3464
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
3465
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
3466
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
3467
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
3468
|
-
--color-sf-scrim: 0, 0, 0;
|
|
3469
|
-
--color-sf-error: 242, 184, 181;
|
|
3470
|
-
--color-sf-error-container: 140, 29, 24;
|
|
3471
|
-
--color-sf-on-error: 96, 20, 16;
|
|
3472
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
3473
|
-
--color-sf-success: 83, 202, 23;
|
|
3474
|
-
--color-sf-success-container: 22, 62, 2;
|
|
3475
|
-
--color-sf-on-success: 13, 39, 0;
|
|
3476
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
3477
|
-
--color-sf-info: 71, 172, 251;
|
|
3478
|
-
--color-sf-info-container: 0, 67, 120;
|
|
3479
|
-
--color-sf-on-info: 0, 51, 91;
|
|
3480
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
3481
|
-
--color-sf-warning: 245, 180, 130;
|
|
3482
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
3483
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
3484
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
3485
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
3486
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
3487
|
-
--color-sf-success-text: 0, 0, 0;
|
|
3488
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
3489
|
-
--color-sf-info-text: 0, 0, 0;
|
|
3490
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
3491
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
3492
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
3493
|
-
}
|
|
3494
|
-
|
|
3495
3051
|
/* stylelint-disable property-no-vendor-prefix */
|
|
3496
3052
|
@keyframes e-input-ripple {
|
|
3497
3053
|
100% {
|
package/styles/material3.scss
CHANGED
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
//default
|
|
2
|
+
$timepicker-skin-name: 'bootstrap-dark' !default;
|
|
3
|
+
$timepicker-default-text-indent: 20px !default;
|
|
4
|
+
$timepicker-list-bigger-line-height: 40px !default;
|
|
5
|
+
$timepicker-list-normal-line-height: 26px !default;
|
|
6
|
+
$timepicker-list-normal-font-size: 14px !default;
|
|
7
|
+
$timepicker-list-bigger-font-size: 15px !default;
|
|
8
|
+
$timepicker-list-normal-text-indent: $timepicker-default-text-indent !default;
|
|
9
|
+
$timepicker-list-bigger-text-indent: 20px !default;
|
|
10
|
+
$timepicker-popup-border-radius: 4px !default;
|
|
11
|
+
$timepicker-list-font-weight: regular !default;
|
|
12
|
+
$timepicker-popup-shadow: 0 6px 12px rgba($base-font, .5) !default;
|
|
13
|
+
$timepicker-list-default-font-color: $grey-dark-font !default;
|
|
14
|
+
$timepicker-list-default-border-style: none !default;
|
|
15
|
+
$timepicker-list-hover-border-color: none !default;
|
|
16
|
+
$timepicker-list-border-color: 1px solid $grey-44 !default;
|
|
17
|
+
$timepicker-list-bg-color: $grey-dark !default;
|
|
18
|
+
$timepicker-list-active-bg-color: $brand-primary !default;
|
|
19
|
+
$timepicker-list-active-icon-color: $grey-light-font !default;
|
|
20
|
+
$timepicker-list-active-font-color: $brand-primary-font !default;
|
|
21
|
+
$timepicker-list-hover-bg-color: $grey-44 !default;
|
|
22
|
+
$timepicker-list-hover-font-color: $grey-dark-font !default;
|
|
23
|
+
$timepicker-list-popup-icon-active-color: $grey-dark-font !default;
|
|
24
|
+
$timepicker-list-active-hover-bg-color: $brand-primary !default;
|
|
25
|
+
$timepicker-list-active-hover-font-color: $grey-light-font !default;
|
|
26
|
+
$timepicker-list-normal-padding: 0 !default;
|
|
27
|
+
$timepicker-list-bigger-padding: 0 !default;
|
|
28
|
+
$timepicker-font-icon: '\e93e' !default;
|
|
29
|
+
$timepicker-icon-normal-font-size: 16px !default;
|
|
30
|
+
$timepicker-icon-bigger-font-size: 18px !default;
|
|
31
|
+
$timepicker-disable-text: $grey-8c !default;
|
|
32
|
+
$timepicker-disable-opacity: 1 !default;
|
|
33
|
+
$timepicker-default-overlay: rgba($grey-base, .6) !default;
|
|
34
|
+
|
|
35
|
+
// mouse small
|
|
36
|
+
$timepicker-list-small-font-size: 13px !default;
|
|
37
|
+
$timepicker-list-small-line-height: 22px !default;
|
|
38
|
+
$timepicker-list-small-text-indent: 12px !default;
|
|
39
|
+
$timepicker-list-small-font-color: $grey-dark-font !default;
|
|
40
|
+
|
|
41
|
+
// icon small
|
|
42
|
+
$timepicker-icon-small-font-size: 14px !default;
|
|
43
|
+
|
|
44
|
+
// Touch small
|
|
45
|
+
$timepicker-list-bigger-small-font-size: 14px !default;
|
|
46
|
+
$timepicker-list-bigger-small-line-height: 34px !default;
|
|
47
|
+
$timepicker-list-bigger-small-text-indent: 20px !default;
|
|
48
|
+
|
|
49
|
+
// Touch small icon
|
|
50
|
+
$timepicker-icon-bigger-small-font-size: 18px !default;
|
|
51
|
+
|
|
52
|
+
// modal dialog colors
|
|
53
|
+
$modal-header-bg-color: $grey-dark !default;
|
|
54
|
+
$modal-header-text-color: $grey-dark-font !default;
|
|
55
|
+
|
|
56
|
+
// modal dialog portrait dimensions
|
|
57
|
+
$modal-header-height: 10% !default;
|
|
58
|
+
$modal-header-padding: 2.5vh 2.5vw 2.5vh 1.5vw !default;
|
|
59
|
+
$modal-header-display-style: flex !default;
|
|
60
|
+
$modal-header-content-align: center !default;
|
|
61
|
+
$modal-header-portrait-font-size: 2vh !default;
|
|
62
|
+
$modal-close-icon-float: left !default;
|
|
63
|
+
$modal-portrait-content-padding: 1vh 2vw !default;
|
|
64
|
+
$modal-content-height: 90% !default;
|
|
65
|
+
$modal-content-overflow: auto !default;
|
|
66
|
+
$modal-header-title-transform: capitalize !default;
|
|
67
|
+
$modal-header-border-bottom: 1px solid $grey-44 !default;
|
|
68
|
+
$modal-list-line-height: 5vh !default;
|
|
69
|
+
$modal-landscape-list-line-height: 10vh !default;
|
|
70
|
+
|
|
71
|
+
// modal dialog landscape dimensions
|
|
72
|
+
$modal-header-landscape-height: 15% !default;
|
|
73
|
+
$modal-content-landscape-height: 85% !default;
|
|
74
|
+
$modal-header-landscape-font-size: 2vw !default;
|
|
75
|
+
$modal-landscape-padding: 1vh 1vw !default;
|
|
76
|
+
$modal-list-item-padding: 1vh 0 !default;
|
|
77
|
+
$modal-mobile-font-size: 14px !default;
|
|
78
|
+
$modal-tablet-font-size: 24px !default;
|
|
79
|
+
|
|
80
|
+
//enddefault
|
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
$timepicker-skin-name: 'bootstrap' !default;
|
|
2
|
+
$timepicker-default-text-indent: 20px !default;
|
|
3
|
+
$timepicker-list-bigger-line-height: 40px !default;
|
|
4
|
+
$timepicker-list-normal-line-height: 26px !default;
|
|
5
|
+
$timepicker-list-normal-font-size: 14px !default;
|
|
6
|
+
$timepicker-list-bigger-font-size: 15px !default;
|
|
7
|
+
$timepicker-list-normal-text-indent: $timepicker-default-text-indent !default;
|
|
8
|
+
$timepicker-list-bigger-text-indent: 20px !default;
|
|
9
|
+
$timepicker-popup-border-radius: 4px !default;
|
|
10
|
+
$timepicker-list-font-weight: regular !default;
|
|
11
|
+
$timepicker-popup-shadow: 0 6px 12px rgba($grey-light-font, .175) !default;
|
|
12
|
+
$timepicker-list-default-font-color: $grey-light-font !default;
|
|
13
|
+
$timepicker-list-default-border-style: none !default;
|
|
14
|
+
$timepicker-list-hover-border-color: none !default;
|
|
15
|
+
$timepicker-list-border-color: 1px solid $grey-cc !default;
|
|
16
|
+
$timepicker-list-bg-color: $grey-white !default;
|
|
17
|
+
$timepicker-list-active-bg-color: $brand-primary !default;
|
|
18
|
+
$timepicker-list-active-icon-color: $grey-light-font !default;
|
|
19
|
+
$timepicker-list-active-font-color: $brand-primary-font !default;
|
|
20
|
+
$timepicker-list-hover-bg-color: $grey-f5 !default;
|
|
21
|
+
$timepicker-list-hover-font-color: $grey-light-font !default;
|
|
22
|
+
$timepicker-list-popup-icon-active-color: $grey-light-font !default;
|
|
23
|
+
$timepicker-list-active-hover-bg-color: $grey-f5 !default;
|
|
24
|
+
$timepicker-list-active-hover-font-color: $grey-light-font !default;
|
|
25
|
+
$timepicker-list-normal-padding: 0 !default;
|
|
26
|
+
$timepicker-list-bigger-padding: 0 !default;
|
|
27
|
+
$timepicker-font-icon: '\e93e' !default;
|
|
28
|
+
$timepicker-icon-normal-font-size: 16px !default;
|
|
29
|
+
$timepicker-icon-bigger-font-size: 18px !default;
|
|
30
|
+
$timepicker-disable-text: rgba($grey, .65) !default;
|
|
31
|
+
$timepicker-disable-opacity: 1 !default;
|
|
32
|
+
$timepicker-default-overlay: rgba($grey-base, .6) !default;
|
|
33
|
+
|
|
34
|
+
// mouse small
|
|
35
|
+
$timepicker-list-small-font-size: 13px !default;
|
|
36
|
+
$timepicker-list-small-line-height: 22px !default;
|
|
37
|
+
$timepicker-list-small-text-indent: 12px !default;
|
|
38
|
+
$timepicker-list-small-font-color: $grey-light-font !default;
|
|
39
|
+
|
|
40
|
+
// icon small
|
|
41
|
+
$timepicker-icon-small-font-size: 14px !default;
|
|
42
|
+
|
|
43
|
+
// Touch small
|
|
44
|
+
$timepicker-list-bigger-small-font-size: 14px !default;
|
|
45
|
+
$timepicker-list-bigger-small-line-height: 34px !default;
|
|
46
|
+
$timepicker-list-bigger-small-text-indent: 20px !default;
|
|
47
|
+
|
|
48
|
+
// Touch small icon
|
|
49
|
+
$timepicker-icon-bigger-small-font-size: 18px !default;
|
|
50
|
+
|
|
51
|
+
// modal dialog colors
|
|
52
|
+
$modal-header-bg-color: $grey-white !default;
|
|
53
|
+
$modal-header-text-color: $grey-light-font !default;
|
|
54
|
+
|
|
55
|
+
// modal dialog portrait dimensions
|
|
56
|
+
$modal-header-height: 10% !default;
|
|
57
|
+
$modal-header-padding: 2.5vh 2.5vw 2.5vh 1.5vw !default;
|
|
58
|
+
$modal-header-display-style: flex !default;
|
|
59
|
+
$modal-header-content-align: center !default;
|
|
60
|
+
$modal-header-portrait-font-size: 2vh !default;
|
|
61
|
+
$modal-close-icon-float: left !default;
|
|
62
|
+
$modal-portrait-content-padding: 1vh 2vw !default;
|
|
63
|
+
$modal-content-height: 90% !default;
|
|
64
|
+
$modal-content-overflow: auto !default;
|
|
65
|
+
$modal-header-title-transform: capitalize !default;
|
|
66
|
+
$modal-header-border-bottom: 1px solid $grey-cc !default;
|
|
67
|
+
$modal-list-line-height: 5vh !default;
|
|
68
|
+
$modal-landscape-list-line-height: 10vh !default;
|
|
69
|
+
|
|
70
|
+
// modal dialog landscape dimensions
|
|
71
|
+
$modal-header-landscape-height: 15% !default;
|
|
72
|
+
$modal-content-landscape-height: 85% !default;
|
|
73
|
+
$modal-header-landscape-font-size: 2vw !default;
|
|
74
|
+
$modal-landscape-padding: 1vh 1vw !default;
|
|
75
|
+
$modal-list-item-padding: 1vh 0 !default;
|
|
76
|
+
$modal-mobile-font-size: 14px !default;
|
|
77
|
+
$modal-tablet-font-size: 24px !default;
|