@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.
Files changed (63) hide show
  1. package/.eslintrc.json +1 -9
  2. package/dist/ej2-inplace-editor.min.js +10 -0
  3. package/dist/ej2-inplace-editor.umd.min.js +2 -2
  4. package/dist/ej2-inplace-editor.umd.min.js.map +1 -1
  5. package/dist/es6/ej2-inplace-editor.es2015.js +6 -10
  6. package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
  7. package/dist/es6/ej2-inplace-editor.es5.js +5 -8
  8. package/dist/es6/ej2-inplace-editor.es5.js.map +1 -1
  9. package/dist/global/ej2-inplace-editor.min.js +2 -2
  10. package/dist/global/ej2-inplace-editor.min.js.map +1 -1
  11. package/dist/global/index.d.ts +1 -1
  12. package/package.json +18 -18
  13. package/src/inplace-editor/base/inplace-editor-model.d.ts +7 -7
  14. package/src/inplace-editor/base/inplace-editor.js +3 -2
  15. package/src/inplace-editor/base/interface.d.ts +0 -1
  16. package/src/inplace-editor/base/models-model.d.ts +0 -2
  17. package/src/inplace-editor/base/models.d.ts +1 -3
  18. package/src/inplace-editor/base/util.d.ts +0 -1
  19. package/src/inplace-editor/base/util.js +2 -3
  20. package/src/inplace-editor/modules/combo-box.d.ts +0 -2
  21. package/src/inplace-editor/modules/combo-box.js +0 -2
  22. package/src/inplace-editor/modules/date-range-picker.d.ts +0 -1
  23. package/src/inplace-editor/modules/date-range-picker.js +0 -1
  24. package/styles/bootstrap-dark.css +3 -0
  25. package/styles/bootstrap.css +3 -1
  26. package/styles/bootstrap4.css +4 -2
  27. package/styles/bootstrap5-dark.css +17 -1
  28. package/styles/bootstrap5.css +17 -1
  29. package/styles/fabric-dark.css +3 -0
  30. package/styles/fabric.css +3 -1
  31. package/styles/fluent-dark.css +4 -1
  32. package/styles/fluent.css +4 -1
  33. package/styles/highcontrast-light.css +6 -0
  34. package/styles/highcontrast.css +6 -1
  35. package/styles/inplace-editor/_all.scss +1 -1
  36. package/styles/inplace-editor/_bootstrap5-definition.scss +3 -0
  37. package/styles/inplace-editor/_fluent-definition.scss +3 -0
  38. package/styles/inplace-editor/_fusionnew-definition.scss +3 -0
  39. package/styles/inplace-editor/_layout.scss +12 -13
  40. package/styles/inplace-editor/_material-definition.scss +1 -1
  41. package/styles/inplace-editor/_material3-definition.scss +3 -0
  42. package/styles/inplace-editor/_tailwind-definition.scss +3 -0
  43. package/styles/inplace-editor/_theme.scss +3 -3
  44. package/styles/inplace-editor/bootstrap-dark.css +3 -0
  45. package/styles/inplace-editor/bootstrap.css +3 -1
  46. package/styles/inplace-editor/bootstrap4.css +4 -2
  47. package/styles/inplace-editor/bootstrap5-dark.css +17 -1
  48. package/styles/inplace-editor/bootstrap5.css +17 -1
  49. package/styles/inplace-editor/fabric-dark.css +3 -0
  50. package/styles/inplace-editor/fabric.css +3 -1
  51. package/styles/inplace-editor/fluent-dark.css +4 -1
  52. package/styles/inplace-editor/fluent.css +4 -1
  53. package/styles/inplace-editor/highcontrast-light.css +6 -0
  54. package/styles/inplace-editor/highcontrast.css +6 -1
  55. package/styles/inplace-editor/material-dark.css +3 -0
  56. package/styles/inplace-editor/material.css +3 -1
  57. package/styles/inplace-editor/tailwind-dark.css +4 -1
  58. package/styles/inplace-editor/tailwind.css +4 -1
  59. package/styles/material-dark.css +3 -0
  60. package/styles/material.css +3 -1
  61. package/styles/tailwind-dark.css +4 -1
  62. package/styles/tailwind.css +4 -1
  63. 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
- var data = [];
101
- for (var i = value.length - 1; i >= 0; i--) {
102
- data.unshift(["&#", value[i].charCodeAt(0), ";"].join(""));
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
- let modulesList = {
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() {