@syncfusion/ej2-inplace-editor 19.4.52 → 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/.github/PULL_REQUEST_TEMPLATE/Bug.md +41 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +27 -0
- package/CHANGELOG.md +1 -11
- package/README.md +1 -1
- package/dist/ej2-inplace-editor.umd.min.js +1 -1
- package/dist/global/ej2-inplace-editor.min.js +1 -1
- package/dist/global/index.d.ts +1 -1
- package/dist/ts/inplace-editor/base/classes.ts +63 -0
- package/dist/ts/inplace-editor/base/events.ts +18 -0
- package/dist/ts/inplace-editor/base/inplace-editor.ts +1750 -0
- package/dist/ts/inplace-editor/base/interface.ts +129 -0
- package/dist/ts/inplace-editor/base/models.ts +49 -0
- package/dist/ts/inplace-editor/base/util.ts +106 -0
- package/dist/ts/inplace-editor/modules/auto-complete.ts +65 -0
- package/dist/ts/inplace-editor/modules/base-module.ts +74 -0
- package/dist/ts/inplace-editor/modules/color-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/combo-box.ts +63 -0
- package/dist/ts/inplace-editor/modules/date-range-picker.ts +55 -0
- package/dist/ts/inplace-editor/modules/multi-select.ts +88 -0
- package/dist/ts/inplace-editor/modules/rte.ts +72 -0
- package/dist/ts/inplace-editor/modules/slider.ts +59 -0
- package/dist/ts/inplace-editor/modules/time-picker.ts +54 -0
- package/package.json +16 -16
- package/styles/bootstrap-dark.css +5 -0
- package/styles/bootstrap.css +5 -0
- package/styles/bootstrap4.css +5 -0
- package/styles/bootstrap5-dark.css +13 -6
- package/styles/bootstrap5.css +13 -6
- package/styles/fabric-dark.css +5 -0
- package/styles/fabric.css +5 -0
- 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/highcontrast-light.css +5 -0
- package/styles/highcontrast.css +5 -0
- package/styles/inplace-editor/_bootstrap-dark-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap4-definition.scss +1 -0
- package/styles/inplace-editor/_bootstrap5-definition.scss +1 -0
- package/styles/inplace-editor/_fabric-dark-definition.scss +1 -0
- package/styles/inplace-editor/_fabric-definition.scss +1 -0
- package/styles/inplace-editor/_fluent-dark-definition.scss +1 -0
- package/styles/inplace-editor/_fluent-definition.scss +69 -0
- package/styles/inplace-editor/_highcontrast-definition.scss +1 -0
- package/styles/inplace-editor/_highcontrast-light-definition.scss +1 -0
- package/styles/inplace-editor/_layout.scss +3 -4
- package/styles/inplace-editor/_material-dark-definition.scss +1 -0
- package/styles/inplace-editor/_material-definition.scss +1 -0
- package/styles/inplace-editor/_tailwind-definition.scss +1 -0
- package/styles/inplace-editor/_theme.scss +4 -1
- package/styles/inplace-editor/bootstrap-dark.css +5 -0
- package/styles/inplace-editor/bootstrap.css +5 -0
- package/styles/inplace-editor/bootstrap4.css +5 -0
- package/styles/inplace-editor/bootstrap5-dark.css +13 -6
- package/styles/inplace-editor/bootstrap5.css +13 -6
- package/styles/inplace-editor/fabric-dark.css +5 -0
- package/styles/inplace-editor/fabric.css +5 -0
- 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/highcontrast-light.css +5 -0
- package/styles/inplace-editor/highcontrast.css +5 -0
- package/styles/inplace-editor/icons/_fluent-dark.scss +1 -0
- package/styles/inplace-editor/icons/_fluent.scss +19 -0
- package/styles/inplace-editor/icons/_tailwind.scss +4 -4
- package/styles/inplace-editor/material-dark.css +5 -0
- package/styles/inplace-editor/material.css +5 -0
- package/styles/inplace-editor/tailwind-dark.css +12 -67
- package/styles/inplace-editor/tailwind.css +12 -67
- package/styles/material-dark.css +5 -0
- package/styles/material.css +5 -0
- package/styles/tailwind-dark.css +12 -67
- package/styles/tailwind.css +12 -67
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
### Bug description
|
|
2
|
+
|
|
3
|
+
(Clearly and concisely describe the problem.)
|
|
4
|
+
|
|
5
|
+
### Root Cause / Analysis
|
|
6
|
+
|
|
7
|
+
(Briefly describe root cause/analysis of the problem. If there is an internal discussion on the forum, provide the link.)
|
|
8
|
+
|
|
9
|
+
### Reason for not identifying earlier
|
|
10
|
+
|
|
11
|
+
(Explain how it was missed to identify in our earlier testing/development.)
|
|
12
|
+
|
|
13
|
+
### Is Breaking issue.?
|
|
14
|
+
|
|
15
|
+
(If it is a breaking issue, provide the commit detail which caused this break.)
|
|
16
|
+
|
|
17
|
+
### Is reported by customer in incident/forum.?
|
|
18
|
+
|
|
19
|
+
(If it is reported by customer, provide the incident or forum details.)
|
|
20
|
+
|
|
21
|
+
### Solution Description
|
|
22
|
+
|
|
23
|
+
(Describe your code changes in detail for reviewers.)
|
|
24
|
+
|
|
25
|
+
### Areas affected and ensured
|
|
26
|
+
|
|
27
|
+
(List out the areas are affected by your code changes.)
|
|
28
|
+
|
|
29
|
+
### E2E report details against this fix
|
|
30
|
+
|
|
31
|
+
(Run E2E locally and mention the details with mail attachment.)
|
|
32
|
+
|
|
33
|
+
### Did you included unit test cases.?
|
|
34
|
+
|
|
35
|
+
(Provide unit testing spec coverage details.)
|
|
36
|
+
|
|
37
|
+
### Is there any API name changes.?
|
|
38
|
+
|
|
39
|
+
/label ~bug
|
|
40
|
+
/assign @ScrumMaster
|
|
41
|
+
/cc @ProductOwner
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
### Feature description
|
|
2
|
+
|
|
3
|
+
(Clearly and concisely describe the feature.)
|
|
4
|
+
|
|
5
|
+
### Analysis / Design
|
|
6
|
+
|
|
7
|
+
(Briefly describe analysis of the feature. If there is an internal discussion on the Forum, provide the link.)
|
|
8
|
+
|
|
9
|
+
### Solution Description
|
|
10
|
+
|
|
11
|
+
(Describe your code changes in detail for reviewers.)
|
|
12
|
+
|
|
13
|
+
### Areas affected and ensured
|
|
14
|
+
|
|
15
|
+
(List out the areas are affected by your code changes.)
|
|
16
|
+
|
|
17
|
+
### Did you included unit test cases.?
|
|
18
|
+
|
|
19
|
+
(Provide unit testing spec coverage details.)
|
|
20
|
+
|
|
21
|
+
### Is there any API name changes.?
|
|
22
|
+
|
|
23
|
+
(Provide new or update of API details)
|
|
24
|
+
|
|
25
|
+
/label ~bug
|
|
26
|
+
/assign @ScrumMaster
|
|
27
|
+
/cc @ProductOwner
|
package/CHANGELOG.md
CHANGED
|
@@ -2,17 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
-
## 19.
|
|
6
|
-
|
|
7
|
-
### In-place Editor
|
|
8
|
-
|
|
9
|
-
#### Bug Fixes
|
|
10
|
-
|
|
11
|
-
- `#I347382` - The issue with "'submitClick' event not triggered for 'enter' key action" has been resolved.
|
|
12
|
-
|
|
13
|
-
- `#I347379` - The issue with "Editor closed when press enter key on multiline enabled textbox" has been resolved.
|
|
14
|
-
|
|
15
|
-
## 19.3.46 (2021-10-19)
|
|
5
|
+
## 19.4.38 (2021-12-17)
|
|
16
6
|
|
|
17
7
|
### In-place Editor
|
|
18
8
|
|
package/README.md
CHANGED
|
@@ -57,4 +57,4 @@ Check the license detail [here](https://github.com/syncfusion/ej2-javascript-ui-
|
|
|
57
57
|
Check the changelog [here](https://github.com/syncfusion/ej2-javascript-ui-controls/blob/master/controls/grids/CHANGELOG.md?utm_source=npm&utm_campaign=grid)
|
|
58
58
|
|
|
59
59
|
|
|
60
|
-
|
|
60
|
+
© Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-inplace-editor.umd.min.js
|
|
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
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/*!
|
|
2
2
|
* filename: ej2-inplace-editor.min.js
|
|
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
|
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
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* In-place Editor classes defined here.
|
|
3
|
+
*/
|
|
4
|
+
/** @hidden */
|
|
5
|
+
export const ROOT: string = 'e-inplaceeditor';
|
|
6
|
+
/** @hidden */
|
|
7
|
+
export const ROOT_TIP: string = 'e-inplaceeditor-tip';
|
|
8
|
+
/** @hidden */
|
|
9
|
+
export const VALUE_WRAPPER: string = 'e-editable-value-wrapper';
|
|
10
|
+
/** @hidden */
|
|
11
|
+
export const VALUE: string = 'e-editable-value';
|
|
12
|
+
/** @hidden */
|
|
13
|
+
export const OVERLAY_ICON: string = 'e-editable-overlay-icon';
|
|
14
|
+
/** @hidden */
|
|
15
|
+
export const TIP_TITLE: string = 'e-editable-tip-title';
|
|
16
|
+
/** @hidden */
|
|
17
|
+
export const TITLE: string = 'e-editable-title';
|
|
18
|
+
/** @hidden */
|
|
19
|
+
export const INLINE: string = 'e-editable-inline';
|
|
20
|
+
/** @hidden */
|
|
21
|
+
export const POPUP: string = 'e-editable-popup';
|
|
22
|
+
/** @hidden */
|
|
23
|
+
export const WRAPPER: string = 'e-editable-wrapper';
|
|
24
|
+
/** @hidden */
|
|
25
|
+
export const LOADING: string = 'e-editable-loading';
|
|
26
|
+
/** @hidden */
|
|
27
|
+
export const FORM: string = 'e-editable-form';
|
|
28
|
+
/** @hidden */
|
|
29
|
+
export const CTRL_GROUP: string = 'e-component-group';
|
|
30
|
+
/** @hidden */
|
|
31
|
+
export const INPUT: string = 'e-editable-component';
|
|
32
|
+
/** @hidden */
|
|
33
|
+
export const BUTTONS: string = 'e-editable-action-buttons';
|
|
34
|
+
/** @hidden */
|
|
35
|
+
export const EDITABLE_ERROR: string = 'e-editable-error';
|
|
36
|
+
/** @hidden */
|
|
37
|
+
export const ELEMENTS: string = 'e-editable-elements';
|
|
38
|
+
/** @hidden */
|
|
39
|
+
export const OPEN: string = 'e-editable-open';
|
|
40
|
+
/** @hidden */
|
|
41
|
+
export const BTN_SAVE: string = 'e-btn-save';
|
|
42
|
+
/** @hidden */
|
|
43
|
+
export const BTN_CANCEL: string = 'e-btn-cancel';
|
|
44
|
+
/** @hidden */
|
|
45
|
+
export const RTE_SPIN_WRAP: string = 'e-rte-spin-wrap';
|
|
46
|
+
/** @hidden */
|
|
47
|
+
export const CTRL_OVERLAY: string = 'e-control-overlay';
|
|
48
|
+
/** @hidden */
|
|
49
|
+
export const DISABLE: string = 'e-disable';
|
|
50
|
+
/** @hidden */
|
|
51
|
+
export const ICONS: string = 'e-icons';
|
|
52
|
+
/** @hidden */
|
|
53
|
+
export const PRIMARY: string = 'e-primary';
|
|
54
|
+
/** @hidden */
|
|
55
|
+
export const SHOW: string = 'e-show';
|
|
56
|
+
/** @hidden */
|
|
57
|
+
export const HIDE: string = 'e-hide';
|
|
58
|
+
/** @hidden */
|
|
59
|
+
export const RTL: string = 'e-rtl';
|
|
60
|
+
/** @hidden */
|
|
61
|
+
export const ERROR: string = 'e-error';
|
|
62
|
+
/** @hidden */
|
|
63
|
+
export const LOAD: string = 'e-loading';
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* In-place Editor events defined here.
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
/** @hidden */
|
|
6
|
+
export const render: string = 'render';
|
|
7
|
+
/** @hidden */
|
|
8
|
+
export const update: string = 'update';
|
|
9
|
+
/** @hidden */
|
|
10
|
+
export const destroy: string = 'destroy';
|
|
11
|
+
/** @hidden */
|
|
12
|
+
export const setFocus: string = 'set-focus';
|
|
13
|
+
/** @hidden */
|
|
14
|
+
export const accessValue: string = 'access-value';
|
|
15
|
+
/** @hidden */
|
|
16
|
+
export const destroyModules: string = 'destroy-modules';
|
|
17
|
+
/** @hidden */
|
|
18
|
+
export const showPopup: string = 'show-popup';
|