@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.
- package/README.md +1 -1
- package/esm2020/public_api.mjs +3 -0
- package/esm2020/src/index.mjs +11 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor-all.module.mjs +23 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor.component.mjs +59 -0
- package/esm2020/src/recurrence-editor/recurrenceeditor.module.mjs +25 -0
- package/esm2020/src/schedule/headerrows.directive.mjs +66 -0
- package/esm2020/src/schedule/resources.directive.mjs +58 -0
- package/esm2020/src/schedule/schedule-all.module.mjs +74 -0
- package/esm2020/src/schedule/schedule.component.mjs +289 -0
- package/esm2020/src/schedule/schedule.module.mjs +52 -0
- package/esm2020/src/schedule/views.directive.mjs +132 -0
- package/esm2020/syncfusion-ej2-angular-schedule.mjs +5 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs +745 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs +745 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/package.json +48 -16
- package/src/recurrence-editor/recurrenceeditor-all.module.d.ts +6 -0
- package/src/recurrence-editor/recurrenceeditor.component.d.ts +3 -0
- package/src/recurrence-editor/recurrenceeditor.module.d.ts +6 -0
- package/src/schedule/headerrows.directive.d.ts +5 -0
- package/src/schedule/resources.directive.d.ts +5 -0
- package/src/schedule/schedule-all.module.d.ts +6 -0
- package/src/schedule/schedule.component.d.ts +3 -0
- package/src/schedule/schedule.module.d.ts +9 -0
- package/src/schedule/views.directive.d.ts +5 -0
- package/styles/material3-dark.css +20 -67
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +20 -122
- package/styles/material3.scss +1 -0
- package/styles/recurrence-editor/_all.scss +2 -0
- package/styles/recurrence-editor/_bootstrap-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap4-definition.scss +13 -0
- package/styles/recurrence-editor/_bootstrap5-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_bootstrap5-definition.scss +13 -0
- package/styles/recurrence-editor/_fabric-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_fabric-definition.scss +13 -0
- package/styles/recurrence-editor/_fluent-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_fluent-definition.scss +13 -0
- package/styles/recurrence-editor/_fusionnew-definition.scss +13 -0
- package/styles/recurrence-editor/_highcontrast-definition.scss +13 -0
- package/styles/recurrence-editor/_highcontrast-light-definition.scss +13 -0
- package/styles/recurrence-editor/_layout.scss +548 -0
- package/styles/recurrence-editor/_material-dark-definition.scss +13 -0
- package/styles/recurrence-editor/_material-definition.scss +13 -0
- package/styles/recurrence-editor/_material3-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_material3-definition.scss +13 -0
- package/styles/recurrence-editor/_tailwind-dark-definition.scss +1 -0
- package/styles/recurrence-editor/_tailwind-definition.scss +13 -0
- package/styles/recurrence-editor/_theme.scss +1 -0
- package/styles/recurrence-editor/bootstrap-dark.scss +8 -1
- package/styles/recurrence-editor/bootstrap.scss +8 -1
- package/styles/recurrence-editor/bootstrap4.scss +8 -1
- package/styles/recurrence-editor/bootstrap5-dark.scss +8 -1
- package/styles/recurrence-editor/bootstrap5.scss +8 -1
- package/styles/recurrence-editor/fabric-dark.scss +8 -1
- package/styles/recurrence-editor/fabric.scss +8 -1
- package/styles/recurrence-editor/fluent-dark.scss +8 -1
- package/styles/recurrence-editor/fluent.scss +8 -1
- package/styles/recurrence-editor/highcontrast-light.scss +8 -1
- package/styles/recurrence-editor/highcontrast.scss +8 -1
- package/styles/recurrence-editor/material-dark.scss +8 -1
- package/styles/recurrence-editor/material.scss +8 -1
- package/styles/recurrence-editor/material3-dark.css +20 -11
- package/styles/recurrence-editor/material3-dark.scss +8 -1
- package/styles/recurrence-editor/material3.css +20 -11
- package/styles/recurrence-editor/material3.scss +8 -1
- package/styles/recurrence-editor/tailwind-dark.scss +8 -1
- package/styles/recurrence-editor/tailwind.scss +8 -1
- package/styles/schedule/_all.scss +2 -0
- package/styles/schedule/_bootstrap-dark-definition.scss +280 -0
- package/styles/schedule/_bootstrap-definition.scss +280 -0
- package/styles/schedule/_bootstrap4-definition.scss +283 -0
- package/styles/schedule/_bootstrap5-dark-definition.scss +1 -0
- package/styles/schedule/_bootstrap5-definition.scss +290 -0
- package/styles/schedule/_fabric-dark-definition.scss +279 -0
- package/styles/schedule/_fabric-definition.scss +280 -0
- package/styles/schedule/_fluent-dark-definition.scss +1 -0
- package/styles/schedule/_fluent-definition.scss +285 -0
- package/styles/schedule/_fusionnew-definition.scss +289 -0
- package/styles/schedule/_highcontrast-definition.scss +281 -0
- package/styles/schedule/_highcontrast-light-definition.scss +281 -0
- package/styles/schedule/_layout.scss +4134 -0
- package/styles/schedule/_material-dark-definition.scss +280 -0
- package/styles/schedule/_material-definition.scss +280 -0
- package/styles/schedule/_material3-dark-definition.scss +1 -0
- package/styles/schedule/_material3-definition.scss +292 -0
- package/styles/schedule/_tailwind-dark-definition.scss +1 -0
- package/styles/schedule/_tailwind-definition.scss +282 -0
- package/styles/schedule/_theme.scss +551 -0
- package/styles/schedule/bootstrap-dark.scss +16 -1
- package/styles/schedule/bootstrap.scss +16 -1
- package/styles/schedule/bootstrap4.scss +16 -1
- package/styles/schedule/bootstrap5-dark.scss +15 -1
- package/styles/schedule/bootstrap5.scss +16 -1
- package/styles/schedule/fabric-dark.scss +16 -1
- package/styles/schedule/fabric.scss +16 -1
- package/styles/schedule/fluent-dark.scss +15 -1
- package/styles/schedule/fluent.scss +16 -1
- package/styles/schedule/highcontrast-light.scss +16 -1
- package/styles/schedule/highcontrast.scss +16 -1
- package/styles/schedule/icons/_bootstrap-dark.scss +231 -0
- package/styles/schedule/icons/_bootstrap.scss +231 -0
- package/styles/schedule/icons/_bootstrap4.scss +231 -0
- package/styles/schedule/icons/_bootstrap5-dark.scss +1 -0
- package/styles/schedule/icons/_bootstrap5.scss +231 -0
- package/styles/schedule/icons/_fabric-dark.scss +231 -0
- package/styles/schedule/icons/_fabric.scss +231 -0
- package/styles/schedule/icons/_fluent-dark.scss +1 -0
- package/styles/schedule/icons/_fluent.scss +231 -0
- package/styles/schedule/icons/_fusionnew.scss +231 -0
- package/styles/schedule/icons/_highcontrast-light.scss +231 -0
- package/styles/schedule/icons/_highcontrast.scss +231 -0
- package/styles/schedule/icons/_material-dark.scss +231 -0
- package/styles/schedule/icons/_material.scss +231 -0
- package/styles/schedule/icons/_material3-dark.scss +1 -0
- package/styles/schedule/icons/_material3.scss +231 -0
- package/styles/schedule/icons/_tailwind-dark.scss +1 -0
- package/styles/schedule/icons/_tailwind.scss +231 -0
- package/styles/schedule/material-dark.scss +16 -1
- package/styles/schedule/material.scss +16 -1
- package/styles/schedule/material3-dark.css +20 -11
- package/styles/schedule/material3-dark.scss +15 -1
- package/styles/schedule/material3.css +20 -11
- package/styles/schedule/material3.scss +16 -1
- package/styles/schedule/tailwind-dark.scss +15 -1
- package/styles/schedule/tailwind.scss +16 -1
- package/syncfusion-ej2-angular-schedule.d.ts +5 -0
- package/@syncfusion/ej2-angular-schedule.es5.js +0 -850
- package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-schedule.js +0 -798
- package/@syncfusion/ej2-angular-schedule.js.map +0 -1
- package/CHANGELOG.md +0 -1761
- package/dist/ej2-angular-schedule.umd.js +0 -991
- package/dist/ej2-angular-schedule.umd.js.map +0 -1
- package/dist/ej2-angular-schedule.umd.min.js +0 -11
- package/dist/ej2-angular-schedule.umd.min.js.map +0 -1
- package/ej2-angular-schedule.d.ts +0 -6
- package/ej2-angular-schedule.metadata.json +0 -1
- package/postinstall/tagchange.js +0 -18
- package/schematics/collection.json +0 -40
- package/schematics/generators/schedule-agenda-views/index.d.ts +0 -3
- package/schematics/generators/schedule-agenda-views/index.js +0 -8
- package/schematics/generators/schedule-agenda-views/sample-details.d.ts +0 -5
- package/schematics/generators/schedule-agenda-views/sample-details.js +0 -7
- package/schematics/generators/schedule-agenda-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/schedule-agenda-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
- package/schematics/generators/schedule-agenda-views/schema.d.ts +0 -3
- package/schematics/generators/schedule-agenda-views/schema.js +0 -2
- package/schematics/generators/schedule-agenda-views/schema.json +0 -125
- package/schematics/generators/schedule-calendar-views/index.d.ts +0 -3
- package/schematics/generators/schedule-calendar-views/index.js +0 -8
- package/schematics/generators/schedule-calendar-views/sample-details.d.ts +0 -5
- package/schematics/generators/schedule-calendar-views/sample-details.js +0 -7
- package/schematics/generators/schedule-calendar-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/schedule-calendar-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -11
- package/schematics/generators/schedule-calendar-views/schema.d.ts +0 -3
- package/schematics/generators/schedule-calendar-views/schema.js +0 -2
- package/schematics/generators/schedule-calendar-views/schema.json +0 -125
- package/schematics/generators/schedule-horizontal-grouping/index.d.ts +0 -3
- package/schematics/generators/schedule-horizontal-grouping/index.js +0 -8
- package/schematics/generators/schedule-horizontal-grouping/sample-details.d.ts +0 -5
- package/schematics/generators/schedule-horizontal-grouping/sample-details.js +0 -7
- package/schematics/generators/schedule-horizontal-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -92
- package/schematics/generators/schedule-horizontal-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -29
- package/schematics/generators/schedule-horizontal-grouping/schema.d.ts +0 -3
- package/schematics/generators/schedule-horizontal-grouping/schema.js +0 -2
- package/schematics/generators/schedule-horizontal-grouping/schema.json +0 -125
- package/schematics/generators/schedule-time-scale/index.d.ts +0 -3
- package/schematics/generators/schedule-time-scale/index.js +0 -8
- package/schematics/generators/schedule-time-scale/sample-details.d.ts +0 -5
- package/schematics/generators/schedule-time-scale/sample-details.js +0 -7
- package/schematics/generators/schedule-time-scale/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/schedule-time-scale/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -13
- package/schematics/generators/schedule-time-scale/schema.d.ts +0 -3
- package/schematics/generators/schedule-time-scale/schema.js +0 -2
- package/schematics/generators/schedule-time-scale/schema.json +0 -125
- package/schematics/generators/schedule-timeline-grouping/index.d.ts +0 -3
- package/schematics/generators/schedule-timeline-grouping/index.js +0 -8
- package/schematics/generators/schedule-timeline-grouping/sample-details.d.ts +0 -5
- package/schematics/generators/schedule-timeline-grouping/sample-details.js +0 -7
- package/schematics/generators/schedule-timeline-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -6
- package/schematics/generators/schedule-timeline-grouping/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -23
- package/schematics/generators/schedule-timeline-grouping/schema.d.ts +0 -3
- package/schematics/generators/schedule-timeline-grouping/schema.js +0 -2
- package/schematics/generators/schedule-timeline-grouping/schema.json +0 -125
- package/schematics/generators/schedule-timeline-views/index.d.ts +0 -3
- package/schematics/generators/schedule-timeline-views/index.js +0 -8
- package/schematics/generators/schedule-timeline-views/sample-details.d.ts +0 -5
- package/schematics/generators/schedule-timeline-views/sample-details.js +0 -7
- package/schematics/generators/schedule-timeline-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.css +0 -0
- package/schematics/generators/schedule-timeline-views/samples/__path__/__name@dasherize@if-flat__/__name@dasherize__.component.html +0 -14
- package/schematics/generators/schedule-timeline-views/schema.d.ts +0 -3
- package/schematics/generators/schedule-timeline-views/schema.js +0 -2
- package/schematics/generators/schedule-timeline-views/schema.json +0 -125
- package/schematics/ng-add/index.d.ts +0 -3
- package/schematics/ng-add/index.js +0 -9
- package/schematics/ng-add/schema.d.ts +0 -13
- package/schematics/ng-add/schema.js +0 -2
- package/schematics/ng-add/schema.json +0 -34
- package/schematics/tsconfig.json +0 -25
- package/schematics/utils/lib-details.d.ts +0 -4
- package/schematics/utils/lib-details.js +0 -6
package/styles/material3.css
CHANGED
|
@@ -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:
|
|
195
|
-
min-height:
|
|
196
|
-
min-width:
|
|
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:
|
|
203
|
-
min-width:
|
|
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:
|
|
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:
|
|
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:
|
|
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:
|
|
248
|
-
min-width:
|
|
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 {
|
package/styles/material3.scss
CHANGED
|
@@ -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;
|