@syncfusion/ej2-vue-inputs 19.2.60 → 19.3.48
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/CHANGELOG.md +15 -0
- package/dist/ej2-vue-inputs.umd.min.js +1 -1
- package/dist/es6/ej2-vue-inputs.es2015.js +32 -16
- package/dist/es6/ej2-vue-inputs.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-inputs.es5.js +32 -16
- package/dist/es6/ej2-vue-inputs.es5.js.map +1 -1
- package/dist/global/ej2-vue-inputs.min.js +2 -2
- package/package.json +8 -8
- package/src/color-picker/colorpicker.component.js +6 -3
- package/src/maskedtextbox/maskedtextbox.component.js +6 -3
- package/src/numerictextbox/numerictextbox.component.js +6 -3
- package/src/slider/slider.component.js +6 -3
- package/src/textbox/textbox.component.js +6 -3
- package/src/uploader/uploader.component.js +2 -1
- package/styles/bootstrap-dark.css +14 -6
- package/styles/bootstrap.css +14 -6
- package/styles/bootstrap4.css +22 -12
- package/styles/bootstrap5-dark.css +7548 -0
- package/styles/bootstrap5-dark.scss +7 -0
- package/styles/bootstrap5.css +7548 -0
- package/styles/bootstrap5.scss +7 -0
- package/styles/color-picker/bootstrap5-dark.css +964 -0
- package/styles/color-picker/bootstrap5-dark.scss +1 -0
- package/styles/color-picker/bootstrap5.css +964 -0
- package/styles/color-picker/bootstrap5.scss +1 -0
- package/styles/fabric-dark.css +15 -7
- package/styles/fabric.css +15 -7
- package/styles/highcontrast-light.css +15 -7
- package/styles/highcontrast.css +16 -8
- package/styles/input/bootstrap-dark.css +12 -3
- package/styles/input/bootstrap.css +12 -3
- package/styles/input/bootstrap4.css +15 -3
- package/styles/input/bootstrap5-dark.css +4670 -0
- package/styles/input/bootstrap5-dark.scss +1 -0
- package/styles/input/bootstrap5.css +4670 -0
- package/styles/input/bootstrap5.scss +1 -0
- package/styles/input/fabric-dark.css +12 -3
- package/styles/input/fabric.css +13 -4
- package/styles/input/highcontrast-light.css +12 -3
- package/styles/input/highcontrast.css +13 -4
- package/styles/input/material-dark.css +2320 -201
- package/styles/input/material.css +12 -3
- package/styles/input/tailwind-dark.css +14 -5
- package/styles/input/tailwind.css +14 -5
- package/styles/maskedtextbox/bootstrap5-dark.css +33 -0
- package/styles/maskedtextbox/bootstrap5-dark.scss +1 -0
- package/styles/maskedtextbox/bootstrap5.css +33 -0
- package/styles/maskedtextbox/bootstrap5.scss +1 -0
- package/styles/material-dark.css +2337 -218
- package/styles/material.css +14 -5
- package/styles/numerictextbox/bootstrap5-dark.css +48 -0
- package/styles/numerictextbox/bootstrap5-dark.scss +1 -0
- package/styles/numerictextbox/bootstrap5.css +48 -0
- package/styles/numerictextbox/bootstrap5.scss +1 -0
- package/styles/slider/bootstrap-dark.css +2 -3
- package/styles/slider/bootstrap.css +2 -3
- package/styles/slider/bootstrap4.css +7 -9
- package/styles/slider/bootstrap5-dark.css +749 -0
- package/styles/slider/bootstrap5-dark.scss +1 -0
- package/styles/slider/bootstrap5.css +749 -0
- package/styles/slider/bootstrap5.scss +1 -0
- package/styles/slider/fabric-dark.css +3 -4
- package/styles/slider/fabric.css +2 -3
- package/styles/slider/highcontrast-light.css +3 -4
- package/styles/slider/highcontrast.css +3 -4
- package/styles/slider/material-dark.css +16 -16
- package/styles/slider/material.css +2 -2
- package/styles/slider/tailwind-dark.css +9 -8
- package/styles/slider/tailwind.css +7 -3
- package/styles/tailwind-dark.css +23 -13
- package/styles/tailwind.css +21 -8
- package/styles/textbox/bootstrap5-dark.css +0 -0
- package/styles/textbox/bootstrap5-dark.scss +1 -0
- package/styles/textbox/bootstrap5.css +0 -0
- package/styles/textbox/bootstrap5.scss +1 -0
- package/styles/uploader/bootstrap5-dark.css +1079 -0
- package/styles/uploader/bootstrap5-dark.scss +1 -0
- package/styles/uploader/bootstrap5.css +1079 -0
- package/styles/uploader/bootstrap5.scss +1 -0
- package/styles/uploader/material-dark.css +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@import 'ej2-inputs/styles/input/bootstrap5.scss';
|
|
@@ -4019,22 +4019,31 @@ textarea.e-input::-webkit-input-placeholder {
|
|
|
4019
4019
|
}
|
|
4020
4020
|
|
|
4021
4021
|
.e-input-group.e-success .e-input-group-icon,
|
|
4022
|
+
.e-input-group.e-control-wrapper.e-success .e-input-group-icon {
|
|
4023
|
+
color: #dadada;
|
|
4024
|
+
}
|
|
4025
|
+
|
|
4022
4026
|
.e-input-group.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4023
|
-
.e-input-group.e-control-wrapper.e-success .e-input-group-icon,
|
|
4024
4027
|
.e-input-group.e-control-wrapper.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4025
4028
|
color: #dadada;
|
|
4026
4029
|
}
|
|
4027
4030
|
|
|
4028
4031
|
.e-input-group.e-warning .e-input-group-icon,
|
|
4032
|
+
.e-input-group.e-control-wrapper.e-warning .e-input-group-icon {
|
|
4033
|
+
color: #dadada;
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4029
4036
|
.e-input-group.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4030
|
-
.e-input-group.e-control-wrapper.e-warning .e-input-group-icon,
|
|
4031
4037
|
.e-input-group.e-control-wrapper.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4032
4038
|
color: #dadada;
|
|
4033
4039
|
}
|
|
4034
4040
|
|
|
4035
4041
|
.e-input-group.e-error .e-input-group-icon,
|
|
4042
|
+
.e-input-group.e-control-wrapper.e-error .e-input-group-icon {
|
|
4043
|
+
color: #dadada;
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4036
4046
|
.e-input-group.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4037
|
-
.e-input-group.e-control-wrapper.e-error .e-input-group-icon,
|
|
4038
4047
|
.e-input-group.e-control-wrapper.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4039
4048
|
color: #dadada;
|
|
4040
4049
|
}
|
package/styles/input/fabric.css
CHANGED
|
@@ -4019,22 +4019,31 @@ textarea.e-input::-webkit-input-placeholder {
|
|
|
4019
4019
|
}
|
|
4020
4020
|
|
|
4021
4021
|
.e-input-group.e-success .e-input-group-icon,
|
|
4022
|
+
.e-input-group.e-control-wrapper.e-success .e-input-group-icon {
|
|
4023
|
+
color: #333;
|
|
4024
|
+
}
|
|
4025
|
+
|
|
4022
4026
|
.e-input-group.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4023
|
-
.e-input-group.e-control-wrapper.e-success .e-input-group-icon,
|
|
4024
4027
|
.e-input-group.e-control-wrapper.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4025
4028
|
color: #333;
|
|
4026
4029
|
}
|
|
4027
4030
|
|
|
4028
4031
|
.e-input-group.e-warning .e-input-group-icon,
|
|
4032
|
+
.e-input-group.e-control-wrapper.e-warning .e-input-group-icon {
|
|
4033
|
+
color: #333;
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4029
4036
|
.e-input-group.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4030
|
-
.e-input-group.e-control-wrapper.e-warning .e-input-group-icon,
|
|
4031
4037
|
.e-input-group.e-control-wrapper.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4032
4038
|
color: #333;
|
|
4033
4039
|
}
|
|
4034
4040
|
|
|
4035
4041
|
.e-input-group.e-error .e-input-group-icon,
|
|
4042
|
+
.e-input-group.e-control-wrapper.e-error .e-input-group-icon {
|
|
4043
|
+
color: #333;
|
|
4044
|
+
}
|
|
4045
|
+
|
|
4036
4046
|
.e-input-group.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4037
|
-
.e-input-group.e-control-wrapper.e-error .e-input-group-icon,
|
|
4038
4047
|
.e-input-group.e-control-wrapper.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4039
4048
|
color: #333;
|
|
4040
4049
|
}
|
|
@@ -4166,7 +4175,7 @@ textarea.e-input::-webkit-input-placeholder {
|
|
|
4166
4175
|
.e-float-input.e-control-wrapper .e-clear-icon:hover,
|
|
4167
4176
|
.e-input-group .e-clear-icon:hover,
|
|
4168
4177
|
.e-input-group.e-control-wrapper .e-clear-icon:hover {
|
|
4169
|
-
color: #
|
|
4178
|
+
color: #333;
|
|
4170
4179
|
}
|
|
4171
4180
|
|
|
4172
4181
|
.e-float-input.e-disabled .e-clear-icon,
|
|
@@ -4298,22 +4298,31 @@ textarea.e-input::-webkit-input-placeholder {
|
|
|
4298
4298
|
}
|
|
4299
4299
|
|
|
4300
4300
|
.e-input-group.e-success .e-input-group-icon,
|
|
4301
|
+
.e-input-group.e-control-wrapper.e-success .e-input-group-icon {
|
|
4302
|
+
color: #000;
|
|
4303
|
+
}
|
|
4304
|
+
|
|
4301
4305
|
.e-input-group.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4302
|
-
.e-input-group.e-control-wrapper.e-success .e-input-group-icon,
|
|
4303
4306
|
.e-input-group.e-control-wrapper.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4304
4307
|
color: #000;
|
|
4305
4308
|
}
|
|
4306
4309
|
|
|
4307
4310
|
.e-input-group.e-warning .e-input-group-icon,
|
|
4311
|
+
.e-input-group.e-control-wrapper.e-warning .e-input-group-icon {
|
|
4312
|
+
color: #000;
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4308
4315
|
.e-input-group.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4309
|
-
.e-input-group.e-control-wrapper.e-warning .e-input-group-icon,
|
|
4310
4316
|
.e-input-group.e-control-wrapper.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4311
4317
|
color: #000;
|
|
4312
4318
|
}
|
|
4313
4319
|
|
|
4314
4320
|
.e-input-group.e-error .e-input-group-icon,
|
|
4321
|
+
.e-input-group.e-control-wrapper.e-error .e-input-group-icon {
|
|
4322
|
+
color: #000;
|
|
4323
|
+
}
|
|
4324
|
+
|
|
4315
4325
|
.e-input-group.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4316
|
-
.e-input-group.e-control-wrapper.e-error .e-input-group-icon,
|
|
4317
4326
|
.e-input-group.e-control-wrapper.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4318
4327
|
color: #000;
|
|
4319
4328
|
}
|
|
@@ -4298,22 +4298,31 @@ textarea.e-input::-webkit-input-placeholder {
|
|
|
4298
4298
|
}
|
|
4299
4299
|
|
|
4300
4300
|
.e-input-group.e-success .e-input-group-icon,
|
|
4301
|
+
.e-input-group.e-control-wrapper.e-success .e-input-group-icon {
|
|
4302
|
+
color: #fff;
|
|
4303
|
+
}
|
|
4304
|
+
|
|
4301
4305
|
.e-input-group.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4302
|
-
.e-input-group.e-control-wrapper.e-success .e-input-group-icon,
|
|
4303
4306
|
.e-input-group.e-control-wrapper.e-success:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4304
4307
|
color: #fff;
|
|
4305
4308
|
}
|
|
4306
4309
|
|
|
4307
4310
|
.e-input-group.e-warning .e-input-group-icon,
|
|
4311
|
+
.e-input-group.e-control-wrapper.e-warning .e-input-group-icon {
|
|
4312
|
+
color: #fff;
|
|
4313
|
+
}
|
|
4314
|
+
|
|
4308
4315
|
.e-input-group.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4309
|
-
.e-input-group.e-control-wrapper.e-warning .e-input-group-icon,
|
|
4310
4316
|
.e-input-group.e-control-wrapper.e-warning:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4311
4317
|
color: #fff;
|
|
4312
4318
|
}
|
|
4313
4319
|
|
|
4314
4320
|
.e-input-group.e-error .e-input-group-icon,
|
|
4321
|
+
.e-input-group.e-control-wrapper.e-error .e-input-group-icon {
|
|
4322
|
+
color: #fff;
|
|
4323
|
+
}
|
|
4324
|
+
|
|
4315
4325
|
.e-input-group.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover,
|
|
4316
|
-
.e-input-group.e-control-wrapper.e-error .e-input-group-icon,
|
|
4317
4326
|
.e-input-group.e-control-wrapper.e-error:not(.e-disabled):not(:active) .e-input-group-icon:hover {
|
|
4318
4327
|
color: #fff;
|
|
4319
4328
|
}
|
|
@@ -4445,7 +4454,7 @@ textarea.e-input::-webkit-input-placeholder {
|
|
|
4445
4454
|
.e-float-input.e-control-wrapper .e-clear-icon:hover,
|
|
4446
4455
|
.e-input-group .e-clear-icon:hover,
|
|
4447
4456
|
.e-input-group.e-control-wrapper .e-clear-icon:hover {
|
|
4448
|
-
color: #
|
|
4457
|
+
color: #fff;
|
|
4449
4458
|
}
|
|
4450
4459
|
|
|
4451
4460
|
.e-float-input.e-disabled .e-clear-icon,
|