@syncfusion/ej2-angular-schedule 31.2.2 → 31.2.3-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.
Files changed (45) hide show
  1. package/@syncfusion/ej2-angular-schedule.es5.js +955 -0
  2. package/@syncfusion/ej2-angular-schedule.es5.js.map +1 -0
  3. package/@syncfusion/ej2-angular-schedule.js +894 -0
  4. package/@syncfusion/ej2-angular-schedule.js.map +1 -0
  5. package/LICENSE +10 -0
  6. package/dist/ej2-angular-schedule.umd.js +1114 -0
  7. package/dist/ej2-angular-schedule.umd.js.map +1 -0
  8. package/dist/ej2-angular-schedule.umd.min.js +11 -0
  9. package/dist/ej2-angular-schedule.umd.min.js.map +1 -0
  10. package/ej2-angular-schedule.d.ts +6 -0
  11. package/ej2-angular-schedule.metadata.json +1 -0
  12. package/package.json +8 -21
  13. package/public_api.d.ts +1 -1
  14. package/schematics/utils/lib-details.js +2 -2
  15. package/schematics/utils/lib-details.ts +2 -2
  16. package/src/index.d.ts +11 -11
  17. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +5 -11
  18. package/src/recurrence-editor/recurrenceeditor.component.d.ts +30 -33
  19. package/src/recurrence-editor/recurrenceeditor.module.d.ts +5 -11
  20. package/src/schedule/headerrows.directive.d.ts +47 -52
  21. package/src/schedule/resources.directive.d.ts +110 -115
  22. package/src/schedule/schedule-all.module.d.ts +22 -28
  23. package/src/schedule/schedule.component.d.ts +221 -224
  24. package/src/schedule/schedule.module.d.ts +5 -15
  25. package/src/schedule/toolbaritems.directive.d.ts +172 -177
  26. package/src/schedule/views.directive.d.ts +319 -324
  27. package/CHANGELOG.md +0 -2404
  28. package/esm2020/public_api.mjs +0 -2
  29. package/esm2020/src/index.mjs +0 -12
  30. package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +0 -23
  31. package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +0 -59
  32. package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +0 -25
  33. package/esm2020/src/schedule/headerrows.directive.mjs +0 -66
  34. package/esm2020/src/schedule/resources.directive.mjs +0 -58
  35. package/esm2020/src/schedule/schedule-all.module.mjs +0 -74
  36. package/esm2020/src/schedule/schedule.component.mjs +0 -306
  37. package/esm2020/src/schedule/schedule.module.mjs +0 -61
  38. package/esm2020/src/schedule/toolbaritems.directive.mjs +0 -67
  39. package/esm2020/src/schedule/views.directive.mjs +0 -132
  40. package/esm2020/syncfusion-ej2-angular-schedule.mjs +0 -5
  41. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +0 -829
  42. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +0 -1
  43. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +0 -829
  44. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +0 -1
  45. package/syncfusion-ej2-angular-schedule.d.ts +0 -5
