@syncfusion/ej2-schedule 29.2.4 → 29.2.5

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.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: index.d.ts
3
- * version : 29.2.4
3
+ * version : 29.2.5
4
4
  * Copyright Syncfusion Inc. 2001 - 2024. 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-schedule@*",
3
- "_id": "@syncfusion/ej2-schedule@29.1.41",
3
+ "_id": "@syncfusion/ej2-schedule@29.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-BLyx2NLgfhK/KrpsaBK6k0HmSSA0cWaX7O8wJHbWsiTqkFck22Id/tMKca1Ewl0gvCtNrKBQcteUosEZwiT2vQ==",
5
+ "_integrity": "sha512-2D6f/2LJnMSRV7BtBW9pVFpRrXlum+5YUWcDWcc17sr7BTushuPz/oJbp1OWFmYfjOkbt8CuJmx4/7PgpNwFaw==",
6
6
  "_location": "/@syncfusion/ej2-schedule",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -23,8 +23,8 @@
23
23
  "/@syncfusion/ej2-react-schedule",
24
24
  "/@syncfusion/ej2-vue-schedule"
25
25
  ],
26
- "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-29.1.41.tgz",
27
- "_shasum": "4d04e57a40a82a2c2062b7d2a61e6103eb7921ee",
26
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-schedule/-/ej2-schedule-29.2.4.tgz",
27
+ "_shasum": "6946e40e0befbabf56492019e127209d2a3db2a5",
28
28
  "_spec": "@syncfusion/ej2-schedule@*",
29
29
  "_where": "/jenkins/workspace/elease-automation_release_29.1.1/packages/included",
30
30
  "author": {
@@ -36,14 +36,14 @@
36
36
  "bundleDependencies": false,
37
37
  "dependencies": {
38
38
  "@syncfusion/ej2-base": "~29.2.4",
39
- "@syncfusion/ej2-buttons": "~29.2.4",
40
- "@syncfusion/ej2-calendars": "~29.2.4",
39
+ "@syncfusion/ej2-buttons": "~29.2.5",
40
+ "@syncfusion/ej2-calendars": "~29.2.5",
41
41
  "@syncfusion/ej2-data": "~29.2.4",
42
- "@syncfusion/ej2-dropdowns": "~29.2.4",
42
+ "@syncfusion/ej2-dropdowns": "~29.2.5",
43
43
  "@syncfusion/ej2-excel-export": "~29.2.4",
44
- "@syncfusion/ej2-inputs": "~29.2.4",
44
+ "@syncfusion/ej2-inputs": "~29.2.5",
45
45
  "@syncfusion/ej2-lists": "~29.2.4",
46
- "@syncfusion/ej2-navigations": "~29.2.4",
46
+ "@syncfusion/ej2-navigations": "~29.2.5",
47
47
  "@syncfusion/ej2-popups": "~29.2.4"
48
48
  },
49
49
  "deprecated": false,
@@ -73,6 +73,6 @@
73
73
  "url": "git+https://github.com/syncfusion/ej2-javascript-ui-controls.git"
74
74
  },
75
75
  "typings": "index.d.ts",
76
- "version": "29.2.4",
76
+ "version": "29.2.5",
77
77
  "sideEffects": false
78
78
  }
@@ -160,11 +160,15 @@ var KeyboardInteraction = /** @class */ (function () {
160
160
  break;
161
161
  case 'cut':
162
162
  case 'cmdCut':
163
- this.processClipboardAction(true, undefined, e);
163
+ if (e.ctrlKey || e.metaKey) {
164
+ this.processClipboardAction(true, undefined, e);
165
+ }
164
166
  break;
165
167
  case 'copy':
166
168
  case 'cmdCopy':
167
- this.processClipboardAction(false, undefined, e);
169
+ if (e.ctrlKey || e.metaKey) {
170
+ this.processClipboardAction(false, undefined, e);
171
+ }
168
172
  break;
169
173
  }
170
174
  };