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

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 (205) hide show
  1. package/README.md +1 -1
  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 +289 -0
  11. package/esm2020/src/schedule/schedule.module.mjs +52 -0
  12. package/esm2020/src/schedule/views.directive.mjs +132 -0
  13. package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
  14. package/fesm2015/syncfusion-ej2-angular-schedule.mjs +745 -0
  15. package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  16. package/fesm2020/syncfusion-ej2-angular-schedule.mjs +745 -0
  17. package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
  18. package/package.json +48 -16
  19. package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
  20. package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
  21. package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
  22. package/src/schedule/headerrows.directive.d.ts +5 -0
  23. package/src/schedule/resources.directive.d.ts +5 -0
  24. package/src/schedule/schedule-all.module.d.ts +6 -0
  25. package/src/schedule/schedule.component.d.ts +3 -0
  26. package/src/schedule/schedule.module.d.ts +9 -0
  27. package/src/schedule/views.directive.d.ts +5 -0
  28. package/styles/material3-dark.css +20 -67
  29. package/styles/material3-dark.scss +1 -0
  30. package/styles/material3.css +20 -122
  31. package/styles/material3.scss +1 -0
  32. package/styles/recurrence-editor/_all.scss +2 -0
  33. package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
  34. package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
  35. package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
  36. package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
  37. package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
  38. package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
  39. package/styles/recurrence-editor/_fabric-definition.scss +13 -0
  40. package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
  41. package/styles/recurrence-editor/_fluent-definition.scss +13 -0
  42. package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
  43. package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
  44. package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
  45. package/styles/recurrence-editor/_layout.scss +548 -0
  46. package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
  47. package/styles/recurrence-editor/_material-definition.scss +13 -0
  48. package/styles/recurrence-editor/_material3-dark-definition.scss +1 -0
  49. package/styles/recurrence-editor/_material3-definition.scss +13 -0
  50. package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
  51. package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
  52. package/styles/recurrence-editor/_theme.scss +1 -0
  53. package/styles/recurrence-editor/bootstrap-dark.scss +8 -1
  54. package/styles/recurrence-editor/bootstrap.scss +8 -1
  55. package/styles/recurrence-editor/bootstrap4.scss +8 -1
  56. package/styles/recurrence-editor/bootstrap5-dark.scss +8 -1
  57. package/styles/recurrence-editor/bootstrap5.scss +8 -1
  58. package/styles/recurrence-editor/fabric-dark.scss +8 -1
  59. package/styles/recurrence-editor/fabric.scss +8 -1
  60. package/styles/recurrence-editor/fluent-dark.scss +8 -1
  61. package/styles/recurrence-editor/fluent.scss +8 -1
  62. package/styles/recurrence-editor/highcontrast-light.scss +8 -1
  63. package/styles/recurrence-editor/highcontrast.scss +8 -1
  64. package/styles/recurrence-editor/material-dark.scss +8 -1
  65. package/styles/recurrence-editor/material.scss +8 -1
  66. package/styles/recurrence-editor/material3-dark.css +20 -11
  67. package/styles/recurrence-editor/material3-dark.scss +8 -1
  68. package/styles/recurrence-editor/material3.css +20 -11
  69. package/styles/recurrence-editor/material3.scss +8 -1
  70. package/styles/recurrence-editor/tailwind-dark.scss +8 -1
  71. package/styles/recurrence-editor/tailwind.scss +8 -1
  72. package/styles/schedule/_all.scss +2 -0
  73. package/styles/schedule/_bootstrap-dark-definition.scss +280 -0
  74. package/styles/schedule/_bootstrap-definition.scss +280 -0
  75. package/styles/schedule/_bootstrap4-definition.scss +283 -0
  76. package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
  77. package/styles/schedule/_bootstrap5-definition.scss +290 -0
  78. package/styles/schedule/_fabric-dark-definition.scss +279 -0
  79. package/styles/schedule/_fabric-definition.scss +280 -0
  80. package/styles/schedule/_fluent-dark-definition.scss +1 -0
  81. package/styles/schedule/_fluent-definition.scss +285 -0
  82. package/styles/schedule/_fusionnew-definition.scss +289 -0
  83. package/styles/schedule/_highcontrast-definition.scss +281 -0
  84. package/styles/schedule/_highcontrast-light-definition.scss +281 -0
  85. package/styles/schedule/_layout.scss +4134 -0
  86. package/styles/schedule/_material-dark-definition.scss +280 -0
  87. package/styles/schedule/_material-definition.scss +280 -0
  88. package/styles/schedule/_material3-dark-definition.scss +1 -0
  89. package/styles/schedule/_material3-definition.scss +292 -0
  90. package/styles/schedule/_tailwind-dark-definition.scss +1 -0
  91. package/styles/schedule/_tailwind-definition.scss +282 -0
  92. package/styles/schedule/_theme.scss +551 -0
  93. package/styles/schedule/bootstrap-dark.scss +16 -1
  94. package/styles/schedule/bootstrap.scss +16 -1
  95. package/styles/schedule/bootstrap4.scss +16 -1
  96. package/styles/schedule/bootstrap5-dark.scss +15 -1
  97. package/styles/schedule/bootstrap5.scss +16 -1
  98. package/styles/schedule/fabric-dark.scss +16 -1
  99. package/styles/schedule/fabric.scss +16 -1
  100. package/styles/schedule/fluent-dark.scss +15 -1
  101. package/styles/schedule/fluent.scss +16 -1
  102. package/styles/schedule/highcontrast-light.scss +16 -1
  103. package/styles/schedule/highcontrast.scss +16 -1
  104. package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
  105. package/styles/schedule/icons/_bootstrap.scss +231 -0
  106. package/styles/schedule/icons/_bootstrap4.scss +231 -0
  107. package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
  108. package/styles/schedule/icons/_bootstrap5.scss +231 -0
  109. package/styles/schedule/icons/_fabric-dark.scss +231 -0
  110. package/styles/schedule/icons/_fabric.scss +231 -0
  111. package/styles/schedule/icons/_fluent-dark.scss +1 -0
  112. package/styles/schedule/icons/_fluent.scss +231 -0
  113. package/styles/schedule/icons/_fusionnew.scss +231 -0
  114. package/styles/schedule/icons/_highcontrast-light.scss +231 -0
  115. package/styles/schedule/icons/_highcontrast.scss +231 -0
  116. package/styles/schedule/icons/_material-dark.scss +231 -0
  117. package/styles/schedule/icons/_material.scss +231 -0
  118. package/styles/schedule/icons/_material3-dark.scss +1 -0
  119. package/styles/schedule/icons/_material3.scss +231 -0
  120. package/styles/schedule/icons/_tailwind-dark.scss +1 -0
  121. package/styles/schedule/icons/_tailwind.scss +231 -0
  122. package/styles/schedule/material-dark.scss +16 -1
  123. package/styles/schedule/material.scss +16 -1
  124. package/styles/schedule/material3-dark.css +20 -11
  125. package/styles/schedule/material3-dark.scss +15 -1
  126. package/styles/schedule/material3.css +20 -11
  127. package/styles/schedule/material3.scss +16 -1
  128. package/styles/schedule/tailwind-dark.scss +15 -1
  129. package/styles/schedule/tailwind.scss +16 -1
  130. package/syncfusion-ej2-angular-schedule.d.ts +5 -0
  131. package/@syncfusion/ej2-angular-schedule.es5.js +0 -850
  132. package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
  133. package/@syncfusion/ej2-angular-schedule.js +0 -798
  134. package/@syncfusion/ej2-angular-schedule.js.map +0 -1
  135. package/CHANGELOG.md +0 -1761
  136. package/dist/ej2-angular-schedule.umd.js +0 -991
  137. package/dist/ej2-angular-schedule.umd.js.map +0 -1
  138. package/dist/ej2-angular-schedule.umd.min.js +0 -11
  139. package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
  140. package/ej2-angular-schedule.d.ts +0 -6
  141. package/ej2-angular-schedule.metadata.json +0 -1
  142. package/postinstall/tagchange.js +0 -18
  143. package/schematics/collection.json +0 -40
  144. package/schematics/generators/schedule-agenda-views/index.d.ts +0 -3
  145. package/schematics/generators/schedule-agenda-views/index.js +0 -8
  146. package/schematics/generators/schedule-agenda-views/sample-details.d.ts +0 -5
  147. package/schematics/generators/schedule-agenda-views/sample-details.js +0 -7
  148. package/schematics/generators/schedule-agenda-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  149. package/schematics/generators/schedule-agenda-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
  150. package/schematics/generators/schedule-agenda-views/schema.d.ts +0 -3
  151. package/schematics/generators/schedule-agenda-views/schema.js +0 -2
  152. package/schematics/generators/schedule-agenda-views/schema.json +0 -125
  153. package/schematics/generators/schedule-calendar-views/index.d.ts +0 -3
  154. package/schematics/generators/schedule-calendar-views/index.js +0 -8
  155. package/schematics/generators/schedule-calendar-views/sample-details.d.ts +0 -5
  156. package/schematics/generators/schedule-calendar-views/sample-details.js +0 -7
  157. package/schematics/generators/schedule-calendar-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  158. package/schematics/generators/schedule-calendar-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -11
  159. package/schematics/generators/schedule-calendar-views/schema.d.ts +0 -3
  160. package/schematics/generators/schedule-calendar-views/schema.js +0 -2
  161. package/schematics/generators/schedule-calendar-views/schema.json +0 -125
  162. package/schematics/generators/schedule-horizontal-grouping/index.d.ts +0 -3
  163. package/schematics/generators/schedule-horizontal-grouping/index.js +0 -8
  164. package/schematics/generators/schedule-horizontal-grouping/sample-details.d.ts +0 -5
  165. package/schematics/generators/schedule-horizontal-grouping/sample-details.js +0 -7
  166. package/schematics/generators/schedule-horizontal-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -92
  167. package/schematics/generators/schedule-horizontal-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -29
  168. package/schematics/generators/schedule-horizontal-grouping/schema.d.ts +0 -3
  169. package/schematics/generators/schedule-horizontal-grouping/schema.js +0 -2
  170. package/schematics/generators/schedule-horizontal-grouping/schema.json +0 -125
  171. package/schematics/generators/schedule-time-scale/index.d.ts +0 -3
  172. package/schematics/generators/schedule-time-scale/index.js +0 -8
  173. package/schematics/generators/schedule-time-scale/sample-details.d.ts +0 -5
  174. package/schematics/generators/schedule-time-scale/sample-details.js +0 -7
  175. package/schematics/generators/schedule-time-scale/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  176. package/schematics/generators/schedule-time-scale/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
  177. package/schematics/generators/schedule-time-scale/schema.d.ts +0 -3
  178. package/schematics/generators/schedule-time-scale/schema.js +0 -2
  179. package/schematics/generators/schedule-time-scale/schema.json +0 -125
  180. package/schematics/generators/schedule-timeline-grouping/index.d.ts +0 -3
  181. package/schematics/generators/schedule-timeline-grouping/index.js +0 -8
  182. package/schematics/generators/schedule-timeline-grouping/sample-details.d.ts +0 -5
  183. package/schematics/generators/schedule-timeline-grouping/sample-details.js +0 -7
  184. package/schematics/generators/schedule-timeline-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
  185. package/schematics/generators/schedule-timeline-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -23
  186. package/schematics/generators/schedule-timeline-grouping/schema.d.ts +0 -3
  187. package/schematics/generators/schedule-timeline-grouping/schema.js +0 -2
  188. package/schematics/generators/schedule-timeline-grouping/schema.json +0 -125
  189. package/schematics/generators/schedule-timeline-views/index.d.ts +0 -3
  190. package/schematics/generators/schedule-timeline-views/index.js +0 -8
  191. package/schematics/generators/schedule-timeline-views/sample-details.d.ts +0 -5
  192. package/schematics/generators/schedule-timeline-views/sample-details.js +0 -7
  193. package/schematics/generators/schedule-timeline-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
  194. package/schematics/generators/schedule-timeline-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
  195. package/schematics/generators/schedule-timeline-views/schema.d.ts +0 -3
  196. package/schematics/generators/schedule-timeline-views/schema.js +0 -2
  197. package/schematics/generators/schedule-timeline-views/schema.json +0 -125
  198. package/schematics/ng-add/index.d.ts +0 -3
  199. package/schematics/ng-add/index.js +0 -9
  200. package/schematics/ng-add/schema.d.ts +0 -13
  201. package/schematics/ng-add/schema.js +0 -2
  202. package/schematics/ng-add/schema.json +0 -34
  203. package/schematics/tsconfig.json +0 -25
  204. package/schematics/utils/lib-details.d.ts +0 -4
  205. package/schematics/utils/lib-details.js +0 -6
