@syncfusion/ej2-angular-schedule 25.2.4-ngcc → 25.2.6-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,14 @@
6
6
 
7
7
  #### Bug fixes
8
8
 
9
+ - `#I586530` - The issue with `refreshTemplates` caused alignment issues in resource header has been resolved.
10
+
11
+ ## 25.2.4 (2024-05-14)
12
+
13
+ ### Schedule
14
+
15
+ #### Bug fixes
16
+
9
17
  - `#I539772` - Appointment drag and drop issue in iPad is fixed.
10
18
  - `#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
19
  - `#I583762` - The issue with `refreshTemplates` caused alignment issues in date header has been resolved.
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-schedule.umd.js
3
- * version : 25.2.4
3
+ * version : 25.2.6
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,10 +39,23 @@ 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
- var ViewDirective = (function (_super) {
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) {
44
55
  __extends(ViewDirective, _super);
45
-
56
+ /**
57
+ * @param {?} viewContainerRef
58
+ */
46
59
  function ViewDirective(viewContainerRef) {
47
60
  var _this = _super.call(this) || this;
48
61
  _this.viewContainerRef = viewContainerRef;
@@ -61,7 +74,9 @@ ViewDirective.decorators = [
61
74
  queries: {}
62
75
  },] },
63
76
  ];
64
-
77
+ /**
78
+ * @nocollapse
79
+ */
65
80
  ViewDirective.ctorParameters = function () { return [
66
81
  { type: core.ViewContainerRef, },
67
82
  ]; };
@@ -127,8 +142,10 @@ __decorate([
127
142
  ej2AngularBase.Template(),
128
143
  __metadata("design:type", Object)
129
144
  ], ViewDirective.prototype, "group_headerTooltipTemplate", void 0);
