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

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 (202) hide show
  1. package/README.md +47 -121
  2. package/esm2020/public_api.mjs +3 -0
  3. package/esm2020/src/index.mjs +11 -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 +283 -0
  11. package/esm2020/src/schedule/schedule.module.mjs +52 -0
  12. package/esm2020/src/schedule/views.directive.mjs +126 -0
  13. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  14. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +733 -0
  15. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  16. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +733 -0
  17. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  18. package/package.json +48 -16
  19. package/schematics/utils/lib-details.ts +2 -2
  20. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
  21. package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
  22. package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
  23. package/src/schedule/headerrows.directive.d.ts +10 -6
  24. package/src/schedule/resources.directive.d.ts +5 -0
  25. package/src/schedule/schedule-all.module.d.ts +6 -0
  26. package/src/schedule/schedule.component.d.ts +8 -19
  27. package/src/schedule/schedule.module.d.ts +9 -0
  28. package/src/schedule/views.directive.d.ts +21 -31
  29. package/styles/material3-dark.css +0 -56
  30. package/styles/material3-dark.scss +1 -0
  31. package/styles/material3.css +0 -111
  32. package/styles/material3.scss +1 -0
  33. package/styles/recurrence-editor/_all.scss +2 -0
  34. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
  35. package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
  36. package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
  37. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  38. package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
  39. package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
  40. package/styles/recurrence-editor/_fabric-definition.scss +13 -0
  41. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  42. package/styles/recurrence-editor/_fluent-definition.scss +13 -0
  43. package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
  44. package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
  45. package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
  46. package/styles/recurrence-editor/_layout.scss +548 -0
  47. package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
  48. package/styles/recurrence-editor/_material-definition.scss +13 -0
  49. package/styles/recurrence-editor/_material3-dark-definition.scss +1 -0
  50. package/styles/recurrence-editor/_material3-definition.scss +13 -0
  51. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  52. package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
  53. package/styles/recurrence-editor/_theme.scss +1 -0
  54. package/styles/recurrence-editor/bootstrap-dark.scss +8 -1
  55. package/styles/recurrence-editor/bootstrap.scss +8 -1
  56. package/styles/recurrence-editor/bootstrap4.scss +8 -1
  57. package/styles/recurrence-editor/bootstrap5-dark.scss +8 -1
  58. package/styles/recurrence-editor/bootstrap5.scss +8 -1
  59. package/styles/recurrence-editor/fabric-dark.scss +8 -1
  60. package/styles/recurrence-editor/fabric.scss +8 -1
  61. package/styles/recurrence-editor/fluent-dark.scss +8 -1
  62. package/styles/recurrence-editor/fluent.scss +8 -1
  63. package/styles/recurrence-editor/highcontrast-light.scss +8 -1
  64. package/styles/recurrence-editor/highcontrast.scss +8 -1
  65. package/styles/recurrence-editor/material-dark.scss +8 -1
  66. package/styles/recurrence-editor/material.scss +8 -1
  67. package/styles/recurrence-editor/material3-dark.scss +8 -1
  68. package/styles/recurrence-editor/material3.scss +8 -1
  69. package/styles/recurrence-editor/tailwind-dark.scss +8 -1
  70. package/styles/recurrence-editor/tailwind.scss +8 -1
  71. package/styles/schedule/_all.scss +2 -0
  72. package/styles/schedule/_bootstrap-dark-definition.scss +280 -0
  73. package/styles/schedule/_bootstrap-definition.scss +280 -0
  74. package/styles/schedule/_bootstrap4-definition.scss +283 -0
  75. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  76. package/styles/schedule/_bootstrap5-definition.scss +290 -0
  77. package/styles/schedule/_fabric-dark-definition.scss +279 -0
  78. package/styles/schedule/_fabric-definition.scss +280 -0
  79. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  80. package/styles/schedule/_fluent-definition.scss +285 -0
  81. package/styles/schedule/_fusionnew-definition.scss +289 -0
  82. package/styles/schedule/_highcontrast-definition.scss +281 -0
  83. package/styles/schedule/_highcontrast-light-definition.scss +281 -0
  84. package/styles/schedule/_layout.scss +4134 -0
  85. package/styles/schedule/_material-dark-definition.scss +280 -0
  86. package/styles/schedule/_material-definition.scss +280 -0
  87. package/styles/schedule/_material3-dark-definition.scss +1 -0
  88. package/styles/schedule/_material3-definition.scss +292 -0
  89. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  90. package/styles/schedule/_tailwind-definition.scss +282 -0
  91. package/styles/schedule/_theme.scss +551 -0
  92. package/styles/schedule/bootstrap-dark.scss +16 -1
  93. package/styles/schedule/bootstrap.scss +16 -1
  94. package/styles/schedule/bootstrap4.scss +16 -1
  95. package/styles/schedule/bootstrap5-dark.scss +15 -1
  96. package/styles/schedule/bootstrap5.scss +16 -1
  97. package/styles/schedule/fabric-dark.scss +16 -1
  98. package/styles/schedule/fabric.scss +16 -1
  99. package/styles/schedule/fluent-dark.scss +15 -1
  100. package/styles/schedule/fluent.scss +16 -1
  101. package/styles/schedule/highcontrast-light.scss +16 -1
  102. package/styles/schedule/highcontrast.scss +16 -1
  103. package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
  104. package/styles/schedule/icons/_bootstrap.scss +231 -0
  105. package/styles/schedule/icons/_bootstrap4.scss +231 -0
  106. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  107. package/styles/schedule/icons/_bootstrap5.scss +231 -0
  108. package/styles/schedule/icons/_fabric-dark.scss +231 -0
  109. package/styles/schedule/icons/_fabric.scss +231 -0
  110. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  111. package/styles/schedule/icons/_fluent.scss +231 -0
  112. package/styles/schedule/icons/_fusionnew.scss +231 -0
  113. package/styles/schedule/icons/_highcontrast-light.scss +231 -0
  114. package/styles/schedule/icons/_highcontrast.scss +231 -0
  115. package/styles/schedule/icons/_material-dark.scss +231 -0
  116. package/styles/schedule/icons/_material.scss +231 -0
  117. package/styles/schedule/icons/_material3-dark.scss +1 -0
  118. package/styles/schedule/icons/_material3.scss +231 -0
  119. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  120. package/styles/schedule/icons/_tailwind.scss +231 -0
  121. package/styles/schedule/material-dark.scss +16 -1
  122. package/styles/schedule/material.scss +16 -1
  123. package/styles/schedule/material3-dark.scss +15 -1
  124. package/styles/schedule/material3.scss +16 -1
  125. package/styles/schedule/tailwind-dark.scss +15 -1
  126. package/styles/schedule/tailwind.scss +16 -1
  127. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  128. package/@syncfusion/ej2-angular-schedule.es5.js +0 -850
  129. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  130. package/@syncfusion/ej2-angular-schedule.js +0 -798
  131. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  132. package/CHANGELOG.md +0 -1761
  133. package/dist/ej2-angular-schedule.umd.js +0 -991
  134. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  135. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  136. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  137. package/ej2-angular-schedule.d.ts +0 -6
  138. package/ej2-angular-schedule.metadata.json +0 -1
  139. package/postinstall/tagchange.js +0 -18
  140. package/schematics/collection.json +0 -40
  141. package/schematics/generators/schedule-agenda-views/index.d.ts +0 -3
  142. package/schematics/generators/schedule-agenda-views/index.js +0 -8
  143. package/schematics/generators/schedule-agenda-views/sample-details.d.ts +0 -5
  144. package/schematics/generators/schedule-agenda-views/sample-details.js +0 -7
  145. package/schematics/generators/schedule-agenda-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  146. package/schematics/generators/schedule-agenda-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
  147. package/schematics/generators/schedule-agenda-views/schema.d.ts +0 -3
  148. package/schematics/generators/schedule-agenda-views/schema.js +0 -2
  149. package/schematics/generators/schedule-agenda-views/schema.json +0 -125
  150. package/schematics/generators/schedule-calendar-views/index.d.ts +0 -3
  151. package/schematics/generators/schedule-calendar-views/index.js +0 -8
  152. package/schematics/generators/schedule-calendar-views/sample-details.d.ts +0 -5
  153. package/schematics/generators/schedule-calendar-views/sample-details.js +0 -7
  154. package/schematics/generators/schedule-calendar-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  155. package/schematics/generators/schedule-calendar-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -11
  156. package/schematics/generators/schedule-calendar-views/schema.d.ts +0 -3
  157. package/schematics/generators/schedule-calendar-views/schema.js +0 -2
  158. package/schematics/generators/schedule-calendar-views/schema.json +0 -125
  159. package/schematics/generators/schedule-horizontal-grouping/index.d.ts +0 -3
  160. package/schematics/generators/schedule-horizontal-grouping/index.js +0 -8
  161. package/schematics/generators/schedule-horizontal-grouping/sample-details.d.ts +0 -5
  162. package/schematics/generators/schedule-horizontal-grouping/sample-details.js +0 -7
  163. package/schematics/generators/schedule-horizontal-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -92
  164. package/schematics/generators/schedule-horizontal-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -29
  165. package/schematics/generators/schedule-horizontal-grouping/schema.d.ts +0 -3
  166. package/schematics/generators/schedule-horizontal-grouping/schema.js +0 -2
  167. package/schematics/generators/schedule-horizontal-grouping/schema.json +0 -125
  168. package/schematics/generators/schedule-time-scale/index.d.ts +0 -3
  169. package/schematics/generators/schedule-time-scale/index.js +0 -8
  170. package/schematics/generators/schedule-time-scale/sample-details.d.ts +0 -5
  171. package/schematics/generators/schedule-time-scale/sample-details.js +0 -7
  172. package/schematics/generators/schedule-time-scale/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  173. package/schematics/generators/schedule-time-scale/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
  174. package/schematics/generators/schedule-time-scale/schema.d.ts +0 -3
  175. package/schematics/generators/schedule-time-scale/schema.js +0 -2
  176. package/schematics/generators/schedule-time-scale/schema.json +0 -125
  177. package/schematics/generators/schedule-timeline-grouping/index.d.ts +0 -3
  178. package/schematics/generators/schedule-timeline-grouping/index.js +0 -8
  179. package/schematics/generators/schedule-timeline-grouping/sample-details.d.ts +0 -5
  180. package/schematics/generators/schedule-timeline-grouping/sample-details.js +0 -7
  181. package/schematics/generators/schedule-timeline-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  182. package/schematics/generators/schedule-timeline-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -23
  183. package/schematics/generators/schedule-timeline-grouping/schema.d.ts +0 -3
  184. package/schematics/generators/schedule-timeline-grouping/schema.js +0 -2
  185. package/schematics/generators/schedule-timeline-grouping/schema.json +0 -125
  186. package/schematics/generators/schedule-timeline-views/index.d.ts +0 -3
  187. package/schematics/generators/schedule-timeline-views/index.js +0 -8
  188. package/schematics/generators/schedule-timeline-views/sample-details.d.ts +0 -5
  189. package/schematics/generators/schedule-timeline-views/sample-details.js +0 -7
  190. package/schematics/generators/schedule-timeline-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  191. package/schematics/generators/schedule-timeline-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
  192. package/schematics/generators/schedule-timeline-views/schema.d.ts +0 -3
  193. package/schematics/generators/schedule-timeline-views/schema.js +0 -2
  194. package/schematics/generators/schedule-timeline-views/schema.json +0 -125
  195. package/schematics/ng-add/index.d.ts +0 -3
  196. package/schematics/ng-add/index.js +0 -9
  197. package/schematics/ng-add/schema.d.ts +0 -13
  198. package/schematics/ng-add/schema.js +0 -2
  199. package/schematics/ng-add/schema.json +0 -34
  200. package/schematics/tsconfig.json +0 -25
  201. package/schematics/utils/lib-details.d.ts +0 -4
  202. package/schematics/utils/lib-details.js +0 -6
