@syncfusion/ej2-vue-inputs 20.2.36 → 20.2.44
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/dist/ej2-vue-inputs.umd.min.js +2 -2
- package/dist/ej2-vue-inputs.umd.min.js.map +1 -1
- package/dist/es6/ej2-vue-inputs.es2015.js +7 -7
- package/dist/es6/ej2-vue-inputs.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-inputs.es5.js +7 -7
- 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 +1 -1
- package/src/maskedtextbox/maskedtextbox.component.js +1 -1
- package/src/numerictextbox/numerictextbox.component.js +1 -1
- package/src/signature/signature.component.js +1 -1
- package/src/slider/slider.component.js +1 -1
- package/src/textbox/textbox.component.js +1 -1
- package/src/uploader/uploader.component.js +1 -1
- package/styles/bootstrap5-dark.css +2 -2
- package/styles/bootstrap5.css +2 -2
- package/styles/fluent-dark.css +2 -2
- package/styles/fluent.css +2 -2
- package/styles/input/material-dark.css +27 -0
- package/styles/input/material.css +27 -0
- package/styles/material-dark.css +27 -0
- package/styles/material.css +27 -0
- package/styles/tailwind-dark.css +2 -2
- package/styles/tailwind.css +2 -2
- package/styles/uploader/bootstrap5-dark.css +2 -2
- package/styles/uploader/bootstrap5.css +2 -2
- package/styles/uploader/fluent-dark.css +2 -2
- package/styles/uploader/fluent.css +2 -2
- package/styles/uploader/tailwind-dark.css +2 -2
- package/styles/uploader/tailwind.css +2 -2
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-vue-inputs@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-vue-inputs@
|
|
3
|
+
"_id": "@syncfusion/ej2-vue-inputs@20.2.43",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-Zaxb5giIl57pwnYiaUPakEmUMtL7JUhmHIHdRhNg22Yaek3xNNqE7OUd3kTFp4azgajoJLeKW/T2SIqsypS5GA==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-vue-inputs",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-vue-inputs/-/ej2-vue-inputs-20.2.43.tgz",
|
|
23
|
+
"_shasum": "60545aefa063b1ed2218011e785cc3802ccc10ef",
|
|
24
24
|
"_spec": "@syncfusion/ej2-vue-inputs@*",
|
|
25
25
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-base": "~20.2.
|
|
35
|
-
"@syncfusion/ej2-inputs": "20.2.
|
|
36
|
-
"@syncfusion/ej2-vue-base": "~20.2.
|
|
34
|
+
"@syncfusion/ej2-base": "~20.2.43",
|
|
35
|
+
"@syncfusion/ej2-inputs": "20.2.44",
|
|
36
|
+
"@syncfusion/ej2-vue-base": "~20.2.44"
|
|
37
37
|
},
|
|
38
38
|
"deprecated": false,
|
|
39
39
|
"description": "A package of Essential JS 2 input components such as Textbox, Color-picker, Masked-textbox, Numeric-textbox, Slider, Upload, and Form-validator that is used to get input from the users. for Vue",
|
|
@@ -120,6 +120,6 @@
|
|
|
120
120
|
"type": "git",
|
|
121
121
|
"url": "git+https://github.com/syncfusion/ej2-vue-ui-components.git"
|
|
122
122
|
},
|
|
123
|
-
"version": "20.2.
|
|
123
|
+
"version": "20.2.44",
|
|
124
124
|
"sideEffects": false
|
|
125
125
|
}
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -27,7 +27,7 @@ export var testProp = getProps({ props: properties });
|
|
|
27
27
|
export var props = testProp[0];
|
|
28
28
|
export var watch = testProp[1];
|
|
29
29
|
export var emitProbs = Object.keys(watch);
|
|
30
|
-
emitProbs.push('modelchanged');
|
|
30
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
31
31
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
32
32
|
var props_1 = modelProps_1[_i];
|
|
33
33
|
emitProbs.push('update:' + props_1);
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -28,7 +28,7 @@ export var testProp = getProps({ props: properties });
|
|
|
28
28
|
export var props = testProp[0];
|
|
29
29
|
export var watch = testProp[1];
|
|
30
30
|
export var emitProbs = Object.keys(watch);
|
|
31
|
-
emitProbs.push('modelchanged');
|
|
31
|
+
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
32
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
33
|
var props_1 = modelProps_1[_i];
|
|
34
34
|
emitProbs.push('update:' + props_1);
|
|
@@ -5941,7 +5941,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5941
5941
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
5942
5942
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
5943
5943
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
5944
|
-
background-color:
|
|
5944
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
5945
5945
|
border-color: transparent;
|
|
5946
5946
|
border-radius: 50%;
|
|
5947
5947
|
box-shadow: 0 0 0 transparent;
|
|
@@ -6239,7 +6239,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
6239
6239
|
color: #dee2e6;
|
|
6240
6240
|
}
|
|
6241
6241
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
6242
|
-
background-color:
|
|
6242
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
6243
6243
|
border-color: transparent;
|
|
6244
6244
|
box-shadow: 0 0 0 transparent;
|
|
6245
6245
|
}
|
package/styles/bootstrap5.css
CHANGED
|
@@ -5941,7 +5941,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5941
5941
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
5942
5942
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
5943
5943
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
5944
|
-
background-color:
|
|
5944
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
5945
5945
|
border-color: transparent;
|
|
5946
5946
|
border-radius: 50%;
|
|
5947
5947
|
box-shadow: 0 0 0 transparent;
|
|
@@ -6239,7 +6239,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
6239
6239
|
color: #343a40;
|
|
6240
6240
|
}
|
|
6241
6241
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
6242
|
-
background-color:
|
|
6242
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
6243
6243
|
border-color: transparent;
|
|
6244
6244
|
box-shadow: 0 0 0 transparent;
|
|
6245
6245
|
}
|
package/styles/fluent-dark.css
CHANGED
|
@@ -5729,7 +5729,7 @@ textarea.e-input:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabl
|
|
|
5729
5729
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
5730
5730
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
5731
5731
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
5732
|
-
background-color:
|
|
5732
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
5733
5733
|
border-color: transparent;
|
|
5734
5734
|
border-radius: 50%;
|
|
5735
5735
|
box-shadow: 0 0 0 transparent;
|
|
@@ -6060,7 +6060,7 @@ textarea.e-input:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabl
|
|
|
6060
6060
|
color: #f3f2f1;
|
|
6061
6061
|
}
|
|
6062
6062
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
6063
|
-
background-color:
|
|
6063
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
6064
6064
|
border-color: transparent;
|
|
6065
6065
|
box-shadow: 0 0 0 transparent;
|
|
6066
6066
|
}
|
package/styles/fluent.css
CHANGED
|
@@ -5729,7 +5729,7 @@ textarea.e-input:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabl
|
|
|
5729
5729
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
5730
5730
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
5731
5731
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
5732
|
-
background-color:
|
|
5732
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
5733
5733
|
border-color: transparent;
|
|
5734
5734
|
border-radius: 50%;
|
|
5735
5735
|
box-shadow: 0 0 0 transparent;
|
|
@@ -6060,7 +6060,7 @@ textarea.e-input:hover:not(.e-success):not(.e-warning):not(.e-error):not([disabl
|
|
|
6060
6060
|
color: #323130;
|
|
6061
6061
|
}
|
|
6062
6062
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
6063
|
-
background-color:
|
|
6063
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
6064
6064
|
border-color: transparent;
|
|
6065
6065
|
box-shadow: 0 0 0 transparent;
|
|
6066
6066
|
}
|
|
@@ -4091,6 +4091,33 @@ textarea.e-outline.e-input,
|
|
|
4091
4091
|
width: calc(100% - 1px);
|
|
4092
4092
|
}
|
|
4093
4093
|
|
|
4094
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
|
|
4095
|
+
width: calc(100% - 80px);
|
|
4096
|
+
}
|
|
4097
|
+
|
|
4098
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4099
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4100
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
|
|
4101
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4102
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow {
|
|
4103
|
+
overflow: hidden;
|
|
4104
|
+
text-overflow: ellipsis;
|
|
4105
|
+
width: 100%;
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
|
|
4109
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
|
|
4110
|
+
width: calc(100% - 45px);
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4113
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
|
|
4114
|
+
width: calc(100% - 75px);
|
|
4115
|
+
}
|
|
4116
|
+
|
|
4117
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
|
|
4118
|
+
width: calc(100% - 110px);
|
|
4119
|
+
}
|
|
4120
|
+
|
|
4094
4121
|
.e-outline.e-float-input.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::before,
|
|
4095
4122
|
.e-outline.e-float-input.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::after,
|
|
4096
4123
|
.e-outline.e-float-input.e-input-group.e-float-icon-left.e-input-focus .e-input-in-wrap .e-float-line::before,
|
|
@@ -4099,6 +4099,33 @@ textarea.e-outline.e-input,
|
|
|
4099
4099
|
width: calc(100% - 1px);
|
|
4100
4100
|
}
|
|
4101
4101
|
|
|
4102
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
|
|
4103
|
+
width: calc(100% - 80px);
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4107
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4108
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
|
|
4109
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4110
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow {
|
|
4111
|
+
overflow: hidden;
|
|
4112
|
+
text-overflow: ellipsis;
|
|
4113
|
+
width: 100%;
|
|
4114
|
+
}
|
|
4115
|
+
|
|
4116
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
|
|
4117
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
|
|
4118
|
+
width: calc(100% - 45px);
|
|
4119
|
+
}
|
|
4120
|
+
|
|
4121
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
|
|
4122
|
+
width: calc(100% - 75px);
|
|
4123
|
+
}
|
|
4124
|
+
|
|
4125
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
|
|
4126
|
+
width: calc(100% - 110px);
|
|
4127
|
+
}
|
|
4128
|
+
|
|
4102
4129
|
.e-outline.e-float-input.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::before,
|
|
4103
4130
|
.e-outline.e-float-input.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::after,
|
|
4104
4131
|
.e-outline.e-float-input.e-input-group.e-float-icon-left.e-input-focus .e-input-in-wrap .e-float-line::before,
|
package/styles/material-dark.css
CHANGED
|
@@ -4101,6 +4101,33 @@ textarea.e-outline.e-input,
|
|
|
4101
4101
|
width: calc(100% - 1px);
|
|
4102
4102
|
}
|
|
4103
4103
|
|
|
4104
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
|
|
4105
|
+
width: calc(100% - 80px);
|
|
4106
|
+
}
|
|
4107
|
+
|
|
4108
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4109
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4110
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
|
|
4111
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4112
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow {
|
|
4113
|
+
overflow: hidden;
|
|
4114
|
+
text-overflow: ellipsis;
|
|
4115
|
+
width: 100%;
|
|
4116
|
+
}
|
|
4117
|
+
|
|
4118
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
|
|
4119
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
|
|
4120
|
+
width: calc(100% - 45px);
|
|
4121
|
+
}
|
|
4122
|
+
|
|
4123
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
|
|
4124
|
+
width: calc(100% - 75px);
|
|
4125
|
+
}
|
|
4126
|
+
|
|
4127
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
|
|
4128
|
+
width: calc(100% - 110px);
|
|
4129
|
+
}
|
|
4130
|
+
|
|
4104
4131
|
.e-outline.e-float-input.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::before,
|
|
4105
4132
|
.e-outline.e-float-input.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::after,
|
|
4106
4133
|
.e-outline.e-float-input.e-input-group.e-float-icon-left.e-input-focus .e-input-in-wrap .e-float-line::before,
|
package/styles/material.css
CHANGED
|
@@ -4109,6 +4109,33 @@ textarea.e-outline.e-input,
|
|
|
4109
4109
|
width: calc(100% - 1px);
|
|
4110
4110
|
}
|
|
4111
4111
|
|
|
4112
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
|
|
4113
|
+
width: calc(100% - 80px);
|
|
4114
|
+
}
|
|
4115
|
+
|
|
4116
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4117
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4118
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
|
|
4119
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow,
|
|
4120
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-top span.e-float-text-content.e-float-text-overflow {
|
|
4121
|
+
overflow: hidden;
|
|
4122
|
+
text-overflow: ellipsis;
|
|
4123
|
+
width: 100%;
|
|
4124
|
+
}
|
|
4125
|
+
|
|
4126
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow,
|
|
4127
|
+
.e-outline.e-float-input.e-control-wrapper label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
|
|
4128
|
+
width: calc(100% - 45px);
|
|
4129
|
+
}
|
|
4130
|
+
|
|
4131
|
+
.e-outline.e-float-input.e-control-wrapper.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow.e-icon {
|
|
4132
|
+
width: calc(100% - 75px);
|
|
4133
|
+
}
|
|
4134
|
+
|
|
4135
|
+
.e-outline.e-float-input.e-control-wrapper.e-numeric.e-static-clear label.e-float-text.e-label-bottom span.e-float-text-content.e-float-text-overflow {
|
|
4136
|
+
width: calc(100% - 110px);
|
|
4137
|
+
}
|
|
4138
|
+
|
|
4112
4139
|
.e-outline.e-float-input.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::before,
|
|
4113
4140
|
.e-outline.e-float-input.e-input-group:not(.e-float-icon-left).e-input-focus .e-float-line::after,
|
|
4114
4141
|
.e-outline.e-float-input.e-input-group.e-float-icon-left.e-input-focus .e-input-in-wrap .e-float-line::before,
|
package/styles/tailwind-dark.css
CHANGED
|
@@ -5797,7 +5797,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5797
5797
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
5798
5798
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
5799
5799
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
5800
|
-
background-color:
|
|
5800
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
5801
5801
|
border-color: transparent;
|
|
5802
5802
|
border-radius: 50%;
|
|
5803
5803
|
box-shadow: 0 0 0 transparent;
|
|
@@ -6098,7 +6098,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
6098
6098
|
color: #f3f4f6;
|
|
6099
6099
|
}
|
|
6100
6100
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
6101
|
-
background-color:
|
|
6101
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
6102
6102
|
border-color: transparent;
|
|
6103
6103
|
box-shadow: 0 0 0 transparent;
|
|
6104
6104
|
}
|
package/styles/tailwind.css
CHANGED
|
@@ -5797,7 +5797,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5797
5797
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
5798
5798
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
5799
5799
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
5800
|
-
background-color:
|
|
5800
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
5801
5801
|
border-color: transparent;
|
|
5802
5802
|
border-radius: 50%;
|
|
5803
5803
|
box-shadow: 0 0 0 transparent;
|
|
@@ -6098,7 +6098,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
6098
6098
|
color: #374151;
|
|
6099
6099
|
}
|
|
6100
6100
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
6101
|
-
background-color:
|
|
6101
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
6102
6102
|
border-color: transparent;
|
|
6103
6103
|
box-shadow: 0 0 0 transparent;
|
|
6104
6104
|
}
|
|
@@ -501,7 +501,7 @@
|
|
|
501
501
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
502
502
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
503
503
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
504
|
-
background-color:
|
|
504
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
505
505
|
border-color: transparent;
|
|
506
506
|
border-radius: 50%;
|
|
507
507
|
box-shadow: 0 0 0 transparent;
|
|
@@ -799,7 +799,7 @@
|
|
|
799
799
|
color: #dee2e6;
|
|
800
800
|
}
|
|
801
801
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
802
|
-
background-color:
|
|
802
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
803
803
|
border-color: transparent;
|
|
804
804
|
box-shadow: 0 0 0 transparent;
|
|
805
805
|
}
|
|
@@ -501,7 +501,7 @@
|
|
|
501
501
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
502
502
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
503
503
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
504
|
-
background-color:
|
|
504
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
505
505
|
border-color: transparent;
|
|
506
506
|
border-radius: 50%;
|
|
507
507
|
box-shadow: 0 0 0 transparent;
|
|
@@ -799,7 +799,7 @@
|
|
|
799
799
|
color: #343a40;
|
|
800
800
|
}
|
|
801
801
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
802
|
-
background-color:
|
|
802
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
803
803
|
border-color: transparent;
|
|
804
804
|
box-shadow: 0 0 0 transparent;
|
|
805
805
|
}
|
|
@@ -510,7 +510,7 @@
|
|
|
510
510
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
511
511
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
512
512
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
513
|
-
background-color:
|
|
513
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
514
514
|
border-color: transparent;
|
|
515
515
|
border-radius: 50%;
|
|
516
516
|
box-shadow: 0 0 0 transparent;
|
|
@@ -841,7 +841,7 @@
|
|
|
841
841
|
color: #f3f2f1;
|
|
842
842
|
}
|
|
843
843
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
844
|
-
background-color:
|
|
844
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
845
845
|
border-color: transparent;
|
|
846
846
|
box-shadow: 0 0 0 transparent;
|
|
847
847
|
}
|
|
@@ -510,7 +510,7 @@
|
|
|
510
510
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
511
511
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
512
512
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
513
|
-
background-color:
|
|
513
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
514
514
|
border-color: transparent;
|
|
515
515
|
border-radius: 50%;
|
|
516
516
|
box-shadow: 0 0 0 transparent;
|
|
@@ -841,7 +841,7 @@
|
|
|
841
841
|
color: #323130;
|
|
842
842
|
}
|
|
843
843
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
844
|
-
background-color:
|
|
844
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
845
845
|
border-color: transparent;
|
|
846
846
|
box-shadow: 0 0 0 transparent;
|
|
847
847
|
}
|
|
@@ -507,7 +507,7 @@
|
|
|
507
507
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
508
508
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
509
509
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
510
|
-
background-color:
|
|
510
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
511
511
|
border-color: transparent;
|
|
512
512
|
border-radius: 50%;
|
|
513
513
|
box-shadow: 0 0 0 transparent;
|
|
@@ -808,7 +808,7 @@
|
|
|
808
808
|
color: #f3f4f6;
|
|
809
809
|
}
|
|
810
810
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
811
|
-
background-color:
|
|
811
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
812
812
|
border-color: transparent;
|
|
813
813
|
box-shadow: 0 0 0 transparent;
|
|
814
814
|
}
|
|
@@ -507,7 +507,7 @@
|
|
|
507
507
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-reload-btn.e-icons:hover,
|
|
508
508
|
.e-bigger.e-small .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):hover,
|
|
509
509
|
.e-bigger.e-small .e-upload .e-upload-files .e-clear-icon-focus {
|
|
510
|
-
background-color:
|
|
510
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
511
511
|
border-color: transparent;
|
|
512
512
|
border-radius: 50%;
|
|
513
513
|
box-shadow: 0 0 0 transparent;
|
|
@@ -808,7 +808,7 @@
|
|
|
808
808
|
color: #374151;
|
|
809
809
|
}
|
|
810
810
|
.e-upload .e-upload-files .e-file-remove-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-delete-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-pause-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-play-btn.e-icons:not(.e-upload-progress):focus, .e-upload .e-upload-files .e-file-reload-btn.e-icons:focus, .e-upload .e-upload-files .e-file-abort-btn.e-icons:not(.e-disabled):focus, .e-upload .e-upload-files .e-clear-icon-focus {
|
|
811
|
-
background-color:
|
|
811
|
+
background-color: rgba(0, 0, 0, 0.12);
|
|
812
812
|
border-color: transparent;
|
|
813
813
|
box-shadow: 0 0 0 transparent;
|
|
814
814
|
}
|