@syncfusion/ej2-angular-calendars 24.1.41-ngcc → 24.1.41
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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/bootstrap-dark.css +2952 -1
- package/styles/bootstrap.css +2960 -1
- package/styles/bootstrap4.css +2988 -1
- package/styles/bootstrap5-dark.css +3118 -1
- package/styles/bootstrap5.css +3118 -1
- 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.css +824 -1
- package/styles/calendar/bootstrap-dark.scss +5 -1
- package/styles/calendar/bootstrap.css +825 -1
- package/styles/calendar/bootstrap.scss +5 -1
- package/styles/calendar/bootstrap4.css +825 -1
- package/styles/calendar/bootstrap4.scss +5 -1
- package/styles/calendar/bootstrap5-dark.css +894 -1
- package/styles/calendar/bootstrap5-dark.scss +5 -1
- package/styles/calendar/bootstrap5.css +894 -1
- package/styles/calendar/bootstrap5.scss +5 -1
- package/styles/calendar/fabric-dark.css +830 -1
- package/styles/calendar/fabric-dark.scss +5 -1
- package/styles/calendar/fabric.css +835 -1
- package/styles/calendar/fabric.scss +5 -1
- package/styles/calendar/fluent-dark.css +1000 -1
- package/styles/calendar/fluent-dark.scss +5 -1
- package/styles/calendar/fluent.css +1000 -1
- package/styles/calendar/fluent.scss +5 -1
- package/styles/calendar/highcontrast-light.css +825 -1
- package/styles/calendar/highcontrast-light.scss +5 -1
- package/styles/calendar/highcontrast.css +835 -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.css +834 -1
- package/styles/calendar/material-dark.scss +5 -1
- package/styles/calendar/material.css +835 -1
- package/styles/calendar/material.scss +5 -1
- package/styles/calendar/material3-dark.css +894 -1
- package/styles/calendar/material3-dark.scss +5 -1
- package/styles/calendar/material3.css +950 -1
- package/styles/calendar/material3.scss +5 -1
- package/styles/calendar/tailwind-dark.css +927 -1
- package/styles/calendar/tailwind-dark.scss +5 -1
- package/styles/calendar/tailwind.css +927 -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.css +449 -1
- package/styles/datepicker/bootstrap-dark.scss +7 -1
- package/styles/datepicker/bootstrap.css +450 -1
- package/styles/datepicker/bootstrap.scss +7 -1
- package/styles/datepicker/bootstrap4.css +462 -1
- package/styles/datepicker/bootstrap4.scss +7 -1
- package/styles/datepicker/bootstrap5-dark.css +460 -1
- package/styles/datepicker/bootstrap5-dark.scss +7 -1
- package/styles/datepicker/bootstrap5.css +460 -1
- package/styles/datepicker/bootstrap5.scss +7 -1
- package/styles/datepicker/fabric-dark.css +442 -1
- package/styles/datepicker/fabric-dark.scss +7 -1
- package/styles/datepicker/fabric.css +443 -1
- package/styles/datepicker/fabric.scss +7 -1
- package/styles/datepicker/fluent-dark.css +460 -1
- package/styles/datepicker/fluent-dark.scss +7 -1
- package/styles/datepicker/fluent.css +460 -1
- package/styles/datepicker/fluent.scss +7 -1
- package/styles/datepicker/highcontrast-light.css +455 -1
- package/styles/datepicker/highcontrast-light.scss +7 -1
- package/styles/datepicker/highcontrast.css +456 -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.css +491 -1
- package/styles/datepicker/material-dark.scss +7 -1
- package/styles/datepicker/material.css +500 -1
- package/styles/datepicker/material.scss +7 -1
- package/styles/datepicker/material3-dark.css +539 -1
- package/styles/datepicker/material3-dark.scss +7 -1
- package/styles/datepicker/material3.css +595 -1
- package/styles/datepicker/material3.scss +7 -1
- package/styles/datepicker/tailwind-dark.css +465 -1
- package/styles/datepicker/tailwind-dark.scss +7 -1
- package/styles/datepicker/tailwind.css +465 -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 +322 -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 +1030 -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 +282 -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.css +1177 -1
- package/styles/daterangepicker/bootstrap-dark.scss +7 -1
- package/styles/daterangepicker/bootstrap.css +1183 -1
- package/styles/daterangepicker/bootstrap.scss +7 -1
- package/styles/daterangepicker/bootstrap4.css +1195 -1
- package/styles/daterangepicker/bootstrap4.scss +7 -1
- package/styles/daterangepicker/bootstrap5-dark.css +1257 -1
- package/styles/daterangepicker/bootstrap5-dark.scss +7 -1
- package/styles/daterangepicker/bootstrap5.css +1257 -1
- package/styles/daterangepicker/bootstrap5.scss +7 -1
- package/styles/daterangepicker/fabric-dark.css +1177 -1
- package/styles/daterangepicker/fabric-dark.scss +7 -1
- package/styles/daterangepicker/fabric.css +1178 -1
- package/styles/daterangepicker/fabric.scss +7 -1
- package/styles/daterangepicker/fluent-dark.css +1295 -1
- package/styles/daterangepicker/fluent-dark.scss +7 -1
- package/styles/daterangepicker/fluent.css +1295 -1
- package/styles/daterangepicker/fluent.scss +7 -1
- package/styles/daterangepicker/highcontrast-light.css +1177 -1
- package/styles/daterangepicker/highcontrast-light.scss +7 -1
- package/styles/daterangepicker/highcontrast.css +1178 -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.css +1215 -1
- package/styles/daterangepicker/material-dark.scss +7 -1
- package/styles/daterangepicker/material.css +1229 -1
- package/styles/daterangepicker/material.scss +7 -1
- package/styles/daterangepicker/material3-dark.css +1322 -1
- package/styles/daterangepicker/material3-dark.scss +7 -1
- package/styles/daterangepicker/material3.css +1378 -1
- package/styles/daterangepicker/material3.scss +7 -1
- package/styles/daterangepicker/tailwind-dark.css +1196 -1
- package/styles/daterangepicker/tailwind-dark.scss +7 -1
- package/styles/daterangepicker/tailwind.css +1196 -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.css +190 -1
- package/styles/datetimepicker/bootstrap-dark.scss +8 -1
- package/styles/datetimepicker/bootstrap.css +190 -1
- package/styles/datetimepicker/bootstrap.scss +8 -1
- package/styles/datetimepicker/bootstrap4.css +192 -1
- package/styles/datetimepicker/bootstrap4.scss +8 -1
- package/styles/datetimepicker/bootstrap5-dark.css +191 -1
- package/styles/datetimepicker/bootstrap5-dark.scss +8 -1
- package/styles/datetimepicker/bootstrap5.css +191 -1
- package/styles/datetimepicker/bootstrap5.scss +8 -1
- package/styles/datetimepicker/fabric-dark.css +190 -1
- package/styles/datetimepicker/fabric-dark.scss +8 -1
- package/styles/datetimepicker/fabric.css +190 -1
- package/styles/datetimepicker/fabric.scss +8 -1
- package/styles/datetimepicker/fluent-dark.css +191 -1
- package/styles/datetimepicker/fluent-dark.scss +8 -1
- package/styles/datetimepicker/fluent.css +191 -1
- package/styles/datetimepicker/fluent.scss +8 -1
- package/styles/datetimepicker/highcontrast-light.css +190 -1
- package/styles/datetimepicker/highcontrast-light.scss +8 -1
- package/styles/datetimepicker/highcontrast.css +190 -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.css +240 -1
- package/styles/datetimepicker/material-dark.scss +8 -1
- package/styles/datetimepicker/material.css +257 -1
- package/styles/datetimepicker/material.scss +8 -1
- package/styles/datetimepicker/material3-dark.css +282 -1
- package/styles/datetimepicker/material3-dark.scss +8 -1
- package/styles/datetimepicker/material3.css +338 -1
- package/styles/datetimepicker/material3.scss +8 -1
- package/styles/datetimepicker/tailwind-dark.css +191 -1
- package/styles/datetimepicker/tailwind-dark.scss +8 -1
- package/styles/datetimepicker/tailwind.css +191 -1
- package/styles/datetimepicker/tailwind.scss +8 -1
- package/styles/fabric-dark.css +2951 -1
- package/styles/fabric.css +2958 -1
- package/styles/fluent-dark.css +3260 -1
- package/styles/fluent.css +3260 -1
- package/styles/highcontrast-light.css +2959 -1
- package/styles/highcontrast.css +2971 -1
- package/styles/material-dark.css +3130 -1
- package/styles/material.css +3179 -1
- package/styles/material3-dark.css +3218 -1
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +3274 -1
- package/styles/material3.scss +1 -0
- package/styles/tailwind-dark.css +3092 -1
- package/styles/tailwind.css +3092 -1
- 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.css +309 -1
- package/styles/timepicker/bootstrap-dark.scss +6 -1
- package/styles/timepicker/bootstrap.css +309 -1
- package/styles/timepicker/bootstrap.scss +6 -1
- package/styles/timepicker/bootstrap4.css +311 -1
- package/styles/timepicker/bootstrap4.scss +6 -1
- package/styles/timepicker/bootstrap5-dark.css +312 -1
- package/styles/timepicker/bootstrap5-dark.scss +6 -1
- package/styles/timepicker/bootstrap5.css +312 -1
- package/styles/timepicker/bootstrap5.scss +6 -1
- package/styles/timepicker/fabric-dark.css +309 -1
- package/styles/timepicker/fabric-dark.scss +6 -1
- package/styles/timepicker/fabric.css +309 -1
- package/styles/timepicker/fabric.scss +6 -1
- package/styles/timepicker/fluent-dark.css +310 -1
- package/styles/timepicker/fluent-dark.scss +6 -1
- package/styles/timepicker/fluent.css +310 -1
- package/styles/timepicker/fluent.scss +6 -1
- package/styles/timepicker/highcontrast-light.css +309 -1
- package/styles/timepicker/highcontrast-light.scss +6 -1
- package/styles/timepicker/highcontrast.css +309 -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.css +347 -1
- package/styles/timepicker/material-dark.scss +6 -1
- package/styles/timepicker/material.css +355 -1
- package/styles/timepicker/material.scss +6 -1
- package/styles/timepicker/material3-dark.css +398 -1
- package/styles/timepicker/material3-dark.scss +6 -1
- package/styles/timepicker/material3.css +454 -1
- package/styles/timepicker/material3.scss +6 -1
- package/styles/timepicker/tailwind-dark.css +310 -1
- package/styles/timepicker/tailwind-dark.scss +6 -1
- package/styles/timepicker/tailwind.css +310 -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
|
@@ -1 +1,595 @@
|
|
|
1
|
-
|
|
1
|
+
:root {
|
|
2
|
+
--color-sf-black: 0, 0, 0;
|
|
3
|
+
--color-sf-white: 255, 255, 255;
|
|
4
|
+
--color-sf-primary: 103, 80, 164;
|
|
5
|
+
--color-sf-primary-container: 234, 221, 255;
|
|
6
|
+
--color-sf-secondary: 98, 91, 113;
|
|
7
|
+
--color-sf-secondary-container: 232, 222, 248;
|
|
8
|
+
--color-sf-tertiary: 125, 82, 96;
|
|
9
|
+
--color-sf-tertiary-container: 255, 216, 228;
|
|
10
|
+
--color-sf-surface: 255, 255, 255;
|
|
11
|
+
--color-sf-surface-variant: 231, 224, 236;
|
|
12
|
+
--color-sf-background: var(--color-sf-surface);
|
|
13
|
+
--color-sf-on-primary: 255, 255, 255;
|
|
14
|
+
--color-sf-on-primary-container: 33, 0, 94;
|
|
15
|
+
--color-sf-on-secondary: 255, 255, 255;
|
|
16
|
+
--color-sf-on-secondary-container: 30, 25, 43;
|
|
17
|
+
--color-sf-on-tertiary: 255, 255, 255;
|
|
18
|
+
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
19
|
+
--color-sf-on-surface: 28, 27, 31;
|
|
20
|
+
--color-sf-on-surface-variant: 73, 69, 78;
|
|
21
|
+
--color-sf-on-background: 28, 27, 31;
|
|
22
|
+
--color-sf-outline: 121, 116, 126;
|
|
23
|
+
--color-sf-outline-variant: 196, 199, 197;
|
|
24
|
+
--color-sf-shadow: 0, 0, 0;
|
|
25
|
+
--color-sf-surface-tint-color: 103, 80, 164;
|
|
26
|
+
--color-sf-inverse-surface: 49, 48, 51;
|
|
27
|
+
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
28
|
+
--color-sf-inverse-primary: 208, 188, 255;
|
|
29
|
+
--color-sf-scrim: 0, 0, 0;
|
|
30
|
+
--color-sf-error: 179, 38, 30;
|
|
31
|
+
--color-sf-error-container: 249, 222, 220;
|
|
32
|
+
--color-sf-on-error: 255, 250, 250;
|
|
33
|
+
--color-sf-on-error-container: 65, 14, 11;
|
|
34
|
+
--color-sf-success: 32, 81, 7;
|
|
35
|
+
--color-sf-success-container: 209, 255, 186;
|
|
36
|
+
--color-sf-on-success: 244, 255, 239;
|
|
37
|
+
--color-sf-on-success-container: 13, 39, 0;
|
|
38
|
+
--color-sf-info: 1, 87, 155;
|
|
39
|
+
--color-sf-info-container: 233, 245, 255;
|
|
40
|
+
--color-sf-on-info: 250, 253, 255;
|
|
41
|
+
--color-sf-on-info-container: 0, 51, 91;
|
|
42
|
+
--color-sf-warning: 145, 76, 0;
|
|
43
|
+
--color-sf-warning-container: 254, 236, 222;
|
|
44
|
+
--color-sf-on-warning: 255, 255, 255;
|
|
45
|
+
--color-sf-on-warning-container: 47, 21, 0;
|
|
46
|
+
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
47
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
48
|
+
--color-sf-diagram-palette-background: --color-sf-white;
|
|
49
|
+
--color-sf-success-text: 255, 255, 255;
|
|
50
|
+
--color-sf-warning-text: 255, 255, 255;
|
|
51
|
+
--color-sf-danger-text: 255, 255, 255;
|
|
52
|
+
--color-sf-info-text: 255, 255, 255;
|
|
53
|
+
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
54
|
+
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.e-dark-mode {
|
|
58
|
+
--color-sf-black: 0, 0, 0;
|
|
59
|
+
--color-sf-white: 255, 255, 255;
|
|
60
|
+
--color-sf-primary: 208, 188, 255;
|
|
61
|
+
--color-sf-primary-container: 79, 55, 139;
|
|
62
|
+
--color-sf-secondary: 204, 194, 220;
|
|
63
|
+
--color-sf-secondary-container: 74, 68, 88;
|
|
64
|
+
--color-sf-tertiary: 239, 184, 200;
|
|
65
|
+
--color-sf-tertiary-container: 99, 59, 72;
|
|
66
|
+
--color-sf-surface: 28, 27, 31;
|
|
67
|
+
--color-sf-surface-variant: 28, 27, 31;
|
|
68
|
+
--color-sf-background: var(--color-sf-surface);
|
|
69
|
+
--color-sf-on-primary: 55, 30, 115;
|
|
70
|
+
--color-sf-on-primary-container: 234, 221, 255;
|
|
71
|
+
--color-sf-on-secondary: 51, 45, 65;
|
|
72
|
+
--color-sf-on-secondary-container: 232, 222, 248;
|
|
73
|
+
--color-sf-on-tertiary: 73, 37, 50;
|
|
74
|
+
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
75
|
+
--color-sf-on-surface: 230, 225, 229;
|
|
76
|
+
--color-sf-on-surface-variant: 202, 196, 208;
|
|
77
|
+
--color-sf-on-background: 230, 225, 229;
|
|
78
|
+
--color-sf-outline: 147, 143, 153;
|
|
79
|
+
--color-sf-outline-variant: 68, 71, 70;
|
|
80
|
+
--color-sf-shadow: 0, 0, 0;
|
|
81
|
+
--color-sf-surface-tint-color: 208, 188, 255;
|
|
82
|
+
--color-sf-inverse-surface: 230, 225, 229;
|
|
83
|
+
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
84
|
+
--color-sf-inverse-primary: 103, 80, 164;
|
|
85
|
+
--color-sf-scrim: 0, 0, 0;
|
|
86
|
+
--color-sf-error: 242, 184, 181;
|
|
87
|
+
--color-sf-error-container: 140, 29, 24;
|
|
88
|
+
--color-sf-on-error: 96, 20, 16;
|
|
89
|
+
--color-sf-on-error-container: 249, 222, 220;
|
|
90
|
+
--color-sf-success: 83, 202, 23;
|
|
91
|
+
--color-sf-success-container: 22, 62, 2;
|
|
92
|
+
--color-sf-on-success: 13, 39, 0;
|
|
93
|
+
--color-sf-on-success-container: 183, 250, 150;
|
|
94
|
+
--color-sf-info: 71, 172, 251;
|
|
95
|
+
--color-sf-info-container: 0, 67, 120;
|
|
96
|
+
--color-sf-on-info: 0, 51, 91;
|
|
97
|
+
--color-sf-on-info-container: 173, 219, 255;
|
|
98
|
+
--color-sf-warning: 245, 180, 130;
|
|
99
|
+
--color-sf-warning-container: 123, 65, 0;
|
|
100
|
+
--color-sf-on-warning: 99, 52, 0;
|
|
101
|
+
--color-sf-on-warning-container: 255, 220, 193;
|
|
102
|
+
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
103
|
+
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
104
|
+
--color-sf-success-text: 0, 0, 0;
|
|
105
|
+
--color-sf-warning-text: 0, 0, 0;
|
|
106
|
+
--color-sf-info-text: 0, 0, 0;
|
|
107
|
+
--color-sf-danger-text: 0, 0, 0;
|
|
108
|
+
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
109
|
+
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
110
|
+
}
|
|
111
|
+
|
|
112
|
+
/* stylelint-disable property-no-vendor-prefix */
|
|
113
|
+
@keyframes e-input-ripple {
|
|
114
|
+
100% {
|
|
115
|
+
opacity: 0;
|
|
116
|
+
transform: scale(4);
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
@keyframes slideTopUp {
|
|
120
|
+
from {
|
|
121
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
122
|
+
}
|
|
123
|
+
to {
|
|
124
|
+
transform: translate3d(0, 0, 0) scale(1);
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
/* stylelint-disable-line no-empty-source */ /*! calendar material3 theme variables */
|
|
128
|
+
/*! component icons */
|
|
129
|
+
.e-input-group-icon.e-date-icon,
|
|
130
|
+
*.e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
131
|
+
font-size: 16px;
|
|
132
|
+
margin: 0;
|
|
133
|
+
min-height: 30px;
|
|
134
|
+
min-width: 30px;
|
|
135
|
+
border-radius: 16px;
|
|
136
|
+
outline: none;
|
|
137
|
+
}
|
|
138
|
+
.e-input-group-icon.e-date-icon::before,
|
|
139
|
+
*.e-control-wrapper .e-input-group-icon.e-date-icon::before {
|
|
140
|
+
content: "\e778";
|
|
141
|
+
font-family: "e-icons";
|
|
142
|
+
}
|
|
143
|
+
.e-input-group-icon.e-date-icon:focus,
|
|
144
|
+
*.e-control-wrapper .e-input-group-icon.e-date-icon:focus {
|
|
145
|
+
background: rgba(var(--color-sf-on-surface), 0.08);
|
|
146
|
+
border-radius: 50%;
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
.e-bigger .e-input-group-icon.e-date-icon,
|
|
150
|
+
*.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon,
|
|
151
|
+
*.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
152
|
+
font-size: 20px;
|
|
153
|
+
margin: 0;
|
|
154
|
+
min-height: 38px;
|
|
155
|
+
min-width: 38px;
|
|
156
|
+
border-radius: 20px;
|
|
157
|
+
}
|
|
158
|
+
.e-bigger .e-input-group-icon.e-date-icon::before,
|
|
159
|
+
*.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon::before,
|
|
160
|
+
*.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon::before {
|
|
161
|
+
content: "\e778";
|
|
162
|
+
font-family: "e-icons";
|
|
163
|
+
}
|
|
164
|
+
.e-bigger .e-input-group-icon.e-date-icon:focus,
|
|
165
|
+
*.e-control-wrapper.e-bigger .e-input-group-icon.e-date-icon:focus,
|
|
166
|
+
*.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon:focus {
|
|
167
|
+
background: rgba(var(--color-sf-on-surface), 0.08);
|
|
168
|
+
border-radius: 50%;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.e-small .e-input-group-icon.e-date-icon,
|
|
172
|
+
*.e-control-wrapper.e-small .e-input-group-icon.e-date-icon,
|
|
173
|
+
*.e-small .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
174
|
+
font-size: 16px;
|
|
175
|
+
min-width: 22px;
|
|
176
|
+
min-height: 22px;
|
|
177
|
+
border-radius: 14px;
|
|
178
|
+
margin: 0;
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
.e-small.e-bigger .e-input-group-icon.e-date-icon,
|
|
182
|
+
*.e-control-wrapper.e-small.e-bigger .e-input-group-icon.e-date-icon,
|
|
183
|
+
*.e-small.e-bigger .e-control-wrapper .e-input-group-icon.e-date-icon {
|
|
184
|
+
font-size: 20px;
|
|
185
|
+
min-width: 34px;
|
|
186
|
+
min-height: 34px;
|
|
187
|
+
border-radius: 20px;
|
|
188
|
+
margin: 0;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-popup-close::before {
|
|
192
|
+
content: "\e7e7";
|
|
193
|
+
font-family: "e-icons";
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.e-input-group.e-control-wrapper.e-date-wrapper.e-non-edit.e-input-focus .e-input:focus ~ .e-clear-icon,
|
|
197
|
+
.e-float-input.e-control-wrapper.e-input-group.e-date-wrapper.e-non-edit.e-input-focus input:focus ~ .e-clear-icon {
|
|
198
|
+
display: -ms-flexbox;
|
|
199
|
+
display: flex;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
.e-date-wrapper:not(.e-filled) .e-date-icon.e-icons {
|
|
203
|
+
box-sizing: border-box;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
.e-datepicker .e-calendar .e-content table tbody tr.e-month-hide:last-child {
|
|
207
|
+
display: none;
|
|
208
|
+
}
|
|
209
|
+
.e-datepicker.e-popup-wrapper {
|
|
210
|
+
border-radius: 8px;
|
|
211
|
+
overflow-y: hidden;
|
|
212
|
+
pointer-events: auto;
|
|
213
|
+
}
|
|
214
|
+
.e-datepicker.e-date-modal {
|
|
215
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-primary), 0.05), rgba(var(--color-sf-primary), 0.05)), rgba(var(--color-sf-surface));
|
|
216
|
+
height: 100%;
|
|
217
|
+
left: 0;
|
|
218
|
+
opacity: 0.5;
|
|
219
|
+
pointer-events: auto;
|
|
220
|
+
position: fixed;
|
|
221
|
+
top: 0;
|
|
222
|
+
width: 100%;
|
|
223
|
+
z-index: 999;
|
|
224
|
+
}
|
|
225
|
+
.e-datepicker .e-model-header {
|
|
226
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
227
|
+
color: rgba(var(--color-sf-on-surface));
|
|
228
|
+
cursor: default;
|
|
229
|
+
display: block;
|
|
230
|
+
padding: 10px 10px 10px 15px;
|
|
231
|
+
}
|
|
232
|
+
.e-datepicker .e-model-header .e-model-year {
|
|
233
|
+
font-size: 14px;
|
|
234
|
+
font-weight: 500;
|
|
235
|
+
line-height: 32px;
|
|
236
|
+
margin: 0;
|
|
237
|
+
}
|
|
238
|
+
.e-datepicker .e-model-month, .e-datepicker .e-model-day {
|
|
239
|
+
font-size: 20px;
|
|
240
|
+
font-weight: 500;
|
|
241
|
+
line-height: 32px;
|
|
242
|
+
margin: 0;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/* stylelint-disable */
|
|
246
|
+
.e-date-overflow {
|
|
247
|
+
overflow: hidden !important;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.e-datepick-mob-popup-wrap {
|
|
251
|
+
-ms-flex-align: center;
|
|
252
|
+
align-items: center;
|
|
253
|
+
display: -ms-flexbox;
|
|
254
|
+
display: flex;
|
|
255
|
+
-ms-flex-direction: column;
|
|
256
|
+
flex-direction: column;
|
|
257
|
+
height: 100%;
|
|
258
|
+
-ms-flex-pack: center;
|
|
259
|
+
justify-content: center;
|
|
260
|
+
left: 0;
|
|
261
|
+
max-height: 100%;
|
|
262
|
+
position: fixed;
|
|
263
|
+
top: 0;
|
|
264
|
+
width: 100%;
|
|
265
|
+
z-index: 1002;
|
|
266
|
+
}
|
|
267
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-wrapper.e-lib.e-popup.e-control.e-popup-open {
|
|
268
|
+
position: relative;
|
|
269
|
+
top: 0 !important;
|
|
270
|
+
left: 0 !important;
|
|
271
|
+
}
|
|
272
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-wrapper.e-popup-expand.e-lib.e-popup.e-control.e-popup-open {
|
|
273
|
+
min-width: 100%;
|
|
274
|
+
min-height: 100%;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.e-content-placeholder.e-datepicker.e-placeholder-datepicker {
|
|
278
|
+
background-size: 250px 33px;
|
|
279
|
+
min-height: 33px;
|
|
280
|
+
}
|
|
281
|
+
|
|
282
|
+
.e-bigger .e-content-placeholder.e-datepicker.e-placeholder-datepicker,
|
|
283
|
+
.e-bigger.e-content-placeholder.e-datepicker.e-placeholder-datepicker {
|
|
284
|
+
background-size: 250px 40px;
|
|
285
|
+
min-height: 40px;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
@media screen and (orientation: landscape) {
|
|
289
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-content.e-month td.e-today span.e-day {
|
|
290
|
+
line-height: 64px;
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand {
|
|
294
|
+
border-radius: 0;
|
|
295
|
+
}
|
|
296
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device {
|
|
297
|
+
height: 15vh;
|
|
298
|
+
}
|
|
299
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device .e-popup-close {
|
|
300
|
+
float: right;
|
|
301
|
+
}
|
|
302
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device {
|
|
303
|
+
height: 15vh;
|
|
304
|
+
}
|
|
305
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device .e-popup-close {
|
|
306
|
+
float: right;
|
|
307
|
+
}
|
|
308
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header {
|
|
309
|
+
height: 20vh;
|
|
310
|
+
padding: 2vh 6vw;
|
|
311
|
+
}
|
|
312
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-day-wrapper {
|
|
313
|
+
margin: 12vh 0 0 0;
|
|
314
|
+
}
|
|
315
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-popup-close {
|
|
316
|
+
color: inherit;
|
|
317
|
+
float: left;
|
|
318
|
+
font-size: 20px;
|
|
319
|
+
}
|
|
320
|
+
@media (min-device-width: 768px) {
|
|
321
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-popup-close {
|
|
322
|
+
font-size: 18px;
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-btn.e-flat.e-popup-close {
|
|
326
|
+
background: transparent;
|
|
327
|
+
border-color: transparent;
|
|
328
|
+
box-shadow: none;
|
|
329
|
+
font-weight: 400;
|
|
330
|
+
padding: 0;
|
|
331
|
+
}
|
|
332
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-today.e-flat.e-primary {
|
|
333
|
+
color: inherit;
|
|
334
|
+
float: right;
|
|
335
|
+
}
|
|
336
|
+
@media (min-device-width: 768px) {
|
|
337
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-today.e-flat.e-primary {
|
|
338
|
+
font-size: 18px;
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-day {
|
|
342
|
+
font-size: 5vw;
|
|
343
|
+
line-height: 6vw;
|
|
344
|
+
}
|
|
345
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar {
|
|
346
|
+
min-width: 100%;
|
|
347
|
+
min-height: 100%;
|
|
348
|
+
height: 100%;
|
|
349
|
+
}
|
|
350
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade {
|
|
351
|
+
height: 10vh;
|
|
352
|
+
border-style: none;
|
|
353
|
+
border-width: 0;
|
|
354
|
+
border-color: rgba(var(--color-sf-outline-variant));
|
|
355
|
+
padding: 2vh 2vw;
|
|
356
|
+
line-height: 5vh;
|
|
357
|
+
}
|
|
358
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-title {
|
|
359
|
+
margin-left: 5vw;
|
|
360
|
+
position: inherit;
|
|
361
|
+
text-align: left;
|
|
362
|
+
vertical-align: middle;
|
|
363
|
+
width: 60vw;
|
|
364
|
+
line-height: inherit;
|
|
365
|
+
}
|
|
366
|
+
@media (min-device-width: 768px) {
|
|
367
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-title {
|
|
368
|
+
font-size: 18px;
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev {
|
|
372
|
+
margin-right: 18px;
|
|
373
|
+
vertical-align: inherit;
|
|
374
|
+
height: 35px;
|
|
375
|
+
width: 35px;
|
|
376
|
+
}
|
|
377
|
+
@media (min-device-width: 768px) {
|
|
378
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev {
|
|
379
|
+
height: 55px;
|
|
380
|
+
width: 55px;
|
|
381
|
+
}
|
|
382
|
+
}
|
|
383
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev .e-icons {
|
|
384
|
+
vertical-align: inherit;
|
|
385
|
+
}
|
|
386
|
+
@media (min-device-width: 768px) {
|
|
387
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev .e-icons {
|
|
388
|
+
font-size: 18px;
|
|
389
|
+
}
|
|
390
|
+
}
|
|
391
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-next, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-next, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-next {
|
|
392
|
+
margin-right: 0;
|
|
393
|
+
vertical-align: inherit;
|
|
394
|
+
height: 35px;
|
|
395
|
+
width: 35px;
|
|
396
|
+
}
|
|
397
|
+
@media (min-device-width: 768px) {
|
|
398
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-next, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-next, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-next {
|
|
399
|
+
height: 55px;
|
|
400
|
+
width: 55px;
|
|
401
|
+
}
|
|
402
|
+
}
|
|
403
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-next .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-next .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-next .e-icons {
|
|
404
|
+
vertical-align: inherit;
|
|
405
|
+
}
|
|
406
|
+
@media (min-device-width: 768px) {
|
|
407
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-next .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-next .e-icons, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-next .e-icons {
|
|
408
|
+
font-size: 18px;
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-icon-container, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-icon-container, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-icon-container {
|
|
412
|
+
float: right;
|
|
413
|
+
}
|
|
414
|
+
@media (min-device-width: 768px) {
|
|
415
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar th {
|
|
416
|
+
font-size: 18px;
|
|
417
|
+
height: 48px;
|
|
418
|
+
}
|
|
419
|
+
}
|
|
420
|
+
@media (min-device-width: 768px) {
|
|
421
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-content span.e-day {
|
|
422
|
+
font-size: 18px;
|
|
423
|
+
height: 64px;
|
|
424
|
+
width: 64px;
|
|
425
|
+
line-height: 64px;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container {
|
|
429
|
+
height: 79vh;
|
|
430
|
+
}
|
|
431
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-footer-container {
|
|
432
|
+
display: none;
|
|
433
|
+
}
|
|
434
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month {
|
|
435
|
+
height: 69vh;
|
|
436
|
+
}
|
|
437
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month table {
|
|
438
|
+
height: 69vh;
|
|
439
|
+
}
|
|
440
|
+
|
|
441
|
+
@media screen and (orientation: landscape) {
|
|
442
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device {
|
|
443
|
+
height: 25vh;
|
|
444
|
+
}
|
|
445
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header.e-blazor-device .e-popup-close {
|
|
446
|
+
float: right;
|
|
447
|
+
}
|
|
448
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-decade {
|
|
449
|
+
overflow-y: auto;
|
|
450
|
+
}
|
|
451
|
+
}
|
|
452
|
+
@media screen and (orientation: landscape) and (max-height: 600px) {
|
|
453
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-decade {
|
|
454
|
+
height: 50vh;
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
@media screen and (orientation: landscape) and (min-height: 600px) {
|
|
458
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-decade {
|
|
459
|
+
height: 60vh;
|
|
460
|
+
}
|
|
461
|
+
}
|
|
462
|
+
@media screen and (orientation: landscape) and (min-height: 600px) {
|
|
463
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-month table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-year table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-content.e-decade table {
|
|
464
|
+
height: 60vh;
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
@media screen and (orientation: landscape) and (min-height: 600px) {
|
|
468
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container .e-footer-container {
|
|
469
|
+
padding: 10px 0;
|
|
470
|
+
height: 10%;
|
|
471
|
+
font-size: 24px;
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
@media screen and (orientation: landscape) {
|
|
475
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header {
|
|
476
|
+
width: 100%;
|
|
477
|
+
}
|
|
478
|
+
}
|
|
479
|
+
@media screen and (orientation: landscape) and (max-height: 600px) {
|
|
480
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header {
|
|
481
|
+
height: 30vh;
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
@media screen and (orientation: landscape) and (min-height: 600px) {
|
|
485
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header {
|
|
486
|
+
height: 25vh;
|
|
487
|
+
}
|
|
488
|
+
}
|
|
489
|
+
@media screen and (orientation: landscape) {
|
|
490
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-popup-close {
|
|
491
|
+
float: left;
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
@media screen and (orientation: landscape) {
|
|
495
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-day-wrapper {
|
|
496
|
+
margin: 12vh 0 0 0;
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
@media screen and (orientation: landscape) {
|
|
500
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-model-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-model-header .e-model-day {
|
|
501
|
+
font-size: 4vw;
|
|
502
|
+
}
|
|
503
|
+
}
|
|
504
|
+
@media screen and (orientation: landscape) {
|
|
505
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-prev, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-prev {
|
|
506
|
+
margin-right: 18px;
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
@media screen and (orientation: landscape) and (max-height: 600px) {
|
|
510
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-title {
|
|
511
|
+
line-height: 12vh;
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
@media screen and (orientation: landscape) and (min-height: 600px) {
|
|
515
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-month .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-year .e-title, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar .e-header.e-decade .e-title {
|
|
516
|
+
line-height: inherit;
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
@media screen and (orientation: landscape) {
|
|
520
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade {
|
|
521
|
+
overflow-y: auto;
|
|
522
|
+
}
|
|
523
|
+
}
|
|
524
|
+
@media screen and (orientation: landscape) and (max-height: 600px) {
|
|
525
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade {
|
|
526
|
+
height: 60vh;
|
|
527
|
+
}
|
|
528
|
+
}
|
|
529
|
+
@media screen and (orientation: landscape) and (min-height: 600px) {
|
|
530
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade {
|
|
531
|
+
height: 65vh;
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
@media screen and (orientation: landscape) {
|
|
535
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar {
|
|
536
|
+
display: block;
|
|
537
|
+
max-width: 100%;
|
|
538
|
+
overflow: visible;
|
|
539
|
+
}
|
|
540
|
+
}
|
|
541
|
+
@media screen and (orientation: landscape) {
|
|
542
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar-cell-container {
|
|
543
|
+
height: 70%;
|
|
544
|
+
width: 100%;
|
|
545
|
+
}
|
|
546
|
+
}
|
|
547
|
+
@media screen and (orientation: landscape) {
|
|
548
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-calendar.e-device .e-month table tbody {
|
|
549
|
+
display: table-row-group;
|
|
550
|
+
}
|
|
551
|
+
}
|
|
552
|
+
@media screen and (orientation: landscape) and (max-height: 600px) {
|
|
553
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year table {
|
|
554
|
+
height: 69vh;
|
|
555
|
+
}
|
|
556
|
+
}
|
|
557
|
+
@media screen and (orientation: landscape) and (min-height: 600px) {
|
|
558
|
+
.e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-month table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-decade table, .e-datepick-mob-popup-wrap .e-datepicker.e-popup-expand .e-content.e-year table {
|
|
559
|
+
height: 65vh;
|
|
560
|
+
}
|
|
561
|
+
}
|
|
562
|
+
/* stylelint-enable */
|
|
563
|
+
.e-datepicker.e-popup-wrapper,
|
|
564
|
+
.e-bigger.e-small .e-datepicker.e-popup-wrapper,
|
|
565
|
+
.e-bigger .e-datepicker.e-popup-wrapper,
|
|
566
|
+
.e-small .e-datepicker.e-popup-wrapper,
|
|
567
|
+
.e-bigger.e-small.e-datepicker.e-popup-wrapper,
|
|
568
|
+
.e-bigger.e-datepicker.e-popup-wrapper,
|
|
569
|
+
.e-small.e-datepicker.e-popup-wrapper {
|
|
570
|
+
border: none;
|
|
571
|
+
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 4px 8px 3px rgba(0, 0, 0, 0.15);
|
|
572
|
+
}
|
|
573
|
+
.e-datepicker .e-calendar,
|
|
574
|
+
.e-bigger.e-small .e-datepicker .e-calendar,
|
|
575
|
+
.e-bigger .e-datepicker .e-calendar,
|
|
576
|
+
.e-small .e-datepicker .e-calendar,
|
|
577
|
+
.e-bigger.e-small.e-datepicker .e-calendar,
|
|
578
|
+
.e-bigger.e-datepicker .e-calendar,
|
|
579
|
+
.e-small.e-datepicker .e-calendar {
|
|
580
|
+
background: linear-gradient(0deg, rgba(var(--color-sf-surface), 1), rgba(var(--color-sf-surface), 1)), rgba(var(--color-sf-surface));
|
|
581
|
+
border: none;
|
|
582
|
+
}
|
|
583
|
+
|
|
584
|
+
*.e-input-group.e-date-wrapper.e-dateinput-active:active:not(.e-success):not(.e-warning):not(.e-error) {
|
|
585
|
+
border: none;
|
|
586
|
+
}
|
|
587
|
+
|
|
588
|
+
.e-date-wrapper span.e-input-group-icon.e-date-icon.e-icons.e-active {
|
|
589
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
590
|
+
}
|
|
591
|
+
.e-date-wrapper span.e-input-group-icon.e-date-icon.e-icons.e-active {
|
|
592
|
+
color: rgba(var(--color-sf-on-surface-variant));
|
|
593
|
+
border: 1px;
|
|
594
|
+
background: rgba(var(--color-sf-on-surface), 0.08);
|
|
595
|
+
}
|
|
@@ -1,2 +1,8 @@
|
|
|
1
1
|
|
|
2
|
-
|
|
2
|
+
|
|
3
|
+
@import 'ej2-inputs/styles/input/material3-definition.scss';
|
|
4
|
+
@import 'ej2-popups/styles/popup/material3-definition.scss';
|
|
5
|
+
@import '../calendar/material3-definition.scss';
|
|
6
|
+
@import 'material3-definition.scss';
|
|
7
|
+
@import 'icons/material3.scss';
|
|
8
|
+
@import 'all.scss';
|