@syncfusion/ej2-angular-schedule 30.2.7-ngcc → 30.2.7

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 (43) hide show
  1. package/CHANGELOG.md +2374 -0
  2. package/esm2020/public_api.mjs +2 -0
  3. package/esm2020/src/index.mjs +12 -0
  4. package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
  5. package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
  6. package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
  7. package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
  8. package/esm2020/src/schedule/resources.directive.mjs +58 -0
  9. package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
  10. package/esm2020/src/schedule/schedule.component.mjs +306 -0
  11. package/esm2020/src/schedule/schedule.module.mjs +61 -0
  12. package/esm2020/src/schedule/toolbaritems.directive.mjs +67 -0
  13. package/esm2020/src/schedule/views.directive.mjs +132 -0
  14. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  15. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +829 -0
  16. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  17. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +829 -0
  18. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  19. package/package.json +20 -7
  20. package/public_api.d.ts +1 -1
  21. package/src/index.d.ts +11 -11
  22. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +11 -5
  23. package/src/recurrence-editor/recurrenceeditor.component.d.ts +33 -30
  24. package/src/recurrence-editor/recurrenceeditor.module.d.ts +11 -5
  25. package/src/schedule/headerrows.directive.d.ts +52 -47
  26. package/src/schedule/resources.directive.d.ts +115 -110
  27. package/src/schedule/schedule-all.module.d.ts +28 -22
  28. package/src/schedule/schedule.component.d.ts +224 -221
  29. package/src/schedule/schedule.module.d.ts +15 -5
  30. package/src/schedule/toolbaritems.directive.d.ts +177 -172
  31. package/src/schedule/views.directive.d.ts +324 -319
  32. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  33. package/@syncfusion/ej2-angular-schedule.es5.js +0 -955
  34. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  35. package/@syncfusion/ej2-angular-schedule.js +0 -894
  36. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  37. package/LICENSE +0 -10
  38. package/dist/ej2-angular-schedule.umd.js +0 -1114
  39. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  40. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  41. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  42. package/ej2-angular-schedule.d.ts +0 -6
  43. package/ej2-angular-schedule.metadata.json +0 -1