130
-
131
- var ViewsDirective = (function (_super) {
145
+ /**
146
+ * View Array Directive
147
+ */
148
+ var ViewsDirective = /** @class */ (function (_super) {
132
149
  __extends(ViewsDirective, _super);
133
150
  function ViewsDirective() {
134
151
  return _super.call(this, 'views') || this;
@@ -143,14 +160,29 @@ ViewsDirective.decorators = [
143
160
  },
144
161
  },] },
145
162
  ];
146
-
163
+ /**
164
+ * @nocollapse
165
+ */
147
166
  ViewsDirective.ctorParameters = function () { return []; };
148
167
  var input$1 = ['allowMultiple', 'colorField', 'cssClassField', 'dataSource', 'endHourField', 'expandedField', 'field', 'groupIDField', 'idField', 'name', 'query', 'startHourField', 'textField', 'title', 'workDaysField'];
149
168
  var outputs$1 = [];
150
-
151
- var ResourceDirective = (function (_super) {
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) {
152
182
  __extends(ResourceDirective, _super);
153
-
183
+ /**
184
+ * @param {?} viewContainerRef
185
+ */
154
186
  function ResourceDirective(viewContainerRef) {
155
187
  var _this = _super.call(this) || this;
156
188
  _this.viewContainerRef = viewContainerRef;
@@ -169,12 +201,16 @@ ResourceDirective.decorators = [
169
201
  queries: {}
170
202
  },] },
171
203
  ];
172
-
204
+ /**
205
+ * @nocollapse
206
+ */
173
207
  ResourceDirective.ctorParameters = function () { return [
174
208
  { type: core.ViewContainerRef, },
175
209
  ]; };
176
-
177
- var ResourcesDirective = (function (_super) {
210
+ /**
211
+ * Resource Array Directive
212
+ */
213
+ var ResourcesDirective = /** @class */ (function (_super) {
178
214
  __extends(ResourcesDirective, _super);
179
215
  function ResourcesDirective() {
180
216
  return _super.call(this, 'resources') || this;
@@ -189,7 +225,9 @@ ResourcesDirective.decorators = [
189
225
  },
190
226
  },] },
191
227
  ];
192
-
228
+ /**
229
+ * @nocollapse
230
+ */
193
231
  ResourcesDirective.ctorParameters = function () { return []; };
194
232
  var __decorate$1 = (this && this.__decorate) || function (decorators, target, key, desc) {
195
233
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -207,10 +245,23 @@ var __metadata$1 = (this && this.__metadata) || function (k, v) {
207
245
  };
208
246
  var input$2 = ['option', 'template'];
209
247
  var outputs$2 = [];
210
-
211
- var HeaderRowDirective = (function (_super) {
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) {
212
261
  __extends(HeaderRowDirective, _super);
213
-
262
+ /**
263
+ * @param {?} viewContainerRef
264
+ */
214
265
  function HeaderRowDirective(viewContainerRef) {
215
266
  var _this = _super.call(this) || this;
216
267
  _this.viewContainerRef = viewContainerRef;
@@ -229,7 +280,9 @@ HeaderRowDirective.decorators = [
229
280
  queries: {}
230
281
  },] },
231
282
  ];
232
-
283
+ /**
284
+ * @nocollapse
285
+ */
233
286
  HeaderRowDirective.ctorParameters = function () { return [
234
287
  { type: core.ViewContainerRef, },
235
288
  ]; };
@@ -240,8 +293,10 @@ __decorate$1([
240
293
  ej2AngularBase.Template(),
241
294
  __metadata$1("design:type", Object)
242
295
  ], HeaderRowDirective.prototype, "template", void 0);
243
-
244
- var HeaderRowsDirective = (function (_super) {
296
+ /**
297
+ * HeaderRow Array Directive
298
+ */
299
+ var HeaderRowsDirective = /** @class */ (function (_super) {
245
300
  __extends(HeaderRowsDirective, _super);
246
301
  function HeaderRowsDirective() {
247
302
  return _super.call(this, 'headerrows') || this;
@@ -256,7 +311,9 @@ HeaderRowsDirective.decorators = [
256
311
  },
257
312
  },] },
258
313
  ];
259
-
314
+ /**
315
+ * @nocollapse
316
+ */
260
317
  HeaderRowsDirective.ctorParameters = function () { return []; };
261
318
  var __decorate$2 = (this && this.__decorate) || function (decorators, target, key, desc) {
262
319
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -274,10 +331,24 @@ var __metadata$2 = (this && this.__metadata) || function (k, v) {
274
331
  };
275
332
  var input$3 = ['align', 'cssClass', 'disabled', 'htmlAttributes', 'id', 'name', 'overflow', 'prefixIcon', 'showAlwaysInPopup', 'showTextOn', 'suffixIcon', 'tabIndex', 'template', 'text', 'tooltipText', 'type', 'visible', 'width'];
276
333
  var outputs$3 = ['click'];
277
-
278
- var ToolbarItemDirective = (function (_super) {
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) {
279
348
  __extends(ToolbarItemDirective, _super);
280
-
349
+ /**
350
+ * @param {?} viewContainerRef
351
+ */
281
352
  function ToolbarItemDirective(viewContainerRef) {
282
353
  var _this = _super.call(this) || this;
283
354
  _this.viewContainerRef = viewContainerRef;
@@ -296,7 +367,9 @@ ToolbarItemDirective.decorators = [
296
367
  queries: {}
297
368
  },] },
298
369
  ];
299
-
370
+ /**
371
+ * @nocollapse
372
+ */
300
373
  ToolbarItemDirective.ctorParameters = function () { return [
301
374
  { type: core.ViewContainerRef, },
302
375
  ]; };
@@ -307,8 +380,10 @@ __decorate$2([
307
380
  ej2AngularBase.Template(),
308
381
  __metadata$2("design:type", Object)
309
382
  ], ToolbarItemDirective.prototype, "template", void 0);
310
-
311
- var ToolbarItemsDirective = (function (_super) {
383
+ /**
384
+ * ToolbarItem Array Directive
385
+ */
386
+ var ToolbarItemsDirective = /** @class */ (function (_super) {
312
387
  __extends(ToolbarItemsDirective, _super);
313
388
  function ToolbarItemsDirective() {
314
389
  return _super.call(this, 'toolbaritems') || this;
@@ -323,7 +398,9 @@ ToolbarItemsDirective.decorators = [
323
398
  },
324
399
  },] },
325
400
  ];
326
-
401
+ /**
402
+ * @nocollapse
403
+ */
327
404
  ToolbarItemsDirective.ctorParameters = function () { return []; };
328
405
  var __decorate$3 = (this && this.__decorate) || function (decorators, target, key, desc) {
329
406
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -342,10 +419,20 @@ var __metadata$3 = (this && this.__metadata) || function (k, v) {
342
419
  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'];
343
420
  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'];
344
421
  var twoWays = ['currentView', 'selectedDate'];
345
-
346
- exports.ScheduleComponent = (function (_super) {
422
+ /**
423
+ * `ej-schedule` represents the Angular Schedule Component.
424
+ * ```html
425
+ * <ejs-schedule></ejs-schedule>
426
+ * ```
427
+ */
428
+ exports.ScheduleComponent = /** @class */ (function (_super) {
347
429
  __extends(ScheduleComponent, _super);
348
-
430
+ /**
431
+ * @param {?} ngEle
432
+ * @param {?} srenderer
433
+ * @param {?} viewContainerRef
434
+ * @param {?} injector
435
+ */
349
436
  function ScheduleComponent(ngEle, srenderer, viewContainerRef, injector) {
350
437
  var _this = _super.call(this) || this;
351
438
  _this.ngEle = ngEle;
@@ -473,19 +560,27 @@ exports.ScheduleComponent = (function (_super) {
473
560
  _this.context = new ej2AngularBase.ComponentBase();
474
561
  return _this;
475
562
  }
476
-
563
+ /**
564
+ * @return {?}
565
+ */
477
566
  ScheduleComponent.prototype.ngOnInit = function () {
478
567
  this.context.ngOnInit(this);
479
568
  };
480
-
569
+ /**
570
+ * @return {?}
571
+ */
481
572
  ScheduleComponent.prototype.ngAfterViewInit = function () {
482
573
  this.context.ngAfterViewInit(this);
483
574
  };
484
-
575
+ /**
576
+ * @return {?}
577
+ */
485
578
  ScheduleComponent.prototype.ngOnDestroy = function () {
486
579
  this.context.ngOnDestroy(this);
487
580
  };
488
-
581
+ /**
582
+ * @return {?}
583
+ */
489
584
  ScheduleComponent.prototype.ngAfterContentChecked = function () {
490
585
  this.tagObjects[0].instance = this.childViews;
491
586
  if (this.childResources) {
@@ -516,7 +611,9 @@ exports.ScheduleComponent.decorators = [
516
611
  }
517
612
  },] },
518
613
  ];
519
-
614
+ /**
615
+ * @nocollapse
616
+ */
520
617
  exports.ScheduleComponent.ctorParameters = function () { return [
521
618
  { type: core.ElementRef, },
522
619
  { type: core.Renderer2, },
@@ -627,8 +724,10 @@ exports.ScheduleComponent = __decorate$3([
627
724
  core.ViewContainerRef,
628
725
  core.Injector])
629
726
  ], exports.ScheduleComponent);
630
-
631
- var ScheduleModule = (function () {
727
+ /**
728
+ * NgModule definition for the Schedule component.
729
+ */
730
+ var ScheduleModule = /** @class */ (function () {
632
731
  function ScheduleModule() {
633
732
  }
634
733
  return ScheduleModule;
@@ -660,7 +759,9 @@ ScheduleModule.decorators = [
660
759
  ]
661
760
  },] },
662
761
  ];
663
-
762
+ /**
763
+ * @nocollapse
764
+ */
664
765
  ScheduleModule.ctorParameters = function () { return []; };
665
766
  var DayService = { provide: 'ScheduleDay', useValue: ej2Schedule.Day };
666
767
  var WeekService = { provide: 'ScheduleWeek', useValue: ej2Schedule.Week };
@@ -678,8 +779,10 @@ var ExcelExportService = { provide: 'ScheduleExcelExport', useValue: ej2Schedule
678
779
  var ICalendarExportService = { provide: 'ScheduleICalendarExport', useValue: ej2Schedule.ICalendarExport };
679
780
  var ICalendarImportService = { provide: 'ScheduleICalendarImport', useValue: ej2Schedule.ICalendarImport };
680
781
  var PrintService = { provide: 'SchedulePrint', useValue: ej2Schedule.Print };
681
-
682
- var ScheduleAllModule = (function () {
782
+ /**
783
+ * NgModule definition for the Schedule component with providers.
784
+ */
785
+ var ScheduleAllModule = /** @class */ (function () {
683
786
  function ScheduleAllModule() {
684
787
  }
685
788
  return ScheduleAllModule;
@@ -710,7 +813,9 @@ ScheduleAllModule.decorators = [
710
813
  ]
711
814
  },] },
712
815
  ];
713
-
816
+ /**
817
+ * @nocollapse
818
+ */
714
819
  ScheduleAllModule.ctorParameters = function () { return []; };
715
820
  var __decorate$4 = (this && this.__decorate) || function (decorators, target, key, desc) {
716
821
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
@@ -729,10 +834,20 @@ var __metadata$4 = (this && this.__metadata) || function (k, v) {
729
834
  var inputs$1 = ['calendarMode', 'cssClass', 'dateFormat', 'enablePersistence', 'enableRtl', 'endTypes', 'firstDayOfWeek', 'frequencies', 'locale', 'maxDate', 'minDate', 'selectedType', 'startDate', 'value'];
730
835
  var outputs$5 = ['change'];
731
836
  var twoWays$1 = [];
732
-
733
- exports.RecurrenceEditorComponent = (function (_super) {
837
+ /**
838
+ * `ejs-recurrenceeditor` represents the Angular RecurrenceEditor Component.
839
+ * ```html
840
+ * <ejs-recurrenceeditor></ejs-recurrenceeditor>
841
+ * ```
842
+ */
843
+ exports.RecurrenceEditorComponent = /** @class */ (function (_super) {
734
844
  __extends(RecurrenceEditorComponent, _super);
735
-
845
+ /**
846
+ * @param {?} ngEle
847
+ * @param {?} srenderer
848
+ * @param {?} viewContainerRef
849
+ * @param {?} injector
850
+ */
736
851
  function RecurrenceEditorComponent(ngEle, srenderer, viewContainerRef, injector) {
737
852
  var _this = _super.call(this) || this;
738
853
  _this.ngEle = ngEle;
@@ -747,19 +862,27 @@ exports.RecurrenceEditorComponent = (function (_super) {
747
862
  _this.context = new ej2AngularBase.ComponentBase();
748
863
  return _this;
749
864
  }
750
-
865
+ /**
866
+ * @return {?}
867
+ */
751
868
  RecurrenceEditorComponent.prototype.ngOnInit = function () {
752
869
  this.context.ngOnInit(this);
753
870
  };
754
-
871
+ /**
872
+ * @return {?}
873
+ */
755
874
  RecurrenceEditorComponent.prototype.ngAfterViewInit = function () {
756
875
  this.context.ngAfterViewInit(this);
757
876
  };
758
-
877
+ /**
878
+ * @return {?}
879
+ */
759
880
  RecurrenceEditorComponent.prototype.ngOnDestroy = function () {
760
881
  this.context.ngOnDestroy(this);
761
882
  };
762
-
883
+ /**
884
+ * @return {?}
885
+ */
763
886
  RecurrenceEditorComponent.prototype.ngAfterContentChecked = function () {
764
887
  this.context.ngAfterContentChecked(this);
765
888
  };
@@ -775,7 +898,9 @@ exports.RecurrenceEditorComponent.decorators = [
775
898
  queries: {}
776
899
  },] },
777
900
  ];
778
-
901
+ /**
902
+ * @nocollapse
903
+ */
779
904
  exports.RecurrenceEditorComponent.ctorParameters = function () { return [
780
905
  { type: core.ElementRef, },
781
906
  { type: core.Renderer2, },
@@ -789,8 +914,10 @@ exports.RecurrenceEditorComponent = __decorate$4([
789
914
  core.ViewContainerRef,
790
915
  core.Injector])
791
916
  ], exports.RecurrenceEditorComponent);
792
-
793
- var RecurrenceEditorModule = (function () {
917
+ /**
918
+ * NgModule definition for the RecurrenceEditor component.
919
+ */
920
+ var RecurrenceEditorModule = /** @class */ (function () {
794
921
  function RecurrenceEditorModule() {
795
922
  }
796
923
  return RecurrenceEditorModule;
@@ -806,10 +933,14 @@ RecurrenceEditorModule.decorators = [
806
933
  ]
807
934
  },] },
808
935
  ];
809
-
936
+ /**
937
+ * @nocollapse
938
+ */
810
939
  RecurrenceEditorModule.ctorParameters = function () { return []; };
811
-
812
- var RecurrenceEditorAllModule = (function () {
940
+ /**
941
+ * NgModule definition for the RecurrenceEditor component with providers.
942
+ */
943
+ var RecurrenceEditorAllModule = /** @class */ (function () {
813
944
  function RecurrenceEditorAllModule() {
814
945
  }
815
946
  return RecurrenceEditorAllModule;
@@ -823,7 +954,9 @@ RecurrenceEditorAllModule.decorators = [
823
954
  providers: []
824
955
  },] },
825
956
  ];
826
-
957
+ /**
958
+ * @nocollapse
959
+ */
827
960
  RecurrenceEditorAllModule.ctorParameters = function () { return []; };
828
961
 
829
962
  exports.ViewDirective = ViewDirective;
@@ -1,6 +1,6 @@
1
1
  /*!
2
2
  * filename: ej2-angular-schedule.umd.min.js
3
- * version : 25.2.4
3
+ * version : 25.2.6
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.2.3",
3
+ "_id": "@syncfusion/ej2-angular-schedule@25.2.4",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-TZY0rfvq+NLcYBK5AVRGvhNuzqk/BDPzsBR6T2+vYlHqnXJvGvtI0q2HsVvma/CThRlaLStUcQh5Nx2NlxvRaA==",
5
+ "_integrity": "sha512-+jokdM4f60Xt1GCctp+MOCB/yYid5+3RixsAgoRfpCBNpO2x9F8d4s/T7MS/GSehxYS1/sgPXhSuMefBKbrC0A==",
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.2.3.tgz",
23
- "_shasum": "1191419f8d84099efc0b6aba70159c5afe79299e",
22
+ "_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-schedule/-/ej2-angular-schedule-25.2.4.tgz",
23
+ "_shasum": "ba7512963b6de4d5820ad2ca939a97e7d36ca2be",
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.4",
35
- "@syncfusion/ej2-base": "~25.2.3",
36
- "@syncfusion/ej2-schedule": "25.2.4"
34
+ "@syncfusion/ej2-angular-base": "~25.2.6",
35
+ "@syncfusion/ej2-base": "~25.2.5",
36
+ "@syncfusion/ej2-schedule": "25.2.6"
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.4-ngcc"
61
+ "version": "25.2.6-ngcc"
62
62
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-schedule";
2
- export declare const pkgVer = "^25.2.3";
2
+ export declare const pkgVer = "^25.2.4";
3
3
  export declare const moduleName = "ScheduleModule, RecurrenceEditorModule";
4
- export declare const themeVer = "~25.2.3";
4
+ export declare const themeVer = "~25.2.4";
@@ -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.4';
4
+ exports.pkgVer = '^25.2.6';
5
5
  exports.moduleName = 'ScheduleModule, RecurrenceEditorModule';
6
- exports.themeVer = '~25.2.4';
6
+ exports.themeVer = '~25.2.6';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-schedule';
2
- export const pkgVer = '^25.2.4';
2
+ export const pkgVer = '^25.2.6';
3
3
  export const moduleName = 'ScheduleModule, RecurrenceEditorModule';
4
- export const themeVer = '~25.2.4';
4
+ export const themeVer = '~25.2.6';