@syncfusion/ej2-inplace-editor 19.4.38 → 20.1.47
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 +2 -0
- package/README.md +1 -1
- 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 +1 -1
- package/dist/es6/ej2-inplace-editor.es2015.js.map +1 -1
- package/dist/es6/ej2-inplace-editor.es5.js +1 -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/dist/ts/inplace-editor/base/inplace-editor.ts +1 -1
- package/package.json +16 -16
- package/src/inplace-editor/base/inplace-editor.js +1 -1
- package/styles/bootstrap5-dark.css +8 -1
- package/styles/bootstrap5.css +8 -1
- package/styles/fluent-dark.css +888 -0
- package/styles/fluent-dark.scss +1 -0
- package/styles/fluent.css +888 -0
- package/styles/fluent.scss +1 -0
- package/styles/inplace-editor/_fluent-dark-definition.scss +1 -0
- package/styles/inplace-editor/_fluent-definition.scss +4 -4
- package/styles/inplace-editor/bootstrap5-dark.css +8 -1
- package/styles/inplace-editor/bootstrap5.css +8 -1
- package/styles/inplace-editor/fluent-dark.css +888 -0
- package/styles/inplace-editor/fluent-dark.scss +26 -0
- package/styles/inplace-editor/fluent.css +888 -0
- package/styles/inplace-editor/fluent.scss +26 -0
- package/styles/inplace-editor/icons/_fluent-dark.scss +1 -0
- package/styles/inplace-editor/icons/_fluent.scss +4 -4
- package/styles/inplace-editor/icons/_tailwind.scss +4 -4
- package/styles/inplace-editor/tailwind-dark.css +7 -63
- package/styles/inplace-editor/tailwind.css +7 -63
- package/styles/tailwind-dark.css +7 -63
- package/styles/tailwind.css +7 -63
package/dist/global/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: index.d.ts
|
|
3
|
-
* version :
|
|
3
|
+
* version : 20.1.47
|
|
4
4
|
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.
|
|
5
5
|
* Use of this code is subject to the terms of our license.
|
|
6
6
|
* A copy of the current license can be obtained at any time by e-mailing
|
|
@@ -1536,7 +1536,7 @@ export class InPlaceEditor extends Component<HTMLElement> implements INotifyProp
|
|
|
1536
1536
|
});
|
|
1537
1537
|
}
|
|
1538
1538
|
private enterKeyDownHandler(e: KeyboardEvent): void {
|
|
1539
|
-
if (!closest(e.target as Element, '.' + classes.INPUT + ' .e-richtexteditor')) {
|
|
1539
|
+
if (!closest(e.target as Element, '.' + classes.INPUT + ' .e-richtexteditor') && (!(e.currentTarget as Element).getElementsByTagName("textarea")[0])) {
|
|
1540
1540
|
if ((e.keyCode === 13 && e.which === 13) && closest(e.target as Element, '.' + classes.INPUT)) {
|
|
1541
1541
|
this.save();
|
|
1542
1542
|
this.trigger('submitClick', e);
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-inplace-editor@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-inplace-editor@19.
|
|
3
|
+
"_id": "@syncfusion/ej2-inplace-editor@19.8.0",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-YsqdfsBdh/Ro3TRHV2Ll4OB8TcsB5tYaXxctJ8sj4jko2KadBbmFP22GOvBheOLdp3DUPLeTfYH+Iq64bUStug==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-inplace-editor",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"/@syncfusion/ej2-react-inplace-editor",
|
|
25
25
|
"/@syncfusion/ej2-vue-inplace-editor"
|
|
26
26
|
],
|
|
27
|
-
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-19.
|
|
28
|
-
"_shasum": "
|
|
27
|
+
"_resolved": "http://nexus.syncfusion.com/repository/ej2-release/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-19.8.0.tgz",
|
|
28
|
+
"_shasum": "991d9fd1b7cf7c22966f280319eb7e915d3fa3db",
|
|
29
29
|
"_spec": "@syncfusion/ej2-inplace-editor@*",
|
|
30
30
|
"_where": "/jenkins/workspace/automation_release_19.1.0.1-ZPMUBNQ6AUYH6YGEFBPVYMEQLRRW2SLD4XCZ6GATNZJFYJ3RIAOA/packages/included",
|
|
31
31
|
"author": {
|
|
@@ -36,17 +36,17 @@
|
|
|
36
36
|
},
|
|
37
37
|
"bundleDependencies": false,
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@syncfusion/ej2-base": "~
|
|
40
|
-
"@syncfusion/ej2-buttons": "~
|
|
41
|
-
"@syncfusion/ej2-calendars": "~
|
|
42
|
-
"@syncfusion/ej2-data": "~
|
|
43
|
-
"@syncfusion/ej2-dropdowns": "~
|
|
44
|
-
"@syncfusion/ej2-inputs": "~
|
|
45
|
-
"@syncfusion/ej2-lists": "~
|
|
46
|
-
"@syncfusion/ej2-navigations": "~
|
|
47
|
-
"@syncfusion/ej2-popups": "~
|
|
48
|
-
"@syncfusion/ej2-richtexteditor": "~
|
|
49
|
-
"@syncfusion/ej2-splitbuttons": "~
|
|
39
|
+
"@syncfusion/ej2-base": "~20.1.47",
|
|
40
|
+
"@syncfusion/ej2-buttons": "~20.1.47",
|
|
41
|
+
"@syncfusion/ej2-calendars": "~20.1.47",
|
|
42
|
+
"@syncfusion/ej2-data": "~20.1.47",
|
|
43
|
+
"@syncfusion/ej2-dropdowns": "~20.1.47",
|
|
44
|
+
"@syncfusion/ej2-inputs": "~20.1.47",
|
|
45
|
+
"@syncfusion/ej2-lists": "~20.1.47",
|
|
46
|
+
"@syncfusion/ej2-navigations": "~20.1.47",
|
|
47
|
+
"@syncfusion/ej2-popups": "~20.1.47",
|
|
48
|
+
"@syncfusion/ej2-richtexteditor": "~20.1.47",
|
|
49
|
+
"@syncfusion/ej2-splitbuttons": "~20.1.47"
|
|
50
50
|
},
|
|
51
51
|
"deprecated": false,
|
|
52
52
|
"description": "A package of Essential JS 2 Inplace editor components, which is used to edit and update the value dynamically in server.",
|
|
@@ -69,6 +69,6 @@
|
|
|
69
69
|
"url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
|
|
70
70
|
},
|
|
71
71
|
"typings": "index.d.ts",
|
|
72
|
-
"version": "
|
|
72
|
+
"version": "20.1.47",
|
|
73
73
|
"sideEffects": false
|
|
74
74
|
}
|
|
@@ -1116,7 +1116,7 @@ var InPlaceEditor = /** @class */ (function (_super) {
|
|
|
1116
1116
|
});
|
|
1117
1117
|
};
|
|
1118
1118
|
InPlaceEditor.prototype.enterKeyDownHandler = function (e) {
|
|
1119
|
-
if (!closest(e.target, '.' + classes.INPUT + ' .e-richtexteditor')) {
|
|
1119
|
+
if (!closest(e.target, '.' + classes.INPUT + ' .e-richtexteditor') && (!e.currentTarget.getElementsByTagName("textarea")[0])) {
|
|
1120
1120
|
if ((e.keyCode === 13 && e.which === 13) && closest(e.target, '.' + classes.INPUT)) {
|
|
1121
1121
|
this.save();
|
|
1122
1122
|
this.trigger('submitClick', e);
|
|
@@ -90,6 +90,13 @@
|
|
|
90
90
|
color: #adb5bd;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
94
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
95
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
96
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
97
|
+
background: #343a40;
|
|
98
|
+
}
|
|
99
|
+
|
|
93
100
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
94
101
|
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
95
102
|
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -152,7 +159,7 @@
|
|
|
152
159
|
}
|
|
153
160
|
|
|
154
161
|
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
155
|
-
border-radius: 0
|
|
162
|
+
border-radius: 0 2px 2px 0;
|
|
156
163
|
border-right-width: 0;
|
|
157
164
|
}
|
|
158
165
|
|
package/styles/bootstrap5.css
CHANGED
|
@@ -90,6 +90,13 @@
|
|
|
90
90
|
color: #6c757d;
|
|
91
91
|
}
|
|
92
92
|
|
|
93
|
+
.e-input-group.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
94
|
+
.e-input-group.e-control-wrapper.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
95
|
+
.e-float-input.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon,
|
|
96
|
+
.e-float-input.e-control-wrapper.e-ddl.e-readonly .e-input[readonly] ~ span.e-input-group-icon.e-ddl-icon.e-search-icon {
|
|
97
|
+
background: #e9ecef;
|
|
98
|
+
}
|
|
99
|
+
|
|
93
100
|
.e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
|
|
94
101
|
.e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
|
|
95
102
|
.e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
|
|
@@ -152,7 +159,7 @@
|
|
|
152
159
|
}
|
|
153
160
|
|
|
154
161
|
.e-multiselect .e-input-group-icon.e-ddl-icon {
|
|
155
|
-
border-radius: 0
|
|
162
|
+
border-radius: 0 2px 2px 0;
|
|
156
163
|
border-right-width: 0;
|
|
157
164
|
}
|
|
158
165
|
|