@syncfusion/ej2-inplace-editor 19.4.48 → 20.1.55

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 (60) hide show
  1. package/.github/PULL_REQUEST_TEMPLATE/Bug.md +41 -0
  2. package/.github/PULL_REQUEST_TEMPLATE/Feature.md +27 -0
  3. package/CHANGELOG.md +1 -11
  4. package/README.md +1 -1
  5. package/dist/ej2-inplace-editor.umd.min.js +1 -1
  6. package/dist/global/ej2-inplace-editor.min.js +1 -1
  7. package/dist/global/index.d.ts +1 -1
  8. package/package.json +16 -16
  9. package/styles/bootstrap-dark.css +5 -0
  10. package/styles/bootstrap.css +5 -0
  11. package/styles/bootstrap4.css +5 -0
  12. package/styles/bootstrap5-dark.css +13 -6
  13. package/styles/bootstrap5.css +13 -6
  14. package/styles/fabric-dark.css +5 -0
  15. package/styles/fabric.css +5 -0
  16. package/styles/fluent-dark.css +874 -0
  17. package/styles/fluent-dark.scss +1 -0
  18. package/styles/fluent.css +874 -0
  19. package/styles/fluent.scss +1 -0
  20. package/styles/highcontrast-light.css +5 -0
  21. package/styles/highcontrast.css +5 -0
  22. package/styles/inplace-editor/_bootstrap-dark-definition.scss +1 -0
  23. package/styles/inplace-editor/_bootstrap-definition.scss +1 -0
  24. package/styles/inplace-editor/_bootstrap4-definition.scss +1 -0
  25. package/styles/inplace-editor/_bootstrap5-definition.scss +1 -0
  26. package/styles/inplace-editor/_fabric-dark-definition.scss +1 -0
  27. package/styles/inplace-editor/_fabric-definition.scss +1 -0
  28. package/styles/inplace-editor/_fluent-dark-definition.scss +1 -0
  29. package/styles/inplace-editor/_fluent-definition.scss +69 -0
  30. package/styles/inplace-editor/_highcontrast-definition.scss +1 -0
  31. package/styles/inplace-editor/_highcontrast-light-definition.scss +1 -0
  32. package/styles/inplace-editor/_layout.scss +3 -4
  33. package/styles/inplace-editor/_material-dark-definition.scss +1 -0
  34. package/styles/inplace-editor/_material-definition.scss +1 -0
  35. package/styles/inplace-editor/_tailwind-definition.scss +1 -0
  36. package/styles/inplace-editor/_theme.scss +4 -1
  37. package/styles/inplace-editor/bootstrap-dark.css +5 -0
  38. package/styles/inplace-editor/bootstrap.css +5 -0
  39. package/styles/inplace-editor/bootstrap4.css +5 -0
  40. package/styles/inplace-editor/bootstrap5-dark.css +13 -6
  41. package/styles/inplace-editor/bootstrap5.css +13 -6
  42. package/styles/inplace-editor/fabric-dark.css +5 -0
  43. package/styles/inplace-editor/fabric.css +5 -0
  44. package/styles/inplace-editor/fluent-dark.css +874 -0
  45. package/styles/inplace-editor/fluent-dark.scss +26 -0
  46. package/styles/inplace-editor/fluent.css +874 -0
  47. package/styles/inplace-editor/fluent.scss +26 -0
  48. package/styles/inplace-editor/highcontrast-light.css +5 -0
  49. package/styles/inplace-editor/highcontrast.css +5 -0
  50. package/styles/inplace-editor/icons/_fluent-dark.scss +1 -0
  51. package/styles/inplace-editor/icons/_fluent.scss +19 -0
  52. package/styles/inplace-editor/icons/_tailwind.scss +4 -4
  53. package/styles/inplace-editor/material-dark.css +5 -0
  54. package/styles/inplace-editor/material.css +5 -0
  55. package/styles/inplace-editor/tailwind-dark.css +12 -67
  56. package/styles/inplace-editor/tailwind.css +12 -67
  57. package/styles/material-dark.css +5 -0
  58. package/styles/material.css +5 -0
  59. package/styles/tailwind-dark.css +12 -67
  60. 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.3.56 (2021-12-02)
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
- © Copyright 2022 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.
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 : 19.4.48
3
+ * version : 20.1.55
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 : 19.4.48
3
+ * version : 20.1.55
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: index.d.ts
3
- * version : 19.4.48
3
+ * version : 20.1.55
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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-inplace-editor@*",
3
- "_id": "@syncfusion/ej2-inplace-editor@19.3.56",
3
+ "_id": "@syncfusion/ej2-inplace-editor@20.1.47",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-dfGFzohh7efdqL/eTMbICJIkPatIKhkVKDaIglvYnzNXgbYjMBu5c+FWi9gwO7pKX324q17919txfeTUoJ5GkQ==",
5
+ "_integrity": "sha512-An32VdlWQTS/8cD504/jYDwOSSoKpOIqPi655VxV+CXAkCmMhUUlu5KhNzXCJte/2rovXkW/CU7ri5wxPQfGsg==",
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-hotfix-new/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-19.3.56.tgz",
28
- "_shasum": "05f7fd26bd00b9cf26fdb15b256e8488f504fd29",
27
+ "_resolved": "http://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-inplace-editor/-/ej2-inplace-editor-20.1.47.tgz",
28
+ "_shasum": "fa8fe06cd8cdc9388795f787ec917bf261403b64",
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": "~19.4.48",
40
- "@syncfusion/ej2-buttons": "~19.4.48",
41
- "@syncfusion/ej2-calendars": "~19.4.48",
42
- "@syncfusion/ej2-data": "~19.4.48",
43
- "@syncfusion/ej2-dropdowns": "~19.4.48",
44
- "@syncfusion/ej2-inputs": "~19.4.48",
45
- "@syncfusion/ej2-lists": "~19.4.48",
46
- "@syncfusion/ej2-navigations": "~19.4.48",
47
- "@syncfusion/ej2-popups": "~19.4.48",
48
- "@syncfusion/ej2-richtexteditor": "~19.4.48",
49
- "@syncfusion/ej2-splitbuttons": "~19.4.48"
39
+ "@syncfusion/ej2-base": "~20.1.55",
40
+ "@syncfusion/ej2-buttons": "~20.1.55",
41
+ "@syncfusion/ej2-calendars": "~20.1.55",
42
+ "@syncfusion/ej2-data": "~20.1.55",
43
+ "@syncfusion/ej2-dropdowns": "~20.1.55",
44
+ "@syncfusion/ej2-inputs": "~20.1.55",
45
+ "@syncfusion/ej2-lists": "~20.1.55",
46
+ "@syncfusion/ej2-navigations": "~20.1.55",
47
+ "@syncfusion/ej2-popups": "~20.1.55",
48
+ "@syncfusion/ej2-richtexteditor": "~20.1.55",
49
+ "@syncfusion/ej2-splitbuttons": "~20.1.55"
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": "19.4.48",
72
+ "version": "20.1.55",
73
73
  "sideEffects": false
