@syncfusion/ej2-angular-inputs 23.2.4-ngcc → 23.2.4
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 +84 -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 +85 -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 +85 -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 +109 -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 +84 -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 +84 -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 +85 -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 +96 -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 +1245 -0
- package/fesm2015/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs +1245 -0
- package/fesm2020/syncfusion-ej2-angular-inputs.mjs.map +1 -0
- package/package.json +26 -12
- 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 +11364 -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 -440
- 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 +43 -0
- package/styles/rating/_bootstrap-definition.scss +43 -0
- package/styles/rating/_bootstrap4-definition.scss +43 -0
- package/styles/rating/_bootstrap5-dark-definition.scss +1 -0
- package/styles/rating/_bootstrap5-definition.scss +43 -0
- package/styles/rating/_fabric-dark-definition.scss +43 -0
- package/styles/rating/_fabric-definition.scss +43 -0
- package/styles/rating/_fluent-dark-definition.scss +1 -0
- package/styles/rating/_fluent-definition.scss +43 -0
- package/styles/rating/_fusionnew-definition.scss +43 -0
- package/styles/rating/_highcontrast-definition.scss +43 -0
- package/styles/rating/_highcontrast-light-definition.scss +43 -0
- package/styles/rating/_layout.scss +207 -0
- package/styles/rating/_material-dark-definition.scss +43 -0
- package/styles/rating/_material-definition.scss +43 -0
- package/styles/rating/_material3-dark-definition.scss +1 -0
- package/styles/rating/_material3-definition.scss +43 -0
- package/styles/rating/_tailwind-dark-definition.scss +1 -0
- package/styles/rating/_tailwind-definition.scss +43 -0
- package/styles/rating/_theme.scss +195 -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 -1791
- package/@syncfusion/ej2-angular-inputs.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-inputs.js +0 -1689
- package/@syncfusion/ej2-angular-inputs.js.map +0 -1
- package/CHANGELOG.md +0 -1498
- package/dist/ej2-angular-inputs.umd.js +0 -1880
- 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
|
@@ -63,61 +63,6 @@
|
|
|
63
63
|
border-color: rgba(var(--color-sf-outline-variant));
|
|
64
64
|
}
|
|
65
65
|
|
|
66
|
-
:root {
|
|
67
|
-
--color-sf-black: 0, 0, 0;
|
|
68
|
-
--color-sf-white: 255, 255, 255;
|
|
69
|
-
--color-sf-primary: 208, 188, 255;
|
|
70
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
71
|
-
--color-sf-secondary: 204, 194, 220;
|
|
72
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
73
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
74
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
75
|
-
--color-sf-surface: 28, 27, 31;
|
|
76
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
77
|
-
--color-sf-background: var(--color-sf-surface);
|
|
78
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
79
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
80
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
81
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
82
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
83
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
84
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
85
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
86
|
-
--color-sf-on-background: 230, 225, 229;
|
|
87
|
-
--color-sf-outline: 147, 143, 153;
|
|
88
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
89
|
-
--color-sf-shadow: 0, 0, 0;
|
|
90
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
91
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
92
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
93
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
94
|
-
--color-sf-scrim: 0, 0, 0;
|
|
95
|
-
--color-sf-error: 242, 184, 181;
|
|
96
|
-
--color-sf-error-container: 140, 29, 24;
|
|
97
|
-
--color-sf-on-error: 96, 20, 16;
|
|
98
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
99
|
-
--color-sf-success: 83, 202, 23;
|
|
100
|
-
--color-sf-success-container: 22, 62, 2;
|
|
101
|
-
--color-sf-on-success: 13, 39, 0;
|
|
102
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
103
|
-
--color-sf-info: 71, 172, 251;
|
|
104
|
-
--color-sf-info-container: 0, 67, 120;
|
|
105
|
-
--color-sf-on-info: 0, 51, 91;
|
|
106
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
107
|
-
--color-sf-warning: 245, 180, 130;
|
|
108
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
109
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
110
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
111
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
112
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
113
|
-
--color-sf-success-text: 0, 0, 0;
|
|
114
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
115
|
-
--color-sf-info-text: 0, 0, 0;
|
|
116
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
117
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
118
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
119
|
-
}
|
|
120
|
-
|
|
121
66
|
/* stylelint-disable property-no-vendor-prefix */
|
|
122
67
|
@keyframes e-input-ripple {
|
|
123
68
|
100% {
|
|
@@ -12507,61 +12452,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
12507
12452
|
}
|
|
12508
12453
|
|
|
12509
12454
|
/* stylelint-disable-line no-empty-source */
|
|
12510
|
-
:root {
|
|
12511
|
-
--color-sf-black: 0, 0, 0;
|
|
12512
|
-
--color-sf-white: 255, 255, 255;
|
|
12513
|
-
--color-sf-primary: 208, 188, 255;
|
|
12514
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
12515
|
-
--color-sf-secondary: 204, 194, 220;
|
|
12516
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
12517
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
12518
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
12519
|
-
--color-sf-surface: 28, 27, 31;
|
|
12520
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
12521
|
-
--color-sf-background: var(--color-sf-surface);
|
|
12522
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
12523
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
12524
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
12525
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
12526
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
12527
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
12528
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
12529
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
12530
|
-
--color-sf-on-background: 230, 225, 229;
|
|
12531
|
-
--color-sf-outline: 147, 143, 153;
|
|
12532
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
12533
|
-
--color-sf-shadow: 0, 0, 0;
|
|
12534
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
12535
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
12536
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
12537
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
12538
|
-
--color-sf-scrim: 0, 0, 0;
|
|
12539
|
-
--color-sf-error: 242, 184, 181;
|
|
12540
|
-
--color-sf-error-container: 140, 29, 24;
|
|
12541
|
-
--color-sf-on-error: 96, 20, 16;
|
|
12542
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
12543
|
-
--color-sf-success: 83, 202, 23;
|
|
12544
|
-
--color-sf-success-container: 22, 62, 2;
|
|
12545
|
-
--color-sf-on-success: 13, 39, 0;
|
|
12546
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
12547
|
-
--color-sf-info: 71, 172, 251;
|
|
12548
|
-
--color-sf-info-container: 0, 67, 120;
|
|
12549
|
-
--color-sf-on-info: 0, 51, 91;
|
|
12550
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
12551
|
-
--color-sf-warning: 245, 180, 130;
|
|
12552
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
12553
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
12554
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
12555
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
12556
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
12557
|
-
--color-sf-success-text: 0, 0, 0;
|
|
12558
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
12559
|
-
--color-sf-info-text: 0, 0, 0;
|
|
12560
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
12561
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
12562
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
12563
|
-
}
|
|
12564
|
-
|
|
12565
12455
|
/* stylelint-disable property-no-vendor-prefix */
|
|
12566
12456
|
@keyframes e-input-ripple {
|
|
12567
12457
|
100% {
|
|
@@ -12625,61 +12515,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
12625
12515
|
font-size: 18px;
|
|
12626
12516
|
}
|
|
12627
12517
|
|
|
12628
|
-
:root {
|
|
12629
|
-
--color-sf-black: 0, 0, 0;
|
|
12630
|
-
--color-sf-white: 255, 255, 255;
|
|
12631
|
-
--color-sf-primary: 208, 188, 255;
|
|
12632
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
12633
|
-
--color-sf-secondary: 204, 194, 220;
|
|
12634
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
12635
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
12636
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
12637
|
-
--color-sf-surface: 28, 27, 31;
|
|
12638
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
12639
|
-
--color-sf-background: var(--color-sf-surface);
|
|
12640
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
12641
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
12642
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
12643
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
12644
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
12645
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
12646
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
12647
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
12648
|
-
--color-sf-on-background: 230, 225, 229;
|
|
12649
|
-
--color-sf-outline: 147, 143, 153;
|
|
12650
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
12651
|
-
--color-sf-shadow: 0, 0, 0;
|
|
12652
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
12653
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
12654
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
12655
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
12656
|
-
--color-sf-scrim: 0, 0, 0;
|
|
12657
|
-
--color-sf-error: 242, 184, 181;
|
|
12658
|
-
--color-sf-error-container: 140, 29, 24;
|
|
12659
|
-
--color-sf-on-error: 96, 20, 16;
|
|
12660
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
12661
|
-
--color-sf-success: 83, 202, 23;
|
|
12662
|
-
--color-sf-success-container: 22, 62, 2;
|
|
12663
|
-
--color-sf-on-success: 13, 39, 0;
|
|
12664
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
12665
|
-
--color-sf-info: 71, 172, 251;
|
|
12666
|
-
--color-sf-info-container: 0, 67, 120;
|
|
12667
|
-
--color-sf-on-info: 0, 51, 91;
|
|
12668
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
12669
|
-
--color-sf-warning: 245, 180, 130;
|
|
12670
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
12671
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
12672
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
12673
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
12674
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
12675
|
-
--color-sf-success-text: 0, 0, 0;
|
|
12676
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
12677
|
-
--color-sf-info-text: 0, 0, 0;
|
|
12678
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
12679
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
12680
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
12681
|
-
}
|
|
12682
|
-
|
|
12683
12518
|
/* stylelint-disable property-no-vendor-prefix */
|
|
12684
12519
|
@keyframes e-input-ripple {
|
|
12685
12520
|
100% {
|
|
@@ -12729,61 +12564,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
12729
12564
|
color: rgba(var(--color-sf-error));
|
|
12730
12565
|
}
|
|
12731
12566
|
|
|
12732
|
-
:root {
|
|
12733
|
-
--color-sf-black: 0, 0, 0;
|
|
12734
|
-
--color-sf-white: 255, 255, 255;
|
|
12735
|
-
--color-sf-primary: 208, 188, 255;
|
|
12736
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
12737
|
-
--color-sf-secondary: 204, 194, 220;
|
|
12738
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
12739
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
12740
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
12741
|
-
--color-sf-surface: 28, 27, 31;
|
|
12742
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
12743
|
-
--color-sf-background: var(--color-sf-surface);
|
|
12744
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
12745
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
12746
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
12747
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
12748
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
12749
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
12750
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
12751
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
12752
|
-
--color-sf-on-background: 230, 225, 229;
|
|
12753
|
-
--color-sf-outline: 147, 143, 153;
|
|
12754
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
12755
|
-
--color-sf-shadow: 0, 0, 0;
|
|
12756
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
12757
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
12758
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
12759
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
12760
|
-
--color-sf-scrim: 0, 0, 0;
|
|
12761
|
-
--color-sf-error: 242, 184, 181;
|
|
12762
|
-
--color-sf-error-container: 140, 29, 24;
|
|
12763
|
-
--color-sf-on-error: 96, 20, 16;
|
|
12764
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
12765
|
-
--color-sf-success: 83, 202, 23;
|
|
12766
|
-
--color-sf-success-container: 22, 62, 2;
|
|
12767
|
-
--color-sf-on-success: 13, 39, 0;
|
|
12768
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
12769
|
-
--color-sf-info: 71, 172, 251;
|
|
12770
|
-
--color-sf-info-container: 0, 67, 120;
|
|
12771
|
-
--color-sf-on-info: 0, 51, 91;
|
|
12772
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
12773
|
-
--color-sf-warning: 245, 180, 130;
|
|
12774
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
12775
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
12776
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
12777
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
12778
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
12779
|
-
--color-sf-success-text: 0, 0, 0;
|
|
12780
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
12781
|
-
--color-sf-info-text: 0, 0, 0;
|
|
12782
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
12783
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
12784
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
12785
|
-
}
|
|
12786
|
-
|
|
12787
12567
|
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
12788
12568
|
/* stylelint-disable property-no-vendor-prefix */
|
|
12789
12569
|
.e-control-wrapper.e-slider-container.e-material-slider .e-slider .e-handle.e-material-handle {
|
|
@@ -13493,61 +13273,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
13493
13273
|
.e-control-wrapper.e-slider-container.e-slider-hover .e-handle {
|
|
13494
13274
|
border-color: rgba(var(--color-sf-primary));
|
|
13495
13275
|
}
|
|
13496
|
-
:root {
|
|
13497
|
-
--color-sf-black: 0, 0, 0;
|
|
13498
|
-
--color-sf-white: 255, 255, 255;
|
|
13499
|
-
--color-sf-primary: 208, 188, 255;
|
|
13500
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
13501
|
-
--color-sf-secondary: 204, 194, 220;
|
|
13502
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
13503
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
13504
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
13505
|
-
--color-sf-surface: 28, 27, 31;
|
|
13506
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
13507
|
-
--color-sf-background: var(--color-sf-surface);
|
|
13508
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
13509
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
13510
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
13511
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
13512
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
13513
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
13514
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
13515
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
13516
|
-
--color-sf-on-background: 230, 225, 229;
|
|
13517
|
-
--color-sf-outline: 147, 143, 153;
|
|
13518
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
13519
|
-
--color-sf-shadow: 0, 0, 0;
|
|
13520
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
13521
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
13522
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
13523
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
13524
|
-
--color-sf-scrim: 0, 0, 0;
|
|
13525
|
-
--color-sf-error: 242, 184, 181;
|
|
13526
|
-
--color-sf-error-container: 140, 29, 24;
|
|
13527
|
-
--color-sf-on-error: 96, 20, 16;
|
|
13528
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
13529
|
-
--color-sf-success: 83, 202, 23;
|
|
13530
|
-
--color-sf-success-container: 22, 62, 2;
|
|
13531
|
-
--color-sf-on-success: 13, 39, 0;
|
|
13532
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
13533
|
-
--color-sf-info: 71, 172, 251;
|
|
13534
|
-
--color-sf-info-container: 0, 67, 120;
|
|
13535
|
-
--color-sf-on-info: 0, 51, 91;
|
|
13536
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
13537
|
-
--color-sf-warning: 245, 180, 130;
|
|
13538
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
13539
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
13540
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
13541
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
13542
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
13543
|
-
--color-sf-success-text: 0, 0, 0;
|
|
13544
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
13545
|
-
--color-sf-info-text: 0, 0, 0;
|
|
13546
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
13547
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
13548
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
13549
|
-
}
|
|
13550
|
-
|
|
13551
13276
|
/* stylelint-disable property-no-vendor-prefix */
|
|
13552
13277
|
@keyframes e-input-ripple {
|
|
13553
13278
|
100% {
|
|
@@ -13564,61 +13289,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
13564
13289
|
}
|
|
13565
13290
|
}
|
|
13566
13291
|
/* stylelint-disable-line no-empty-source */ /* stylelint-disable-line no-empty-source */
|
|
13567
|
-
:root {
|
|
13568
|
-
--color-sf-black: 0, 0, 0;
|
|
13569
|
-
--color-sf-white: 255, 255, 255;
|
|
13570
|
-
--color-sf-primary: 208, 188, 255;
|
|
13571
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
13572
|
-
--color-sf-secondary: 204, 194, 220;
|
|
13573
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
13574
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
13575
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
13576
|
-
--color-sf-surface: 28, 27, 31;
|
|
13577
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
13578
|
-
--color-sf-background: var(--color-sf-surface);
|
|
13579
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
13580
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
13581
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
13582
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
13583
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
13584
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
13585
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
13586
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
13587
|
-
--color-sf-on-background: 230, 225, 229;
|
|
13588
|
-
--color-sf-outline: 147, 143, 153;
|
|
13589
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
13590
|
-
--color-sf-shadow: 0, 0, 0;
|
|
13591
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
13592
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
13593
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
13594
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
13595
|
-
--color-sf-scrim: 0, 0, 0;
|
|
13596
|
-
--color-sf-error: 242, 184, 181;
|
|
13597
|
-
--color-sf-error-container: 140, 29, 24;
|
|
13598
|
-
--color-sf-on-error: 96, 20, 16;
|
|
13599
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
13600
|
-
--color-sf-success: 83, 202, 23;
|
|
13601
|
-
--color-sf-success-container: 22, 62, 2;
|
|
13602
|
-
--color-sf-on-success: 13, 39, 0;
|
|
13603
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
13604
|
-
--color-sf-info: 71, 172, 251;
|
|
13605
|
-
--color-sf-info-container: 0, 67, 120;
|
|
13606
|
-
--color-sf-on-info: 0, 51, 91;
|
|
13607
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
13608
|
-
--color-sf-warning: 245, 180, 130;
|
|
13609
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
13610
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
13611
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
13612
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
13613
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
13614
|
-
--color-sf-success-text: 0, 0, 0;
|
|
13615
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
13616
|
-
--color-sf-info-text: 0, 0, 0;
|
|
13617
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
13618
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
13619
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
13620
|
-
}
|
|
13621
|
-
|
|
13622
13292
|
/* stylelint-disable property-no-vendor-prefix */
|
|
13623
13293
|
@keyframes material-spinner-rotate {
|
|
13624
13294
|
0% {
|
|
@@ -14425,61 +14095,6 @@ textarea.e-filled.e-disabled.e-input::-webkit-input-placeholder {
|
|
|
14425
14095
|
box-shadow: 0 0 0 transparent;
|
|
14426
14096
|
}
|
|
14427
14097
|
|
|
14428
|
-
:root {
|
|
14429
|
-
--color-sf-black: 0, 0, 0;
|
|
14430
|
-
--color-sf-white: 255, 255, 255;
|
|
14431
|
-
--color-sf-primary: 208, 188, 255;
|
|
14432
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
14433
|
-
--color-sf-secondary: 204, 194, 220;
|
|
14434
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
14435
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
14436
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
14437
|
-
--color-sf-surface: 28, 27, 31;
|
|
14438
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
14439
|
-
--color-sf-background: var(--color-sf-surface);
|
|
14440
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
14441
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
14442
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
14443
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
14444
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
14445
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
14446
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
14447
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
14448
|
-
--color-sf-on-background: 230, 225, 229;
|
|
14449
|
-
--color-sf-outline: 147, 143, 153;
|
|
14450
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
14451
|
-
--color-sf-shadow: 0, 0, 0;
|
|
14452
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
14453
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
14454
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
14455
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
14456
|
-
--color-sf-scrim: 0, 0, 0;
|
|
14457
|
-
--color-sf-error: 242, 184, 181;
|
|
14458
|
-
--color-sf-error-container: 140, 29, 24;
|
|
14459
|
-
--color-sf-on-error: 96, 20, 16;
|
|
14460
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
14461
|
-
--color-sf-success: 83, 202, 23;
|
|
14462
|
-
--color-sf-success-container: 22, 62, 2;
|
|
14463
|
-
--color-sf-on-success: 13, 39, 0;
|
|
14464
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
14465
|
-
--color-sf-info: 71, 172, 251;
|
|
14466
|
-
--color-sf-info-container: 0, 67, 120;
|
|
14467
|
-
--color-sf-on-info: 0, 51, 91;
|
|
14468
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
14469
|
-
--color-sf-warning: 245, 180, 130;
|
|
14470
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
14471
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
14472
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
14473
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
14474
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
14475
|
-
--color-sf-success-text: 0, 0, 0;
|
|
14476
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
14477
|
-
--color-sf-info-text: 0, 0, 0;
|
|
14478
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
14479
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
14480
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
14481
|
-
}
|
|
14482
|
-
|
|
14483
14098
|
/* stylelint-disable-line no-empty-source */
|
|
14484
14099
|
/* stylelint-disable property-no-vendor-prefix */
|
|
14485
14100
|
@keyframes e-input-ripple {
|
|
@@ -15305,61 +14920,6 @@ body.e-colorpicker-overflow {
|
|
|
15305
14920
|
border-color: rgba(var(--color-sf-white));
|
|
15306
14921
|
}
|
|
15307
14922
|
|
|
15308
|
-
:root {
|
|
15309
|
-
--color-sf-black: 0, 0, 0;
|
|
15310
|
-
--color-sf-white: 255, 255, 255;
|
|
15311
|
-
--color-sf-primary: 208, 188, 255;
|
|
15312
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
15313
|
-
--color-sf-secondary: 204, 194, 220;
|
|
15314
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
15315
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
15316
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
15317
|
-
--color-sf-surface: 28, 27, 31;
|
|
15318
|
-
--color-sf-surface-variant: 73, 69, 79;
|
|
15319
|
-
--color-sf-background: var(--color-sf-surface);
|
|
15320
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
15321
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
15322
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
15323
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
15324
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
15325
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
15326
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
15327
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
15328
|
-
--color-sf-on-background: 230, 225, 229;
|
|
15329
|
-
--color-sf-outline: 147, 143, 153;
|
|
15330
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
15331
|
-
--color-sf-shadow: 0, 0, 0;
|
|
15332
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
15333
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
15334
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
15335
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
15336
|
-
--color-sf-scrim: 0, 0, 0;
|
|
15337
|
-
--color-sf-error: 242, 184, 181;
|
|
15338
|
-
--color-sf-error-container: 140, 29, 24;
|
|
15339
|
-
--color-sf-on-error: 96, 20, 16;
|
|
15340
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
15341
|
-
--color-sf-success: 83, 202, 23;
|
|
15342
|
-
--color-sf-success-container: 22, 62, 2;
|
|
15343
|
-
--color-sf-on-success: 13, 39, 0;
|
|
15344
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
15345
|
-
--color-sf-info: 71, 172, 251;
|
|
15346
|
-
--color-sf-info-container: 0, 67, 120;
|
|
15347
|
-
--color-sf-on-info: 0, 51, 91;
|
|
15348
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
15349
|
-
--color-sf-warning: 245, 180, 130;
|
|
15350
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
15351
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
15352
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
15353
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
15354
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
15355
|
-
--color-sf-success-text: 0, 0, 0;
|
|
15356
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
15357
|
-
--color-sf-info-text: 0, 0, 0;
|
|
15358
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
15359
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
15360
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
15361
|
-
}
|
|
15362
|
-
|
|
15363
14923
|
.e-rating-container {
|
|
15364
14924
|
display: -ms-inline-flexbox;
|
|
15365
14925
|
display: inline-flex;
|