@@ -1,5 +1,6 @@
1
1
  import { ViewContainerRef } from '@angular/core';
2
2
  import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
3
+ import * as i0 from "@angular/core";
3
4
  /**
4
5
  * `e-views` directive represent a view of the Angular Schedule.
5
6
  * It must be contained in a Schedule component(`ejs-schedule`).
@@ -61,7 +62,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
61
62
  firstMonthOfYear: any;
62
63
  /**
63
64
  * Allows to set different resource grouping options on all available schedule view modes.
64
- * @default { byDate: false, byGroupID: true, allowGroupEdit: false, resources:[], hideNonWorkingDays: false }
65
+ * @default { byDate: false, byGroupID: true, allowGroupEdit: false, resources:[]}
65
66
  */
66
67
  group: any;
67
68
  /**
@@ -77,8 +78,7 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
77
78
  interval: any;
78
79
  /**
79
80
  * To denote whether the view name given on the `option` is active or not.
80
- * It acts similar to the [`currentView`](../../schedule/#current-view/)
81
- * property and defines the active view of Schedule.
81
+ * It acts similar to the `currentView` property and defines the active view of Schedule.
82
82
  * @default false
83
83
  */
84
84
  isSelected: any;
@@ -100,26 +100,26 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
100
100
  /**
101
101
  * It accepts the schedule view name, based on which we can define with its related properties in a single object.
102
102
  * The applicable view names are,
103
- * * Day - Denotes Day view of the scheduler.
104
- * * Week - Denotes Week view of the scheduler.
105
- * * WorkWeek - Denotes Work Week view of the scheduler.
106
- * * Month - Denotes Month view of the scheduler.
107
- * * Year - Denotes Year view of the scheduler.
108
- * * Agenda - Denotes Agenda view of the scheduler.
109
- * * MonthAgenda - Denotes Month Agenda view of the scheduler.
110
- * * TimelineDay - Denotes Timeline Day view of the scheduler.
111
- * * TimelineWeek - Denotes Timeline Week view of the scheduler.
112
- * * TimelineWorkWeek - Denotes Timeline Work Week view of the scheduler.
113
- * * TimelineMonth - Denotes Timeline Month view of the scheduler.
114
- * * TimelineYear - Denotes Timeline Year view of the scheduler.
103
+ * * Day
104
+ * * Week
105
+ * * WorkWeek
106
+ * * Month
107
+ * * Year
108
+ * * Agenda
109
+ * * MonthAgenda
110
+ * * TimelineDay
111
+ * * TimelineWeek
112
+ * * TimelineWorkWeek
113
+ * * TimelineMonth
114
+ * * TimelineYear
115
115
  * @default null
116
116
  */
