@syncfusion/ej2-angular-schedule 22.1.38-ngcc → 22.2.5-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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "_from": "@syncfusion/ej2-angular-schedule@*",
3
- "_id": "@syncfusion/ej2-angular-schedule@22.1.36",
3
+ "_id": "@syncfusion/ej2-angular-schedule@22.1.38",
4
4
  "_inBundle": false,
5
- "_integrity": "sha512-T7m3UX8tD3VY5jcE9/3DdjIgcf3WSMQQdYpsOpmxBf8yCrzvIpf5bOy+PVTQIJ/37N7F5CoZmm7DbWpDoedA5w==",
5
+ "_integrity": "sha512-iXsH0LzkZRwAAvipMXdnWLN1Jf3UGBP4Q/NuFCwq0R1lKT5Kb9tVC0e2ZjLIx1euquRw9J8rnfltuzbhlMbyHw==",
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.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-schedule/-/ej2-angular-schedule-22.1.36.tgz",
23
- "_shasum": "1684a5e002caf8cc7dd793ecc0ad892d0ef5ed4d",
22
+ "_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-angular-schedule/-/ej2-angular-schedule-22.1.38.tgz",
23
+ "_shasum": "d9c23c9a0666b1c43619c302f17fb4d2b12ee3de",
24
24
  "_spec": "@syncfusion/ej2-angular-schedule@*",
25
25
  "_where": "/jenkins/workspace/elease-automation_release_21.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": "~22.1.34",
35
- "@syncfusion/ej2-base": "~22.1.38",
36
- "@syncfusion/ej2-schedule": "22.1.38"
34
+ "@syncfusion/ej2-angular-base": "~22.2.5",
35
+ "@syncfusion/ej2-base": "~22.2.5",
36
+ "@syncfusion/ej2-schedule": "22.2.5"
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": "22.1.38-ngcc"
61
+ "version": "22.2.5-ngcc"
62
62
  }
@@ -1,4 +1,4 @@
1
1
  export declare const pkgName = "@syncfusion/ej2-angular-schedule";
2
- export declare const pkgVer = "^22.1.36";
2
+ export declare const pkgVer = "^22.1.38";
3
3
  export declare const moduleName = "ScheduleModule, RecurrenceEditorModule";
4
- export declare const themeVer = "~22.1.36";
4
+ export declare const themeVer = "~22.1.38";
@@ -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 = '^22.1.38';
4
+ exports.pkgVer = '^22.2.5';
5
5
  exports.moduleName = 'ScheduleModule, RecurrenceEditorModule';
6
- exports.themeVer = '~22.1.38';
6
+ exports.themeVer = '~22.2.5';
@@ -1,4 +1,4 @@
1
1
  export const pkgName = '@syncfusion/ej2-angular-schedule';
2
- export const pkgVer = '^22.1.38';
2
+ export const pkgVer = '^22.2.5';
3
3
  export const moduleName = 'ScheduleModule, RecurrenceEditorModule';
4
- export const themeVer = '~22.1.38';
4
+ export const themeVer = '~22.2.5';
@@ -30,6 +30,9 @@ export declare class HeaderRowDirective extends ComplexBase<HeaderRowDirective>
30
30
  * content and parse it appropriately before displaying it onto the header cells. The field that
31
31
  * can be accessed via this template is `date`.
32
32
  * @default null
33
+ * @angulartype string | object
34
+ * @reacttype string | function | JSX.Element
35
+ * @vuetype string | function
33
36
  * @asptype string
34
37
  */
35
38
  template: any;
@@ -57,12 +57,18 @@ export declare class ScheduleComponent extends Schedule implements IComponentBas
57
57
  * {% codeBlock src='schedule/dateHeaderTemplate/index.md' %}{% endcodeBlock %}
58
58
  *
59
59
  * @default null
60
+ * @angulartype string | object
61
+ * @reacttype string | function | JSX.Element
62
+ * @vuetype string | function
60
63
  * @asptype string
61
64
  */
62
65
  dateHeaderTemplate: any;
63
66
  /**
64
67
  * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
65
68
  * @default null
69
+ * @angulartype string | object
70
+ * @reacttype string | function | JSX.Element
71
+ * @vuetype string | function
66
72
  * @asptype string
67
73
  */
68
74
  dateRangeTemplate: any;
@@ -73,6 +79,9 @@ export declare class ScheduleComponent extends Schedule implements IComponentBas
73
79
  * {% codeBlock src='schedule/dayHeaderTemplate/index.md' %}{% endcodeBlock %}
74
80
  *
75
81
  * @default null
82
+ * @angulartype string | object
83
+ * @reacttype string | function | JSX.Element
84
+ * @vuetype string | function
76
85
  * @asptype string
77
86
  */
78
87
  dayHeaderTemplate: any;
@@ -89,6 +98,9 @@ export declare class ScheduleComponent extends Schedule implements IComponentBas
89
98
  *{% codeBlock src='schedule/cellTemplate/index.md' %}{% endcodeBlock %}
90
99
  *
91
100
  * @default null
101
+ * @angulartype string | object
102
+ * @reacttype string | function | JSX.Element
103
+ * @vuetype string | function
92
104
  * @asptype string
93
105
  */
94
106
  cellTemplate: any;
@@ -99,6 +111,9 @@ export declare class ScheduleComponent extends Schedule implements IComponentBas
99
111
  * {% codeBlock src='schedule/cellHeaderTemplate/index.md' %}{% endcodeBlock %}
