@syncfusion/ej2-react-schedule 20.4.42 → 20.4.43

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 CHANGED
@@ -6,6 +6,15 @@
6
6
 
7
7
  #### Bug fixes
8
8
 
9
+ - `#425940` - An issue with adding an aria-pressed attribute to the appointment has been fixed.
10
+ - `#F40124` - The issue with the schedule tooltip displaying start and end times in 12 hour format when the schedule is in 24 hour format has been fixed.
11
+
12
+ ## 20.4.42 (2023-01-04)
13
+
14
+ ### Schedule
15
+
16
+ #### Bug fixes
17
+
9
18
  - `#I426228` - An issue with drag and drop with timeline view header rows has been fixed.
10
19
  - `#I425268` - An issue with drag and drop flickering with `eventDragArea` in timeline views has been fixed.
11
20
  - `#I424662` - An issue with appointment resizing in month view with scrollbar has been fixed.
package/diConfig.json CHANGED
@@ -307,6 +307,7 @@
307
307
  },
308
308
  "templateProperties": [
309
309
  "dateHeaderTemplate",
310
+ "dateRangeTemplate",
310
311
  "dayHeaderTemplate",
311
312
  "cellHeaderTemplate",
312
313
  "cellTemplate",
@@ -475,6 +476,7 @@
475
476
  ],
476
477
  "templateProperties": [
477
478
  "dateHeaderTemplate",
479
+ "dateRangeTemplate",
478
480
  "dayHeaderTemplate",
479
481
  "cellTemplate",
480
482
  "cellHeaderTemplate",
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-react-schedule.min.js
3
- * version : 20.4.42
3
+ * version : 20.4.43
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-react-schedule.umd.min.js
3
- * version : 20.4.42
3
+ * version : 20.4.43
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-react-schedule@*",
3
- "_id": "@syncfusion/ej2-react-schedule@20.4.40",
3
+ "_id": "@syncfusion/ej2-react-schedule@20.4.42",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-IpgGYw3upN1+f+BAy6R6xWjSWhWyizBXCEY6BlSymJ0V1N/LYpExWXXM/1+uyRwZSAX4WJGndVT1dFZVoHY1vw==",
5
+ "_integrity": "sha512-B7d20CjhhFJNHI0Ol2tuj1GJWR1mlznHL3QvUlRKu+jX47tyGhnGXnGCz2LDoCXVlRYxibdtZx5pSMPqUGgniA==",
6
6
  "_location": "/@syncfusion/ej2-react-schedule",
7
7
  "_phantomChildren": {},
8
8
  "_requested": {
@@ -19,8 +19,8 @@
19
19
  "_requiredBy": [
20
20
  "/"
21
21
  ],
22
- "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-schedule/-/ej2-react-schedule-20.4.40.tgz",
23
- "_shasum": "e6a6d8bfaafea34e7ee8d35041ce627e1550d5db",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-react-schedule/-/ej2-react-schedule-20.4.42.tgz",
23
+ "_shasum": "ed08a82d66004157fe9f551a94ce0c42e0a54f5a",
24
24
  "_spec": "@syncfusion/ej2-react-schedule@*",
25
25
  "_where": "/jenkins/workspace/ease-automation_release_19.1.0.1/packages/included",
26
26
  "author": {
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@syncfusion/ej2-base": "~20.4.42",
35
35
  "@syncfusion/ej2-react-base": "~20.4.42",
36
- "@syncfusion/ej2-schedule": "20.4.42"
36
+ "@syncfusion/ej2-schedule": "20.4.43"
37
37
  },
38
38
  "deprecated": false,
39
39
  "description": "Flexible scheduling library with more built-in features and enhanced customization options similar to outlook and google calendar, allowing the users to plan and manage their appointments with efficient data-binding support. for React",
@@ -55,6 +55,6 @@
55
55
  "type": "git",
56
56
  "url": "git+https://github.com/syncfusion/ej2-react-ui-components.git"
57
57
  },
58
- "version": "20.4.42",
58
+ "version": "20.4.43",
59
59
  "sideEffects": false
60
60
  }
@@ -3,6 +3,7 @@ import { Schedule, ScheduleModel } from '@syncfusion/ej2-schedule';
3
3
  import { DefaultHtmlAttributes } from '@syncfusion/ej2-react-base';
4
4
  export interface ScheduleTypecast {
5
5
  dateHeaderTemplate?: string | Function | any;
6
+ dateRangeTemplate?: string | Function | any;
6
7
  dayHeaderTemplate?: string | Function | any;
7
8
  cellTemplate?: string | Function | any;
8
9
  cellHeaderTemplate?: string | Function | any;
@@ -2,6 +2,7 @@ import { ComplexBase } from '@syncfusion/ej2-react-base';
2
2
  import { ViewsModel } from '@syncfusion/ej2-schedule';
3
3
  export interface ViewsDirTypecast {
4
4
  dateHeaderTemplate?: string | Function | any;
5
+ dateRangeTemplate?: string | Function | any;
5
6
  dayHeaderTemplate?: string | Function | any;
6
7
  cellHeaderTemplate?: string | Function | any;
7
8
  cellTemplate?: string | Function | any;