@@ -1,33 +1,30 @@
1
- import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
- import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
- import { RecurrenceEditor } from '@syncfusion/ej2-schedule';
4
- import * as i0 from "@angular/core";
5
- export declare const inputs: string[];
6
- export declare const outputs: string[];
7
- export declare const twoWays: string[];
8
- /**
9
- * `ejs-recurrenceeditor` represents the Angular RecurrenceEditor Component.
10
- * ```html
11
- * <ejs-recurrenceeditor></ejs-recurrenceeditor>
12
- * ```
13
- */
14
- export declare class RecurrenceEditorComponent extends RecurrenceEditor implements IComponentBase {
15
- private ngEle;
16
- private srenderer;
17
- private viewContainerRef;
18
- private injector;
19
- context: any;
20
- tagObjects: any;
21
- change: any;
22
- created: any;
23
- destroyed: any;
24
- constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
25
- ngOnInit(): void;
26
- ngAfterViewInit(): void;
27
- ngOnDestroy(): void;
28
- ngAfterContentChecked(): void;
29
- registerEvents: (eventList: string[]) => void;
30
- addTwoWay: (propList: string[]) => void;
31
- static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceEditorComponent, never>;
32
- static ɵcmp: i0.ɵɵComponentDeclaration<RecurrenceEditorComponent, "ejs-recurrenceeditor", never, { "calendarMode": "calendarMode"; "cssClass": "cssClass"; "dateFormat": "dateFormat"; "enablePersistence": "enablePersistence"; "enableRtl": "enableRtl"; "endTypes": "endTypes"; "firstDayOfWeek": "firstDayOfWeek"; "frequencies": "frequencies"; "locale": "locale"; "maxDate": "maxDate"; "minDate": "minDate"; "selectedType": "selectedType"; "startDate": "startDate"; "value": "value"; }, { "change": "change"; "created": "created"; "destroyed": "destroyed"; }, never, never>;
33
- }
1
+ import { ElementRef, ViewContainerRef, Renderer2, Injector } from '@angular/core';
2
+ import { IComponentBase } from '@syncfusion/ej2-angular-base';
3
+ import { RecurrenceEditor } from '@syncfusion/ej2-schedule';
4
+ export declare const inputs: string[];
5
+ export declare const outputs: string[];
6
+ export declare const twoWays: string[];
7
+ /**
8
+ * `ejs-recurrenceeditor` represents the Angular RecurrenceEditor Component.
9
+ * ```html
10
+ * <ejs-recurrenceeditor></ejs-recurrenceeditor>
11
+ * ```
12
+ */
13
+ export declare class RecurrenceEditorComponent extends RecurrenceEditor implements IComponentBase {
14
+ private ngEle;
15
+ private srenderer;
16
+ private viewContainerRef;
17
+ private injector;
18
+ context: any;
19
+ tagObjects: any;
20
+ change: any;
21
+ created: any;
22
+ destroyed: any;
23
+ constructor(ngEle: ElementRef, srenderer: Renderer2, viewContainerRef: ViewContainerRef, injector: Injector);
24
+ ngOnInit(): void;
25
+ ngAfterViewInit(): void;
26
+ ngOnDestroy(): void;
27
+ ngAfterContentChecked(): void;
28
+ registerEvents: (eventList: string[]) => void;
29
+ addTwoWay: (propList: string[]) => void;
30
+ }
@@ -1,11 +1,5 @@
1
- import * as i0 from "@angular/core";
2
- import * as i1 from "./recurrenceeditor.component";
3
- import * as i2 from "@angular/common";
4
- /**
5
- * NgModule definition for the RecurrenceEditor component.
6
- */
7
- export declare class RecurrenceEditorModule {
8
- static ɵfac: i0.ɵɵFactoryDeclaration<RecurrenceEditorModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<RecurrenceEditorModule, [typeof i1.RecurrenceEditorComponent], [typeof i2.CommonModule], [typeof i1.RecurrenceEditorComponent]>;
10
- static ɵinj: i0.ɵɵInjectorDeclaration<RecurrenceEditorModule>;
11
- }
1
+ /**
2
+ * NgModule definition for the RecurrenceEditor component.
3
+ */
4
+ export declare class RecurrenceEditorModule {
5
+ }
@@ -1,52 +1,47 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-header-rows` directive represent a header rows of the Schedule.
6
- * It must be contained in a Schedule component(`ejs-schedule`).
7
- * ```html
8
- * <ejs-schedule>
9
- * <e-header-rows>
10
- * <e-header-row option='Week'></e-header-row>
11
- * <e-header-row option='Date'></e-header-row>
12
- * </e-header-rows>
13
- * </ejs-schedule>
14
- * ```
15
- */
16
- export declare class HeaderRowDirective extends ComplexBase<HeaderRowDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * It defines the header row type, which accepts either of the following values.
21
- * * `Year`: Denotes the year row in the header bar.
22
- * * `Month`: Denotes the month row in the header bar.
23
- * * `Week`: Denotes the week row in the header bar.
24
- * * `Date`: Denotes the date row in the header bar.
25
- * * `Hour`: Denotes the hour row in the header bar.
26
- * @default null
27
- */
28
- option: any;
29
- /**
30
- * Template option to customize the individual header rows. It accepts either the string or HTMLElement as template design
31
- * content and parse it appropriately before displaying it onto the header cells. The field that
32
- * can be accessed via this template is `date`.
33
- * @default null
34
- * @angulartype string | object
35
- * @reacttype string | function | JSX.Element
36
- * @vuetype string | function
37
- * @asptype string
38
- */
39
- template: any;
40
- constructor(viewContainerRef: ViewContainerRef);
41
- static ɵfac: i0.ɵɵFactoryDeclaration<HeaderRowDirective, never>;
42
- static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderRowDirective, "e-header-rows>e-header-row", never, { "option": "option"; "template": "template"; }, {}, ["template"]>;
43
- }
44
- /**
45
- * HeaderRow Array Directive
46
- * @private
47
- */
48
- export declare class HeaderRowsDirective extends ArrayBase<HeaderRowsDirective> {
49
- constructor();
50
- static ɵfac: i0.ɵɵFactoryDeclaration<HeaderRowsDirective, never>;
51
- static ɵdir: i0.ɵɵDirectiveDeclaration<HeaderRowsDirective, "ejs-schedule>e-header-rows", never, {}, {}, ["children"]>;
52
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-header-rows` directive represent a header rows of the Schedule.
5
+ * It must be contained in a Schedule component(`ejs-schedule`).
6
+ * ```html
7
+ * <ejs-schedule>
8
+ * <e-header-rows>
9
+ * <e-header-row option='Week'></e-header-row>
10
+ * <e-header-row option='Date'></e-header-row>
11
+ * </e-header-rows>
12
+ * </ejs-schedule>
13
+ * ```
14
+ */
15
+ export declare class HeaderRowDirective extends ComplexBase<HeaderRowDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * It defines the header row type, which accepts either of the following values.
20
+ * * `Year`: Denotes the year row in the header bar.
21
+ * * `Month`: Denotes the month row in the header bar.
22
+ * * `Week`: Denotes the week row in the header bar.
23
+ * * `Date`: Denotes the date row in the header bar.
24
+ * * `Hour`: Denotes the hour row in the header bar.
25
+ * @default null
26
+ */
27
+ option: any;
28
+ /**
29
+ * Template option to customize the individual header rows. It accepts either the string or HTMLElement as template design
30
+ * content and parse it appropriately before displaying it onto the header cells. The field that
31
+ * can be accessed via this template is `date`.
32
+ * @default null
33
+ * @angulartype string | object
34
+ * @reacttype string | function | JSX.Element
35
+ * @vuetype string | function
36
+ * @asptype string
37
+ */
38
+ template: any;
39
+ constructor(viewContainerRef: ViewContainerRef);
40
+ }
41
+ /**
42
+ * HeaderRow Array Directive
43
+ * @private
44
+ */
45
+ export declare class HeaderRowsDirective extends ArrayBase<HeaderRowsDirective> {
46
+ constructor();
47
+ }
@@ -1,115 +1,110 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- import * as i0 from "@angular/core";
4
- /**
5
- * `e-resources` directive represent a resources of the Angular Schedule.
6
- * It must be contained in a Schedule component(`ejs-schedule`).
7
- * ```html
8
- * <ejs-schedule>
9
- * <e-resources>
10
- * <e-resource field='RoomId' name='Rooms'></e-resource>
11
- * <e-resource field='OwnerId' name='Owners'></e-resource>
12
- * </e-resources>
13
- * </ejs-schedule>
14
- * ```
15
- */
16
- export declare class ResourceDirective extends ComplexBase<ResourceDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- /**
20
- * When set to true, allows multiple selection of resource names, thus creating multiple instances of same appointment for the
21
- * selected resources.
22
- * @default false
23
- */
24
- allowMultiple: any;
25
- /**
26
- * It maps the `color` field from the dataSource, which is used to specify colors for the resources.
27
- * @default 'Color'
28
- */
29
- colorField: any;
30
- /**
31
- * It maps the `cssClass` field from the dataSource, which is used to specify different styles to each resource appointments.
32
- * @default 'CssClass'
33
- */
34
- cssClassField: any;
35
- /**
36
- * Assigns the resource dataSource
37
- * The data can be passed either as an array of JavaScript objects,
38
- * or else can create an instance of [`DataManager`](http://ej2.syncfusion.com/documentation/data/api-dataManager.html)
39
- * in case of processing remote data and can be assigned to the `dataSource` property.
40
- * With the remote data assigned to dataSource, check the available
41
- * [adaptors](http://ej2.syncfusion.com/documentation/data/adaptors.html) to customize the data processing.
42
- * @default []
43
- */
44
- dataSource: any;
45
- /**
46
- * It maps the `endHour` field from the dataSource, which is used to specify different work end hour for each resources.
47
- * @default 'EndHour'
48
- */
49
- endHourField: any;
50
- /**
51
- * It maps the `expanded` field from the dataSource, which is used to specify whether each resource levels
52
- * in timeline view needs to be maintained in an expanded or collapsed state by default.
53
- * @default 'Expanded'
54
- */
55
- expandedField: any;
56
- /**
57
- * A value that binds to the resource field of event object.
58
- * @default null
59
- */
60
- field: any;
61
- /**
62
- * It maps the `groupID` field from the dataSource, which is used to specify under which parent resource,
63
- * the child should be grouped.
64
- * @default 'GroupID'
65
- */
66
- groupIDField: any;
67
- /**
68
- * It maps the `id` field from the dataSource and is used to uniquely identify the resources.
69
- * @default 'Id'
70
- */
71
- idField: any;
72
- /**
73
- * It represents a unique resource name for differentiating various resource objects while grouping.
74
- * @default null
75
- */
76
- name: any;
77
- /**
78
- * Defines the external [`query`](http://ej2.syncfusion.com/documentation/data/api-query.html)
79
- * that will be executed along with the data processing.
80
- * @default null
81
- */
82
- query: any;
83
- /**
84
- * It maps the `startHour` field from the dataSource, which is used to specify different work start hour for each resources.
85
- * @default 'StartHour'
86
- */
87
- startHourField: any;
88
- /**
89
- * It maps the `text` field from the dataSource, which is used to specify the resource names.
90
- * @default 'Text'
91
- */
92
- textField: any;
93
- /**
94
- * It holds the title of the resource field to be displayed on the schedule event editor window.
95
- * @default null
96
- */
97
- title: any;
98
- /**
99
- * It maps the working days field from the dataSource, which is used to specify different working days for each resources.
100
- * @default 'WorkDays'
101
- */
102
- workDaysField: any;
103
- constructor(viewContainerRef: ViewContainerRef);
104
- static ɵfac: i0.ɵɵFactoryDeclaration<ResourceDirective, never>;
105
- static ɵdir: i0.ɵɵDirectiveDeclaration<ResourceDirective, "e-resources>e-resource", never, { "allowMultiple": "allowMultiple"; "colorField": "colorField"; "cssClassField": "cssClassField"; "dataSource": "dataSource"; "endHourField": "endHourField"; "expandedField": "expandedField"; "field": "field"; "groupIDField": "groupIDField"; "idField": "idField"; "name": "name"; "query": "query"; "startHourField": "startHourField"; "textField": "textField"; "title": "title"; "workDaysField": "workDaysField"; }, {}, never>;
106
- }
107
- /**
108
- * Resource Array Directive
109
- * @private
110
- */
111
- export declare class ResourcesDirective extends ArrayBase<ResourcesDirective> {
112
- constructor();
113
- static ɵfac: i0.ɵɵFactoryDeclaration<ResourcesDirective, never>;
114
- static ɵdir: i0.ɵɵDirectiveDeclaration<ResourcesDirective, "ejs-schedule>e-resources", never, {}, {}, ["children"]>;
115
- }
1
+ import { ViewContainerRef } from '@angular/core';
2
+ import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ /**
4
+ * `e-resources` directive represent a resources of the Angular Schedule.
5
+ * It must be contained in a Schedule component(`ejs-schedule`).
6
+ * ```html
7
+ * <ejs-schedule>
8
+ * <e-resources>
9
+ * <e-resource field='RoomId' name='Rooms'></e-resource>
10
+ * <e-resource field='OwnerId' name='Owners'></e-resource>
11
+ * </e-resources>
12
+ * </ejs-schedule>
13
+ * ```
14
+ */
15
+ export declare class ResourceDirective extends ComplexBase<ResourceDirective> {
16
+ private viewContainerRef;
17
+ directivePropList: any;
18
+ /**
19
+ * When set to true, allows multiple selection of resource names, thus creating multiple instances of same appointment for the
20
+ * selected resources.
21
+ * @default false
22
+ */
23
+ allowMultiple: any;
24
+ /**
25
+ * It maps the `color` field from the dataSource, which is used to specify colors for the resources.
26
+ * @default 'Color'
27
+ */
28
+ colorField: any;
29
+ /**
30
+ * It maps the `cssClass` field from the dataSource, which is used to specify different styles to each resource appointments.
31
+ * @default 'CssClass'
32
+ */
33
+ cssClassField: any;
34
+ /**
35
+ * Assigns the resource dataSource
36
+ * The data can be passed either as an array of JavaScript objects,
37
+ * or else can create an instance of [`DataManager`](http://ej2.syncfusion.com/documentation/data/api-dataManager.html)
38
+ * in case of processing remote data and can be assigned to the `dataSource` property.
39
+ * With the remote data assigned to dataSource, check the available
40
+ * [adaptors](http://ej2.syncfusion.com/documentation/data/adaptors.html) to customize the data processing.
41
+ * @default []
42
+ */
43
+ dataSource: any;
44
+ /**
45
+ * It maps the `endHour` field from the dataSource, which is used to specify different work end hour for each resources.
46
+ * @default 'EndHour'
47
+ */
48
+ endHourField: any;
49
+ /**
50
+ * It maps the `expanded` field from the dataSource, which is used to specify whether each resource levels
51
+ * in timeline view needs to be maintained in an expanded or collapsed state by default.
52
+ * @default 'Expanded'
53
+ */
54
+ expandedField: any;
55
+ /**
56
+ * A value that binds to the resource field of event object.
57
+ * @default null
58
+ */
59
+ field: any;
60
+ /**
61
+ * It maps the `groupID` field from the dataSource, which is used to specify under which parent resource,
62
+ * the child should be grouped.
63
+ * @default 'GroupID'
64
+ */
65
+ groupIDField: any;
66
+ /**
67
+ * It maps the `id` field from the dataSource and is used to uniquely identify the resources.
68
+ * @default 'Id'
69
+ */
70
+ idField: any;
71
+ /**
72
+ * It represents a unique resource name for differentiating various resource objects while grouping.
73
+ * @default null
74
+ */
75
+ name: any;
76
+ /**
77
+ * Defines the external [`query`](http://ej2.syncfusion.com/documentation/data/api-query.html)
78
+ * that will be executed along with the data processing.
79
+ * @default null
80
+ */
81
+ query: any;
82
+ /**
83
+ * It maps the `startHour` field from the dataSource, which is used to specify different work start hour for each resources.
84
+ * @default 'StartHour'
85
+ */
86
+ startHourField: any;
87
+ /**
88
+ * It maps the `text` field from the dataSource, which is used to specify the resource names.
89
+ * @default 'Text'
90
+ */
91
+ textField: any;
92
+ /**
93
+ * It holds the title of the resource field to be displayed on the schedule event editor window.
94
+ * @default null
95
+ */
96
+ title: any;
97
+ /**
98
+ * It maps the working days field from the dataSource, which is used to specify different working days for each resources.
99
+ * @default 'WorkDays'
100
+ */
101
+ workDaysField: any;
102
+ constructor(viewContainerRef: ViewContainerRef);
103
+ }
104
+ /**
105
+ * Resource Array Directive
106
+ * @private
107
+ */
108
+ export declare class ResourcesDirective extends ArrayBase<ResourcesDirective> {
109
+ constructor();
110
+ }
@@ -1,28 +1,22 @@
1
- import { ValueProvider } from '@angular/core';
2
- import * as i0 from "@angular/core";
3
- import * as i1 from "@angular/common";
4
- import * as i2 from "./schedule.module";
5
- export declare const DayService: ValueProvider;
6
- export declare const WeekService: ValueProvider;
7
- export declare const WorkWeekService: ValueProvider;
8
- export declare const MonthService: ValueProvider;
9
- export declare const YearService: ValueProvider;
10
- export declare const AgendaService: ValueProvider;
11
- export declare const MonthAgendaService: ValueProvider;
12
- export declare const TimelineViewsService: ValueProvider;
13
- export declare const TimelineMonthService: ValueProvider;
14
- export declare const TimelineYearService: ValueProvider;
15
- export declare const ResizeService: ValueProvider;
16
- export declare const DragAndDropService: ValueProvider;
17
- export declare const ExcelExportService: ValueProvider;
18
- export declare const ICalendarExportService: ValueProvider;
19
- export declare const ICalendarImportService: ValueProvider;
20
- export declare const PrintService: ValueProvider;
21
- /**
22
- * NgModule definition for the Schedule component with providers.
23
- */
24
- export declare class ScheduleAllModule {
25
- static ɵfac: i0.ɵɵFactoryDeclaration<ScheduleAllModule, never>;
26
- static ɵmod: i0.ɵɵNgModuleDeclaration<ScheduleAllModule, never, [typeof i1.CommonModule, typeof i2.ScheduleModule], [typeof i2.ScheduleModule]>;
27
- static ɵinj: i0.ɵɵInjectorDeclaration<ScheduleAllModule>;
28
- }
1
+ import { ValueProvider } from '@angular/core';
2
+ export declare const DayService: ValueProvider;
3
+ export declare const WeekService: ValueProvider;
4
+ export declare const WorkWeekService: ValueProvider;
5
+ export declare const MonthService: ValueProvider;
6
+ export declare const YearService: ValueProvider;
7
+ export declare const AgendaService: ValueProvider;
8
+ export declare const MonthAgendaService: ValueProvider;
9
+ export declare const TimelineViewsService: ValueProvider;
10
+ export declare const TimelineMonthService: ValueProvider;
11
+ export declare const TimelineYearService: ValueProvider;
12
+ export declare const ResizeService: ValueProvider;
13
+ export declare const DragAndDropService: ValueProvider;
14
+ export declare const ExcelExportService: ValueProvider;
15
+ export declare const ICalendarExportService: ValueProvider;
16
+ export declare const ICalendarImportService: ValueProvider;
17
+ export declare const PrintService: ValueProvider;
18
+ /**
19
+ * NgModule definition for the Schedule component with providers.
20
+ */
21
+ export declare class ScheduleAllModule {
22
+ }