@@ -1,172 +1,177 @@
1
- import { ViewContainerRef } from '@angular/core';
2
- import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
- /**
4
- * `e-toolbaritems` directive represent a custom toolbar items of the Schedule.
5
- * It must be contained in a Schedule component(`ejs-schedule`).
6
- * ```html
7
- * <ejs-schedule>
8
- * <e-toolbaritems>
9
- * <e-toolbaritem name='Today'></<e-toolbaritem>
10
- * <e-toolbaritem name='DateRangeText'></e-toolbaritem>
11
- * <e-toolbaritem prefixIcon='e-icons e-cut' text='Cut'></e-toolbaritem>
12
- * <e-toolbaritems>
13
- * </ejs-schedule>
14
- * ```
15
- */
16
- export declare class ToolbarItemDirective extends ComplexBase<ToolbarItemDirective> {
17
- private viewContainerRef;
18
- directivePropList: any;
19
- click: any;
20
- /**
21
- * Specifies the types of command to be rendered in the Toolbar.
22
- * Supported types are:
23
- * * `Button`: Creates the Button control with its given properties like text, prefixIcon, etc.
24
- * * `Separator`: Adds a horizontal line that separates the Toolbar commands.
25
- * * `Input`: Creates an input element that is applicable to template rendering with Syncfusion controls like DropDownList,
26
- * AutoComplete, etc.
27
- * @default 'Button'
28
- * @aspdefaultvalue Syncfusion.EJ2.Navigations.ItemType.Button
29
- * @isenumeration true
30
- * @asptype Syncfusion.EJ2.Navigations.ItemType
31
- */
32
- type: any;
33
- /**
34
- * Specifies the location for aligning Toolbar items on the Toolbar. Each command will be aligned according to the `align` property.
35
- * The possible values for this property as follows
36
- * * `Left`: To align commands to the left side of the Toolbar.
37
- * * `Center`: To align commands at the center of the Toolbar.
38
- * * `Right`: To align commands to the right side of the Toolbar.
39
- * @default 'Left'
40
- * @aspdefaultvalue Syncfusion.EJ2.Navigations.ItemAlign.Left
41
- * @isenumeration true
42
- * @asptype Syncfusion.EJ2.Navigations.ItemAlign
43
- */
44
- align: any;
45
- /**
46
- * Defines single/multiple classes (separated by space) to be used for customization of commands.
47
- * @default ""
48
- */
49
- cssClass: any;
50
- /**
51
- * Specifies whether an item should be disabled or not.
52
- * @default false
53
- */
54
- disabled: any;
55
- /**
56
- * Defines htmlAttributes used to add custom attributes to Toolbar command.
57
- * Supports HTML attributes such as style, class, etc.
58
- * @default null
59
- */
60
- htmlAttributes: any;
61
- /**
62
- * Specifies the unique ID to be used with button or input element of Toolbar items.
63
- * @default ""
64
- */
65
- id: any;
66
- /**
67
- * Specifies the unique name for each toolbar item rendered in Schedule. This name is used to map the toolbar items in the Schedule component.
68
- *
69
- * To access the default toolbar items, provide the name below,
70
- *
71
- ** `Custom`: Schedule component render the custom toolbar item.
72
- ** `Previous`: Schedule component navigates to the previous date from the current date.
73
- ** `Next`: Schedule component navigates to the next date from the current date.
74
- ** `Today`: Schedule component navigates to the current date from any date.
75
- ** `Views`: Schedule component render the defined view options in the toolbar. If view option is not defined, then it will render default view options in the Schedule.
76
- ** `DateRangeText`: Schedule component displays the current date text range.
77
- ** `NewEvent`: Schedule component render the icon to add a new event.
78
- *
79
- * @default 'Custom'
80
- * @aspdefaultvalue Custom
81
- * @isenumeration true
82
- * @asptype ToolbarName
83
- */
84
- name: any;
85
- /**
86
- * Specifies the Toolbar command display area when an element's content is too large to fit available space.
87
- * This is applicable only to `popup` mode. The possible values for this property as follows
88
- * * `Show`: Always shows the item as the primary priority on the *Toolbar*.
89
- * * `Hide`: Always shows the item as the secondary priority on the *popup*.
90
- * * `None`: No priority for display, and as per normal order moves to popup when content exceeds.
91
- * @default 'None'
92
- * @aspdefaultvalue Syncfusion.EJ2.Navigations.OverflowOption.None
93
- * @isenumeration true
94
- * @asptype Syncfusion.EJ2.Navigations.OverflowOption
95
- */
96
- overflow: any;
97
- /**
98
- * Defines single/multiple classes separated by space used to specify an icon for the button.
99
- * The icon will be positioned before the text content if text is available, otherwise the icon alone will be rendered.
100
- * @default ""
101
- */
102
- prefixIcon: any;
103
- /**
104
- * Defines the priority of items to display it in popup always.
105
- * It allows to maintain toolbar item on popup always but it does not work for toolbar priority items.
106
- * @default false
107
- */
108
- showAlwaysInPopup: any;
109
- /**
110
- * Specifies where the button text will be displayed on *popup mode* of the Toolbar.
111
- * The possible values for this property as follows
112
- * * `Toolbar`: Text will be displayed on *Toolbar* only.
113
- * * `Overflow`: Text will be displayed only when content overflows to *popup*.
114
- * * `Both`: Text will be displayed on *popup* and *Toolbar*.
115
- * @default 'Both'
116
- * @aspdefaultvalue Syncfusion.EJ2.Navigations.DisplayMode.Both
117
- * @isenumeration true
118
- * @asptype Syncfusion.EJ2.Navigations.DisplayMode
119
- */
120
- showTextOn: any;
121
- /**
122
- * Defines single/multiple classes separated by space used to specify an icon for the button.
123
- * The icon will be positioned after the text content if text is available.
124
- * @default ""
125
- */
126
- suffixIcon: any;
127
- /**
128
- * Specifies the tab order of the Toolbar items. When positive values assigned, it allows to switch focus to the next/previous toolbar items with Tab/ShiftTab keys.
129
- * By default, user can able to switch between items only via arrow keys.
130
- * If the value is set to 0 for all tool bar items, then tab switches based on element order.
131
- * @default -1
132
- */
133
- tabIndex: any;
134
- /**
135
- * Specifies the text to be displayed on the Toolbar button.
136
- * @default ""
137
- */
138
- text: any;
139
- /**
140
- * Specifies the text to be displayed on hovering the Toolbar button.
141
- * @default ""
142
- */
143
- tooltipText: any;
144
- /**
145
- * Specifies whether an item should be hidden or not.
146
- * @default true
147
- */
148
- visible: any;
149
- /**
150
- * Specifies the width of the Toolbar button commands.
151
- * @default 'auto'
152
- */
153
- width: any;
154
- /**
155
- * Specifies the HTML element/element ID as a string that can be added as a Toolbar command.
156
- *
157
- * @default ""
158
- * @angulartype string | object
159
- * @reacttype string | function | JSX.Element
160
- * @vuetype string | function
161
- * @asptype string
162
- */
163
- template: any;
164
- constructor(viewContainerRef: ViewContainerRef);
165
- }
166
- /**
167
- * ToolbarItem Array Directive
168
- * @private
169
- */
170
- export declare class ToolbarItemsDirective extends ArrayBase<ToolbarItemsDirective> {
171
- constructor();
172
- }
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-toolbaritems` directive represent a custom toolbar items of the Schedule.
6
+ * It must be contained in a Schedule component(`ejs-schedule`).
7
+ * ```html
8
+ * <ejs-schedule>
9
+ * <e-toolbaritems>
10
+ * <e-toolbaritem name='Today'></<e-toolbaritem>
11
+ * <e-toolbaritem name='DateRangeText'></e-toolbaritem>
12
+ * <e-toolbaritem prefixIcon='e-icons e-cut' text='Cut'></e-toolbaritem>
13
+ * <e-toolbaritems>
14
+ * </ejs-schedule>
15
+ * ```
16
+ */
17
+ export declare class ToolbarItemDirective extends ComplexBase<ToolbarItemDirective> {
18
+ private viewContainerRef;
19
+ directivePropList: any;
20
+ click: any;
21
+ /**
22
+ * Specifies the types of command to be rendered in the Toolbar.
23
+ * Supported types are:
24
+ * * `Button`: Creates the Button control with its given properties like text, prefixIcon, etc.
25
+ * * `Separator`: Adds a horizontal line that separates the Toolbar commands.
26
+ * * `Input`: Creates an input element that is applicable to template rendering with Syncfusion controls like DropDownList,
27
+ * AutoComplete, etc.
28
+ * @default 'Button'
29
+ * @aspdefaultvalue Syncfusion.EJ2.Navigations.ItemType.Button
30
+ * @isenumeration true
31
+ * @asptype Syncfusion.EJ2.Navigations.ItemType
32
+ */
33
+ type: any;
34
+ /**
35
+ * Specifies the location for aligning Toolbar items on the Toolbar. Each command will be aligned according to the `align` property.
36
+ * The possible values for this property as follows
37
+ * * `Left`: To align commands to the left side of the Toolbar.
38
+ * * `Center`: To align commands at the center of the Toolbar.
39
+ * * `Right`: To align commands to the right side of the Toolbar.
40
+ * @default 'Left'
41
+ * @aspdefaultvalue Syncfusion.EJ2.Navigations.ItemAlign.Left
42
+ * @isenumeration true
43
+ * @asptype Syncfusion.EJ2.Navigations.ItemAlign
44
+ */
45
+ align: any;
46
+ /**
47
+ * Defines single/multiple classes (separated by space) to be used for customization of commands.
48
+ * @default ""
49
+ */
50
+ cssClass: any;
51
+ /**
52
+ * Specifies whether an item should be disabled or not.
53
+ * @default false
54
+ */
55
+ disabled: any;
56
+ /**
57
+ * Defines htmlAttributes used to add custom attributes to Toolbar command.
58
+ * Supports HTML attributes such as style, class, etc.
59
+ * @default null
60
+ */
61
+ htmlAttributes: any;
62
+ /**
63
+ * Specifies the unique ID to be used with button or input element of Toolbar items.
64
+ * @default ""
65
+ */
66
+ id: any;
67
+ /**
68
+ * Specifies the unique name for each toolbar item rendered in Schedule. This name is used to map the toolbar items in the Schedule component.
69
+ *
70
+ * To access the default toolbar items, provide the name below,
71
+ *
72
+ ** `Custom`: Schedule component render the custom toolbar item.
73
+ ** `Previous`: Schedule component navigates to the previous date from the current date.
74
+ ** `Next`: Schedule component navigates to the next date from the current date.
75
+ ** `Today`: Schedule component navigates to the current date from any date.
76
+ ** `Views`: Schedule component render the defined view options in the toolbar. If view option is not defined, then it will render default view options in the Schedule.
77
+ ** `DateRangeText`: Schedule component displays the current date text range.
78
+ ** `NewEvent`: Schedule component render the icon to add a new event.
79
+ *
80
+ * @default 'Custom'
81
+ * @aspdefaultvalue Custom
82
+ * @isenumeration true
83
+ * @asptype ToolbarName
84
+ */
85
+ name: any;
86
+ /**
87
+ * Specifies the Toolbar command display area when an element's content is too large to fit available space.
88
+ * This is applicable only to `popup` mode. The possible values for this property as follows
89
+ * * `Show`: Always shows the item as the primary priority on the *Toolbar*.
90
+ * * `Hide`: Always shows the item as the secondary priority on the *popup*.
91
+ * * `None`: No priority for display, and as per normal order moves to popup when content exceeds.
92
+ * @default 'None'
93
+ * @aspdefaultvalue Syncfusion.EJ2.Navigations.OverflowOption.None
94
+ * @isenumeration true
95
+ * @asptype Syncfusion.EJ2.Navigations.OverflowOption
96
+ */
97
+ overflow: any;
98
+ /**
99
+ * Defines single/multiple classes separated by space used to specify an icon for the button.
100
+ * The icon will be positioned before the text content if text is available, otherwise the icon alone will be rendered.
101
+ * @default ""
102
+ */
103
+ prefixIcon: any;
104
+ /**
105
+ * Defines the priority of items to display it in popup always.
106
+ * It allows to maintain toolbar item on popup always but it does not work for toolbar priority items.
107
+ * @default false
108
+ */
109
+ showAlwaysInPopup: any;
110
+ /**
111
+ * Specifies where the button text will be displayed on *popup mode* of the Toolbar.
112
+ * The possible values for this property as follows
113
+ * * `Toolbar`: Text will be displayed on *Toolbar* only.
114
+ * * `Overflow`: Text will be displayed only when content overflows to *popup*.
115
+ * * `Both`: Text will be displayed on *popup* and *Toolbar*.
116
+ * @default 'Both'
117
+ * @aspdefaultvalue Syncfusion.EJ2.Navigations.DisplayMode.Both
118
+ * @isenumeration true
119
+ * @asptype Syncfusion.EJ2.Navigations.DisplayMode
120
+ */
121
+ showTextOn: any;
122
+ /**
123
+ * Defines single/multiple classes separated by space used to specify an icon for the button.
124
+ * The icon will be positioned after the text content if text is available.
125
+ * @default ""
126
+ */
127
+ suffixIcon: any;
128
+ /**
129
+ * Specifies the tab order of the Toolbar items. When positive values assigned, it allows to switch focus to the next/previous toolbar items with Tab/ShiftTab keys.
130
+ * By default, user can able to switch between items only via arrow keys.
131
+ * If the value is set to 0 for all tool bar items, then tab switches based on element order.
132
+ * @default -1
133
+ */
134
+ tabIndex: any;
135
+ /**
136
+ * Specifies the text to be displayed on the Toolbar button.
137
+ * @default ""
138
+ */
139
+ text: any;
140
+ /**
141
+ * Specifies the text to be displayed on hovering the Toolbar button.
142
+ * @default ""
143
+ */
144
+ tooltipText: any;
145
+ /**
146
+ * Specifies whether an item should be hidden or not.
147
+ * @default true
148
+ */
149
+ visible: any;
150
+ /**
151
+ * Specifies the width of the Toolbar button commands.
152
+ * @default 'auto'
153
+ */
154
+ width: any;
155
+ /**
156
+ * Specifies the HTML element/element ID as a string that can be added as a Toolbar command.
157
+ *
158
+ * @default ""
159
+ * @angulartype string | object
160
+ * @reacttype string | function | JSX.Element
161
+ * @vuetype string | function
162
+ * @asptype string
163
+ */
164
+ template: any;
165
+ constructor(viewContainerRef: ViewContainerRef);
166
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarItemDirective, never>;
167
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ToolbarItemDirective, "e-toolbaritems>e-toolbaritem", never, { "align": "align"; "cssClass": "cssClass"; "disabled": "disabled"; "htmlAttributes": "htmlAttributes"; "id": "id"; "name": "name"; "overflow": "overflow"; "prefixIcon": "prefixIcon"; "showAlwaysInPopup": "showAlwaysInPopup"; "showTextOn": "showTextOn"; "suffixIcon": "suffixIcon"; "tabIndex": "tabIndex"; "template": "template"; "text": "text"; "tooltipText": "tooltipText"; "type": "type"; "visible": "visible"; "width": "width"; }, { "click": "click"; }, ["template"]>;
168
+ }
169
+ /**
170
+ * ToolbarItem Array Directive
171
+ * @private
172
+ */
173
+ export declare class ToolbarItemsDirective extends ArrayBase<ToolbarItemsDirective> {
174
+ constructor();
175
+ static ɵfac: i0.ɵɵFactoryDeclaration<ToolbarItemsDirective, never>;
176
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ToolbarItemsDirective, "ejs-schedule>e-toolbaritems", never, {}, {}, ["children"]>;
177
+ }