74
74
  }
@@ -615,6 +615,11 @@
615
615
  transform: translateX(30%) translateY(-50%);
616
616
  }
617
617
 
618
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
619
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
620
+ padding: 0;
621
+ }
622
+
618
623
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
619
624
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
620
625
  padding: 12px;
@@ -760,6 +760,11 @@
760
760
  transform: translateX(30%) translateY(-50%);
761
761
  }
762
762
 
763
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
764
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
765
+ padding: 0;
766
+ }
767
+
763
768
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
764
769
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
765
770
  padding: 12px;
@@ -1001,6 +1001,11 @@
1001
1001
  transform: translateX(30%) translateY(-50%);
1002
1002
  }
1003
1003
 
1004
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
1005
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
1006
+ padding: 0;
1007
+ }
1008
+
1004
1009
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
1005
1010
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
1006
1011
  padding: 16px;
@@ -63,7 +63,6 @@
63
63
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
64
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
65
  background: transparent;
66
- color: inherit;
67
66
  }
68
67
 
69
68
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -91,6 +90,13 @@
91
90
  color: #adb5bd;
92
91
  }
93
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
+
94
100
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
95
101
  .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
96
102
  .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
@@ -153,7 +159,7 @@
153
159
  }
154
160
 
155
161
  .e-multiselect .e-input-group-icon.e-ddl-icon {
156
- border-radius: 0 4px 4px 0;
162
+ border-radius: 0 2px 2px 0;
157
163
  border-right-width: 0;
158
164
  }
