@syncfusion/ej2-schedule 19.3.46 → 19.4.38
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 +63 -0
- package/.github/PULL_REQUEST_TEMPLATE/Feature.md +39 -0
- package/CHANGELOG.md +49 -5
- package/dist/ej2-schedule.umd.min.js +2 -2
- package/dist/ej2-schedule.umd.min.js.map +1 -1
- package/dist/es6/ej2-schedule.es2015.js +479 -133
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +480 -137
- package/dist/es6/ej2-schedule.es5.js.map +1 -1
- package/dist/global/ej2-schedule.min.js +2 -2
- package/dist/global/ej2-schedule.min.js.map +1 -1
- package/dist/global/index.d.ts +1 -1
- package/package.json +15 -15
- package/src/recurrence-editor/date-generator.js +3 -3
- package/src/recurrence-editor/recurrence-editor.js +2 -2
- package/src/schedule/actions/crud.js +2 -0
- package/src/schedule/actions/drag.js +28 -18
- package/src/schedule/actions/keyboard.d.ts +7 -0
- package/src/schedule/actions/keyboard.js +197 -28
- package/src/schedule/base/interface.d.ts +19 -0
- package/src/schedule/base/resource.js +1 -0
- package/src/schedule/base/schedule-model.d.ts +97 -20
- package/src/schedule/base/schedule.d.ts +97 -21
- package/src/schedule/base/schedule.js +27 -5
- package/src/schedule/base/type.d.ts +4 -0
- package/src/schedule/base/util.d.ts +1 -0
- package/src/schedule/base/util.js +1 -0
- package/src/schedule/event-renderer/event-base.d.ts +2 -0
- package/src/schedule/event-renderer/event-base.js +29 -9
- package/src/schedule/event-renderer/inline-edit.js +8 -5
- package/src/schedule/event-renderer/month.js +2 -2
- package/src/schedule/event-renderer/timeline-view.js +4 -0
- package/src/schedule/event-renderer/vertical-view.js +9 -6
- package/src/schedule/event-renderer/year.js +1 -1
- package/src/schedule/exports/excel-export.d.ts +2 -1
- package/src/schedule/exports/excel-export.js +21 -18
- package/src/schedule/models/event-settings-model.d.ts +20 -1
- package/src/schedule/models/event-settings.d.ts +18 -0
- package/src/schedule/models/event-settings.js +6 -0
- package/src/schedule/models/views-model.d.ts +19 -0
- package/src/schedule/models/views.d.ts +17 -0
- package/src/schedule/models/views.js +6 -0
- package/src/schedule/popups/event-window.d.ts +0 -1
- package/src/schedule/popups/event-window.js +4 -5
- package/src/schedule/popups/form-validator.js +4 -1
- package/src/schedule/popups/quick-popups.js +3 -0
- package/src/schedule/renderer/agenda.js +3 -1
- package/src/schedule/renderer/header-renderer.d.ts +1 -0
- package/src/schedule/renderer/header-renderer.js +22 -8
- package/src/schedule/renderer/month.d.ts +4 -0
- package/src/schedule/renderer/month.js +68 -19
- package/src/schedule/renderer/timeline-year.js +3 -0
- package/src/schedule/renderer/view-base.js +9 -0
- package/src/schedule/renderer/year.d.ts +2 -2
- package/src/schedule/renderer/year.js +24 -6
- package/src/schedule/timezone/timezone.d.ts +3 -2
- package/src/schedule/timezone/timezone.js +0 -1
- package/styles/bootstrap-dark.css +108 -27
- package/styles/bootstrap.css +105 -27
- package/styles/bootstrap4.css +117 -62
- package/styles/bootstrap5-dark.css +118 -67
- package/styles/bootstrap5.css +118 -67
- package/styles/fabric-dark.css +108 -26
- package/styles/fabric.css +109 -26
- package/styles/highcontrast-light.css +104 -26
- package/styles/highcontrast.css +109 -28
- package/styles/material-dark.css +110 -32
- package/styles/material.css +103 -25
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +7 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +7 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +8 -0
- package/styles/recurrence-editor/_fabric-definition.scss +7 -0
- package/styles/recurrence-editor/_fluent-definition.scss +15 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +7 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +7 -0
- package/styles/recurrence-editor/_layout.scss +20 -4
- package/styles/recurrence-editor/_material-dark-definition.scss +7 -0
- package/styles/recurrence-editor/_material-definition.scss +7 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +15 -8
- package/styles/recurrence-editor/bootstrap-dark.css +20 -4
- package/styles/recurrence-editor/bootstrap.css +20 -4
- package/styles/recurrence-editor/bootstrap4.css +20 -4
- package/styles/recurrence-editor/bootstrap5-dark.css +20 -4
- package/styles/recurrence-editor/bootstrap5.css +20 -4
- package/styles/recurrence-editor/fabric-dark.css +20 -4
- package/styles/recurrence-editor/fabric.css +20 -4
- package/styles/recurrence-editor/highcontrast-light.css +20 -4
- package/styles/recurrence-editor/highcontrast.css +20 -4
- package/styles/recurrence-editor/material-dark.css +20 -4
- package/styles/recurrence-editor/material.css +20 -4
- package/styles/recurrence-editor/tailwind-dark.css +20 -4
- package/styles/recurrence-editor/tailwind.css +20 -4
- package/styles/schedule/_bootstrap-dark-definition.scss +22 -1
- package/styles/schedule/_bootstrap-definition.scss +22 -1
- package/styles/schedule/_bootstrap4-definition.scss +23 -1
- package/styles/schedule/_bootstrap5-definition.scss +145 -119
- package/styles/schedule/_fabric-dark-definition.scss +22 -1
- package/styles/schedule/_fabric-definition.scss +22 -1
- package/styles/schedule/_fluent-definition.scss +218 -0
- package/styles/schedule/_highcontrast-definition.scss +22 -1
- package/styles/schedule/_highcontrast-light-definition.scss +22 -1
- package/styles/schedule/_layout.scss +95 -158
- package/styles/schedule/_material-dark-definition.scss +22 -1
- package/styles/schedule/_material-definition.scss +21 -0
- package/styles/schedule/_tailwind-definition.scss +216 -195
- package/styles/schedule/_theme.scss +1 -1
- package/styles/schedule/bootstrap-dark.css +88 -23
- package/styles/schedule/bootstrap.css +85 -23
- package/styles/schedule/bootstrap4.css +97 -58
- package/styles/schedule/bootstrap5-dark.css +98 -63
- package/styles/schedule/bootstrap5.css +98 -63
- package/styles/schedule/fabric-dark.css +88 -22
- package/styles/schedule/fabric.css +89 -22
- package/styles/schedule/highcontrast-light.css +84 -22
- package/styles/schedule/highcontrast.css +89 -24
- package/styles/schedule/icons/_fluent.scss +231 -0
- package/styles/schedule/icons/_tailwind.scss +231 -231
- package/styles/schedule/material-dark.css +90 -28
- package/styles/schedule/material.css +83 -21
- package/styles/schedule/tailwind-dark.css +94 -52
- package/styles/schedule/tailwind.css +94 -52
- package/styles/tailwind-dark.css +114 -56
- package/styles/tailwind.css +114 -56
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
### Bug description
|
|
2
|
+
|
|
3
|
+
Clearly and concisely describe the problem or feature (this cannot be empty).
|
|
4
|
+
|
|
5
|
+
### Root cause
|
|
6
|
+
|
|
7
|
+
Briefly describe the root cause and analysis of the problem.
|
|
8
|
+
If there is an internal discussion on the forum, provide the link.
|
|
9
|
+
|
|
10
|
+
### Reason for not identifying earlier
|
|
11
|
+
|
|
12
|
+
Find how it was missed in our earlier testing and development by analysing the below checklist. This will help prevent similar mistakes in the future.
|
|
13
|
+
|
|
14
|
+
- [ ] Guidelines/documents are not followed
|
|
15
|
+
|
|
16
|
+
- Common guidelines / Core team guideline
|
|
17
|
+
- Specification document
|
|
18
|
+
- Requirement document
|
|
19
|
+
|
|
20
|
+
- [ ] Guidelines/documents are not given
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
- Common guidelines / Core team guideline
|
|
24
|
+
- Specification document
|
|
25
|
+
- Requirement document
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Reason:
|
|
29
|
+
Mention any one or more reasons from the above points.
|
|
30
|
+
|
|
31
|
+
### Action taken:
|
|
32
|
+
|
|
33
|
+
What action did you take to avoid this in future?
|
|
34
|
+
|
|
35
|
+
### Related areas:
|
|
36
|
+
|
|
37
|
+
Is there any other related areas also to be addressed?
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Is it a breaking issue?
|
|
41
|
+
|
|
42
|
+
If it is a breaking issue, provide the commit detail which caused this break.
|
|
43
|
+
|
|
44
|
+
### Solution description
|
|
45
|
+
|
|
46
|
+
Describe your code changes in detail for reviewers.
|
|
47
|
+
|
|
48
|
+
### Output screenshots
|
|
49
|
+
|
|
50
|
+
Post the output screenshots if an UI is affected or added due to this bug.
|
|
51
|
+
|
|
52
|
+
### Areas affected and ensured
|
|
53
|
+
|
|
54
|
+
List the areas affected by your code changes.
|
|
55
|
+
|
|
56
|
+
### Additional checklist
|
|
57
|
+
|
|
58
|
+
- Did you run the automation against your fix?
|
|
59
|
+
- Is there any API name change?
|
|
60
|
+
- Is there any existing behavior change of other features due to this code change?
|
|
61
|
+
- Does your new code introduce new warnings or binding errors?
|
|
62
|
+
- Does your code pass all FxCop and StyleCop rules?
|
|
63
|
+
- Did you record this case in the unit test or UI test?
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
### Feature description
|
|
2
|
+
|
|
3
|
+
Clearly and concisely describe the problem or feature (this cannot be empty).
|
|
4
|
+
|
|
5
|
+
### Analysis and design
|
|
6
|
+
|
|
7
|
+
If there is an external design, link to its project documentation area.
|
|
8
|
+
If there is an internal discussion on the forum, provide the link.
|
|
9
|
+
|
|
10
|
+
### Solution description
|
|
11
|
+
|
|
12
|
+
Describe your code changes in detail for reviewers.
|
|
13
|
+
|
|
14
|
+
### Output screenshots
|
|
15
|
+
|
|
16
|
+
Post the output screenshots if an UI is affected or added due to this feature.
|
|
17
|
+
|
|
18
|
+
### Areas affected and ensured
|
|
19
|
+
|
|
20
|
+
List the areas are affected by your code changes.
|
|
21
|
+
|
|
22
|
+
### Test cases
|
|
23
|
+
|
|
24
|
+
Provide the unit testing written file details to understand the use cases considered in this implementation.
|
|
25
|
+
If there is no TDD (if it’s not possible to follow), provide the UI automation script location and the Excel file that contains the use cases considered in this implementation.
|
|
26
|
+
Provide the test cases Excel file alone if the feature cannot be automated in any case.
|
|
27
|
+
|
|
28
|
+
### Test bed sample location
|
|
29
|
+
|
|
30
|
+
Provide the test bed sample location where code reviewers can review the new feature’s behaviors. This depends on the CI process that your team follows. It can be from NPMCI, HockeyApp, staging site, local server, etc.
|
|
31
|
+
|
|
32
|
+
### Additional checklist
|
|
33
|
+
|
|
34
|
+
- Did you run the automation against your fix?
|
|
35
|
+
- Is there any API name change?
|
|
36
|
+
- Is there any existing behavior change of other features due to this code change?
|
|
37
|
+
- Does your new code introduce new warnings or binding errors?
|
|
38
|
+
- Does your code pass all FxCop and StyleCop rules?
|
|
39
|
+
- Did you record this case in the unit test or UI test?
|
package/CHANGELOG.md
CHANGED
|
@@ -4,19 +4,55 @@
|
|
|
4
4
|
|
|
5
5
|
### Schedule
|
|
6
6
|
|
|
7
|
+
#### New Features
|
|
8
|
+
|
|
9
|
+
- `#I256450`, `#I256493`, `#I341525` - Provides support for flexible month view that starts from the beginning of the week the displayed date falls in. Also, users can set the number of weeks to be displayed in the Month view.
|
|
10
|
+
- `#FB9963`, `#I331086` - Provided an option to customize the header names when the Scheduler is exported to Excel.
|
|
11
|
+
- `#I276542`, `#F169844` - Provided support to set the minimum event duration for appointments to make the event subject easier to read.
|
|
12
|
+
|
|
7
13
|
#### Bug Fixes
|
|
8
14
|
|
|
9
|
-
- `#
|
|
10
|
-
- `#
|
|
11
|
-
- `#I344682` - An issue with virtual up-scrolling while enabling the `rowAutoHeight` property has been fixed.
|
|
15
|
+
- `#T357194` - An issue while slower the performance of the schedule, while drag and drop the event with `eventTemplate` has been fixed.
|
|
16
|
+
- `#T353817` - An issue with all-day region scrolling issue only in the Mac device has been fixed.
|
|
12
17
|
|
|
13
|
-
## 19.3.
|
|
18
|
+
## 19.3.55 (2021-11-23)
|
|
19
|
+
|
|
20
|
+
### Schedule
|
|
21
|
+
|
|
22
|
+
#### Bug Fixes
|
|
23
|
+
|
|
24
|
+
- `#I347217` - An issue while using `getRecurrenceDates` method in the weekly rule option has been fixed.
|
|
25
|
+
|
|
26
|
+
## 19.3.53 (2021-11-12)
|
|
27
|
+
|
|
28
|
+
### Schedule
|
|
29
|
+
|
|
30
|
+
#### New Features
|
|
31
|
+
|
|
32
|
+
- `#I224286`, `#I224730`, `#I316683`, `#I321325`, `#I331265`, `#I331820`, `#I338907`, `#I342102`, `#F169564`, `#F169824`, `#F169024` - Provided option to render the spanned events greater than 24 hours in either `AllDayRow` region or `TimeSlot` region.
|
|
33
|
+
- `#I339786` - Provided localization support for timezone collections which are displayed in the editor window.
|
|
34
|
+
|
|
35
|
+
## 19.3.48 (2021-11-02)
|
|
36
|
+
|
|
37
|
+
### Schedule
|
|
38
|
+
|
|
39
|
+
#### Bug Fixes
|
|
40
|
+
|
|
41
|
+
- `#F158202` - The `getCurrentViewEvents` method not returns current view events in Agenda view has been fixed.
|
|
42
|
+
- `#I343356` - An issue while using two dynamic validation error message for the scheduler field has been fixed.
|
|
43
|
+
- `#I345316` - An issue while saving an event dynamically using `saveEvent` method only with `timezone` property for the scheduler has been fixed.
|
|
44
|
+
- `#F169453` - An issue with the horizontal scroll position in the timeline month, while dragging or resizing an event has been fixed.
|
|
45
|
+
- `#I342117` - An issue with virtual scrolling down not happening issue in Agenda view mobile mode has been fixed.
|
|
46
|
+
|
|
47
|
+
## 19.3.46 (2021-10-19)
|
|
14
48
|
|
|
15
49
|
### Schedule
|
|
16
50
|
|
|
17
51
|
#### Bug Fixes
|
|
18
52
|
|
|
19
53
|
- `#I344571` - An alignment issue between the resource cells and work cells in timeline year has been fixed.
|
|
54
|
+
- `#FB29199` - Dragging an event from one month to another throws an exception in month view has been fixed.
|
|
55
|
+
- `#I344682` - An issue with virtual up-scrolling while enabling the `rowAutoHeight` property has been fixed.
|
|
20
56
|
|
|
21
57
|
## 19.3.44 (2021-10-05)
|
|
22
58
|
|
|
@@ -52,10 +88,18 @@
|
|
|
52
88
|
|
|
53
89
|
### Schedule
|
|
54
90
|
|
|
91
|
+
#### New Features
|
|
92
|
+
|
|
93
|
+
- `#I242605`, `#F160122`, `#F165334` - Provided public method for Scheduler to refresh the Scheduler layout without re-render.
|
|
94
|
+
- `#I314842`, `#I320731` - Provided public method for Scheduler to refresh the given templates.
|
|
95
|
+
|
|
55
96
|
#### Bug Fixes
|
|
56
97
|
|
|
57
98
|
- `#I339839` - An issue with the scheduler resize action is not working properly in timeline views has been fixed.
|
|
58
99
|
- `#I338473` - An issue with the scheduler `showWeekend` property set to false appointments missing has been fixed.
|
|
100
|
+
- `#I340348` - An issue with opening the editor window in RTL mode has been fixed.
|
|
101
|
+
- `#I342117` - An issue with today button navigation in Agenda view has been fixed.
|
|
102
|
+
- `#I340332` - An issue with the scheduler performance in Vertical views has been fixed.
|
|
59
103
|
|
|
60
104
|
## 19.2.56 (2021-08-17)
|
|
61
105
|
|
|
@@ -1266,4 +1310,4 @@ Schedule is an event calendar which facilitates user with the common Outlook-cal
|
|
|
1266
1310
|
- **Adaptive rendering** - Adapts with optimal user interfaces for mobile and desktop form-factors, thus helping the user’s application to scale elegantly across all the form-factors without any additional effort.
|
|
1267
1311
|
- **Keyboard interaction** - All the common actions such as traversing through the appointments, multiple cell selection, add/edit/delete the appointments, navigate to other views, dates and much more can be performed through keyboard inputs.
|
|
1268
1312
|
- **Localization** - All the static text and date content can be localized to any desired language. Also, it can be displayed with appropriate time mode and date-format as per the localized language.
|
|
1269
|
-
- **RTL** - Supports displaying the component to display in the direction from right to left.
|
|
1313
|
+
- **RTL** - Supports displaying the component to display in the direction from right to left.
|