@syncfusion/ej2-inplace-editor 24.2.7 → 25.2.3
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-inplace-editor.min.js +2 -2
- 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 +3 -1
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +3 -1
- 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.d.ts +1 -1
- package/src/inplace-editor/base/inplace-editor.js +3 -1
- package/styles/bootstrap-dark.css +4 -0
- package/styles/bootstrap.css +7 -3
- package/styles/fluent-dark.css +5 -0
- package/styles/fluent.css +5 -0
- package/styles/inplace-editor/_bds-definition.scss +70 -0
- package/styles/inplace-editor/bootstrap-dark.css +4 -0
- package/styles/inplace-editor/bootstrap.css +7 -3
- package/styles/inplace-editor/fluent-dark.css +5 -0
- package/styles/inplace-editor/fluent.css +5 -0
- package/styles/inplace-editor/icons/_bds.scss +19 -0
- package/styles/inplace-editor/material-dark.css +9 -0
- package/styles/inplace-editor/material.css +9 -0
- package/styles/material-dark.css +9 -0
- package/styles/material.css +9 -0
- package/.github/PULL_REQUEST_TEMPLATE/Bug.md +0 -41
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +0 -27
|
@@ -1430,7 +1430,9 @@ let InPlaceEditor = class InPlaceEditor extends Component {
|
|
|
1430
1430
|
*/
|
|
1431
1431
|
requiredModules() {
|
|
1432
1432
|
const modules = [];
|
|
1433
|
-
|
|
1433
|
+
if (Array.prototype.indexOf.call(this.moduleList, this.type) > -1) {
|
|
1434
|
+
modules.push({ member: modulesList[this.type], args: [this] });
|
|
1435
|
+
}
|
|
1434
1436
|
return modules;
|
|
1435
1437
|
}
|
|
1436
1438
|
/**
|