@syncfusion/ej2-angular-schedule 25.2.3-ngcc → 25.2.4-ngcc

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,26 @@
6
6
 
7
7
  #### Bug fixes
8
8
 
9
+ - `#I539772` - Appointment drag and drop issue in iPad is fixed.
10
+ - `#I522699` - The issue with touch scrolling through appointments, which was caused by interference from the drag and drop and resize feature, has been resolved in touch devices. Drag and resize operations are only enabled after a tap-hold action.
11
+ - `#I583762` - The issue with `refreshTemplates` caused alignment issues in date header has been resolved.
12
+
13
+ ## 25.2.3 (2024-05-08)
14
+
15
+ ### Schedule
16
+
17
+ #### Bug fixes
18
+
19
+ - `#I582520` - The issue with `scrollToResource` not working in the month view has been resolved.
20
+
21
+ - `#I528774` - The `eventTemplate` causing memory leak on date navigation has been fixed.
22
+
23
+ ## 25.1.42 (2024-04-30)
24
+
25
+ ### Schedule
26
+
27
+ #### Bug fixes
28
+
9
29
  - `#I583674` - An issue where the text for today button was not displayed in the toolbar has been fixed.
10
30
 
11
31
  - `#I577108` - An issue with `quickInfotemplates` is not being properly destroyed has been fixed.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-schedule.umd.js
3
- * version : 25.2.3
3
+ * version : 25.2.4
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. 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
@@ -39,23 +39,10 @@ var __metadata = (this && this.__metadata) || function (k, v) {
39
39
  };
40
40
  var input = ['allowVirtualScrolling', 'cellHeaderTemplate', 'cellTemplate', 'dateFormat', 'dateHeaderTemplate', 'dateRangeTemplate', 'dayHeaderTemplate', 'displayDate', 'displayName', 'enableLazyLoading', 'endHour', 'eventTemplate', 'firstDayOfWeek', 'firstMonthOfYear', 'group', 'headerIndentTemplate', 'headerRows', 'interval', 'isSelected', 'maxEventsPerRow', 'monthHeaderTemplate', 'monthsCount', 'numberOfWeeks', 'option', 'orientation', 'readonly', 'resourceHeaderTemplate', 'showWeekNumber', 'showWeekend', 'startHour', 'timeFormat', 'timeScale', 'workDays'];
41
41
  var outputs = [];