117
117
  option: any;
118
118
  /**
119
119
  * It is used to specify the year view rendering orientation on the schedule.
120
120
  * The applicable orientation values are,
121
- * * Horizontal - Denotes the horizontal orientation of Timeline Year view.
122
- * * Vertical - Denotes the vertical orientation of Timeline Year view.
121
+ * * Horizontal
122
+ * * Vertical
123
123
  * @default 'Horizontal'
124
124
  */
125
125
  orientation: any;
@@ -174,21 +174,13 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
174
174
  * date header cells. The field that can be accessed via this template is `date`.
175
175
  * It gets applied only to the view objects on which it is defined.
176
176
  * @default null
177
- * @asptype string
178
177
  */
179
178
  dateHeaderTemplate: any;
180
- /**
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
- * @default null
183
- * @asptype string
184
- */
185
- dateRangeTemplate: any;
186
179
  /**
187
180
  * It accepts either the string or HTMLElement as template design content and parse it appropriately before displaying it onto the
188
181
  * Year view day cell header.
189
182
  * This template is only applicable for year view header cells.
190
183
  * @default null
191
- * @asptype string
192
184
  */
193
185
  dayHeaderTemplate: any;
194
186
  /**
@@ -196,7 +188,6 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
196
188
  * month date cells.
197
189
  * This template is only applicable for month view day cells.
198
190
  * @default null
199
- * @asptype string
200
191
  */
