@syncfusion/ej2-angular-schedule 26.2.7 → 26.2.10
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 +10 -2
- package/package.json +8 -8
- package/schematics/utils/lib-details.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
#### Bug fixes
|
|
8
8
|
|
|
9
|
-
- `#
|
|
9
|
+
- `#I607401` - An issue where the events are not aligned in correct position when Scheduler height changed dynamically has been fixed.
|
|
10
10
|
|
|
11
11
|
## 26.2.4 (2024-07-24)
|
|
12
12
|
|
|
@@ -2007,7 +2007,15 @@ Schedule is an event calendar which facilitates user with the common Outlook-cal
|
|
|
2007
2007
|
- **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.
|
|
2008
2008
|
- **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.
|
|
2009
2009
|
- **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.
|
|
2010
|
-
- **RTL** - Supports displaying the component to display in the direction from right to left.##
|
|
2010
|
+
- **RTL** - Supports displaying the component to display in the direction from right to left.## 26.2.7 (2024-07-30)
|
|
2011
|
+
|
|
2012
|
+
### Schedule
|
|
2013
|
+
|
|
2014
|
+
#### Bug fixes
|
|
2015
|
+
|
|
2016
|
+
- `#I614002` - Interacting with the scheduler after printing using the `print` method with print options throws Script error has been fixed.
|
|
2017
|
+
|
|
2018
|
+
## 16.4.48 (2019-01-22)
|
|
2011
2019
|
|
|
2012
2020
|
### Schedule
|
|
2013
2021
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"_from": "@syncfusion/ej2-angular-schedule@*",
|
|
3
|
-
"_id": "@syncfusion/ej2-angular-schedule@26.2.
|
|
3
|
+
"_id": "@syncfusion/ej2-angular-schedule@26.2.7",
|
|
4
4
|
"_inBundle": false,
|
|
5
|
-
"_integrity": "sha512-
|
|
5
|
+
"_integrity": "sha512-b03R1XcF64gBkuh0JDwmv2LufwGPaJBqWHu8qInJykVukSQb62fo5GaRU62sEtm6roamBppzAgGBGFWcAzuNcQ==",
|
|
6
6
|
"_location": "/@syncfusion/ej2-angular-schedule",
|
|
7
7
|
"_phantomChildren": {},
|
|
8
8
|
"_requested": {
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"_requiredBy": [
|
|
20
20
|
"/"
|
|
21
21
|
],
|
|
22
|
-
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-schedule/-/ej2-angular-schedule-26.2.
|
|
23
|
-
"_shasum": "
|
|
22
|
+
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-angular-hotfix/@syncfusion/ej2-angular-schedule/-/ej2-angular-schedule-26.2.7.tgz",
|
|
23
|
+
"_shasum": "cdbb2b895fc2f965ec1c95a927ba5e785fb8b456",
|
|
24
24
|
"_spec": "@syncfusion/ej2-angular-schedule@*",
|
|
25
25
|
"_where": "/jenkins/workspace/elease-automation_release_26.1.1/ivypackages/included",
|
|
26
26
|
"author": {
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
},
|
|
32
32
|
"bundleDependencies": false,
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@syncfusion/ej2-angular-base": "~26.2.
|
|
35
|
-
"@syncfusion/ej2-base": "~26.2.
|
|
36
|
-
"@syncfusion/ej2-schedule": "26.2.
|
|
34
|
+
"@syncfusion/ej2-angular-base": "~26.2.10",
|
|
35
|
+
"@syncfusion/ej2-base": "~26.2.10",
|
|
36
|
+
"@syncfusion/ej2-schedule": "26.2.10",
|
|
37
37
|
"tslib": "^2.3.0"
|
|
38
38
|
},
|
|
39
39
|
"deprecated": false,
|
|
@@ -72,5 +72,5 @@
|
|
|
72
72
|
"schematics": "./schematics/collection.json",
|
|
73
73
|
"sideEffects": false,
|
|
74
74
|
"typings": "syncfusion-ej2-angular-schedule.d.ts",
|
|
75
|
-
"version": "26.2.
|
|
75
|
+
"version": "26.2.10"
|
|
76
76
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export const pkgName = '@syncfusion/ej2-angular-schedule';
|
|
2
|
-
export const pkgVer = '^26.2.
|
|
2
|
+
export const pkgVer = '^26.2.7';
|
|
3
3
|
export const moduleName = 'ScheduleModule, RecurrenceEditorModule';
|
|
4
|
-
export const themeVer = '~26.2.
|
|
4
|
+
export const themeVer = '~26.2.7';
|