42
- /**
43
- * `e-views` directive represent a view of the Angular Schedule.
44
- * It must be contained in a Schedule component(`ejs-schedule`).
45
- * ```html
46
- * <ejs-schedule>
47
- * <e-views>
48
- * <e-view option='day' dateFormat='dd MMM'></e-view>
49
- * <e-view option='week'></e-view>
50
- * </e-views>
51
- * </ejs-schedule>
52
- * ```
53
- */
54
- var ViewDirective = /** @class */ (function (_super) {
42
+
43
+ var ViewDirective = (function (_super) {
55
44
  __extends(ViewDirective, _super);
56
- /**
57
- * @param {?} viewContainerRef
58
- */
45
+
59
46
  function ViewDirective(viewContainerRef) {
60
47
  var _this = _super.call(this) || this;
61
48
  _this.viewContainerRef = viewContainerRef;
@@ -74,9 +61,7 @@ ViewDirective.decorators = [
74
61
  queries: {}
75
62
  },] },
76
63
  ];
77
- /**
78
- * @nocollapse
79
- */
64
+
80
65
  ViewDirective.ctorParameters = function () { return [
81
66
  { type: core.ViewContainerRef, },
82
67
  ]; };
@@ -142,10 +127,8 @@ __decorate([
142
127
  ej2AngularBase.Template(),
143
128
  __metadata("design:type", Object)
144
129
  ], ViewDirective.prototype, "group_headerTooltipTemplate", void 0);
145
- /**
146
- * View Array Directive
147
- */
148
- var ViewsDirective = /** @class */ (function (_super) {
130
+
131
+ var ViewsDirective = (function (_super) {
149
132
  __extends(ViewsDirective, _super);
150
133
  function ViewsDirective() {
151
134
  return _super.call(this, 'views') || this;
@@ -160,29 +143,14 @@ ViewsDirective.decorators = [
160
143
  },
161
144
  },] },
162
145
  ];
163
- /**
164
- * @nocollapse
165
- */
146
+
166
147
  ViewsDirective.ctorParameters = function () { return []; };
167
148
  var input$1 = ['allowMultiple', 'colorField', 'cssClassField', 'dataSource', 'endHourField', 'expandedField', 'field', 'groupIDField', 'idField', 'name', 'query', 'startHourField', 'textField', 'title', 'workDaysField'];
168
149
  var outputs$1 = [];
169
- /**
170
- * `e-resources` directive represent a resources of the Angular Schedule.
171
- * It must be contained in a Schedule component(`ejs-schedule`).
172
- * ```html
173
- * <ejs-schedule>
174
- * <e-resources>
175
- * <e-resource field='RoomId' name='Rooms'></e-resource>
176
- * <e-resource field='OwnerId' name='Owners'></e-resource>
177
- * </e-resources>
178
- * </ejs-schedule>
179
- * ```
180
- */
181
- var ResourceDirective = /** @class */ (function (_super) {
150
+
151
+ var ResourceDirective = (function (_super) {
182
152
  __extends(ResourceDirective, _super);
183
- /**
184
- * @param {?} viewContainerRef
185
- */
153
+
186
154
  function ResourceDirective(viewContainerRef) {
187
155
  var _this = _super.call(this) || this;
188
156
  _this.viewContainerRef = viewContainerRef;
@@ -201,16 +169,12 @@ ResourceDirective.decorators = [
201
169
  queries: {}
202
170
  },] },
203
171
  ];
204
- /**
205
- * @nocollapse
206
- */
172
+
207
173
  ResourceDirective.ctorParameters = function () { return [
208
174
  { type: core.ViewContainerRef, },
209
175
  ]; };
210
- /**
211
- * Resource Array Directive
212
- */
213
- var ResourcesDirective = /** @class */ (function (_super) {
176
+
177
+ var ResourcesDirective = (function (_super) {
214
178
  __extends(ResourcesDirective, _super);
215
179
  function ResourcesDirective() {
216
180
  return _super.call(this, 'resources') || this;
@@ -225,9 +189,7 @@ ResourcesDirective.decorators = [
225
189
  },
226
190
  },] },
227
191
  ];
228
- /**
229
- * @nocollapse
230
- */
192
+
231
193
  ResourcesDirective.ctorParameters = function () { return []; };
232
194
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
233
195
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -245,23 +207,10 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
245
207
  };
246
208
  var input$2 = ['option', 'template'];
247
209
  var outputs$2 = [];
248
- /**
249
- * `e-header-rows` directive represent a header rows of the Schedule.
250
- * It must be contained in a Schedule component(`ejs-schedule`).
251
- * ```html
252
- * <ejs-schedule>
253
- * <e-header-rows>
254
- * <e-header-row option='Week'></e-header-row>
255
- * <e-header-row option='Date'></e-header-row>
256
- * </e-header-rows>
257
- * </ejs-schedule>
258
- * ```
259
- */
260
- var HeaderRowDirective = /** @class */ (function (_super) {
210
+
211
+ var HeaderRowDirective = (function (_super) {
261
212
  __extends(HeaderRowDirective, _super);
262
- /**
263
- * @param {?} viewContainerRef
264
- */
213
+
265
214
  function HeaderRowDirective(viewContainerRef) {
266
215
  var _this = _super.call(this) || this;
267
216
  _this.viewContainerRef = viewContainerRef;
@@ -280,9 +229,7 @@ HeaderRowDirective.decorators = [
280
229
  queries: {}
281
230
  },] },
282
231
  ];
283
- /**
284
- * @nocollapse
285
- */
232
+
286
233
  HeaderRowDirective.ctorParameters = function () { return [
287
234
  { type: core.ViewContainerRef, },
288
235
  ]; };
@@ -293,10 +240,8 @@ __decorate$1([
293
240
  ej2AngularBase.Template(),
294
241
  __metadata$1("design:type", Object)
295
242
  ], HeaderRowDirective.prototype, "template", void 0);
296
- /**
297
- * HeaderRow Array Directive
298
- */
299
- var HeaderRowsDirective = /** @class */ (function (_super) {
243
+
244
+ var HeaderRowsDirective = (function (_super) {
300
245
  __extends(HeaderRowsDirective, _super);
301
246
  function HeaderRowsDirective() {
302
247
  return _super.call(this, 'headerrows') || this;
@@ -311,9 +256,7 @@ HeaderRowsDirective.decorators = [
311
256
  },
312
257
  },] },
313
258
  ];
314
- /**
315
- * @nocollapse
316
- */
259
+
317
260
  HeaderRowsDirective.ctorParameters = function () { return []; };
318
261
  var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
319
262
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -331,24 +274,10 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
331
274
  };
332
275
  var input$3 = ['align', 'cssClass', 'disabled', 'htmlAttributes', 'id', 'name', 'overflow', 'prefixIcon', 'showAlwaysInPopup', 'showTextOn', 'suffixIcon', 'tabIndex', 'template', 'text', 'tooltipText', 'type', 'visible', 'width'];
333
276
  var outputs$3 = ['click'];
334
- /**
335
- * `e-toolbaritems` directive represent a custom toolbar items of the Schedule.
336
- * It must be contained in a Schedule component(`ejs-schedule`).
337
- * ```html
338
- * <ejs-schedule>
339
- * <e-toolbaritems>
340
- * <e-toolbaritem name='Today'></<e-toolbaritem>
341
- * <e-toolbaritem name='DateRangeText'></e-toolbaritem>
342
- * <e-toolbaritem prefixIcon='e-icons e-cut' text='Cut'></e-toolbaritem>
343
- * <e-toolbaritems>
344
- * </ejs-schedule>
345
- * ```
346
- */
347
- var ToolbarItemDirective = /** @class */ (function (_super) {
277
+
278
+ var ToolbarItemDirective = (function (_super) {
348
279
  __extends(ToolbarItemDirective, _super);
349
- /**
350
- * @param {?} viewContainerRef
351
- */
280
+
352
281
  function ToolbarItemDirective(viewContainerRef) {
353
282
  var _this = _super.call(this) || this;
354
283
  _this.viewContainerRef = viewContainerRef;
@@ -367,9 +296,7 @@ ToolbarItemDirective.decorators = [
367
296
  queries: {}
368
297
  },] },
369
298
  ];
370
- /**
371
- * @nocollapse
372
- */
299
+
373
300
  ToolbarItemDirective.ctorParameters = function () { return [
374
301
  { type: core.ViewContainerRef, },
375
302
  ]; };
@@ -380,10 +307,8 @@ __decorate$2([
380
307
  ej2AngularBase.Template(),
381
308
  __metadata$2("design:type", Object)
382
309
  ], ToolbarItemDirective.prototype, "template", void 0);
383
- /**
384
- * ToolbarItem Array Directive
385
- */
386
- var ToolbarItemsDirective = /** @class */ (function (_super) {
310
+
311
+ var ToolbarItemsDirective = (function (_super) {
387
312
  __extends(ToolbarItemsDirective, _super);
388
313
  function ToolbarItemsDirective() {
389
314
  return _super.call(this, 'toolbaritems') || this;
@@ -398,9 +323,7 @@ ToolbarItemsDirective.decorators = [
398
323
  },
399
324
  },] },
400
325
  ];
401
- /**
402
- * @nocollapse
403
- */
326
+
404
327
  ToolbarItemsDirective.ctorParameters = function () { return []; };
405
328
  var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
406
329
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -419,20 +342,10 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
419
342
  var inputs = ['agendaDaysCount', 'allowDragAndDrop', 'allowInline', 'allowKeyboardInteraction', 'allowMultiCellSelection', 'allowMultiDrag', 'allowMultiRowSelection', 'allowResizing', 'allowSwiping', 'calendarMode', 'cellHeaderTemplate', 'cellTemplate', 'cssClass', 'currentView', 'dateFormat', 'dateHeaderTemplate', 'dateRangeTemplate', 'dayHeaderTemplate', 'editorFooterTemplate', 'editorHeaderTemplate', 'editorTemplate', 'enableAdaptiveUI', 'enableAllDayScroll', 'enableHtmlSanitizer', 'enablePersistence', 'enableRecurrenceValidation', 'enableRtl', 'endHour', 'eventDragArea', 'eventSettings', 'firstDayOfWeek', 'firstMonthOfYear', 'group', 'headerIndentTemplate', 'headerRows', 'height', 'hideEmptyAgendaDays', 'locale', 'maxDate', 'minDate', 'monthHeaderTemplate', 'monthsCount', 'quickInfoOnSelectionEnd', 'quickInfoTemplates', 'readonly', 'resourceHeaderTemplate', 'resources', 'rowAutoHeight', 'selectedDate', 'showHeaderBar', 'showQuickInfo', 'showTimeIndicator', 'showWeekNumber', 'showWeekend', 'startHour', 'timeFormat', 'timeScale', 'timezone', 'timezoneDataSource', 'toolbarItems', 'views', 'weekRule', 'width', 'workDays', 'workHours'];
420
343
  var outputs$4 = ['actionBegin', 'actionComplete', 'actionFailure', 'cellClick', 'cellDoubleClick', 'created', 'dataBinding', 'dataBound', 'destroyed', 'drag', 'dragStart', 'dragStop', 'eventClick', 'eventDoubleClick', 'eventRendered', 'hover', 'moreEventsClick', 'navigating', 'popupClose', 'popupOpen', 'renderCell', 'resizeStart', 'resizeStop', 'resizing', 'select', 'virtualScrollStart', 'virtualScrollStop', 'currentViewChange', 'selectedDateChange'];
421
344
  var twoWays = ['currentView', 'selectedDate'];
422
- /**
423
- * `ej-schedule` represents the Angular Schedule Component.
424
- * ```html
425
- * <ejs-schedule></ejs-schedule>
426
- * ```
427
- */
428
- exports.ScheduleComponent = /** @class */ (function (_super) {
345
+
346
+ exports.ScheduleComponent = (function (_super) {
429
347
  __extends(ScheduleComponent, _super);
430
- /**
431
- * @param {?} ngEle
432
- * @param {?} srenderer
433
- * @param {?} viewContainerRef
434
- * @param {?} injector
435
- */
348
+
436
349
  function ScheduleComponent(ngEle, srenderer, viewContainerRef, injector) {
437
350
  var _this = _super.call(this) || this;
438
351
  _this.ngEle = ngEle;
@@ -560,27 +473,19 @@ exports.ScheduleComponent = /** @class */ (function (_super) {
560
473
  _this.context = new ej2AngularBase.ComponentBase();
561
474
  return _this;
562
475
  }
563
- /**
564
- * @return {?}
565
- */
476
+
566
477
  ScheduleComponent.prototype.ngOnInit = function () {
567
478
  this.context.ngOnInit(this);
568
479
  };
569
- /**
570
- * @return {?}
571
- */
480
+
572
481
  ScheduleComponent.prototype.ngAfterViewInit = function () {
573
482
  this.context.ngAfterViewInit(this);
574
483
  };
575
- /**
576
- * @return {?}
577
- */
484
+
578
485
  ScheduleComponent.prototype.ngOnDestroy = function () {
579
486
  this.context.ngOnDestroy(this);
580
487
  };
581
- /**
582
- * @return {?}
583
- */
488
+
584
489
  ScheduleComponent.prototype.ngAfterContentChecked = function () {
585
490
  this.tagObjects[0].instance = this.childViews;
586
491
  if (this.childResources) {
@@ -611,9 +516,7 @@ exports.ScheduleComponent.decorators = [
611
516
  }
612
517
  },] },
613
518
  ];
614
- /**
615
- * @nocollapse
616
- */
519
+
617
520
  exports.ScheduleComponent.ctorParameters = function () { return [
618
521
  { type: core.ElementRef, },
619
522
  { type: core.Renderer2, },
@@ -724,10 +627,8 @@ exports.ScheduleComponent = __decorate$3([
724
627
  core.ViewContainerRef,
725
628
  core.Injector])
726
629
  ], exports.ScheduleComponent);
727
- /**
728
- * NgModule definition for the Schedule component.
729
- */
730
- var ScheduleModule = /** @class */ (function () {
630
+
631
+ var ScheduleModule = (function () {
731
632
  function ScheduleModule() {
732
633
  }
733
634
  return ScheduleModule;
@@ -759,9 +660,7 @@ ScheduleModule.decorators = [
759
660
  ]
760
661
  },] },
761
662
  ];
762
- /**
763
- * @nocollapse
764
- */
663
+
765
664
  ScheduleModule.ctorParameters = function () { return []; };
766
665
  var DayService = { provide: 'ScheduleDay', useValue: ej2Schedule.Day };
767
666
  var WeekService = { provide: 'ScheduleWeek', useValue: ej2Schedule.Week };
@@ -779,10 +678,8 @@ var ExcelExportService = { provide: 'ScheduleExcelExport', useValue: ej2Schedule
779
678
  var ICalendarExportService = { provide: 'ScheduleICalendarExport', useValue: ej2Schedule.ICalendarExport };
780
679
  var ICalendarImportService = { provide: 'ScheduleICalendarImport', useValue: ej2Schedule.ICalendarImport };
781
680
  var PrintService = { provide: 'SchedulePrint', useValue: ej2Schedule.Print };
782
- /**
783
- * NgModule definition for the Schedule component with providers.
784
- */
785
- var ScheduleAllModule = /** @class */ (function () {
681
+
682
+ var ScheduleAllModule = (function () {
786
683
  function ScheduleAllModule() {
787
684
  }
788
685
  return ScheduleAllModule;
@@ -813,9 +710,7 @@ ScheduleAllModule.decorators = [
813
710
  ]
814
711
  },] },
815
712
  ];
816
- /**
817
- * @nocollapse
818
- */
713
+
819
714
  ScheduleAllModule.ctorParameters = function () { return []; };
820
715
  var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
821
716
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -834,20 +729,10 @@ var __metadata$4 = (this && this.__metadata) || function (k, v) {
834
729
  var inputs$1 = ['calendarMode', 'cssClass', 'dateFormat', 'enablePersistence', 'enableRtl', 'endTypes', 'firstDayOfWeek', 'frequencies', 'locale', 'maxDate', 'minDate', 'selectedType', 'startDate', 'value'];
835
730
  var outputs$5 = ['change'];
836
731
  var twoWays$1 = [];
837
- /**
838
- * `ejs-recurrenceeditor` represents the Angular RecurrenceEditor Component.
839
- * ```html
840
- * <ejs-recurrenceeditor></ejs-recurrenceeditor>
841
- * ```
842
- */
843
- exports.RecurrenceEditorComponent = /** @class */ (function (_super) {
732
+
733
+ exports.RecurrenceEditorComponent = (function (_super) {
844
734
  __extends(RecurrenceEditorComponent, _super);
845
- /**
846
- * @param {?} ngEle
847
- * @param {?} srenderer
848
- * @param {?} viewContainerRef
849
- * @param {?} injector
850
- */
735
+
851
736
  function RecurrenceEditorComponent(ngEle, srenderer, viewContainerRef, injector) {
852
737
  var _this = _super.call(this) || this;
853
738
  _this.ngEle = ngEle;
@@ -862,27 +747,19 @@ exports.RecurrenceEditorComponent = /** @class */ (function (_super) {
862
747
  _this.context = new ej2AngularBase.ComponentBase();
863
748
  return _this;
864
749
  }
865
- /**
866
- * @return {?}
867
- */
750
+
868
751
  RecurrenceEditorComponent.prototype.ngOnInit = function () {
869
752
  this.context.ngOnInit(this);
870
753
  };
871
- /**
872
- * @return {?}
873
- */
754
+
874
755
  RecurrenceEditorComponent.prototype.ngAfterViewInit = function () {
875
756
  this.context.ngAfterViewInit(this);
876
757
  };
877
- /**
878
- * @return {?}
879
- */
758
+
880
759
  RecurrenceEditorComponent.prototype.ngOnDestroy = function () {
881
760
  this.context.ngOnDestroy(this);
882
761
  };
883
- /**
884
- * @return {?}
885
- */
762
+
886
763
  RecurrenceEditorComponent.prototype.ngAfterContentChecked = function () {
887
764
  this.context.ngAfterContentChecked(this);
888
765
  };
@@ -898,9 +775,7 @@ exports.RecurrenceEditorComponent.decorators = [
898
775
  queries: {}
899
776
  },] },
900
777
  ];
901
- /**
902
- * @nocollapse
903
- */
778
+
904
779
  exports.RecurrenceEditorComponent.ctorParameters = function () { return [
905
780
  { type: core.ElementRef, },
906
781
  { type: core.Renderer2, },
@@ -914,10 +789,8 @@ exports.RecurrenceEditorComponent = __decorate$4([
914
789
  core.ViewContainerRef,
915
790
  core.Injector])
916
791
  ], exports.RecurrenceEditorComponent);
917
- /**
918
- * NgModule definition for the RecurrenceEditor component.
919
- */
920
- var RecurrenceEditorModule = /** @class */ (function () {
792
+
793
+ var RecurrenceEditorModule = (function () {
921
794
  function RecurrenceEditorModule() {
922
795
  }
923
796
  return RecurrenceEditorModule;
@@ -933,14 +806,10 @@ RecurrenceEditorModule.decorators = [
933
806
  ]
934
807
  },] },
935
808
  ];
936
- /**
937
- * @nocollapse
938
- */
809
+
939
810
  RecurrenceEditorModule.ctorParameters = function () { return []; };
940
- /**
941
- * NgModule definition for the RecurrenceEditor component with providers.
942
- */
943
- var RecurrenceEditorAllModule = /** @class */ (function () {
811
+
812
+ var RecurrenceEditorAllModule = (function () {
944
813
  function RecurrenceEditorAllModule() {
945
814
  }
946
815
  return RecurrenceEditorAllModule;
@@ -954,9 +823,7 @@ RecurrenceEditorAllModule.decorators = [
954
823
  providers: []
955
824
  },] },
956
825
  ];
957
- /**
958
- * @nocollapse
959
- */
826
+
960
827
  RecurrenceEditorAllModule.ctorParameters = function () { return []; };
961
828
 
962
829
  exports.ViewDirective = ViewDirective;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-schedule.umd.min.js
3
- * version : 25.2.3
3
+ * version : 25.2.4
4
4
  * Copyright Syncfusion Inc. 2001 - 2023. 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-angular-schedule@*",
3
- "_id": "@syncfusion/ej2-angular-schedule@25.1.41",
3
+ "_id": "@syncfusion/ej2-angular-schedule@25.2.3",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-IdmxEe3ZVBHe1FU7rXchVcnlW8+gB3hkTbjw0hINjyw3FdGVjmaK2xlZUTASdbI9bB11nQG7IK0+XcumbppfnA==",
5
+ "_integrity": "sha512-TZY0rfvq+NLcYBK5AVRGvhNuzqk/BDPzsBR6T2+vYlHqnXJvGvtI0q2HsVvma/CThRlaLStUcQh5Nx2NlxvRaA==",
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-hotfix-new/@syncfusion/ej2-angular-schedule/-/ej2-angular-schedule-25.1.41.tgz",
23
- "_shasum": "4f6296cf5c6086813ce6480424a29d3f21c8cee8",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-schedule/-/ej2-angular-schedule-25.2.3.tgz",
23
+ "_shasum": "1191419f8d84099efc0b6aba70159c5afe79299e",
24
24
  "_spec": "@syncfusion/ej2-angular-schedule@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_25.1.1/packages/included",
26
26
  "author": {
@@ -31,9 +31,9 @@
31
31
  },
32
32
  "bundleDependencies": false,
33
33
  "dependencies": {
34
- "@syncfusion/ej2-angular-base": "~25.2.3",
34
+ "@syncfusion/ej2-angular-base": "~25.2.4",
35
35
  "@syncfusion/ej2-base": "~25.2.3",
36
- "@syncfusion/ej2-schedule": "25.2.3"
36
+ "@syncfusion/ej2-schedule": "25.2.4"
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 Angular",
@@ -58,5 +58,5 @@
58
58
  "schematics": "./schematics/collection.json",
59
59
  "sideEffects": false,
60
60
  "typings": "ej2-angular-schedule.d.ts",
61
- "version": "25.2.3-ngcc"
61
+ "version": "25.2.4-ngcc"
62
62
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-schedule";
2
- export declare const pkgVer = "^25.1.41";
2
+ export declare const pkgVer = "^25.2.3";
3
3
  export declare const moduleName = "ScheduleModule, RecurrenceEditorModule";
4
- export declare const themeVer = "~25.1.41";
4
+ export declare const themeVer = "~25.2.3";
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.pkgName = '@syncfusion/ej2-angular-schedule';
4
- exports.pkgVer = '^25.2.3';
4
+ exports.pkgVer = '^25.2.4';
5
5
  exports.moduleName = 'ScheduleModule, RecurrenceEditorModule';
6
- exports.themeVer = '~25.2.3';
6
+ exports.themeVer = '~25.2.4';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-schedule';
2
- export const pkgVer = '^25.2.3';
2
+ export const pkgVer = '^25.2.4';
3
3
  export const moduleName = 'ScheduleModule, RecurrenceEditorModule';
4
- export const themeVer = '~25.2.3';
4
+ export const themeVer = '~25.2.4';