201
192
  cellHeaderTemplate: any;
202
193
  /**
@@ -204,7 +195,6 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
204
195
  * template accepts either the string or HTMLElement as template design and then the parsed design is displayed onto the work cells.
205
196
  * The field accessible via template is `date`. It gets applied only to the view objects on which it is defined.
206
197
  * @default null
207
- * @asptype string
208
198
  */
209
199
  cellTemplate: any;
210
200
  /**
@@ -213,7 +203,6 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
213
203
  * It is similar to that of the `template` option available within the `eventSettings` property,
214
204
  * whereas it will get applied only on the events of the view to which it is currently being defined.
215
205
  * @default null
216
- * @asptype string
217
206
  */
218
207
  eventTemplate: any;
219
208
  /**
@@ -221,7 +210,6 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
221
210
  * Year view day cell header.
222
211
  * This template is only applicable for year view header cells.
223
212
  * @default null
224
- * @asptype string
225
213
  */
226
214
  monthHeaderTemplate: any;
227
215
  /**
@@ -230,7 +218,6 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
230
218
  * All the resource fields mapped within resources can be accessed within this template code.
231
219
  * It gets applied only to the view objects on which it is defined.
232
220
  * @default null
233
- * @asptype string
234
221
  */
235
222
  resourceHeaderTemplate: any;
236
223
  /**
@@ -238,13 +225,14 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
238
225
  * template accepts either the string or HTMLElement as template design and then the parsed design is displayed onto the header indent cell.
239
226
  * It gets applied only to the view objects on which it is defined.
240
227
  * @default null
241
- * @asptype string
242
228
  */
