@syncfusion/ej2-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/dist/ej2-schedule.min.js +2 -2
- 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 +11 -0
- package/dist/es6/ej2-schedule.es2015.js.map +1 -1
- package/dist/es6/ej2-schedule.es5.js +11 -0
- 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/schedule/actions/virtual-scroll.d.ts +1 -0
- package/src/schedule/actions/virtual-scroll.js +6 -1
- package/src/schedule/base/schedule.js +6 -0
- package/styles/fluent2.css +3 -1031
- package/styles/material3-dark.css +1 -54
- package/styles/material3.css +2 -109
- package/styles/recurrence-editor/fluent2.css +3 -1031
- package/styles/recurrence-editor/material3-dark.css +1 -54
- package/styles/recurrence-editor/material3.css +2 -109
- package/styles/schedule/fluent2.css +3 -1031
- package/styles/schedule/material3-dark.css +1 -54
- package/styles/schedule/material3.css +2 -109
- package/hotfix/26.1.35_Vol2.txt +0 -1
|
@@ -13805,6 +13805,7 @@ class VirtualScroll {
|
|
|
13805
13805
|
this.averageRowHeight = 0;
|
|
13806
13806
|
this.startIndex = 0;
|
|
13807
13807
|
this.existingDataCollection = [];
|
|
13808
|
+
this.enableTransition = true;
|
|
13808
13809
|
this.parent = parent;
|
|
13809
13810
|
this.addEventListener();
|
|
13810
13811
|
}
|
|
@@ -13894,6 +13895,10 @@ class VirtualScroll {
|
|
|
13894
13895
|
const resWrap = this.parent.element.querySelector('.' + RESOURCE_COLUMN_WRAP_CLASS);
|
|
13895
13896
|
const conWrap = this.parent.element.querySelector('.' + CONTENT_WRAP_CLASS);
|
|
13896
13897
|
const eventWrap = this.parent.element.querySelector('.' + EVENT_TABLE_CLASS);
|
|
13898
|
+
if (!this.parent.rowAutoHeight) {
|
|
13899
|
+
this.enableTransition = false;
|
|
13900
|
+
removeClass([conWrap, resWrap], 'e-transition');
|
|
13901
|
+
}
|
|
13897
13902
|
let firstTDIndex = parseInt(resWrap.querySelector('tbody td').getAttribute('data-group-index'), 10);
|
|
13898
13903
|
const endIndex = (firstTDIndex + this.renderedLength);
|
|
13899
13904
|
firstTDIndex = (endIndex > this.parent.resourceBase.expandedResources.length) ?
|
|
@@ -17937,6 +17942,12 @@ let Schedule = class Schedule extends Component {
|
|
|
17937
17942
|
this.virtualScrollModule.isRemoteRefresh = false;
|
|
17938
17943
|
}
|
|
17939
17944
|
this.refreshEvents(isRemoteRefresh);
|
|
17945
|
+
if (this.virtualScrollModule && !this.virtualScrollModule.enableTransition) {
|
|
17946
|
+
const resWrap = this.element.querySelector('.' + RESOURCE_COLUMN_WRAP_CLASS);
|
|
17947
|
+
const conWrap = this.element.querySelector('.' + CONTENT_WRAP_CLASS);
|
|
17948
|
+
this.virtualScrollModule.enableTransition = true;
|
|
17949
|
+
addClass([conWrap, resWrap], 'e-transition');
|
|
17950
|
+
}
|
|
17940
17951
|
}
|
|
17941
17952
|
else {
|
|
17942
17953
|
this.notify(contentReady, {});
|