@syncfusion/ej2-schedule 19.3.55 → 19.4.42
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 +50 -1
- 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 +489 -145
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +493 -152
- 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/recurrence-editor.js +2 -2
- package/src/schedule/actions/drag.js +12 -4
- package/src/schedule/actions/keyboard.d.ts +7 -0
- package/src/schedule/actions/keyboard.js +197 -28
- package/src/schedule/actions/resize.js +44 -37
- package/src/schedule/base/css-constant.d.ts +6 -0
- package/src/schedule/base/css-constant.js +6 -0
- package/src/schedule/base/interface.d.ts +12 -0
- package/src/schedule/base/resource.js +1 -0
- package/src/schedule/base/schedule-model.d.ts +89 -20
- package/src/schedule/base/schedule.d.ts +88 -19
- package/src/schedule/base/schedule.js +15 -4
- 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 -1
- package/src/schedule/event-renderer/event-base.js +19 -4
- package/src/schedule/event-renderer/inline-edit.js +8 -5
- package/src/schedule/event-renderer/month.js +3 -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 +17 -9
- package/src/schedule/models/event-settings.d.ts +15 -8
- package/src/schedule/models/event-settings.js +6 -3
- 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/quick-popups.js +3 -0
- package/src/schedule/renderer/agenda.js +2 -1
- package/src/schedule/renderer/header-renderer.d.ts +1 -0
- package/src/schedule/renderer/header-renderer.js +23 -8
- package/src/schedule/renderer/month.d.ts +4 -0
- package/src/schedule/renderer/month.js +69 -19
- package/src/schedule/renderer/renderer.js +6 -1
- package/src/schedule/renderer/timeline-year.js +4 -1
- package/src/schedule/renderer/view-base.js +12 -1
- package/src/schedule/renderer/year.d.ts +2 -2
- package/src/schedule/renderer/year.js +24 -6
- 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
|
@@ -6,6 +6,47 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug Fixes
|
|
8
8
|
|
|
9
|
+
- `#SF-360126` - Timeline views appointment misalignment issue while work cells width reduced has been fixed.
|
|
10
|
+
|
|
11
|
+
## 19.4.41 (2022-01-04)
|
|
12
|
+
|
|
13
|
+
### Schedule
|
|
14
|
+
|
|
15
|
+
#### Bug Fixes
|
|
16
|
+
|
|
17
|
+
- `#SF-357890` - An issue with work cells misalignment in the timeline month view has been fixed.
|
|
18
|
+
- `#FB31401` - An issue with today button navigating issue only in the `MonthAgenda` view issue has been fixed.
|
|
19
|
+
- `#FB30967` - An issue while drag and drop an event with `eventDragArea` has been fixed.
|
|
20
|
+
|
|
21
|
+
## 19.4.40 (2021-12-28)
|
|
22
|
+
|
|
23
|
+
### Schedule
|
|
24
|
+
|
|
25
|
+
#### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- `#SF-353817` - An issue with all-day region scrolling issue only in the Mac device has been fixed.
|
|
28
|
+
|
|
29
|
+
## 19.4.38 (2021-12-17)
|
|
30
|
+
|
|
31
|
+
### Schedule
|
|
32
|
+
|
|
33
|
+
#### New Features
|
|
34
|
+
|
|
35
|
+
- `#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.
|
|
36
|
+
- `#FB9963`, `#I331086` - Provided an option to customize the header names when the Scheduler is exported to Excel.
|
|
37
|
+
- `#I276542`, `#F169844` - Provided support to set the minimum event duration for appointments to make the event subject easier to read.
|
|
38
|
+
- `#I335888`, `#F167194`, `#F167235`, `#F169012`, `#F169593`, `#F169647` - Provides accessibility support for timeline year views to select multiple cells for actions.
|
|
39
|
+
|
|
40
|
+
#### Bug Fixes
|
|
41
|
+
|
|
42
|
+
- `#SF-357194` - An issue while slower the performance of the schedule, while drag and drop the event with `eventTemplate` has been fixed.
|
|
43
|
+
|
|
44
|
+
## 19.3.55 (2021-11-23)
|
|
45
|
+
|
|
46
|
+
### Schedule
|
|
47
|
+
|
|
48
|
+
#### Bug Fixes
|
|
49
|
+
|
|
9
50
|
- `#I347217` - An issue while using `getRecurrenceDates` method in the weekly rule option has been fixed.
|
|
10
51
|
|
|
11
52
|
## 19.3.53 (2021-11-12)
|
|
@@ -73,10 +114,18 @@
|
|
|
73
114
|
|
|
74
115
|
### Schedule
|
|
75
116
|
|
|
117
|
+
#### New Features
|
|
118
|
+
|
|
119
|
+
- `#I242605`, `#F160122`, `#F165334` - Provided public method for Scheduler to refresh the Scheduler layout without re-render.
|
|
120
|
+
- `#I314842`, `#I320731` - Provided public method for Scheduler to refresh the given templates.
|
|
121
|
+
|
|
76
122
|
#### Bug Fixes
|
|
77
123
|
|
|
78
124
|
- `#I339839` - An issue with the scheduler resize action is not working properly in timeline views has been fixed.
|
|
79
125
|
- `#I338473` - An issue with the scheduler `showWeekend` property set to false appointments missing has been fixed.
|
|
126
|
+
- `#I340348` - An issue with opening the editor window in RTL mode has been fixed.
|
|
127
|
+
- `#I342117` - An issue with today button navigation in Agenda view has been fixed.
|
|
128
|
+
- `#I340332` - An issue with the scheduler performance in Vertical views has been fixed.
|
|
80
129
|
|
|
81
130
|
## 19.2.56 (2021-08-17)
|
|
82
131
|
|
|
@@ -1287,4 +1336,4 @@ Schedule is an event calendar which facilitates user with the common Outlook-cal
|
|
|
1287
1336
|
- **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.
|
|
1288
1337
|
- **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.
|
|
1289
1338
|
- **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.
|
|
1290
|
-
- **RTL** - Supports displaying the component to display in the direction from right to left.
|
|
1339
|
+
- **RTL** - Supports displaying the component to display in the direction from right to left.
|