243
229
  headerIndentTemplate: any;
244
230
  timeScale_minorSlotTemplate: any;
245
231
  timeScale_majorSlotTemplate: any;
246
232
  group_headerTooltipTemplate: any;
247
233
  constructor(viewContainerRef: ViewContainerRef);
234
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewDirective, never>;
235
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ViewDirective, "e-views>e-view", never, { "allowVirtualScrolling": "allowVirtualScrolling"; "cellHeaderTemplate": "cellHeaderTemplate"; "cellTemplate": "cellTemplate"; "dateFormat": "dateFormat"; "dateHeaderTemplate": "dateHeaderTemplate"; "dayHeaderTemplate": "dayHeaderTemplate"; "displayDate": "displayDate"; "displayName": "displayName"; "endHour": "endHour"; "eventTemplate": "eventTemplate"; "firstDayOfWeek": "firstDayOfWeek"; "firstMonthOfYear": "firstMonthOfYear"; "group": "group"; "headerIndentTemplate": "headerIndentTemplate"; "headerRows": "headerRows"; "interval": "interval"; "isSelected": "isSelected"; "monthHeaderTemplate": "monthHeaderTemplate"; "monthsCount": "monthsCount"; "numberOfWeeks": "numberOfWeeks"; "option": "option"; "orientation": "orientation"; "readonly": "readonly"; "resourceHeaderTemplate": "resourceHeaderTemplate"; "showWeekNumber": "showWeekNumber"; "showWeekend": "showWeekend"; "startHour": "startHour"; "timeFormat": "timeFormat"; "timeScale": "timeScale"; "workDays": "workDays"; }, {}, ["dateHeaderTemplate", "dayHeaderTemplate", "cellHeaderTemplate", "cellTemplate", "eventTemplate", "monthHeaderTemplate", "resourceHeaderTemplate", "headerIndentTemplate", "timeScale_minorSlotTemplate", "timeScale_majorSlotTemplate", "group_headerTooltipTemplate"]>;
248
236
  }
249
237
  /**
250
238
  * View Array Directive
@@ -252,4 +240,6 @@ export declare class ViewDirective extends ComplexBase<ViewDirective> {
252
240
  */
253
241
  export declare class ViewsDirective extends ArrayBase<ViewsDirective> {
254
242
  constructor();
243
+ static ɵfac: i0.ɵɵFactoryDeclaration<ViewsDirective, never>;
244
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ViewsDirective, "ejs-schedule>e-views", never, {}, {}, ["children"]>;
255
245
  }
@@ -1,5 +1,4 @@
1
1
  @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
2
- @import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,900&display=swap");
3
2
  :root {
4
3
  --color-sf-black: 0, 0, 0;
5
4
  --color-sf-white: 255, 255, 255;
@@ -4191,61 +4190,6 @@
4191
4190
  color: rgba(var(--color-sf-error));
4192
4191
  }
4193
4192
 