159
165
 
@@ -638,6 +644,11 @@
638
644
  transform: translateX(30%) translateY(-50%);
639
645
  }
640
646
 
647
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
648
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
649
+ padding: 0;
650
+ }
651
+
641
652
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
642
653
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
643
654
  padding: 16px;
@@ -774,10 +785,6 @@
774
785
  border-radius: 4px;
775
786
  }
776
787
 
777
- .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content {
778
- padding: 0;
779
- }
780
-
781
788
  .e-control.e-inplaceeditor .e-editable-value-wrapper {
782
789
  min-height: 30px;
783
790
  }
@@ -63,7 +63,6 @@
63
63
  .e-input-group.e-control-wrapper.e-ddl .e-input[readonly],
64
64
  .e-float-input.e-control-wrapper.e-ddl input[readonly] {
65
65
  background: transparent;
66
- color: inherit;
67
66
  }
68
67
 
69
68
  .e-input-group.e-control-wrapper.e-ddl.e-readonly .e-input[readonly],
@@ -91,6 +90,13 @@
91
90
  color: #6c757d;
92
91
  }
93
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
+
94
100
  .e-input-group:not(.e-disabled) .e-control.e-dropdownlist ~ .e-ddl-icon,
95
101
  .e-input-group.e-disabled.e-ddl .e-control.e-dropdownlist ~ .e-input-group-icon,
96
102
  .e-control.e-dropdownlist .e-input-group.e-disabled.e-ddl .e-input-group-icon,
@@ -153,7 +159,7 @@
153
159
  }
154
160
 
155
161
  .e-multiselect .e-input-group-icon.e-ddl-icon {
156
- border-radius: 0 4px 4px 0;
162
+ border-radius: 0 2px 2px 0;
157
163
  border-right-width: 0;
158
164
  }
159
165
 
@@ -638,6 +644,11 @@
638
644
  transform: translateX(30%) translateY(-50%);
639
645
  }
640
646
 
647
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
648
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
649
+ padding: 0;
650
+ }
651
+
641
652
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
642
653
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
643
654
  padding: 16px;
@@ -774,10 +785,6 @@
774
785
  border-radius: 4px;
775
786
  }
776
787
 
777
- .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content {
778
- padding: 0;
779
- }
780
-
781
788
  .e-control.e-inplaceeditor .e-editable-value-wrapper {
782
789
  min-height: 30px;
783
790
  }
@@ -569,6 +569,11 @@
569
569
  transform: translateX(30%) translateY(-50%);
570
570
  }
571
571
 
572
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
573
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
574
+ padding: 0;
575
+ }
576
+
572
577
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
573
578
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
574
579
  padding: 12px;
package/styles/fabric.css CHANGED
@@ -563,6 +563,11 @@
563
563
  transform: translateX(30%) translateY(-50%);
564
564
  }
565
565
 
566
+ .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content,
567
+ .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content {
568
+ padding: 0;
569
+ }
570
+
566
571
  .e-bigger .e-inplaceeditor-tip.e-tooltip-wrap .e-tip-content .e-editable-wrapper,
567
572
  .e-inplaceeditor-tip.e-bigger.e-tooltip-wrap .e-tip-content .e-editable-wrapper {
568
573
  padding: 12px;