@@ -191,21 +191,26 @@
191
191
  }
192
192
 
193
193
  .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
194
- margin: 6px 6px 5px;
195
- min-height: 12px;
196
- min-width: 12px;
197
- padding: 6px;
194
+ margin: 0 6px;
195
+ min-height: 30px;
196
+ min-width: 30px;
198
197
  }
199
198
 
200
199
  .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
201
200
  .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
202
- min-height: 16px;
203
- min-width: 16px;
201
+ min-height: 38px;
202
+ min-width: 38px;
203
+ }
204
+
205
+ .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
206
+ .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon {
207
+ min-height: 22px;
208
+ min-width: 22px;
204
209
  }
205
210
 
206
211
  .e-bigger .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter,
207
212
  .e-bigger.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-filter {
208
- padding: 8px 16px 8px 0;
213
+ padding: 4px 16px 4px 0;
209
214
  }
210
215
 
211
216
  .e-input-group.e-ddl,
@@ -225,7 +230,7 @@
225
230
  .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus.e-small .e-clear-icon,
226
231
  .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon,
227
232
  .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
228
- margin: 0;
233
+ margin: 4px;
229
234
  }
230
235
 
231
236
  .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
@@ -234,7 +239,7 @@
234
239
  .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
235
240
  .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-input-focus .e-input-filter,