4194
- :root {
4195
- --color-sf-black: 0, 0, 0;
4196
- --color-sf-white: 255, 255, 255;
4197
- --color-sf-primary: 208, 188, 255;
4198
- --color-sf-primary-container: 79, 55, 139;
4199
- --color-sf-secondary: 204, 194, 220;
4200
- --color-sf-secondary-container: 74, 68, 88;
4201
- --color-sf-tertiary: 239, 184, 200;
4202
- --color-sf-tertiary-container: 99, 59, 72;
4203
- --color-sf-surface: 28, 27, 31;
4204
- --color-sf-surface-variant: 73, 69, 79;
4205
- --color-sf-background: var(--color-sf-surface);
4206
- --color-sf-on-primary: 55, 30, 115;
4207
- --color-sf-on-primary-container: 234, 221, 255;
4208
- --color-sf-on-secondary: 51, 45, 65;
4209
- --color-sf-on-secondary-container: 232, 222, 248;
4210
- --color-sf-on-tertiary: 73, 37, 50;
4211
- --color-sf-on-tertiary-containe: 255, 216, 228;
4212
- --color-sf-on-surface: 230, 225, 229;
4213
- --color-sf-on-surface-variant: 202, 196, 208;
4214
- --color-sf-on-background: 230, 225, 229;
4215
- --color-sf-outline: 147, 143, 153;
4216
- --color-sf-outline-variant: 68, 71, 70;
4217
- --color-sf-shadow: 0, 0, 0;
4218
- --color-sf-surface-tint-color: 208, 188, 255;
4219
- --color-sf-inverse-surface: 230, 225, 229;
4220
- --color-sf-inverse-on-surface: 49, 48, 51;
4221
- --color-sf-inverse-primary: 103, 80, 164;
4222
- --color-sf-scrim: 0, 0, 0;
4223
- --color-sf-error: 242, 184, 181;
4224
- --color-sf-error-container: 140, 29, 24;
4225
- --color-sf-on-error: 96, 20, 16;
4226
- --color-sf-on-error-container: 249, 222, 220;
4227
- --color-sf-success: 83, 202, 23;
4228
- --color-sf-success-container: 22, 62, 2;
4229
- --color-sf-on-success: 13, 39, 0;
4230
- --color-sf-on-success-container: 183, 250, 150;
4231
- --color-sf-info: 71, 172, 251;
4232
- --color-sf-info-container: 0, 67, 120;
4233
- --color-sf-on-info: 0, 51, 91;
4234
- --color-sf-on-info-container: 173, 219, 255;
4235
- --color-sf-warning: 245, 180, 130;
4236
- --color-sf-warning-container: 123, 65, 0;
4237
- --color-sf-on-warning: 99, 52, 0;
4238
- --color-sf-on-warning-container: 255, 220, 193;
4239
- --color-sf-spreadsheet-gridline: 231, 224, 236;
4240
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
4241
- --color-sf-success-text: 0, 0, 0;
4242
- --color-sf-warning-text: 0, 0, 0;
4243
- --color-sf-info-text: 0, 0, 0;
4244
- --color-sf-danger-text: 0, 0, 0;
4245
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
4246
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
4247
- }
4248
-
4249
4193
  /*! recurrence editor theme wise definitions*/
4250
4194
  /*! Recurrence-Editor component layout */
4251
4195
  .e-recurrenceeditor .e-editor {
@@ -1,3 +1,4 @@
1
1
 
2
+ @import 'ej2-base/styles/material3-dark-definition.scss';
2
3
  @import 'schedule/material3-dark.scss';
3
4
  @import 'recurrence-editor/material3-dark.scss';
@@ -4246,117 +4246,6 @@
4246
4246
  color: rgba(var(--color-sf-error));
4247
4247
  }
4248
4248
 