100
112
  *
101
113
  * @default null
114
+ * @angulartype string | object
115
+ * @reacttype string | function | JSX.Element
116
+ * @vuetype string | function
102
117
  * @asptype string
103
118
  */
104
119
  cellHeaderTemplate: any;
@@ -111,6 +126,9 @@ export declare class ScheduleComponent extends Schedule implements IComponentBas
111
126
  * {% codeBlock src='schedule/editorTemplate/index.md' %}{% endcodeBlock %}
112
127
  *
113
128
  * @default null
129
+ * @angulartype string | object
130
+ * @reacttype string | function | JSX.Element
131
+ * @vuetype string | function
114
132
  * @asptype string
115
133
  */
116
134
  editorTemplate: any;
@@ -121,6 +139,9 @@ export declare class ScheduleComponent extends Schedule implements IComponentBas
121
139
  * {% codeBlock src='schedule/monthHeaderTemplate/index.md' %}{% endcodeBlock %}
122
140
  *
123
141
  * @default null
142
+ * @angulartype string | object
143
+ * @reacttype string | function | JSX.Element
144
+ * @vuetype string | function
124
145
  * @asptype string
125
146
  */
126
147
  monthHeaderTemplate: any;
@@ -138,6 +159,9 @@ export declare class ScheduleComponent extends Schedule implements IComponentBas
138
159
  *{% codeBlock src='schedule/resourceHeaderTemplate/index.md' %}{% endcodeBlock %}
139
160
  *
140
161
  * @default null
162
+ * @angulartype string | object
163
+ * @reacttype string | function | JSX.Element
164
+ * @vuetype string | function
141
165
  * @asptype string
142
166
  */
143
167
  resourceHeaderTemplate: any;
@@ -150,6 +174,9 @@ export declare class ScheduleComponent extends Schedule implements IComponentBas
150
174
  *{% codeBlock src='schedule/headerIndentTemplate/index.md' %}{% endcodeBlock %}
151
175
  *
152
176
  * @default null
177
+ * @angulartype string | object
178
+ * @reacttype string | function | JSX.Element
179
+ * @vuetype string | function
153
180
  * @asptype string
154
181
  */
155
182
  headerIndentTemplate: any;
@@ -180,6 +180,9 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
180
180
  /**
181
181
  * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the header date range.
182
182
  * @default null
183
+ * @angulartype string | object
184
+ * @reacttype string | function | JSX.Element
185
+ * @vuetype string | function
183
186
  * @asptype string
184
187
  */
185
188
  dateRangeTemplate: any;
@@ -188,6 +191,9 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
188
191
  * Year view day cell header.
189
192
  * This template is only applicable for year view header cells.
190
193
  * @default null
194
+ * @angulartype string | object
195
+ * @reacttype string | function | JSX.Element
196
+ * @vuetype string | function
191
197
  * @asptype string
192
198
  */
193
199
  dayHeaderTemplate: any;
@@ -196,6 +202,9 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
196
202
  * month date cells.
197
203
  * This template is only applicable for month view day cells.
198
204
  * @default null
205
+ * @angulartype string | object
206
+ * @reacttype string | function | JSX.Element
207
+ * @vuetype string | function
199
208
  * @asptype string
200
209
  */
201
210
  cellHeaderTemplate: any;
@@ -204,6 +213,9 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
204
213
  * template accepts either the string or HTMLElement as template design and then the parsed design is displayed onto the work cells.
205
214
  * The field accessible via template is `date`. It gets applied only to the view objects on which it is defined.
206
215
  * @default null
216
+ * @angulartype string | object
217
+ * @reacttype string | function | JSX.Element
218
+ * @vuetype string | function
207
219
  * @asptype string
208
220
  */
209
221
  cellTemplate: any;
@@ -213,6 +225,9 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
213
225
  * It is similar to that of the `template` option available within the `eventSettings` property,
214
226
  * whereas it will get applied only on the events of the view to which it is currently being defined.
215
227
  * @default null
228
+ * @angulartype string | object
229
+ * @reacttype string | function | JSX.Element
230
+ * @vuetype string | function
216
231
  * @asptype string
217
232
  */
218
233
  eventTemplate: any;
@@ -221,6 +236,9 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
221
236
  * Year view day cell header.
222
237
  * This template is only applicable for year view header cells.
223
238
  * @default null
239
+ * @angulartype string | object
240
+ * @reacttype string | function | JSX.Element
241
+ * @vuetype string | function
224
242
  * @asptype string
225
243
  */
226
244
  monthHeaderTemplate: any;
@@ -230,6 +248,9 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
230
248
  * All the resource fields mapped within resources can be accessed within this template code.
231
249
  * It gets applied only to the view objects on which it is defined.
232
250
  * @default null
251
+ * @angulartype string | object
252
+ * @reacttype string | function | JSX.Element
253
+ * @vuetype string | function
233
254
  * @asptype string
234
255
  */
235
256
  resourceHeaderTemplate: any;
@@ -238,6 +259,9 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
238
259
  * template accepts either the string or HTMLElement as template design and then the parsed design is displayed onto the header indent cell.
239
260
  * It gets applied only to the view objects on which it is defined.
240
261
  * @default null
262
+ * @angulartype string | object
263
+ * @reacttype string | function | JSX.Element
264
+ * @vuetype string | function
241
265
  * @asptype string
242
266
  */
243
267
  headerIndentTemplate: any;