@syncfusion/ej2-inplace-editor 20.2.45 → 20.3.56
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/.eslintrc.json +1 -9
- package/dist/ej2-inplace-editor.min.js +10 -0
- package/dist/ej2-inplace-editor.umd.min.js +2 -2
- package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js +6 -10
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +5 -8
- package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
- package/dist/global/ej2-inplace-editor.min.js +2 -2
- package/dist/global/ej2-inplace-editor.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +18 -18
- package/src/inplace-editor/base/inplace-editor-model.d.ts +7 -7
- package/src/inplace-editor/base/inplace-editor.js +3 -2
- package/src/inplace-editor/base/interface.d.ts +0 -1
- package/src/inplace-editor/base/models-model.d.ts +0 -2
- package/src/inplace-editor/base/models.d.ts +1 -3
- package/src/inplace-editor/base/util.d.ts +0 -1
- package/src/inplace-editor/base/util.js +2 -3
- package/src/inplace-editor/modules/combo-box.d.ts +0 -2
- package/src/inplace-editor/modules/combo-box.js +0 -2
- package/src/inplace-editor/modules/date-range-picker.d.ts +0 -1
- package/src/inplace-editor/modules/date-range-picker.js +0 -1
- package/styles/bootstrap-dark.css +3 -0
- package/styles/bootstrap.css +3 -1
- package/styles/bootstrap4.css +4 -2
- package/styles/bootstrap5-dark.css +17 -1
- package/styles/bootstrap5.css +17 -1
- package/styles/fabric-dark.css +3 -0
- package/styles/fabric.css +3 -1
- package/styles/fluent-dark.css +4 -1
- package/styles/fluent.css +4 -1
- package/styles/highcontrast-light.css +6 -0
- package/styles/highcontrast.css +6 -1
- package/styles/inplace-editor/_all.scss +1 -1
- package/styles/inplace-editor/_bootstrap5-definition.scss +3 -0
- package/styles/inplace-editor/_fluent-definition.scss +3 -0
- package/styles/inplace-editor/_fusionnew-definition.scss +3 -0
- package/styles/inplace-editor/_layout.scss +12 -13
- package/styles/inplace-editor/_material-definition.scss +1 -1
- package/styles/inplace-editor/_material3-definition.scss +3 -0
- package/styles/inplace-editor/_tailwind-definition.scss +3 -0
- package/styles/inplace-editor/_theme.scss +3 -3
- package/styles/inplace-editor/bootstrap-dark.css +3 -0
- package/styles/inplace-editor/bootstrap.css +3 -1
- package/styles/inplace-editor/bootstrap4.css +4 -2
- package/styles/inplace-editor/bootstrap5-dark.css +17 -1
- package/styles/inplace-editor/bootstrap5.css +17 -1
- package/styles/inplace-editor/fabric-dark.css +3 -0
- package/styles/inplace-editor/fabric.css +3 -1
- package/styles/inplace-editor/fluent-dark.css +4 -1
- package/styles/inplace-editor/fluent.css +4 -1
- package/styles/inplace-editor/highcontrast-light.css +6 -0
- package/styles/inplace-editor/highcontrast.css +6 -1
- package/styles/inplace-editor/material-dark.css +3 -0
- package/styles/inplace-editor/material.css +3 -1
- package/styles/inplace-editor/tailwind-dark.css +4 -1
- package/styles/inplace-editor/tailwind.css +4 -1
- package/styles/material-dark.css +3 -0
- package/styles/material.css +3 -1
- package/styles/tailwind-dark.css +4 -1
- package/styles/tailwind.css +4 -1
- package/tslint.json +0 -111
|
@@ -68,7 +68,6 @@ function parseValue(type, val, model) {
|
|
|
68
68
|
return result;
|
|
69
69
|
}
|
|
70
70
|
/**
|
|
71
|
-
*
|
|
72
71
|
* @param {string} type - specifies the string value
|
|
73
72
|
* @param {valueType} val - specifies the value type
|
|
74
73
|
* @returns {valueType} - returns the value type
|
|
@@ -97,11 +96,11 @@ function getCompValue(type, val) {
|
|
|
97
96
|
* @hidden
|
|
98
97
|
*/
|
|
99
98
|
function encode(value) {
|
|
100
|
-
|
|
101
|
-
for (
|
|
102
|
-
data.unshift([
|
|
99
|
+
const data = [];
|
|
100
|
+
for (let i = value.length - 1; i >= 0; i--) {
|
|
101
|
+
data.unshift(['&#', value[i].charCodeAt(0), ';'].join(''));
|
|
103
102
|
}
|
|
104
|
-
return data.join(
|
|
103
|
+
return data.join('');
|
|
105
104
|
}
|
|
106
105
|
|
|
107
106
|
/**
|
|
@@ -142,7 +141,7 @@ __decorate([
|
|
|
142
141
|
/**
|
|
143
142
|
* @hidden
|
|
144
143
|
*/
|
|
145
|
-
|
|
144
|
+
const modulesList = {
|
|
146
145
|
/* eslint-disable */
|
|
147
146
|
'AutoComplete': 'auto-complete',
|
|
148
147
|
'Color': 'color-picker',
|
|
@@ -258,9 +257,9 @@ let InPlaceEditor = class InPlaceEditor extends Component {
|
|
|
258
257
|
*/
|
|
259
258
|
constructor(options, element) {
|
|
260
259
|
super(options, element);
|
|
260
|
+
this.needsID = true;
|
|
261
261
|
}
|
|
262
262
|
initializeValue() {
|
|
263
|
-
this.needsID = true;
|
|
264
263
|
this.initRender = true;
|
|
265
264
|
this.isTemplate = false;
|
|
266
265
|
this.isVue = false;
|
|
@@ -1825,7 +1824,6 @@ class ComboBox$1 {
|
|
|
1825
1824
|
}
|
|
1826
1825
|
/**
|
|
1827
1826
|
* Destroys the module.
|
|
1828
|
-
*
|
|
1829
1827
|
* @function destroy
|
|
1830
1828
|
* @returns {void}
|
|
1831
1829
|
* @hidden
|
|
@@ -1841,7 +1839,6 @@ class ComboBox$1 {
|
|
|
1841
1839
|
}
|
|
1842
1840
|
/**
|
|
1843
1841
|
* For internal use only - Get the module name.
|
|
1844
|
-
*
|
|
1845
1842
|
* @returns {string} - returns the string
|
|
1846
1843
|
*/
|
|
1847
1844
|
getModuleName() {
|
|
@@ -1868,7 +1865,6 @@ class DateRangePicker$1 {
|
|
|
1868
1865
|
}
|
|
1869
1866
|
/**
|
|
1870
1867
|
* For internal use only - Get the module name.
|
|
1871
|
-
*
|
|
1872
1868
|
* @returns {string} - returns the string
|
|
1873
1869
|
*/
|
|
1874
1870
|
getModuleName() {
|