4249
- :root {
4250
- --color-sf-black: 0, 0, 0;
4251
- --color-sf-white: 255, 255, 255;
4252
- --color-sf-primary: 103, 80, 164;
4253
- --color-sf-primary-container: 234, 221, 255;
4254
- --color-sf-secondary: 98, 91, 113;
4255
- --color-sf-secondary-container: 232, 222, 248;
4256
- --color-sf-tertiary: 125, 82, 96;
4257
- --color-sf-tertiary-container: 255, 216, 228;
4258
- --color-sf-surface: 255, 255, 255;
4259
- --color-sf-surface-variant: 231, 224, 236;
4260
- --color-sf-background: var(--color-sf-surface);
4261
- --color-sf-on-primary: 255, 255, 255;
4262
- --color-sf-on-primary-container: 33, 0, 94;
4263
- --color-sf-on-secondary: 255, 255, 255;
4264
- --color-sf-on-secondary-container: 30, 25, 43;
4265
- --color-sf-on-tertiary: 255, 255, 255;
4266
- --color-sf-on-tertiary-containe: 55, 11, 30;
4267
- --color-sf-on-surface: 28, 27, 31;
4268
- --color-sf-on-surface-variant: 73, 69, 78;
4269
- --color-sf-on-background: 28, 27, 31;
4270
- --color-sf-outline: 121, 116, 126;
4271
- --color-sf-outline-variant: 196, 199, 197;
4272
- --color-sf-shadow: 0, 0, 0;
4273
- --color-sf-surface-tint-color: 103, 80, 164;
4274
- --color-sf-inverse-surface: 49, 48, 51;
4275
- --color-sf-inverse-on-surface: 244, 239, 244;
4276
- --color-sf-inverse-primary: 208, 188, 255;
4277
- --color-sf-scrim: 0, 0, 0;
4278
- --color-sf-error: 179, 38, 30;
4279
- --color-sf-error-container: 249, 222, 220;
4280
- --color-sf-on-error: 255, 250, 250;
4281
- --color-sf-on-error-container: 65, 14, 11;
4282
- --color-sf-success: 32, 81, 7;
4283
- --color-sf-success-container: 209, 255, 186;
4284
- --color-sf-on-success: 244, 255, 239;
4285
- --color-sf-on-success-container: 13, 39, 0;
4286
- --color-sf-info: 1, 87, 155;
4287
- --color-sf-info-container: 233, 245, 255;
4288
- --color-sf-on-info: 250, 253, 255;
4289
- --color-sf-on-info-container: 0, 51, 91;
4290
- --color-sf-warning: 145, 76, 0;
4291
- --color-sf-warning-container: 254, 236, 222;
4292
- --color-sf-on-warning: 255, 255, 255;
4293
- --color-sf-on-warning-container: 47, 21, 0;
4294
- --color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
4295
- --color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
4296
- --color-sf-diagram-palette-background: --color-sf-white;
4297
- --color-sf-success-text: 255, 255, 255;
4298
- --color-sf-warning-text: 255, 255, 255;
4299
- --color-sf-danger-text: 255, 255, 255;
4300
- --color-sf-info-text: 255, 255, 255;
4301
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
4302
- --color-sf-secondary-bg-color: var(--color-sf-surface);
4303
- }
4304
-
4305
- .e-dark-mode {
4306
- --color-sf-black: 0, 0, 0;
4307
- --color-sf-white: 255, 255, 255;
4308
- --color-sf-primary: 208, 188, 255;
4309
- --color-sf-primary-container: 79, 55, 139;
4310
- --color-sf-secondary: 204, 194, 220;
4311
- --color-sf-secondary-container: 74, 68, 88;
4312
- --color-sf-tertiary: 239, 184, 200;
4313
- --color-sf-tertiary-container: 99, 59, 72;
4314
- --color-sf-surface: 28, 27, 31;
4315
- --color-sf-surface-variant: 28, 27, 31;
4316
- --color-sf-background: var(--color-sf-surface);
4317
- --color-sf-on-primary: 55, 30, 115;
4318
- --color-sf-on-primary-container: 234, 221, 255;
4319
- --color-sf-on-secondary: 51, 45, 65;
4320
- --color-sf-on-secondary-container: 232, 222, 248;
4321
- --color-sf-on-tertiary: 73, 37, 50;
4322
- --color-sf-on-tertiary-containe: 255, 216, 228;
4323
- --color-sf-on-surface: 230, 225, 229;
4324
- --color-sf-on-surface-variant: 202, 196, 208;
4325
- --color-sf-on-background: 230, 225, 229;
4326
- --color-sf-outline: 147, 143, 153;
4327
- --color-sf-outline-variant: 68, 71, 70;
4328
- --color-sf-shadow: 0, 0, 0;
4329
- --color-sf-surface-tint-color: 208, 188, 255;
4330
- --color-sf-inverse-surface: 230, 225, 229;
4331
- --color-sf-inverse-on-surface: 49, 48, 51;
4332
- --color-sf-inverse-primary: 103, 80, 164;
4333
- --color-sf-scrim: 0, 0, 0;
4334
- --color-sf-error: 242, 184, 181;
4335
- --color-sf-error-container: 140, 29, 24;
4336
- --color-sf-on-error: 96, 20, 16;
4337
- --color-sf-on-error-container: 249, 222, 220;
4338
- --color-sf-success: 83, 202, 23;
4339
- --color-sf-success-container: 22, 62, 2;
4340
- --color-sf-on-success: 13, 39, 0;
4341
- --color-sf-on-success-container: 183, 250, 150;
4342
- --color-sf-info: 71, 172, 251;
4343
- --color-sf-info-container: 0, 67, 120;
4344
- --color-sf-on-info: 0, 51, 91;
4345
- --color-sf-on-info-container: 173, 219, 255;
4346
- --color-sf-warning: 245, 180, 130;
4347
- --color-sf-warning-container: 123, 65, 0;
4348
- --color-sf-on-warning: 99, 52, 0;
4349
- --color-sf-on-warning-container: 255, 220, 193;
4350
- --color-sf-spreadsheet-gridline: 231, 224, 236;
4351
- --color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
4352
- --color-sf-success-text: 0, 0, 0;
4353
- --color-sf-warning-text: 0, 0, 0;
4354
- --color-sf-info-text: 0, 0, 0;
4355
- --color-sf-danger-text: 0, 0, 0;
4356
- --color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
4357
- --color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
4358
- }
4359
-
4360
4249
  /*! recurrence editor theme wise definitions*/
4361
4250
  /*! Recurrence-Editor component layout */
