@syncfusion/ej2-vue-inputs 20.4.54 → 21.1.37
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 +3 -32
- package/README.md +184 -112
- 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 +933 -1148
- package/dist/es6/ej2-vue-inputs.es2015.js.map +1 -1
- package/dist/es6/ej2-vue-inputs.es5.js +1033 -1300
- package/dist/es6/ej2-vue-inputs.es5.js.map +1 -1
- package/dist/global/ej2-vue-inputs.min.js +2 -2
- package/package.json +11 -10
- package/src/color-picker/colorpicker.component.d.ts +3 -28
- package/src/color-picker/colorpicker.component.js +128 -159
- package/src/maskedtextbox/maskedtextbox.component.d.ts +3 -28
- package/src/maskedtextbox/maskedtextbox.component.js +128 -159
- package/src/numerictextbox/numerictextbox.component.d.ts +3 -30
- package/src/numerictextbox/numerictextbox.component.js +134 -165
- package/src/rating/rating.component.d.ts +3 -26
- package/src/rating/rating.component.js +122 -153
- package/src/signature/signature.component.d.ts +3 -34
- package/src/signature/signature.component.js +119 -148
- package/src/slider/slider.component.d.ts +3 -27
- package/src/slider/slider.component.js +125 -156
- package/src/textbox/textbox.component.d.ts +3 -30
- package/src/textbox/textbox.component.js +134 -165
- package/src/uploader/files.directive.d.ts +2 -12
- package/src/uploader/files.directive.js +22 -71
- package/src/uploader/uploader.component.d.ts +3 -34
- package/src/uploader/uploader.component.js +119 -148
- package/styles/bootstrap-dark.css +14 -0
- package/styles/bootstrap.css +14 -0
- package/styles/bootstrap4.css +14 -0
- package/styles/bootstrap5-dark.css +18 -4
- package/styles/bootstrap5.css +18 -4
- package/styles/color-picker/bootstrap-dark.css +6 -0
- package/styles/color-picker/bootstrap.css +6 -0
- package/styles/color-picker/bootstrap4.css +6 -0
- package/styles/color-picker/bootstrap5-dark.css +6 -0
- package/styles/color-picker/bootstrap5.css +6 -0
- package/styles/color-picker/fabric-dark.css +6 -0
- package/styles/color-picker/fabric.css +6 -0
- package/styles/color-picker/fluent-dark.css +6 -0
- package/styles/color-picker/fluent.css +6 -0
- package/styles/color-picker/highcontrast-light.css +6 -0
- package/styles/color-picker/highcontrast.css +6 -0
- package/styles/color-picker/material-dark.css +6 -0
- package/styles/color-picker/material.css +6 -0
- package/styles/color-picker/tailwind-dark.css +6 -0
- package/styles/color-picker/tailwind.css +6 -0
- package/styles/fabric-dark.css +14 -0
- package/styles/fabric.css +14 -0
- package/styles/fluent-dark.css +14 -0
- package/styles/fluent.css +14 -0
- package/styles/highcontrast-light.css +14 -0
- package/styles/highcontrast.css +14 -0
- package/styles/input/material-dark.css +1 -1
- package/styles/input/material.css +1 -1
- package/styles/material-dark.css +15 -5
- package/styles/material.css +15 -1
- package/styles/rating/bootstrap-dark.css +8 -0
- package/styles/rating/bootstrap.css +8 -0
- package/styles/rating/bootstrap4.css +8 -0
- package/styles/rating/bootstrap5-dark.css +8 -0
- package/styles/rating/bootstrap5.css +8 -0
- package/styles/rating/fabric-dark.css +8 -0
- package/styles/rating/fabric.css +8 -0
- package/styles/rating/fluent-dark.css +8 -0
- package/styles/rating/fluent.css +8 -0
- package/styles/rating/highcontrast-light.css +8 -0
- package/styles/rating/highcontrast.css +8 -0
- package/styles/rating/material-dark.css +8 -0
- package/styles/rating/material.css +8 -0
- package/styles/rating/tailwind-dark.css +9 -1
- package/styles/rating/tailwind.css +9 -1
- package/styles/tailwind-dark.css +16 -2
- package/styles/tailwind.css +16 -2
- package/styles/uploader/bootstrap5-dark.css +4 -4
- package/styles/uploader/bootstrap5.css +4 -4
- package/styles/uploader/material-dark.css +0 -4
- package/styles/uploader/tailwind-dark.css +1 -1
- package/styles/uploader/tailwind.css +1 -1
|
@@ -1,33 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
var extendStatics = function (d, b) {
|
|
3
|
-
extendStatics = Object.setPrototypeOf ||
|
|
4
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
5
|
-
function (d, b) { for (var p in b) if (b.hasOwnProperty(p)) d[p] = b[p]; };
|
|
6
|
-
return extendStatics(d, b);
|
|
7
|
-
};
|
|
8
|
-
return function (d, b) {
|
|
9
|
-
extendStatics(d, b);
|
|
10
|
-
function __() { this.constructor = d; }
|
|
11
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
12
|
-
};
|
|
13
|
-
})();
|
|
14
|
-
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
15
|
-
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
16
|
-
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
17
|
-
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
18
|
-
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
19
|
-
};
|
|
20
|
-
import { ComponentBase, EJComponentDecorator, getProps, gh, isExecute } from '@syncfusion/ej2-vue-base';
|
|
1
|
+
import { ComponentBase, gh, getProps, isExecute, vueDefineComponent } from '@syncfusion/ej2-vue-base';
|
|
21
2
|
import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';
|
|
22
3
|
import { Uploader } from '@syncfusion/ej2-inputs';
|
|
23
4
|
import { FilesDirective, UploadedFilesDirective, FilesPlugin, UploadedFilesPlugin } from './files.directive';
|
|
24
|
-
import { Options } from 'vue-class-component';
|
|
25
5
|
export var properties = ['isLazyUpdate', 'plugins', 'allowedExtensions', 'asyncSettings', 'autoUpload', 'buttons', 'cssClass', 'directoryUpload', 'dropArea', 'dropEffect', 'enableHtmlSanitizer', 'enablePersistence', 'enableRtl', 'enabled', 'files', 'htmlAttributes', 'locale', 'maxFileSize', 'minFileSize', 'multiple', 'sequentialUpload', 'showFileList', 'template', 'actionComplete', 'beforeRemove', 'beforeUpload', 'canceling', 'change', 'chunkFailure', 'chunkSuccess', 'chunkUploading', 'clearing', 'created', 'failure', 'fileListRendering', 'pausing', 'progress', 'removing', 'rendering', 'resuming', 'selected', 'success', 'uploading'];
|
|
26
6
|
export var modelProps = [];
|
|
27
7
|
export var testProp = getProps({ props: properties });
|
|
28
|
-
export var props = testProp[0];
|
|
29
|
-
export var watch = testProp[1];
|
|
30
|
-
export var emitProbs = Object.keys(watch);
|
|
8
|
+
export var props = testProp[0], watch = testProp[1], emitProbs = Object.keys(watch);
|
|
31
9
|
emitProbs.push('modelchanged', 'update:modelValue');
|
|
32
10
|
for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
33
11
|
var props_1 = modelProps_1[_i];
|
|
@@ -39,138 +17,131 @@ for (var _i = 0, modelProps_1 = modelProps; _i < modelProps_1.length; _i++) {
|
|
|
39
17
|
* <ejs-uploader id='fileUpload' v-bind:multiple='true'></ejs-uploader>
|
|
40
18
|
* ```
|
|
41
19
|
*/
|
|
42
|
-
var UploaderComponent =
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
20
|
+
export var UploaderComponent = vueDefineComponent({
|
|
21
|
+
name: 'UploaderComponent',
|
|
22
|
+
mixins: [ComponentBase],
|
|
23
|
+
props: props,
|
|
24
|
+
watch: watch,
|
|
25
|
+
emits: emitProbs,
|
|
26
|
+
provide: function () { return { custom: this.custom }; },
|
|
27
|
+
data: function () {
|
|
28
|
+
return {
|
|
29
|
+
ej2Instances: new Uploader({}),
|
|
30
|
+
propKeys: properties,
|
|
31
|
+
models: modelProps,
|
|
32
|
+
hasChildDirective: true,
|
|
33
|
+
hasInjectedModules: false,
|
|
34
|
+
tagMapper: { "e-files": "e-uploadedfiles" },
|
|
35
|
+
tagNameMapper: {},
|
|
36
|
+
isVue3: !isExecute,
|
|
37
|
+
templateCollection: {},
|
|
38
|
+
};
|
|
39
|
+
},
|
|
40
|
+
created: function () {
|
|
41
|
+
this.bindProperties();
|
|
42
|
+
this.ej2Instances._setProperties = this.ej2Instances.setProperties;
|
|
43
|
+
this.ej2Instances.setProperties = this.setProperties;
|
|
44
|
+
this.ej2Instances.clearTemplate = this.clearTemplate;
|
|
45
|
+
this.updated = this.updated;
|
|
46
|
+
},
|
|
47
|
+
render: function (createElement) {
|
|
48
|
+
var h = !isExecute ? gh : createElement;
|
|
49
|
+
var slots = null;
|
|
50
|
+
if (!isNullOrUndefined(this.$slots.default)) {
|
|
51
|
+
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
64
52
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
53
|
+
return h('input', slots);
|
|
54
|
+
},
|
|
55
|
+
methods: {
|
|
56
|
+
clearTemplate: function (templateNames) {
|
|
57
|
+
if (!templateNames) {
|
|
58
|
+
templateNames = Object.keys(this.templateCollection || {});
|
|
59
|
+
}
|
|
60
|
+
if (templateNames.length && this.templateCollection) {
|
|
61
|
+
for (var _i = 0, templateNames_1 = templateNames; _i < templateNames_1.length; _i++) {
|
|
62
|
+
var tempName = templateNames_1[_i];
|
|
63
|
+
var elementCollection = this.templateCollection[tempName];
|
|
64
|
+
if (elementCollection && elementCollection.length) {
|
|
65
|
+
for (var _a = 0, elementCollection_1 = elementCollection; _a < elementCollection_1.length; _a++) {
|
|
66
|
+
var ele = elementCollection_1[_a];
|
|
67
|
+
var destroy = getValue('__vue__.$destroy', ele);
|
|
68
|
+
if (destroy) {
|
|
69
|
+
ele.__vue__.$destroy();
|
|
70
|
+
}
|
|
71
|
+
if (ele.innerHTML) {
|
|
72
|
+
ele.innerHTML = '';
|
|
73
|
+
}
|
|
78
74
|
}
|
|
75
|
+
delete this.templateCollection[tempName];
|
|
79
76
|
}
|
|
80
|
-
delete this.templateCollection[tempName];
|
|
81
77
|
}
|
|
82
78
|
}
|
|
83
|
-
}
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
79
|
+
},
|
|
80
|
+
setProperties: function (prop, muteOnChange) {
|
|
81
|
+
var _this = this;
|
|
82
|
+
if (this.isVue3) {
|
|
83
|
+
this.models = !this.models ? this.ej2Instances.referModels : this.models;
|
|
84
|
+
}
|
|
85
|
+
if (this.ej2Instances && this.ej2Instances._setProperties) {
|
|
86
|
+
this.ej2Instances._setProperties(prop, muteOnChange);
|
|
87
|
+
}
|
|
88
|
+
if (prop && this.models && this.models.length) {
|
|
89
|
+
Object.keys(prop).map(function (key) {
|
|
90
|
+
_this.models.map(function (model) {
|
|
91
|
+
if ((key === model) && !(/datasource/i.test(key))) {
|
|
92
|
+
if (_this.isVue3) {
|
|
93
|
+
_this.ej2Instances.vueInstance.$emit('update:' + key, prop[key]);
|
|
94
|
+
}
|
|
95
|
+
else {
|
|
96
|
+
_this.$emit('update:' + key, prop[key]);
|
|
97
|
+
_this.$emit('modelchanged', prop[key]);
|
|
98
|
+
}
|
|
103
99
|
}
|
|
104
|
-
}
|
|
100
|
+
});
|
|
105
101
|
});
|
|
106
|
-
});
|
|
107
|
-
}
|
|
108
|
-
};
|
|
109
|
-
UploaderComponent.prototype.render = function (createElement) {
|
|
110
|
-
var h = !isExecute ? gh : createElement;
|
|
111
|
-
var slots = null;
|
|
112
|
-
if (!isNullOrUndefined(this.$slots.default)) {
|
|
113
|
-
slots = !isExecute ? this.$slots.default() : this.$slots.default;
|
|
114
|
-
}
|
|
115
|
-
return h('input', slots);
|
|
116
|
-
};
|
|
117
|
-
UploaderComponent.prototype.custom = function () {
|
|
118
|
-
this.updated();
|
|
119
|
-
};
|
|
120
|
-
UploaderComponent.prototype.bytesToSize = function (bytes) {
|
|
121
|
-
return this.ej2Instances.bytesToSize(bytes);
|
|
122
|
-
};
|
|
123
|
-
UploaderComponent.prototype.cancel = function (fileData) {
|
|
124
|
-
return this.ej2Instances.cancel(fileData);
|
|
125
|
-
};
|
|
126
|
-
UploaderComponent.prototype.clearAll = function () {
|
|
127
|
-
return this.ej2Instances.clearAll();
|
|
128
|
-
};
|
|
129
|
-
UploaderComponent.prototype.createFileList = function (fileData, isSelectedFile) {
|
|
130
|
-
return this.ej2Instances.createFileList(fileData, isSelectedFile);
|
|
131
|
-
};
|
|
132
|
-
UploaderComponent.prototype.getFilesData = function (index) {
|
|
133
|
-
return this.ej2Instances.getFilesData(index);
|
|
134
|
-
};
|
|
135
|
-
UploaderComponent.prototype.pause = function (fileData, custom) {
|
|
136
|
-
return this.ej2Instances.pause(fileData, custom);
|
|
137
|
-
};
|
|
138
|
-
UploaderComponent.prototype.remove = function (fileData, customTemplate, removeDirectly, postRawFile, args) {
|
|
139
|
-
return this.ej2Instances.remove(fileData, customTemplate, removeDirectly, postRawFile, args);
|
|
140
|
-
};
|
|
141
|
-
UploaderComponent.prototype.resume = function (fileData, custom) {
|
|
142
|
-
return this.ej2Instances.resume(fileData, custom);
|
|
143
|
-
};
|
|
144
|
-
UploaderComponent.prototype.retry = function (fileData, fromcanceledStage, custom) {
|
|
145
|
-
return this.ej2Instances.retry(fileData, fromcanceledStage, custom);
|
|
146
|
-
};
|
|
147
|
-
UploaderComponent.prototype.sortFileList = function (filesData) {
|
|
148
|
-
return this.ej2Instances.sortFileList(filesData);
|
|
149
|
-
};
|
|
150
|
-
UploaderComponent.prototype.traverseFileTree = function (item, event) {
|
|
151
|
-
return this.ej2Instances.traverseFileTree(item, event);
|
|
152
|
-
};
|
|
153
|
-
UploaderComponent.prototype.upload = function (files, custom) {
|
|
154
|
-
return this.ej2Instances.upload(files, custom);
|
|
155
|
-
};
|
|
156
|
-
UploaderComponent = __decorate([
|
|
157
|
-
EJComponentDecorator({
|
|
158
|
-
props: properties
|
|
159
|
-
}, isExecute)
|
|
160
|
-
,Options({
|
|
161
|
-
props: props,
|
|
162
|
-
watch: watch,
|
|
163
|
-
emits: emitProbs,
|
|
164
|
-
provide: function provide() {
|
|
165
|
-
return {
|
|
166
|
-
custom: this.custom
|
|
167
|
-
};
|
|
168
102
|
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
}
|
|
173
|
-
|
|
103
|
+
},
|
|
104
|
+
custom: function () {
|
|
105
|
+
this.updated();
|
|
106
|
+
},
|
|
107
|
+
bytesToSize: function (bytes) {
|
|
108
|
+
return this.ej2Instances.bytesToSize(bytes);
|
|
109
|
+
},
|
|
110
|
+
cancel: function (fileData) {
|
|
111
|
+
return this.ej2Instances.cancel(fileData);
|
|
112
|
+
},
|
|
113
|
+
clearAll: function () {
|
|
114
|
+
return this.ej2Instances.clearAll();
|
|
115
|
+
},
|
|
116
|
+
createFileList: function (fileData, isSelectedFile) {
|
|
117
|
+
return this.ej2Instances.createFileList(fileData, isSelectedFile);
|
|
118
|
+
},
|
|
119
|
+
getFilesData: function (index) {
|
|
120
|
+
return this.ej2Instances.getFilesData(index);
|
|
121
|
+
},
|
|
122
|
+
pause: function (fileData, custom) {
|
|
123
|
+
return this.ej2Instances.pause(fileData, custom);
|
|
124
|
+
},
|
|
125
|
+
remove: function (fileData, customTemplate, removeDirectly, postRawFile, args) {
|
|
126
|
+
return this.ej2Instances.remove(fileData, customTemplate, removeDirectly, postRawFile, args);
|
|
127
|
+
},
|
|
128
|
+
resume: function (fileData, custom) {
|
|
129
|
+
return this.ej2Instances.resume(fileData, custom);
|
|
130
|
+
},
|
|
131
|
+
retry: function (fileData, fromcanceledStage, custom) {
|
|
132
|
+
return this.ej2Instances.retry(fileData, fromcanceledStage, custom);
|
|
133
|
+
},
|
|
134
|
+
sortFileList: function (filesData) {
|
|
135
|
+
return this.ej2Instances.sortFileList(filesData);
|
|
136
|
+
},
|
|
137
|
+
traverseFileTree: function (item, event) {
|
|
138
|
+
return this.ej2Instances.traverseFileTree(item, event);
|
|
139
|
+
},
|
|
140
|
+
upload: function (files, custom) {
|
|
141
|
+
return this.ej2Instances.upload(files, custom);
|
|
142
|
+
},
|
|
143
|
+
}
|
|
144
|
+
});
|
|
174
145
|
export var UploaderPlugin = {
|
|
175
146
|
name: 'ejs-uploader',
|
|
176
147
|
install: function (Vue) {
|
|
@@ -6162,6 +6162,12 @@ body.e-colorpicker-overflow {
|
|
|
6162
6162
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
6163
6163
|
padding: 0 6px;
|
|
6164
6164
|
}
|
|
6165
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6166
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6167
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6168
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
6169
|
+
line-height: 0;
|
|
6170
|
+
}
|
|
6165
6171
|
|
|
6166
6172
|
.e-container {
|
|
6167
6173
|
border: 0;
|
|
@@ -6805,6 +6811,8 @@ body.e-colorpicker-overflow {
|
|
|
6805
6811
|
padding: 4px;
|
|
6806
6812
|
line-height: 9px;
|
|
6807
6813
|
display: block;
|
|
6814
|
+
min-width: 28px;
|
|
6815
|
+
min-height: 28px;
|
|
6808
6816
|
position: relative;
|
|
6809
6817
|
}
|
|
6810
6818
|
.e-rating-container .e-rating-item-container .e-rating-item {
|
|
@@ -6900,6 +6908,8 @@ body.e-colorpicker-overflow {
|
|
|
6900
6908
|
.e-small .e-rating-container .e-rating-item-container {
|
|
6901
6909
|
font-size: 16px;
|
|
6902
6910
|
line-height: 4px;
|
|
6911
|
+
min-height: 24px;
|
|
6912
|
+
min-width: 24px;
|
|
6903
6913
|
}
|
|
6904
6914
|
.e-small.e-rating-container .e-rating-label,
|
|
6905
6915
|
.e-small .e-rating-container .e-rating-label {
|
|
@@ -6915,6 +6925,8 @@ body.e-colorpicker-overflow {
|
|
|
6915
6925
|
.e-bigger .e-rating-container .e-rating-item-container {
|
|
6916
6926
|
font-size: 32px;
|
|
6917
6927
|
line-height: 16px;
|
|
6928
|
+
min-width: 40px;
|
|
6929
|
+
min-height: 40px;
|
|
6918
6930
|
}
|
|
6919
6931
|
.e-bigger.e-rating-container .e-rating-label,
|
|
6920
6932
|
.e-bigger .e-rating-container .e-rating-label {
|
|
@@ -6932,6 +6944,8 @@ body.e-colorpicker-overflow {
|
|
|
6932
6944
|
.e-small .e-bigger.e-rating-container .e-rating-item-container {
|
|
6933
6945
|
font-size: 26px;
|
|
6934
6946
|
line-height: 9px;
|
|
6947
|
+
min-width: 34px;
|
|
6948
|
+
min-height: 34px;
|
|
6935
6949
|
}
|
|
6936
6950
|
.e-bigger.e-small.e-rating-container .e-rating-label,
|
|
6937
6951
|
.e-bigger.e-small .e-rating-container .e-rating-label,
|
package/styles/bootstrap.css
CHANGED
|
@@ -6141,6 +6141,12 @@ body.e-colorpicker-overflow {
|
|
|
6141
6141
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
6142
6142
|
padding: 0 6px;
|
|
6143
6143
|
}
|
|
6144
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6145
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6146
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6147
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
6148
|
+
line-height: 0;
|
|
6149
|
+
}
|
|
6144
6150
|
|
|
6145
6151
|
.e-container {
|
|
6146
6152
|
border: 0;
|
|
@@ -6784,6 +6790,8 @@ body.e-colorpicker-overflow {
|
|
|
6784
6790
|
padding: 4px;
|
|
6785
6791
|
line-height: 9px;
|
|
6786
6792
|
display: block;
|
|
6793
|
+
min-width: 28px;
|
|
6794
|
+
min-height: 28px;
|
|
6787
6795
|
position: relative;
|
|
6788
6796
|
}
|
|
6789
6797
|
.e-rating-container .e-rating-item-container .e-rating-item {
|
|
@@ -6879,6 +6887,8 @@ body.e-colorpicker-overflow {
|
|
|
6879
6887
|
.e-small .e-rating-container .e-rating-item-container {
|
|
6880
6888
|
font-size: 16px;
|
|
6881
6889
|
line-height: 4px;
|
|
6890
|
+
min-height: 24px;
|
|
6891
|
+
min-width: 24px;
|
|
6882
6892
|
}
|
|
6883
6893
|
.e-small.e-rating-container .e-rating-label,
|
|
6884
6894
|
.e-small .e-rating-container .e-rating-label {
|
|
@@ -6894,6 +6904,8 @@ body.e-colorpicker-overflow {
|
|
|
6894
6904
|
.e-bigger .e-rating-container .e-rating-item-container {
|
|
6895
6905
|
font-size: 32px;
|
|
6896
6906
|
line-height: 16px;
|
|
6907
|
+
min-width: 40px;
|
|
6908
|
+
min-height: 40px;
|
|
6897
6909
|
}
|
|
6898
6910
|
.e-bigger.e-rating-container .e-rating-label,
|
|
6899
6911
|
.e-bigger .e-rating-container .e-rating-label {
|
|
@@ -6911,6 +6923,8 @@ body.e-colorpicker-overflow {
|
|
|
6911
6923
|
.e-small .e-bigger.e-rating-container .e-rating-item-container {
|
|
6912
6924
|
font-size: 26px;
|
|
6913
6925
|
line-height: 9px;
|
|
6926
|
+
min-width: 34px;
|
|
6927
|
+
min-height: 34px;
|
|
6914
6928
|
}
|
|
6915
6929
|
.e-bigger.e-small.e-rating-container .e-rating-label,
|
|
6916
6930
|
.e-bigger.e-small .e-rating-container .e-rating-label,
|
package/styles/bootstrap4.css
CHANGED
|
@@ -6225,6 +6225,12 @@ body.e-colorpicker-overflow {
|
|
|
6225
6225
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
6226
6226
|
padding: 10px;
|
|
6227
6227
|
}
|
|
6228
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6229
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6230
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6231
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
6232
|
+
line-height: 0;
|
|
6233
|
+
}
|
|
6228
6234
|
|
|
6229
6235
|
.e-container {
|
|
6230
6236
|
border: 0;
|
|
@@ -6938,6 +6944,8 @@ body.e-colorpicker-overflow {
|
|
|
6938
6944
|
padding: 4px;
|
|
6939
6945
|
line-height: 11px;
|
|
6940
6946
|
display: block;
|
|
6947
|
+
min-width: 28px;
|
|
6948
|
+
min-height: 28px;
|
|
6941
6949
|
position: relative;
|
|
6942
6950
|
}
|
|
6943
6951
|
.e-rating-container .e-rating-item-container .e-rating-item {
|
|
@@ -7033,6 +7041,8 @@ body.e-colorpicker-overflow {
|
|
|
7033
7041
|
.e-small .e-rating-container .e-rating-item-container {
|
|
7034
7042
|
font-size: 16px;
|
|
7035
7043
|
line-height: 4px;
|
|
7044
|
+
min-height: 24px;
|
|
7045
|
+
min-width: 24px;
|
|
7036
7046
|
}
|
|
7037
7047
|
.e-small.e-rating-container .e-rating-label,
|
|
7038
7048
|
.e-small .e-rating-container .e-rating-label {
|
|
@@ -7048,6 +7058,8 @@ body.e-colorpicker-overflow {
|
|
|
7048
7058
|
.e-bigger .e-rating-container .e-rating-item-container {
|
|
7049
7059
|
font-size: 32px;
|
|
7050
7060
|
line-height: 13px;
|
|
7061
|
+
min-width: 40px;
|
|
7062
|
+
min-height: 40px;
|
|
7051
7063
|
}
|
|
7052
7064
|
.e-bigger.e-rating-container .e-rating-label,
|
|
7053
7065
|
.e-bigger .e-rating-container .e-rating-label {
|
|
@@ -7065,6 +7077,8 @@ body.e-colorpicker-overflow {
|
|
|
7065
7077
|
.e-small .e-bigger.e-rating-container .e-rating-item-container {
|
|
7066
7078
|
font-size: 24px;
|
|
7067
7079
|
line-height: 9px;
|
|
7080
|
+
min-width: 32px;
|
|
7081
|
+
min-height: 32px;
|
|
7068
7082
|
}
|
|
7069
7083
|
.e-bigger.e-small.e-rating-container .e-rating-label,
|
|
7070
7084
|
.e-bigger.e-small .e-rating-container .e-rating-label,
|
|
@@ -5517,7 +5517,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5517
5517
|
padding: 16px 0 16px 16px;
|
|
5518
5518
|
}
|
|
5519
5519
|
.e-bigger .e-upload .e-file-select-wrap .e-file-drop {
|
|
5520
|
-
font-size:
|
|
5520
|
+
font-size: 16px;
|
|
5521
5521
|
margin-left: 16px;
|
|
5522
5522
|
}
|
|
5523
5523
|
.e-bigger .e-upload .e-upload-files .e-upload-file-list {
|
|
@@ -5530,7 +5530,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5530
5530
|
top: 0;
|
|
5531
5531
|
}
|
|
5532
5532
|
.e-bigger .e-upload .e-upload-files .e-upload-file-list .e-file-container .e-file-name {
|
|
5533
|
-
font-size:
|
|
5533
|
+
font-size: 16px;
|
|
5534
5534
|
padding-top: 15px;
|
|
5535
5535
|
}
|
|
5536
5536
|
.e-bigger .e-upload .e-upload-files .e-upload-file-list .e-file-container .e-file-size {
|
|
@@ -5538,7 +5538,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5538
5538
|
padding: 10px 0;
|
|
5539
5539
|
}
|
|
5540
5540
|
.e-bigger .e-upload .e-upload-files .e-upload-file-list .e-file-container .e-file-type {
|
|
5541
|
-
font-size:
|
|
5541
|
+
font-size: 16px;
|
|
5542
5542
|
padding-top: 15px;
|
|
5543
5543
|
top: initial;
|
|
5544
5544
|
}
|
|
@@ -6114,7 +6114,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
6114
6114
|
padding: 12px 0 12px 12px;
|
|
6115
6115
|
}
|
|
6116
6116
|
.e-small .e-upload .e-file-select-wrap .e-file-drop {
|
|
6117
|
-
font-size:
|
|
6117
|
+
font-size: 12px;
|
|
6118
6118
|
margin-left: 10px;
|
|
6119
6119
|
}
|
|
6120
6120
|
.e-small .e-upload .e-upload-files .e-upload-file-list {
|
|
@@ -6417,6 +6417,12 @@ body.e-colorpicker-overflow {
|
|
|
6417
6417
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
6418
6418
|
padding: 7px 12px;
|
|
6419
6419
|
}
|
|
6420
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6421
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6422
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6423
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
6424
|
+
line-height: 0;
|
|
6425
|
+
}
|
|
6420
6426
|
|
|
6421
6427
|
.e-container {
|
|
6422
6428
|
border: 0;
|
|
@@ -7088,6 +7094,8 @@ body.e-colorpicker-overflow {
|
|
|
7088
7094
|
padding: 4px;
|
|
7089
7095
|
line-height: 13px;
|
|
7090
7096
|
display: block;
|
|
7097
|
+
min-width: 30px;
|
|
7098
|
+
min-height: 30px;
|
|
7091
7099
|
position: relative;
|
|
7092
7100
|
}
|
|
7093
7101
|
.e-rating-container .e-rating-item-container .e-rating-item {
|
|
@@ -7183,6 +7191,8 @@ body.e-colorpicker-overflow {
|
|
|
7183
7191
|
.e-small .e-rating-container .e-rating-item-container {
|
|
7184
7192
|
font-size: 16px;
|
|
7185
7193
|
line-height: 6px;
|
|
7194
|
+
min-height: 24px;
|
|
7195
|
+
min-width: 24px;
|
|
7186
7196
|
}
|
|
7187
7197
|
.e-small.e-rating-container .e-rating-label,
|
|
7188
7198
|
.e-small .e-rating-container .e-rating-label {
|
|
@@ -7198,6 +7208,8 @@ body.e-colorpicker-overflow {
|
|
|
7198
7208
|
.e-bigger .e-rating-container .e-rating-item-container {
|
|
7199
7209
|
font-size: 32px;
|
|
7200
7210
|
line-height: 13px;
|
|
7211
|
+
min-width: 40px;
|
|
7212
|
+
min-height: 40px;
|
|
7201
7213
|
}
|
|
7202
7214
|
.e-bigger.e-rating-container .e-rating-label,
|
|
7203
7215
|
.e-bigger .e-rating-container .e-rating-label {
|
|
@@ -7215,6 +7227,8 @@ body.e-colorpicker-overflow {
|
|
|
7215
7227
|
.e-small .e-bigger.e-rating-container .e-rating-item-container {
|
|
7216
7228
|
font-size: 26px;
|
|
7217
7229
|
line-height: 13px;
|
|
7230
|
+
min-width: 34px;
|
|
7231
|
+
min-height: 34px;
|
|
7218
7232
|
}
|
|
7219
7233
|
.e-bigger.e-small.e-rating-container .e-rating-label,
|
|
7220
7234
|
.e-bigger.e-small .e-rating-container .e-rating-label,
|
package/styles/bootstrap5.css
CHANGED
|
@@ -5517,7 +5517,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5517
5517
|
padding: 16px 0 16px 16px;
|
|
5518
5518
|
}
|
|
5519
5519
|
.e-bigger .e-upload .e-file-select-wrap .e-file-drop {
|
|
5520
|
-
font-size:
|
|
5520
|
+
font-size: 16px;
|
|
5521
5521
|
margin-left: 16px;
|
|
5522
5522
|
}
|
|
5523
5523
|
.e-bigger .e-upload .e-upload-files .e-upload-file-list {
|
|
@@ -5530,7 +5530,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5530
5530
|
top: 0;
|
|
5531
5531
|
}
|
|
5532
5532
|
.e-bigger .e-upload .e-upload-files .e-upload-file-list .e-file-container .e-file-name {
|
|
5533
|
-
font-size:
|
|
5533
|
+
font-size: 16px;
|
|
5534
5534
|
padding-top: 15px;
|
|
5535
5535
|
}
|
|
5536
5536
|
.e-bigger .e-upload .e-upload-files .e-upload-file-list .e-file-container .e-file-size {
|
|
@@ -5538,7 +5538,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
5538
5538
|
padding: 10px 0;
|
|
5539
5539
|
}
|
|
5540
5540
|
.e-bigger .e-upload .e-upload-files .e-upload-file-list .e-file-container .e-file-type {
|
|
5541
|
-
font-size:
|
|
5541
|
+
font-size: 16px;
|
|
5542
5542
|
padding-top: 15px;
|
|
5543
5543
|
top: initial;
|
|
5544
5544
|
}
|
|
@@ -6114,7 +6114,7 @@ input.e-input::-webkit-input-placeholder {
|
|
|
6114
6114
|
padding: 12px 0 12px 12px;
|
|
6115
6115
|
}
|
|
6116
6116
|
.e-small .e-upload .e-file-select-wrap .e-file-drop {
|
|
6117
|
-
font-size:
|
|
6117
|
+
font-size: 12px;
|
|
6118
6118
|
margin-left: 10px;
|
|
6119
6119
|
}
|
|
6120
6120
|
.e-small .e-upload .e-upload-files .e-upload-file-list {
|
|
@@ -6417,6 +6417,12 @@ body.e-colorpicker-overflow {
|
|
|
6417
6417
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
6418
6418
|
padding: 7px 12px;
|
|
6419
6419
|
}
|
|
6420
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6421
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6422
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
6423
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
6424
|
+
line-height: 0;
|
|
6425
|
+
}
|
|
6420
6426
|
|
|
6421
6427
|
.e-container {
|
|
6422
6428
|
border: 0;
|
|
@@ -7088,6 +7094,8 @@ body.e-colorpicker-overflow {
|
|
|
7088
7094
|
padding: 4px;
|
|
7089
7095
|
line-height: 13px;
|
|
7090
7096
|
display: block;
|
|
7097
|
+
min-width: 30px;
|
|
7098
|
+
min-height: 30px;
|
|
7091
7099
|
position: relative;
|
|
7092
7100
|
}
|
|
7093
7101
|
.e-rating-container .e-rating-item-container .e-rating-item {
|
|
@@ -7183,6 +7191,8 @@ body.e-colorpicker-overflow {
|
|
|
7183
7191
|
.e-small .e-rating-container .e-rating-item-container {
|
|
7184
7192
|
font-size: 16px;
|
|
7185
7193
|
line-height: 6px;
|
|
7194
|
+
min-height: 24px;
|
|
7195
|
+
min-width: 24px;
|
|
7186
7196
|
}
|
|
7187
7197
|
.e-small.e-rating-container .e-rating-label,
|
|
7188
7198
|
.e-small .e-rating-container .e-rating-label {
|
|
@@ -7198,6 +7208,8 @@ body.e-colorpicker-overflow {
|
|
|
7198
7208
|
.e-bigger .e-rating-container .e-rating-item-container {
|
|
7199
7209
|
font-size: 32px;
|
|
7200
7210
|
line-height: 13px;
|
|
7211
|
+
min-width: 40px;
|
|
7212
|
+
min-height: 40px;
|
|
7201
7213
|
}
|
|
7202
7214
|
.e-bigger.e-rating-container .e-rating-label,
|
|
7203
7215
|
.e-bigger .e-rating-container .e-rating-label {
|
|
@@ -7215,6 +7227,8 @@ body.e-colorpicker-overflow {
|
|
|
7215
7227
|
.e-small .e-bigger.e-rating-container .e-rating-item-container {
|
|
7216
7228
|
font-size: 26px;
|
|
7217
7229
|
line-height: 13px;
|
|
7230
|
+
min-width: 34px;
|
|
7231
|
+
min-height: 34px;
|
|
7218
7232
|
}
|
|
7219
7233
|
.e-bigger.e-small.e-rating-container .e-rating-label,
|
|
7220
7234
|
.e-bigger.e-small .e-rating-container .e-rating-label,
|
|
@@ -131,6 +131,12 @@ body.e-colorpicker-overflow {
|
|
|
131
131
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
132
132
|
padding: 0 6px;
|
|
133
133
|
}
|
|
134
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
135
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
136
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
137
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
138
|
+
line-height: 0;
|
|
139
|
+
}
|
|
134
140
|
|
|
135
141
|
.e-container {
|
|
136
142
|
border: 0;
|
|
@@ -131,6 +131,12 @@ body.e-colorpicker-overflow {
|
|
|
131
131
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
132
132
|
padding: 0 6px;
|
|
133
133
|
}
|
|
134
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
135
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
136
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
137
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
138
|
+
line-height: 0;
|
|
139
|
+
}
|
|
134
140
|
|
|
135
141
|
.e-container {
|
|
136
142
|
border: 0;
|
|
@@ -144,6 +144,12 @@ body.e-colorpicker-overflow {
|
|
|
144
144
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
145
145
|
padding: 10px;
|
|
146
146
|
}
|
|
147
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
148
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
149
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
150
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
151
|
+
line-height: 0;
|
|
152
|
+
}
|
|
147
153
|
|
|
148
154
|
.e-container {
|
|
149
155
|
border: 0;
|
|
@@ -154,6 +154,12 @@ body.e-colorpicker-overflow {
|
|
|
154
154
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
155
155
|
padding: 7px 12px;
|
|
156
156
|
}
|
|
157
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
158
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
159
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
160
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
161
|
+
line-height: 0;
|
|
162
|
+
}
|
|
157
163
|
|
|
158
164
|
.e-container {
|
|
159
165
|
border: 0;
|
|
@@ -154,6 +154,12 @@ body.e-colorpicker-overflow {
|
|
|
154
154
|
.e-bigger.e-colorpicker-container .e-split-btn-wrapper.e-rtl .e-split-colorpicker.e-split-btn {
|
|
155
155
|
padding: 7px 12px;
|
|
156
156
|
}
|
|
157
|
+
.e-bigger .e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
158
|
+
.e-bigger.e-colorpicker-wrapper .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
159
|
+
.e-bigger .e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn),
|
|
160
|
+
.e-bigger.e-colorpicker-container .e-colorpicker-popup:not(.e-split-btn-wrapper):not(.e-dropdown-btn) {
|
|
161
|
+
line-height: 0;
|
|
162
|
+
}
|
|
157
163
|
|
|
158
164
|
.e-container {
|
|
159
165
|
border: 0;
|