@syncfusion/ej2-angular-inputs 22.2.7-ngcc → 22.2.7
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/color-picker/colorpicker-all.module.mjs +23 -0
- package/esm2020/src/color-picker/colorpicker.component.mjs +83 -0
- package/esm2020/src/color-picker/colorpicker.module.mjs +25 -0
- package/esm2020/src/form-validator/form-validator.mjs +193 -0
- package/esm2020/src/index.mjs +28 -0
- package/esm2020/src/maskedtextbox/maskedtextbox-all.module.mjs +23 -0
- package/esm2020/src/maskedtextbox/maskedtextbox.component.mjs +84 -0
- package/esm2020/src/maskedtextbox/maskedtextbox.module.mjs +25 -0
- package/esm2020/src/numerictextbox/numerictextbox-all.module.mjs +23 -0
- package/esm2020/src/numerictextbox/numerictextbox.component.mjs +84 -0
- package/esm2020/src/numerictextbox/numerictextbox.module.mjs +25 -0
- package/esm2020/src/rating/rating-all.module.mjs +23 -0
- package/esm2020/src/rating/rating.component.mjs +108 -0
- package/esm2020/src/rating/rating.module.mjs +25 -0
- package/esm2020/src/signature/signature-all.module.mjs +23 -0
- package/esm2020/src/signature/signature.component.mjs +83 -0
- package/esm2020/src/signature/signature.module.mjs +25 -0
- package/esm2020/src/slider/slider-all.module.mjs +23 -0
- package/esm2020/src/slider/slider.component.mjs +83 -0
- package/esm2020/src/slider/slider.module.mjs +25 -0
- package/esm2020/src/textbox/textbox-all.module.mjs +23 -0
- package/esm2020/src/textbox/textbox.component.mjs +84 -0
- package/esm2020/src/textbox/textbox.module.mjs +25 -0
- package/esm2020/src/uploader/files.directive.mjs +58 -0
- package/esm2020/src/uploader/uploader-all.module.mjs +23 -0
- package/esm2020/src/uploader/uploader.component.mjs +95 -0
- package/esm2020/src/uploader/uploader.module.mjs +34 -0
- package/esm2020/syncfusion-ej2-angular-inputs.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-inputs.mjs +1237 -0
- package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1237 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- package/src/color-picker/colorpicker-all.module.d.ts +6 -0
- package/src/color-picker/colorpicker.component.d.ts +3 -0
- package/src/color-picker/colorpicker.module.d.ts +6 -0
- package/src/maskedtextbox/maskedtextbox-all.module.d.ts +6 -0
- package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -0
- package/src/maskedtextbox/maskedtextbox.module.d.ts +6 -0
- package/src/numerictextbox/numerictextbox-all.module.d.ts +6 -0
- package/src/numerictextbox/numerictextbox.component.d.ts +3 -0
- package/src/numerictextbox/numerictextbox.module.d.ts +6 -0
- package/src/rating/rating-all.module.d.ts +6 -0
- package/src/rating/rating.component.d.ts +3 -0
- package/src/rating/rating.module.d.ts +6 -0
- package/src/signature/signature-all.module.d.ts +6 -0
- package/src/signature/signature.component.d.ts +3 -0
- package/src/signature/signature.module.d.ts +6 -0
- package/src/slider/slider-all.module.d.ts +6 -0
- package/src/slider/slider.component.d.ts +3 -0
- package/src/slider/slider.module.d.ts +6 -0
- package/src/textbox/textbox-all.module.d.ts +6 -0
- package/src/textbox/textbox.component.d.ts +3 -0
- package/src/textbox/textbox.module.d.ts +6 -0
- package/src/uploader/files.directive.d.ts +5 -0
- package/src/uploader/uploader-all.module.d.ts +6 -0
- package/src/uploader/uploader.component.d.ts +3 -0
- package/src/uploader/uploader.module.d.ts +7 -0
- package/styles/color-picker/_all.scss +2 -0
- package/styles/color-picker/_bootstrap-dark-definition.scss +131 -0
- package/styles/color-picker/_bootstrap-definition.scss +128 -0
- package/styles/color-picker/_bootstrap4-definition.scss +127 -0
- package/styles/color-picker/_bootstrap5-dark-definition.scss +1 -0
- package/styles/color-picker/_bootstrap5-definition.scss +133 -0
- package/styles/color-picker/_fabric-dark-definition.scss +131 -0
- package/styles/color-picker/_fabric-definition.scss +127 -0
- package/styles/color-picker/_fluent-dark-definition.scss +1 -0
- package/styles/color-picker/_fluent-definition.scss +133 -0
- package/styles/color-picker/_fusionnew-definition.scss +133 -0
- package/styles/color-picker/_highcontrast-definition.scss +127 -0
- package/styles/color-picker/_highcontrast-light-definition.scss +130 -0
- package/styles/color-picker/_layout.scss +1304 -0
- package/styles/color-picker/_material-dark-definition.scss +135 -0
- package/styles/color-picker/_material-definition.scss +130 -0
- package/styles/color-picker/_material3-dark-definition.scss +1 -0
- package/styles/color-picker/_material3-definition.scss +141 -0
- package/styles/color-picker/_tailwind-dark-definition.scss +1 -0
- package/styles/color-picker/_tailwind-definition.scss +132 -0
- package/styles/color-picker/_theme.scss +191 -0
- package/styles/color-picker/bootstrap-dark.scss +11 -1
- package/styles/color-picker/bootstrap.scss +11 -1
- package/styles/color-picker/bootstrap4.scss +11 -1
- package/styles/color-picker/bootstrap5-dark.scss +11 -1
- package/styles/color-picker/bootstrap5.scss +11 -1
- package/styles/color-picker/fabric-dark.scss +11 -1
- package/styles/color-picker/fabric.scss +11 -1
- package/styles/color-picker/fluent-dark.scss +11 -1
- package/styles/color-picker/fluent.scss +11 -1
- package/styles/color-picker/highcontrast-light.scss +11 -1
- package/styles/color-picker/highcontrast.scss +11 -1
- package/styles/color-picker/icons/_bootstrap-dark.scss +9 -0
- package/styles/color-picker/icons/_bootstrap.scss +9 -0
- package/styles/color-picker/icons/_bootstrap4.scss +9 -0
- package/styles/color-picker/icons/_bootstrap5-dark.scss +1 -0
- package/styles/color-picker/icons/_bootstrap5.scss +9 -0
- package/styles/color-picker/icons/_fabric-dark.scss +9 -0
- package/styles/color-picker/icons/_fabric.scss +9 -0
- package/styles/color-picker/icons/_fluent-dark.scss +1 -0
- package/styles/color-picker/icons/_fluent.scss +9 -0
- package/styles/color-picker/icons/_fusionnew.scss +9 -0
- package/styles/color-picker/icons/_highcontrast-light.scss +9 -0
- package/styles/color-picker/icons/_highcontrast.scss +9 -0
- package/styles/color-picker/icons/_material-dark.scss +9 -0
- package/styles/color-picker/icons/_material.scss +9 -0
- package/styles/color-picker/icons/_material3-dark.scss +1 -0
- package/styles/color-picker/icons/_material3.scss +9 -0
- package/styles/color-picker/icons/_tailwind-dark.scss +9 -0
- package/styles/color-picker/icons/_tailwind.scss +9 -0
- package/styles/color-picker/material-dark.scss +11 -1
- package/styles/color-picker/material.scss +11 -1
- package/styles/color-picker/material3-dark.scss +11 -1
- package/styles/color-picker/material3.scss +11 -1
- package/styles/color-picker/tailwind-dark.scss +11 -1
- package/styles/color-picker/tailwind.scss +11 -1
- package/styles/input/_all.scss +3 -0
- package/styles/input/_bootstrap-dark-definition.scss +329 -0
- package/styles/input/_bootstrap-definition.scss +320 -0
- package/styles/input/_bootstrap4-definition.scss +325 -0
- package/styles/input/_bootstrap5-dark-definition.scss +1 -0
- package/styles/input/_bootstrap5-definition.scss +336 -0
- package/styles/input/_definition.scss +232 -0
- package/styles/input/_fabric-dark-definition.scss +319 -0
- package/styles/input/_fabric-definition.scss +311 -0
- package/styles/input/_fluent-dark-definition.scss +1 -0
- package/styles/input/_fluent-definition.scss +338 -0
- package/styles/input/_fusionnew-definition.scss +336 -0
- package/styles/input/_highcontrast-definition.scss +312 -0
- package/styles/input/_highcontrast-light-definition.scss +320 -0
- package/styles/input/_layout.scss +11285 -0
- package/styles/input/_material-dark-definition.scss +573 -0
- package/styles/input/_material-definition.scss +573 -0
- package/styles/input/_material3-dark-definition.scss +1 -0
- package/styles/input/_material3-definition.scss +548 -0
- package/styles/input/_responsive.scss +1 -0
- package/styles/input/_tailwind-dark-definition.scss +1 -0
- package/styles/input/_tailwind-definition.scss +335 -0
- package/styles/input/_theme.scss +4284 -0
- package/styles/input/bootstrap-dark.scss +4 -1
- package/styles/input/bootstrap.scss +4 -1
- package/styles/input/bootstrap4.scss +4 -1
- package/styles/input/bootstrap5-dark.scss +4 -1
- package/styles/input/bootstrap5.scss +4 -1
- package/styles/input/fabric-dark.scss +4 -1
- package/styles/input/fabric.scss +4 -1
- package/styles/input/fluent-dark.scss +4 -1
- package/styles/input/fluent.scss +4 -1
- package/styles/input/highcontrast-light.scss +4 -1
- package/styles/input/highcontrast.scss +4 -1
- package/styles/input/icons/_bootstrap-dark.scss +17 -0
- package/styles/input/icons/_bootstrap.scss +17 -0
- package/styles/input/icons/_bootstrap4.scss +17 -0
- package/styles/input/icons/_bootstrap5-dark.scss +1 -0
- package/styles/input/icons/_bootstrap5.scss +17 -0
- package/styles/input/icons/_fabric-dark.scss +17 -0
- package/styles/input/icons/_fabric.scss +17 -0
- package/styles/input/icons/_fluent-dark.scss +1 -0
- package/styles/input/icons/_fluent.scss +17 -0
- package/styles/input/icons/_fusionnew.scss +17 -0
- package/styles/input/icons/_highcontrast-light.scss +17 -0
- package/styles/input/icons/_highcontrast.scss +17 -0
- package/styles/input/icons/_material-dark.scss +49 -0
- package/styles/input/icons/_material.scss +49 -0
- package/styles/input/icons/_material3-dark.scss +1 -0
- package/styles/input/icons/_material3.scss +17 -0
- package/styles/input/icons/_tailwind-dark.scss +1 -0
- package/styles/input/icons/_tailwind.scss +17 -0
- package/styles/input/material-dark.scss +4 -1
- package/styles/input/material.scss +4 -1
- package/styles/input/material3-dark.scss +4 -1
- package/styles/input/material3.scss +4 -1
- package/styles/input/tailwind-dark.scss +4 -1
- package/styles/input/tailwind.scss +4 -1
- package/styles/maskedtextbox/_all.scss +2 -0
- package/styles/maskedtextbox/_bootstrap-dark-definition.scss +7 -0
- package/styles/maskedtextbox/_bootstrap-definition.scss +4 -0
- package/styles/maskedtextbox/_bootstrap4-definition.scss +4 -0
- package/styles/maskedtextbox/_bootstrap5-dark-definition.scss +1 -0
- package/styles/maskedtextbox/_bootstrap5-definition.scss +7 -0
- package/styles/maskedtextbox/_fabric-dark-definition.scss +7 -0
- package/styles/maskedtextbox/_fabric-definition.scss +4 -0
- package/styles/maskedtextbox/_fluent-dark-definition.scss +1 -0
- package/styles/maskedtextbox/_fluent-definition.scss +7 -0
- package/styles/maskedtextbox/_fusionnew-definition.scss +7 -0
- package/styles/maskedtextbox/_highcontrast-definition.scss +4 -0
- package/styles/maskedtextbox/_highcontrast-light-definition.scss +7 -0
- package/styles/maskedtextbox/_layout.scss +33 -0
- package/styles/maskedtextbox/_material-dark-definition.scss +7 -0
- package/styles/maskedtextbox/_material-definition.scss +4 -0
- package/styles/maskedtextbox/_material3-dark-definition.scss +1 -0
- package/styles/maskedtextbox/_material3-definition.scss +4 -0
- package/styles/maskedtextbox/_tailwind-dark-definition.scss +1 -0
- package/styles/maskedtextbox/_tailwind-definition.scss +7 -0
- package/styles/maskedtextbox/_theme.scss +15 -0
- package/styles/maskedtextbox/bootstrap-dark.scss +4 -1
- package/styles/maskedtextbox/bootstrap.scss +4 -1
- package/styles/maskedtextbox/bootstrap4.scss +4 -1
- package/styles/maskedtextbox/bootstrap5-dark.scss +4 -1
- package/styles/maskedtextbox/bootstrap5.scss +4 -1
- package/styles/maskedtextbox/fabric-dark.scss +4 -1
- package/styles/maskedtextbox/fabric.scss +4 -1
- package/styles/maskedtextbox/fluent-dark.scss +4 -1
- package/styles/maskedtextbox/fluent.scss +4 -1
- package/styles/maskedtextbox/highcontrast-light.scss +4 -1
- package/styles/maskedtextbox/highcontrast.scss +4 -1
- package/styles/maskedtextbox/material-dark.scss +4 -1
- package/styles/maskedtextbox/material.scss +4 -1
- package/styles/maskedtextbox/material3-dark.scss +4 -1
- package/styles/maskedtextbox/material3.scss +4 -1
- package/styles/maskedtextbox/tailwind-dark.scss +4 -1
- package/styles/maskedtextbox/tailwind.scss +4 -1
- package/styles/material3-dark.css +0 -448
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +33 -921
- package/styles/material3.scss +1 -0
- package/styles/numerictextbox/_all.scss +2 -0
- package/styles/numerictextbox/_bootstrap-dark-definition.scss +6 -0
- package/styles/numerictextbox/_bootstrap-definition.scss +3 -0
- package/styles/numerictextbox/_bootstrap4-definition.scss +3 -0
- package/styles/numerictextbox/_bootstrap5-dark-definition.scss +1 -0
- package/styles/numerictextbox/_bootstrap5-definition.scss +3 -0
- package/styles/numerictextbox/_fabric-dark-definition.scss +6 -0
- package/styles/numerictextbox/_fabric-definition.scss +3 -0
- package/styles/numerictextbox/_fluent-dark-definition.scss +1 -0
- package/styles/numerictextbox/_fluent-definition.scss +5 -0
- package/styles/numerictextbox/_fusionnew-definition.scss +3 -0
- package/styles/numerictextbox/_highcontrast-definition.scss +3 -0
- package/styles/numerictextbox/_highcontrast-light-definition.scss +6 -0
- package/styles/numerictextbox/_layout.scss +30 -0
- package/styles/numerictextbox/_material-dark-definition.scss +6 -0
- package/styles/numerictextbox/_material-definition.scss +3 -0
- package/styles/numerictextbox/_material3-dark-definition.scss +1 -0
- package/styles/numerictextbox/_material3-definition.scss +4 -0
- package/styles/numerictextbox/_tailwind-dark-definition.scss +1 -0
- package/styles/numerictextbox/_tailwind-definition.scss +3 -0
- package/styles/numerictextbox/_theme.scss +39 -0
- package/styles/numerictextbox/bootstrap-dark.scss +5 -1
- package/styles/numerictextbox/bootstrap.scss +5 -1
- package/styles/numerictextbox/bootstrap4.scss +5 -1
- package/styles/numerictextbox/bootstrap5-dark.scss +5 -1
- package/styles/numerictextbox/bootstrap5.scss +5 -1
- package/styles/numerictextbox/fabric-dark.scss +5 -1
- package/styles/numerictextbox/fabric.scss +5 -1
- package/styles/numerictextbox/fluent-dark.scss +5 -1
- package/styles/numerictextbox/fluent.scss +5 -1
- package/styles/numerictextbox/highcontrast-light.scss +5 -1
- package/styles/numerictextbox/highcontrast.scss +5 -1
- package/styles/numerictextbox/icons/_bootstrap-dark.scss +11 -0
- package/styles/numerictextbox/icons/_bootstrap.scss +11 -0
- package/styles/numerictextbox/icons/_bootstrap4.scss +11 -0
- package/styles/numerictextbox/icons/_bootstrap5-dark.scss +1 -0
- package/styles/numerictextbox/icons/_bootstrap5.scss +11 -0
- package/styles/numerictextbox/icons/_fabric-dark.scss +11 -0
- package/styles/numerictextbox/icons/_fabric.scss +11 -0
- package/styles/numerictextbox/icons/_fluent-dark.scss +1 -0
- package/styles/numerictextbox/icons/_fluent.scss +11 -0
- package/styles/numerictextbox/icons/_fusionnew.scss +11 -0
- package/styles/numerictextbox/icons/_highcontrast-light.scss +11 -0
- package/styles/numerictextbox/icons/_highcontrast.scss +11 -0
- package/styles/numerictextbox/icons/_material-dark.scss +11 -0
- package/styles/numerictextbox/icons/_material.scss +11 -0
- package/styles/numerictextbox/icons/_material3-dark.scss +1 -0
- package/styles/numerictextbox/icons/_material3.scss +11 -0
- package/styles/numerictextbox/icons/_tailwind-dark.scss +1 -0
- package/styles/numerictextbox/icons/_tailwind.scss +11 -0
- package/styles/numerictextbox/material-dark.scss +5 -1
- package/styles/numerictextbox/material.scss +5 -1
- package/styles/numerictextbox/material3-dark.scss +5 -1
- package/styles/numerictextbox/material3.scss +5 -1
- package/styles/numerictextbox/tailwind-dark.scss +5 -1
- package/styles/numerictextbox/tailwind.scss +5 -1
- package/styles/rating/_all.scss +2 -0
- package/styles/rating/_bootstrap-dark-definition.scss +47 -0
- package/styles/rating/_bootstrap-definition.scss +47 -0
- package/styles/rating/_bootstrap4-definition.scss +47 -0
- package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
- package/styles/rating/_bootstrap5-definition.scss +47 -0
- package/styles/rating/_fabric-dark-definition.scss +47 -0
- package/styles/rating/_fabric-definition.scss +47 -0
- package/styles/rating/_fluent-dark-definition.scss +1 -0
- package/styles/rating/_fluent-definition.scss +47 -0
- package/styles/rating/_fusionnew-definition.scss +47 -0
- package/styles/rating/_highcontrast-definition.scss +47 -0
- package/styles/rating/_highcontrast-light-definition.scss +47 -0
- package/styles/rating/_layout.scss +211 -0
- package/styles/rating/_material-dark-definition.scss +47 -0
- package/styles/rating/_material-definition.scss +47 -0
- package/styles/rating/_material3-dark-definition.scss +1 -0
- package/styles/rating/_material3-definition.scss +47 -0
- package/styles/rating/_tailwind-dark-definition.scss +1 -0
- package/styles/rating/_tailwind-definition.scss +47 -0
- package/styles/rating/_theme.scss +192 -0
- package/styles/rating/bootstrap-dark.scss +4 -1
- package/styles/rating/bootstrap.scss +4 -1
- package/styles/rating/bootstrap4.scss +4 -1
- package/styles/rating/bootstrap5-dark.scss +4 -1
- package/styles/rating/bootstrap5.scss +4 -1
- package/styles/rating/fabric-dark.scss +4 -1
- package/styles/rating/fabric.scss +4 -1
- package/styles/rating/fluent-dark.scss +4 -1
- package/styles/rating/fluent.scss +4 -1
- package/styles/rating/highcontrast-light.scss +4 -1
- package/styles/rating/highcontrast.scss +4 -1
- package/styles/rating/material-dark.scss +4 -1
- package/styles/rating/material.scss +4 -1
- package/styles/rating/material3-dark.scss +4 -1
- package/styles/rating/material3.scss +4 -1
- package/styles/rating/tailwind-dark.scss +4 -1
- package/styles/rating/tailwind.scss +4 -1
- package/styles/signature/_all.scss +2 -0
- package/styles/signature/_bootstrap-dark-definition.scss +3 -0
- package/styles/signature/_bootstrap-definition.scss +3 -0
- package/styles/signature/_bootstrap4-definition.scss +3 -0
- package/styles/signature/_bootstrap5-dark-definition.scss +1 -0
- package/styles/signature/_bootstrap5-definition.scss +3 -0
- package/styles/signature/_fabric-dark-definition.scss +3 -0
- package/styles/signature/_fabric-definition.scss +3 -0
- package/styles/signature/_fluent-dark-definition.scss +1 -0
- package/styles/signature/_fluent-definition.scss +3 -0
- package/styles/signature/_fusionnew-definition.scss +3 -0
- package/styles/signature/_highcontrast-definition.scss +3 -0
- package/styles/signature/_highcontrast-light-definition.scss +3 -0
- package/styles/signature/_layout.scss +5 -0
- package/styles/signature/_material-dark-definition.scss +3 -0
- package/styles/signature/_material-definition.scss +3 -0
- package/styles/signature/_material3-dark-definition.scss +1 -0
- package/styles/signature/_material3-definition.scss +3 -0
- package/styles/signature/_tailwind-dark-definition.scss +1 -0
- package/styles/signature/_tailwind-definition.scss +3 -0
- package/styles/signature/_theme.scss +7 -0
- package/styles/signature/bootstrap-dark.scss +3 -1
- package/styles/signature/bootstrap.scss +3 -1
- package/styles/signature/bootstrap4.scss +3 -1
- package/styles/signature/bootstrap5-dark.scss +3 -1
- package/styles/signature/bootstrap5.scss +3 -1
- package/styles/signature/fabric-dark.scss +3 -1
- package/styles/signature/fabric.scss +3 -1
- package/styles/signature/fluent-dark.scss +3 -1
- package/styles/signature/fluent.scss +3 -1
- package/styles/signature/highcontrast-light.scss +3 -1
- package/styles/signature/highcontrast.scss +3 -1
- package/styles/signature/material-dark.scss +3 -1
- package/styles/signature/material.scss +3 -1
- package/styles/signature/material3-dark.scss +3 -1
- package/styles/signature/material3.scss +3 -1
- package/styles/signature/tailwind-dark.scss +3 -1
- package/styles/signature/tailwind.scss +3 -1
- package/styles/slider/_all.scss +3 -0
- package/styles/slider/_bootstrap-dark-definition.scss +156 -0
- package/styles/slider/_bootstrap-definition.scss +152 -0
- package/styles/slider/_bootstrap4-definition.scss +147 -0
- package/styles/slider/_bootstrap5-dark-definition.scss +1 -0
- package/styles/slider/_bootstrap5-definition.scss +90 -0
- package/styles/slider/_fabric-dark-definition.scss +162 -0
- package/styles/slider/_fabric-definition.scss +156 -0
- package/styles/slider/_fluent-dark-definition.scss +1 -0
- package/styles/slider/_fluent-definition.scss +74 -0
- package/styles/slider/_fusionnew-definition.scss +90 -0
- package/styles/slider/_highcontrast-definition.scss +145 -0
- package/styles/slider/_highcontrast-light-definition.scss +149 -0
- package/styles/slider/_icons.scss +1 -0
- package/styles/slider/_layout.scss +2485 -0
- package/styles/slider/_material-dark-definition.scss +159 -0
- package/styles/slider/_material-definition.scss +154 -0
- package/styles/slider/_material3-dark-definition.scss +1 -0
- package/styles/slider/_material3-definition.scss +97 -0
- package/styles/slider/_tailwind-dark-definition.scss +1 -0
- package/styles/slider/_tailwind-definition.scss +84 -0
- package/styles/slider/_theme.scss +249 -0
- package/styles/slider/bootstrap-dark.scss +5 -1
- package/styles/slider/bootstrap.scss +5 -1
- package/styles/slider/bootstrap4.scss +5 -1
- package/styles/slider/bootstrap5-dark.scss +5 -1
- package/styles/slider/bootstrap5.scss +5 -1
- package/styles/slider/fabric-dark.scss +5 -1
- package/styles/slider/fabric.scss +5 -1
- package/styles/slider/fluent-dark.scss +5 -1
- package/styles/slider/fluent.scss +5 -1
- package/styles/slider/highcontrast-light.scss +5 -1
- package/styles/slider/highcontrast.scss +5 -1
- package/styles/slider/material-dark.scss +5 -1
- package/styles/slider/material.scss +5 -1
- package/styles/slider/material3-dark.scss +5 -1
- package/styles/slider/material3.scss +5 -1
- package/styles/slider/tailwind-dark.scss +5 -1
- package/styles/slider/tailwind.scss +5 -1
- package/styles/textbox/_all.scss +1 -0
- package/styles/textbox/_bootstrap-dark-definition.scss +4 -0
- package/styles/textbox/_bootstrap-definition.scss +4 -0
- package/styles/textbox/_bootstrap4-definition.scss +4 -0
- package/styles/textbox/_bootstrap5-dark-definition.scss +1 -0
- package/styles/textbox/_bootstrap5-definition.scss +4 -0
- package/styles/textbox/_fabric-dark-definition.scss +4 -0
- package/styles/textbox/_fabric-definition.scss +4 -0
- package/styles/textbox/_fluent-dark-definition.scss +1 -0
- package/styles/textbox/_fluent-definition.scss +4 -0
- package/styles/textbox/_fusionnew-definition.scss +4 -0
- package/styles/textbox/_highcontrast-definition.scss +4 -0
- package/styles/textbox/_highcontrast-light-definition.scss +4 -0
- package/styles/textbox/_layout.scss +37 -0
- package/styles/textbox/_material-dark-definition.scss +4 -0
- package/styles/textbox/_material-definition.scss +4 -0
- package/styles/textbox/_material3-dark-definition.scss +1 -0
- package/styles/textbox/_material3-definition.scss +4 -0
- package/styles/textbox/_tailwind-dark-definition.scss +1 -0
- package/styles/textbox/_tailwind-definition.scss +4 -0
- package/styles/textbox/_theme.scss +1 -0
- package/styles/textbox/bootstrap-dark.scss +4 -1
- package/styles/textbox/bootstrap.scss +4 -1
- package/styles/textbox/bootstrap4.scss +4 -1
- package/styles/textbox/bootstrap5-dark.scss +4 -1
- package/styles/textbox/bootstrap5.scss +4 -1
- package/styles/textbox/fabric-dark.scss +4 -1
- package/styles/textbox/fabric.scss +4 -1
- package/styles/textbox/fluent-dark.scss +4 -1
- package/styles/textbox/fluent.scss +4 -1
- package/styles/textbox/highcontrast-light.scss +4 -1
- package/styles/textbox/highcontrast.scss +4 -1
- package/styles/textbox/material-dark.scss +4 -1
- package/styles/textbox/material.scss +4 -1
- package/styles/textbox/material3-dark.scss +4 -1
- package/styles/textbox/material3.scss +4 -1
- package/styles/textbox/tailwind-dark.scss +4 -1
- package/styles/textbox/tailwind.scss +4 -1
- package/styles/uploader/_all.scss +2 -0
- package/styles/uploader/_bootstrap-dark-definition.scss +213 -0
- package/styles/uploader/_bootstrap-definition.scss +208 -0
- package/styles/uploader/_bootstrap4-definition.scss +211 -0
- package/styles/uploader/_bootstrap5-dark-definition.scss +1 -0
- package/styles/uploader/_bootstrap5-definition.scss +216 -0
- package/styles/uploader/_definition.scss +142 -0
- package/styles/uploader/_fabric-dark-definition.scss +216 -0
- package/styles/uploader/_fabric-definition.scss +210 -0
- package/styles/uploader/_fluent-dark-definition.scss +1 -0
- package/styles/uploader/_fluent-definition.scss +234 -0
- package/styles/uploader/_fusionnew-definition.scss +216 -0
- package/styles/uploader/_highcontrast-definition.scss +211 -0
- package/styles/uploader/_highcontrast-light-definition.scss +219 -0
- package/styles/uploader/_layout.scss +989 -0
- package/styles/uploader/_material-dark-definition.scss +217 -0
- package/styles/uploader/_material-definition.scss +214 -0
- package/styles/uploader/_material3-dark-definition.scss +1 -0
- package/styles/uploader/_material3-definition.scss +215 -0
- package/styles/uploader/_tailwind-dark-definition.scss +1 -0
- package/styles/uploader/_tailwind-definition.scss +232 -0
- package/styles/uploader/_theme.scss +146 -0
- package/styles/uploader/bootstrap-dark.scss +6 -1
- package/styles/uploader/bootstrap.scss +6 -1
- package/styles/uploader/bootstrap4.scss +6 -1
- package/styles/uploader/bootstrap5-dark.scss +6 -1
- package/styles/uploader/bootstrap5.scss +6 -1
- package/styles/uploader/fabric-dark.scss +6 -1
- package/styles/uploader/fabric.scss +6 -1
- package/styles/uploader/fluent-dark.scss +6 -1
- package/styles/uploader/fluent.scss +6 -1
- package/styles/uploader/highcontrast-light.scss +6 -1
- package/styles/uploader/highcontrast.scss +6 -1
- package/styles/uploader/icons/_bootstrap-dark.scss +34 -0
- package/styles/uploader/icons/_bootstrap.scss +34 -0
- package/styles/uploader/icons/_bootstrap4.scss +34 -0
- package/styles/uploader/icons/_bootstrap5-dark.scss +1 -0
- package/styles/uploader/icons/_bootstrap5.scss +34 -0
- package/styles/uploader/icons/_fabric-dark.scss +34 -0
- package/styles/uploader/icons/_fabric.scss +34 -0
- package/styles/uploader/icons/_fluent-dark.scss +1 -0
- package/styles/uploader/icons/_fluent.scss +34 -0
- package/styles/uploader/icons/_fusionnew.scss +34 -0
- package/styles/uploader/icons/_highcontrast-light.scss +34 -0
- package/styles/uploader/icons/_highcontrast.scss +34 -0
- package/styles/uploader/icons/_material-dark.scss +34 -0
- package/styles/uploader/icons/_material.scss +34 -0
- package/styles/uploader/icons/_material3-dark.scss +1 -0
- package/styles/uploader/icons/_material3.scss +34 -0
- package/styles/uploader/icons/_tailwind-dark.scss +1 -0
- package/styles/uploader/icons/_tailwind.scss +34 -0
- package/styles/uploader/material-dark.scss +6 -1
- package/styles/uploader/material.scss +6 -1
- package/styles/uploader/material3-dark.scss +6 -1
- package/styles/uploader/material3.scss +6 -1
- package/styles/uploader/tailwind-dark.scss +6 -1
- package/styles/uploader/tailwind.scss +6 -1
- package/syncfusion-ej2-angular-inputs.d.ts +5 -0
- package/@syncfusion/ej2-angular-inputs.es5.js +0 -1759
- package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-inputs.js +0 -1657
- package/@syncfusion/ej2-angular-inputs.js.map +0 -1
- package/CHANGELOG.md +0 -1540
- package/dist/ej2-angular-inputs.umd.js +0 -1848
- package/dist/ej2-angular-inputs.umd.js.map +0 -1
- package/dist/ej2-angular-inputs.umd.min.js +0 -11
- package/dist/ej2-angular-inputs.umd.min.js.map +0 -1
- package/ej2-angular-inputs.d.ts +0 -12
- package/ej2-angular-inputs.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
|
@@ -1,12 +1,4 @@
|
|
|
1
1
|
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
2
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
3
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
4
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
5
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
6
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
7
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
8
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
9
|
-
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
|
|
10
2
|
:root {
|
|
11
3
|
--color-sf-black: 0, 0, 0;
|
|
12
4
|
--color-sf-white: 255, 255, 255;
|
|
@@ -72,61 +64,6 @@
|
|
|
72
64
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
73
65
|
}
|
|
74
66
|
|
|
75
|
-
:root {
|
|
76
|
-
--color-sf-black: 0, 0, 0;
|
|
77
|
-
--color-sf-white: 255, 255, 255;
|
|
78
|
-
--color-sf-primary: 208, 188, 255;
|
|
79
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
80
|
-
--color-sf-secondary: 204, 194, 220;
|
|
81
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
82
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
83
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
84
|
-
--color-sf-surface: 28, 27, 31;
|
|
85
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
86
|
-
--color-sf-background: var(--color-sf-surface);
|
|
87
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
88
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
89
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
90
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
91
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
92
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
93
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
94
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
95
|
-
--color-sf-on-background: 230, 225, 229;
|
|
96
|
-
--color-sf-outline: 147, 143, 153;
|
|
97
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
98
|
-
--color-sf-shadow: 0, 0, 0;
|
|
99
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
100
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
101
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
102
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
103
|
-
--color-sf-scrim: 0, 0, 0;
|
|
104
|
-
--color-sf-error: 242, 184, 181;
|
|
105
|
-
--color-sf-error-container: 140, 29, 24;
|
|
106
|
-
--color-sf-on-error: 96, 20, 16;
|
|
107
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
108
|
-
--color-sf-success: 83, 202, 23;
|
|
109
|
-
--color-sf-success-container: 22, 62, 2;
|
|
110
|
-
--color-sf-on-success: 13, 39, 0;
|
|
111
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
112
|
-
--color-sf-info: 71, 172, 251;
|
|
113
|
-
--color-sf-info-container: 0, 67, 120;
|
|
114
|
-
--color-sf-on-info: 0, 51, 91;
|
|
115
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
116
|
-
--color-sf-warning: 245, 180, 130;
|
|
117
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
118
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
119
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
120
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
121
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
122
|
-
--color-sf-success-text: 0, 0, 0;
|
|
123
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
124
|
-
--color-sf-info-text: 0, 0, 0;
|
|
125
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
126
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
127
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
128
|
-
}
|
|
129
|
-
|
|
130
67
|
/* stylelint-disable property-no-vendor-prefix */
|
|
131
68
|
@keyframes e-input-ripple {
|
|
132
69
|
100% {
|
|
@@ -12455,61 +12392,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
12455
12392
|
}
|
|
12456
12393
|
|
|
12457
12394
|
/* stylelint-disable-line no-empty-source */
|
|
12458
|
-
:root {
|
|
12459
|
-
--color-sf-black: 0, 0, 0;
|
|
12460
|
-
--color-sf-white: 255, 255, 255;
|
|
12461
|
-
--color-sf-primary: 208, 188, 255;
|
|
12462
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
12463
|
-
--color-sf-secondary: 204, 194, 220;
|
|
12464
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
12465
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
12466
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
12467
|
-
--color-sf-surface: 28, 27, 31;
|
|
12468
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
12469
|
-
--color-sf-background: var(--color-sf-surface);
|
|
12470
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
12471
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
12472
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
12473
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
12474
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
12475
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
12476
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
12477
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
12478
|
-
--color-sf-on-background: 230, 225, 229;
|
|
12479
|
-
--color-sf-outline: 147, 143, 153;
|
|
12480
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
12481
|
-
--color-sf-shadow: 0, 0, 0;
|
|
12482
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
12483
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
12484
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
12485
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
12486
|
-
--color-sf-scrim: 0, 0, 0;
|
|
12487
|
-
--color-sf-error: 242, 184, 181;
|
|
12488
|
-
--color-sf-error-container: 140, 29, 24;
|
|
12489
|
-
--color-sf-on-error: 96, 20, 16;
|
|
12490
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
12491
|
-
--color-sf-success: 83, 202, 23;
|
|
12492
|
-
--color-sf-success-container: 22, 62, 2;
|
|
12493
|
-
--color-sf-on-success: 13, 39, 0;
|
|
12494
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
12495
|
-
--color-sf-info: 71, 172, 251;
|
|
12496
|
-
--color-sf-info-container: 0, 67, 120;
|
|
12497
|
-
--color-sf-on-info: 0, 51, 91;
|
|
12498
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
12499
|
-
--color-sf-warning: 245, 180, 130;
|
|
12500
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
12501
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
12502
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
12503
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
12504
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
12505
|
-
--color-sf-success-text: 0, 0, 0;
|
|
12506
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
12507
|
-
--color-sf-info-text: 0, 0, 0;
|
|
12508
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
12509
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
12510
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
12511
|
-
}
|
|
12512
|
-
|
|
12513
12395
|
/* stylelint-disable property-no-vendor-prefix */
|
|
12514
12396
|
@keyframes e-input-ripple {
|
|
12515
12397
|
100% {
|
|
@@ -12573,61 +12455,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
12573
12455
|
font-size: 18px;
|
|
12574
12456
|
}
|
|
12575
12457
|
|
|
12576
|
-
:root {
|
|
12577
|
-
--color-sf-black: 0, 0, 0;
|
|
12578
|
-
--color-sf-white: 255, 255, 255;
|
|
12579
|
-
--color-sf-primary: 208, 188, 255;
|
|
12580
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
12581
|
-
--color-sf-secondary: 204, 194, 220;
|
|
12582
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
12583
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
12584
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
12585
|
-
--color-sf-surface: 28, 27, 31;
|
|
12586
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
12587
|
-
--color-sf-background: var(--color-sf-surface);
|
|
12588
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
12589
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
12590
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
12591
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
12592
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
12593
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
12594
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
12595
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
12596
|
-
--color-sf-on-background: 230, 225, 229;
|
|
12597
|
-
--color-sf-outline: 147, 143, 153;
|
|
12598
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
12599
|
-
--color-sf-shadow: 0, 0, 0;
|
|
12600
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
12601
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
12602
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
12603
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
12604
|
-
--color-sf-scrim: 0, 0, 0;
|
|
12605
|
-
--color-sf-error: 242, 184, 181;
|
|
12606
|
-
--color-sf-error-container: 140, 29, 24;
|
|
12607
|
-
--color-sf-on-error: 96, 20, 16;
|
|
12608
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
12609
|
-
--color-sf-success: 83, 202, 23;
|
|
12610
|
-
--color-sf-success-container: 22, 62, 2;
|
|
12611
|
-
--color-sf-on-success: 13, 39, 0;
|
|
12612
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
12613
|
-
--color-sf-info: 71, 172, 251;
|
|
12614
|
-
--color-sf-info-container: 0, 67, 120;
|
|
12615
|
-
--color-sf-on-info: 0, 51, 91;
|
|
12616
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
12617
|
-
--color-sf-warning: 245, 180, 130;
|
|
12618
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
12619
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
12620
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
12621
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
12622
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
12623
|
-
--color-sf-success-text: 0, 0, 0;
|
|
12624
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
12625
|
-
--color-sf-info-text: 0, 0, 0;
|
|
12626
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
12627
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
12628
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
12629
|
-
}
|
|
12630
|
-
|
|
12631
12458
|
/* stylelint-disable property-no-vendor-prefix */
|
|
12632
12459
|
@keyframes e-input-ripple {
|
|
12633
12460
|
100% {
|
|
@@ -12677,61 +12504,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
12677
12504
|
color: rgba(var(--color-sf-error));
|
|
12678
12505
|
}
|
|
12679
12506
|
|
|
12680
|
-
:root {
|
|
12681
|
-
--color-sf-black: 0, 0, 0;
|
|
12682
|
-
--color-sf-white: 255, 255, 255;
|
|
12683
|
-
--color-sf-primary: 208, 188, 255;
|
|
12684
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
12685
|
-
--color-sf-secondary: 204, 194, 220;
|
|
12686
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
12687
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
12688
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
12689
|
-
--color-sf-surface: 28, 27, 31;
|
|
12690
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
12691
|
-
--color-sf-background: var(--color-sf-surface);
|
|
12692
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
12693
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
12694
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
12695
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
12696
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
12697
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
12698
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
12699
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
12700
|
-
--color-sf-on-background: 230, 225, 229;
|
|
12701
|
-
--color-sf-outline: 147, 143, 153;
|
|
12702
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
12703
|
-
--color-sf-shadow: 0, 0, 0;
|
|
12704
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
12705
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
12706
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
12707
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
12708
|
-
--color-sf-scrim: 0, 0, 0;
|
|
12709
|
-
--color-sf-error: 242, 184, 181;
|
|
12710
|
-
--color-sf-error-container: 140, 29, 24;
|
|
12711
|
-
--color-sf-on-error: 96, 20, 16;
|
|
12712
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
12713
|
-
--color-sf-success: 83, 202, 23;
|
|
12714
|
-
--color-sf-success-container: 22, 62, 2;
|
|
12715
|
-
--color-sf-on-success: 13, 39, 0;
|
|
12716
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
12717
|
-
--color-sf-info: 71, 172, 251;
|
|
12718
|
-
--color-sf-info-container: 0, 67, 120;
|
|
12719
|
-
--color-sf-on-info: 0, 51, 91;
|
|
12720
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
12721
|
-
--color-sf-warning: 245, 180, 130;
|
|
12722
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
12723
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
12724
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
12725
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
12726
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
12727
|
-
--color-sf-success-text: 0, 0, 0;
|
|
12728
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
12729
|
-
--color-sf-info-text: 0, 0, 0;
|
|
12730
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
12731
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
12732
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
12733
|
-
}
|
|
12734
|
-
|
|
12735
12507
|
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
12736
12508
|
/* stylelint-disable property-no-vendor-prefix */
|
|
12737
12509
|
.e-control-wrapper.e-slider-container.e-material-slider .e-slider .e-handle.e-material-handle {
|
|
@@ -13441,61 +13213,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
13441
13213
|
.e-control-wrapper.e-slider-container.e-slider-hover .e-handle {
|
|
13442
13214
|
border-color: rgba(var(--color-sf-primary));
|
|
13443
13215
|
}
|
|
13444
|
-
:root {
|
|
13445
|
-
--color-sf-black: 0, 0, 0;
|
|
13446
|
-
--color-sf-white: 255, 255, 255;
|
|
13447
|
-
--color-sf-primary: 208, 188, 255;
|
|
13448
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
13449
|
-
--color-sf-secondary: 204, 194, 220;
|
|
13450
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
13451
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
13452
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
13453
|
-
--color-sf-surface: 28, 27, 31;
|
|
13454
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
13455
|
-
--color-sf-background: var(--color-sf-surface);
|
|
13456
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
13457
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
13458
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
13459
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
13460
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
13461
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
13462
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
13463
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
13464
|
-
--color-sf-on-background: 230, 225, 229;
|
|
13465
|
-
--color-sf-outline: 147, 143, 153;
|
|
13466
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
13467
|
-
--color-sf-shadow: 0, 0, 0;
|
|
13468
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
13469
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
13470
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
13471
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
13472
|
-
--color-sf-scrim: 0, 0, 0;
|
|
13473
|
-
--color-sf-error: 242, 184, 181;
|
|
13474
|
-
--color-sf-error-container: 140, 29, 24;
|
|
13475
|
-
--color-sf-on-error: 96, 20, 16;
|
|
13476
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
13477
|
-
--color-sf-success: 83, 202, 23;
|
|
13478
|
-
--color-sf-success-container: 22, 62, 2;
|
|
13479
|
-
--color-sf-on-success: 13, 39, 0;
|
|
13480
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
13481
|
-
--color-sf-info: 71, 172, 251;
|
|
13482
|
-
--color-sf-info-container: 0, 67, 120;
|
|
13483
|
-
--color-sf-on-info: 0, 51, 91;
|
|
13484
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
13485
|
-
--color-sf-warning: 245, 180, 130;
|
|
13486
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
13487
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
13488
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
13489
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
13490
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
13491
|
-
--color-sf-success-text: 0, 0, 0;
|
|
13492
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
13493
|
-
--color-sf-info-text: 0, 0, 0;
|
|
13494
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
13495
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
13496
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
13497
|
-
}
|
|
13498
|
-
|
|
13499
13216
|
/* stylelint-disable property-no-vendor-prefix */
|
|
13500
13217
|
@keyframes e-input-ripple {
|
|
13501
13218
|
100% {
|
|
@@ -13512,61 +13229,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
13512
13229
|
}
|
|
13513
13230
|
}
|
|
13514
13231
|
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
13515
|
-
:root {
|
|
13516
|
-
--color-sf-black: 0, 0, 0;
|
|
13517
|
-
--color-sf-white: 255, 255, 255;
|
|
13518
|
-
--color-sf-primary: 208, 188, 255;
|
|
13519
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
13520
|
-
--color-sf-secondary: 204, 194, 220;
|
|
13521
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
13522
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
13523
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
13524
|
-
--color-sf-surface: 28, 27, 31;
|
|
13525
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
13526
|
-
--color-sf-background: var(--color-sf-surface);
|
|
13527
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
13528
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
13529
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
13530
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
13531
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
13532
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
13533
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
13534
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
13535
|
-
--color-sf-on-background: 230, 225, 229;
|
|
13536
|
-
--color-sf-outline: 147, 143, 153;
|
|
13537
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
13538
|
-
--color-sf-shadow: 0, 0, 0;
|
|
13539
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
13540
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
13541
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
13542
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
13543
|
-
--color-sf-scrim: 0, 0, 0;
|
|
13544
|
-
--color-sf-error: 242, 184, 181;
|
|
13545
|
-
--color-sf-error-container: 140, 29, 24;
|
|
13546
|
-
--color-sf-on-error: 96, 20, 16;
|
|
13547
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
13548
|
-
--color-sf-success: 83, 202, 23;
|
|
13549
|
-
--color-sf-success-container: 22, 62, 2;
|
|
13550
|
-
--color-sf-on-success: 13, 39, 0;
|
|
13551
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
13552
|
-
--color-sf-info: 71, 172, 251;
|
|
13553
|
-
--color-sf-info-container: 0, 67, 120;
|
|
13554
|
-
--color-sf-on-info: 0, 51, 91;
|
|
13555
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
13556
|
-
--color-sf-warning: 245, 180, 130;
|
|
13557
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
13558
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
13559
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
13560
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
13561
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
13562
|
-
--color-sf-success-text: 0, 0, 0;
|
|
13563
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
13564
|
-
--color-sf-info-text: 0, 0, 0;
|
|
13565
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
13566
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
13567
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
13568
|
-
}
|
|
13569
|
-
|
|
13570
13232
|
/* stylelint-disable property-no-vendor-prefix */
|
|
13571
13233
|
@keyframes material-spinner-rotate {
|
|
13572
13234
|
0% {
|
|
@@ -14373,61 +14035,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
14373
14035
|
box-shadow: 0 0 0 transparent;
|
|
14374
14036
|
}
|
|
14375
14037
|
|
|
14376
|
-
:root {
|
|
14377
|
-
--color-sf-black: 0, 0, 0;
|
|
14378
|
-
--color-sf-white: 255, 255, 255;
|
|
14379
|
-
--color-sf-primary: 208, 188, 255;
|
|
14380
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
14381
|
-
--color-sf-secondary: 204, 194, 220;
|
|
14382
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
14383
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
14384
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
14385
|
-
--color-sf-surface: 28, 27, 31;
|
|
14386
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
14387
|
-
--color-sf-background: var(--color-sf-surface);
|
|
14388
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
14389
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
14390
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
14391
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
14392
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
14393
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
14394
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
14395
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
14396
|
-
--color-sf-on-background: 230, 225, 229;
|
|
14397
|
-
--color-sf-outline: 147, 143, 153;
|
|
14398
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
14399
|
-
--color-sf-shadow: 0, 0, 0;
|
|
14400
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
14401
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
14402
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
14403
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
14404
|
-
--color-sf-scrim: 0, 0, 0;
|
|
14405
|
-
--color-sf-error: 242, 184, 181;
|
|
14406
|
-
--color-sf-error-container: 140, 29, 24;
|
|
14407
|
-
--color-sf-on-error: 96, 20, 16;
|
|
14408
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
14409
|
-
--color-sf-success: 83, 202, 23;
|
|
14410
|
-
--color-sf-success-container: 22, 62, 2;
|
|
14411
|
-
--color-sf-on-success: 13, 39, 0;
|
|
14412
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
14413
|
-
--color-sf-info: 71, 172, 251;
|
|
14414
|
-
--color-sf-info-container: 0, 67, 120;
|
|
14415
|
-
--color-sf-on-info: 0, 51, 91;
|
|
14416
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
14417
|
-
--color-sf-warning: 245, 180, 130;
|
|
14418
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
14419
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
14420
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
14421
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
14422
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
14423
|
-
--color-sf-success-text: 0, 0, 0;
|
|
14424
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
14425
|
-
--color-sf-info-text: 0, 0, 0;
|
|
14426
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
14427
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
14428
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
14429
|
-
}
|
|
14430
|
-
|
|
14431
14038
|
/* stylelint-disable-line no-empty-source */
|
|
14432
14039
|
/* stylelint-disable property-no-vendor-prefix */
|
|
14433
14040
|
@keyframes e-input-ripple {
|
|
@@ -15253,61 +14860,6 @@ body.e-colorpicker-overflow {
|
|
|
15253
14860
|
border-color: rgba(var(--color-sf-white));
|
|
15254
14861
|
}
|
|
15255
14862
|
|
|
15256
|
-
:root {
|
|
15257
|
-
--color-sf-black: 0, 0, 0;
|
|
15258
|
-
--color-sf-white: 255, 255, 255;
|
|
15259
|
-
--color-sf-primary: 208, 188, 255;
|
|
15260
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
15261
|
-
--color-sf-secondary: 204, 194, 220;
|
|
15262
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
15263
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
15264
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
15265
|
-
--color-sf-surface: 28, 27, 31;
|
|
15266
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
15267
|
-
--color-sf-background: var(--color-sf-surface);
|
|
15268
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
15269
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
15270
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
15271
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
15272
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
15273
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
15274
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
15275
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
15276
|
-
--color-sf-on-background: 230, 225, 229;
|
|
15277
|
-
--color-sf-outline: 147, 143, 153;
|
|
15278
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
15279
|
-
--color-sf-shadow: 0, 0, 0;
|
|
15280
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
15281
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
15282
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
15283
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
15284
|
-
--color-sf-scrim: 0, 0, 0;
|
|
15285
|
-
--color-sf-error: 242, 184, 181;
|
|
15286
|
-
--color-sf-error-container: 140, 29, 24;
|
|
15287
|
-
--color-sf-on-error: 96, 20, 16;
|
|
15288
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
15289
|
-
--color-sf-success: 83, 202, 23;
|
|
15290
|
-
--color-sf-success-container: 22, 62, 2;
|
|
15291
|
-
--color-sf-on-success: 13, 39, 0;
|
|
15292
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
15293
|
-
--color-sf-info: 71, 172, 251;
|
|
15294
|
-
--color-sf-info-container: 0, 67, 120;
|
|
15295
|
-
--color-sf-on-info: 0, 51, 91;
|
|
15296
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
15297
|
-
--color-sf-warning: 245, 180, 130;
|
|
15298
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
15299
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
15300
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
15301
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
15302
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
15303
|
-
--color-sf-success-text: 0, 0, 0;
|
|
15304
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
15305
|
-
--color-sf-info-text: 0, 0, 0;
|
|
15306
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
15307
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
15308
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
15309
|
-
}
|
|
15310
|
-
|
|
15311
14863
|
.e-rating-container {
|
|
15312
14864
|
display: -ms-inline-flexbox;
|
|
15313
14865
|
display: inline-flex;
|