4362
4251
  .e-recurrenceeditor .e-editor {
@@ -1,3 +1,4 @@
1
1
 
2
+ @import 'ej2-base/styles/material3-definition.scss';
2
3
  @import 'schedule/material3.scss';
3
4
  @import 'recurrence-editor/material3.scss';
@@ -0,0 +1,2 @@
1
+ @import 'layout.scss';
2
+ @import 'theme.scss';
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: bold !default;
6
+ $recurrence-label-font-nrml-size: 12px !default;
7
+ $recurrence-label-font-bgr-size: 12px !default;
8
+ $recurrence-left-padding: 0 8px 10px 0 !default;
9
+ $recurrence-week-position-min-width: 98px !default;
10
+ $recurrence-week-position-bgr-min-width: 130px !default;
11
+ $recurrence-day-position-bgr-min-width: 190px !default;
12
+ $recurrence-day-position-bgr-padding-left: 54px !default;
13
+ $recurrence-end-bgr-padding-right: 8px !default;
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: bold !default;
6
+ $recurrence-label-font-nrml-size: 12px !default;
7
+ $recurrence-label-font-bgr-size: 12px !default;
8
+ $recurrence-left-padding: 0 8px 10px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 190px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 8px !default;
13
+ $recurrence-week-position-min-width: 98px !default;
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: 400 !default;
6
+ $recurrence-label-font-nrml-size: 14px !default;
7
+ $recurrence-label-font-bgr-size: 16px !default;
8
+ $recurrence-left-padding: 0 8px 16px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 190px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 16px !default;
13
+ $recurrence-week-position-min-width: 98px !default;
@@ -0,0 +1 @@
1
+ @import './bootstrap5-definition.scss';
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: $font-weight-normal !default;
6
+ $recurrence-label-font-nrml-size: 14px !default;
7
+ $recurrence-label-font-bgr-size: 16px !default;
8
+ $recurrence-left-padding: 0 8px 16px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 190px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 16px !default;
13
+ $recurrence-week-position-min-width: 98px !default;
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: 400 !default;
6
+ $recurrence-label-font-nrml-size: 13px !default;
7
+ $recurrence-label-font-bgr-size: 13px !default;
8
+ $recurrence-left-padding: 0 8px 10px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 183px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 5px !default;
13
+ $recurrence-week-position-min-width: 90px !default;
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: 400 !default;
6
+ $recurrence-label-font-nrml-size: 13px !default;
7
+ $recurrence-label-font-bgr-size: 13px !default;
8
+ $recurrence-left-padding: 0 8px 10px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 183px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 5px !default;
13
+ $recurrence-week-position-min-width: 90px !default;
@@ -0,0 +1 @@
1
+ @import './fluent-definition.scss';
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: $font-weight-normal !default;
6
+ $recurrence-label-font-nrml-size: 14px !default;
7
+ $recurrence-label-font-bgr-size: 16px !default;
8
+ $recurrence-left-padding: 0 8px 16px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 183px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 5px !default;
13
+ $recurrence-week-position-min-width: 90px !default;
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: 400 !default;
6
+ $recurrence-label-font-nrml-size: 14px !default;
7
+ $recurrence-label-font-bgr-size: 16px !default;
8
+ $recurrence-left-padding: 0 8px 16px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 190px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 16px !default;
13
+ $recurrence-week-position-min-width: 98px !default;
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: 400 !default;
6
+ $recurrence-label-font-nrml-size: 12px !default;
7
+ $recurrence-label-font-bgr-size: 12px !default;
8
+ $recurrence-left-padding: 0 8px 10px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 183px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 5px !default;
13
+ $recurrence-week-position-min-width: 88px !default;
@@ -0,0 +1,13 @@
1
+ /*! recurrence editor theme wise definitions*/
2
+ $recurrence-label-bottom: 7px !default;
3
+ $recurrence-month-label-bottom: 7px !default;
4
+ $recurrence-week-label-bottom: 10px !default;
5
+ $recurrence-label-font-weight: 400 !default;
6
+ $recurrence-label-font-nrml-size: 12px !default;
7
+ $recurrence-label-font-bgr-size: 12px !default;
8
+ $recurrence-left-padding: 0 8px 10px 0 !default;
9
+ $recurrence-week-position-bgr-min-width: 130px !default;
10
+ $recurrence-day-position-bgr-min-width: 183px !default;
11
+ $recurrence-day-position-bgr-padding-left: 54px !default;
12
+ $recurrence-end-bgr-padding-right: 5px !default;
13
+ $recurrence-week-position-min-width: 88px !default;