236
241
  .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group.e-small.e-input-focus .e-input-filter {
237
- padding: 5px 5px 5px 12px;
242
+ padding: 4px 5px 4px 12px;
238
243
  }
239
244
 
240
245
  .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group .e-clear-icon,
@@ -244,8 +249,8 @@
244
249
  .e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
245
250
  .e-small.e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger .e-clear-icon,
246
251
  .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-bigger.e-small .e-clear-icon {
247
- min-height: 18px;
248
- min-width: 18px;
252
+ min-height: 34px;
253
+ min-width: 34px;
249
254
  }
250
255
 
251
256
  .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-filter-parent .e-input-group .e-input-filter,
@@ -258,6 +263,10 @@
258
263
  padding: 8px 16px;
259
264
  }
260
265
 
266
+ .e-bigger.e-small .e-popup.e-ddl:not(.e-ddl-device) .e-input-group.e-input-focus .e-clear-icon {
267
+ margin: 0 4px;
268
+ }
269
+
261
270
  .e-ddl.e-popup.e-outline .e-filter-parent {
262
271
  padding: 4px 8px;
263
272
  }
@@ -4246,117 +4255,6 @@
4246
4255
  color: rgba(var(--color-sf-error));
4247
4256
  }
4248
4257
 
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
4258
  /*! recurrence editor theme wise definitions*/
4361
4259
  /*! Recurrence-Editor component layout */
4362
4260
  .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;