@syncfusion/ej2-angular-schedule 23.1.40-ngcc → 23.1.40
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/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 +301 -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 +757 -0
- package/fesm2015/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs +757 -0
- package/fesm2020/syncfusion-ej2-angular-schedule.mjs.map +1 -0
- package/package.json +27 -13
- package/schematics/utils/lib-details.d.ts +2 -2
- 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 -1
- package/src/schedule/schedule.module.d.ts +9 -0
- package/src/schedule/views.directive.d.ts +5 -0
- package/styles/material3-dark.css +0 -55
- package/styles/material3-dark.scss +1 -0
- package/styles/material3.css +0 -111
- 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.scss +8 -1
- 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 +4149 -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.scss +15 -1
- 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 -860
- package/@syncfusion/ej2-angular-schedule.es5.js.map +0 -1
- package/@syncfusion/ej2-angular-schedule.js +0 -808
- package/@syncfusion/ej2-angular-schedule.js.map +0 -1
- package/CHANGELOG.md +0 -1837
- package/dist/ej2-angular-schedule.umd.js +0 -1005
- 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/styles/material3.css
CHANGED
|
@@ -4269,117 +4269,6 @@
|
|
|
4269
4269
|
color: rgba(var(--color-sf-error));
|
|
4270
4270
|
}
|
|
4271
4271
|
|
|
4272
|
-
:root {
|
|
4273
|
-
--color-sf-black: 0, 0, 0;
|
|
4274
|
-
--color-sf-white: 255, 255, 255;
|
|
4275
|
-
--color-sf-primary: 103, 80, 164;
|
|
4276
|
-
--color-sf-primary-container: 234, 221, 255;
|
|
4277
|
-
--color-sf-secondary: 98, 91, 113;
|
|
4278
|
-
--color-sf-secondary-container: 232, 222, 248;
|
|
4279
|
-
--color-sf-tertiary: 125, 82, 96;
|
|
4280
|
-
--color-sf-tertiary-container: 255, 216, 228;
|
|
4281
|
-
--color-sf-surface: 255, 255, 255;
|
|
4282
|
-
--color-sf-surface-variant: 231, 224, 236;
|
|
4283
|
-
--color-sf-background: var(--color-sf-surface);
|
|
4284
|
-
--color-sf-on-primary: 255, 255, 255;
|
|
4285
|
-
--color-sf-on-primary-container: 33, 0, 94;
|
|
4286
|
-
--color-sf-on-secondary: 255, 255, 255;
|
|
4287
|
-
--color-sf-on-secondary-container: 30, 25, 43;
|
|
4288
|
-
--color-sf-on-tertiary: 255, 255, 255;
|
|
4289
|
-
--color-sf-on-tertiary-containe: 55, 11, 30;
|
|
4290
|
-
--color-sf-on-surface: 28, 27, 31;
|
|
4291
|
-
--color-sf-on-surface-variant: 73, 69, 78;
|
|
4292
|
-
--color-sf-on-background: 28, 27, 31;
|
|
4293
|
-
--color-sf-outline: 121, 116, 126;
|
|
4294
|
-
--color-sf-outline-variant: 196, 199, 197;
|
|
4295
|
-
--color-sf-shadow: 0, 0, 0;
|
|
4296
|
-
--color-sf-surface-tint-color: 103, 80, 164;
|
|
4297
|
-
--color-sf-inverse-surface: 49, 48, 51;
|
|
4298
|
-
--color-sf-inverse-on-surface: 244, 239, 244;
|
|
4299
|
-
--color-sf-inverse-primary: 208, 188, 255;
|
|
4300
|
-
--color-sf-scrim: 0, 0, 0;
|
|
4301
|
-
--color-sf-error: 179, 38, 30;
|
|
4302
|
-
--color-sf-error-container: 249, 222, 220;
|
|
4303
|
-
--color-sf-on-error: 255, 250, 250;
|
|
4304
|
-
--color-sf-on-error-container: 65, 14, 11;
|
|
4305
|
-
--color-sf-success: 32, 81, 7;
|
|
4306
|
-
--color-sf-success-container: 209, 255, 186;
|
|
4307
|
-
--color-sf-on-success: 244, 255, 239;
|
|
4308
|
-
--color-sf-on-success-container: 13, 39, 0;
|
|
4309
|
-
--color-sf-info: 1, 87, 155;
|
|
4310
|
-
--color-sf-info-container: 233, 245, 255;
|
|
4311
|
-
--color-sf-on-info: 250, 253, 255;
|
|
4312
|
-
--color-sf-on-info-container: 0, 51, 91;
|
|
4313
|
-
--color-sf-warning: 145, 76, 0;
|
|
4314
|
-
--color-sf-warning-container: 254, 236, 222;
|
|
4315
|
-
--color-sf-on-warning: 255, 255, 255;
|
|
4316
|
-
--color-sf-on-warning-container: 47, 21, 0;
|
|
4317
|
-
--color-sf-spreadsheet-gridline: var(--color-sf-surface-variant);
|
|
4318
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px rgb(255, 255, 255), 0 0 0 3px rgb(0, 0, 0);
|
|
4319
|
-
--color-sf-diagram-palette-background: --color-sf-white;
|
|
4320
|
-
--color-sf-success-text: 255, 255, 255;
|
|
4321
|
-
--color-sf-warning-text: 255, 255, 255;
|
|
4322
|
-
--color-sf-danger-text: 255, 255, 255;
|
|
4323
|
-
--color-sf-info-text: 255, 255, 255;
|
|
4324
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary-container);
|
|
4325
|
-
--color-sf-secondary-bg-color: var(--color-sf-surface);
|
|
4326
|
-
}
|
|
4327
|
-
|
|
4328
|
-
.e-dark-mode {
|
|
4329
|
-
--color-sf-black: 0, 0, 0;
|
|
4330
|
-
--color-sf-white: 255, 255, 255;
|
|
4331
|
-
--color-sf-primary: 208, 188, 255;
|
|
4332
|
-
--color-sf-primary-container: 79, 55, 139;
|
|
4333
|
-
--color-sf-secondary: 204, 194, 220;
|
|
4334
|
-
--color-sf-secondary-container: 74, 68, 88;
|
|
4335
|
-
--color-sf-tertiary: 239, 184, 200;
|
|
4336
|
-
--color-sf-tertiary-container: 99, 59, 72;
|
|
4337
|
-
--color-sf-surface: 28, 27, 31;
|
|
4338
|
-
--color-sf-surface-variant: 28, 27, 31;
|
|
4339
|
-
--color-sf-background: var(--color-sf-surface);
|
|
4340
|
-
--color-sf-on-primary: 55, 30, 115;
|
|
4341
|
-
--color-sf-on-primary-container: 234, 221, 255;
|
|
4342
|
-
--color-sf-on-secondary: 51, 45, 65;
|
|
4343
|
-
--color-sf-on-secondary-container: 232, 222, 248;
|
|
4344
|
-
--color-sf-on-tertiary: 73, 37, 50;
|
|
4345
|
-
--color-sf-on-tertiary-containe: 255, 216, 228;
|
|
4346
|
-
--color-sf-on-surface: 230, 225, 229;
|
|
4347
|
-
--color-sf-on-surface-variant: 202, 196, 208;
|
|
4348
|
-
--color-sf-on-background: 230, 225, 229;
|
|
4349
|
-
--color-sf-outline: 147, 143, 153;
|
|
4350
|
-
--color-sf-outline-variant: 68, 71, 70;
|
|
4351
|
-
--color-sf-shadow: 0, 0, 0;
|
|
4352
|
-
--color-sf-surface-tint-color: 208, 188, 255;
|
|
4353
|
-
--color-sf-inverse-surface: 230, 225, 229;
|
|
4354
|
-
--color-sf-inverse-on-surface: 49, 48, 51;
|
|
4355
|
-
--color-sf-inverse-primary: 103, 80, 164;
|
|
4356
|
-
--color-sf-scrim: 0, 0, 0;
|
|
4357
|
-
--color-sf-error: 242, 184, 181;
|
|
4358
|
-
--color-sf-error-container: 140, 29, 24;
|
|
4359
|
-
--color-sf-on-error: 96, 20, 16;
|
|
4360
|
-
--color-sf-on-error-container: 249, 222, 220;
|
|
4361
|
-
--color-sf-success: 83, 202, 23;
|
|
4362
|
-
--color-sf-success-container: 22, 62, 2;
|
|
4363
|
-
--color-sf-on-success: 13, 39, 0;
|
|
4364
|
-
--color-sf-on-success-container: 183, 250, 150;
|
|
4365
|
-
--color-sf-info: 71, 172, 251;
|
|
4366
|
-
--color-sf-info-container: 0, 67, 120;
|
|
4367
|
-
--color-sf-on-info: 0, 51, 91;
|
|
4368
|
-
--color-sf-on-info-container: 173, 219, 255;
|
|
4369
|
-
--color-sf-warning: 245, 180, 130;
|
|
4370
|
-
--color-sf-warning-container: 123, 65, 0;
|
|
4371
|
-
--color-sf-on-warning: 99, 52, 0;
|
|
4372
|
-
--color-sf-on-warning-container: 255, 220, 193;
|
|
4373
|
-
--color-sf-spreadsheet-gridline: 231, 224, 236;
|
|
4374
|
-
--color-sf-shadow-focus-ring1: 0 0 0 1px #000000, 0 0 0 3px #ffffff;
|
|
4375
|
-
--color-sf-success-text: 0, 0, 0;
|
|
4376
|
-
--color-sf-warning-text: 0, 0, 0;
|
|
4377
|
-
--color-sf-info-text: 0, 0, 0;
|
|
4378
|
-
--color-sf-danger-text: 0, 0, 0;
|
|
4379
|
-
--color-sf-diagram-palette-background: var(--color-sf-inverse-surface);
|
|
4380
|
-
--color-sf-content-text-color-alt2: var(--color-sf-on-secondary);
|
|
4381
|
-
}
|
|
4382
|
-
|
|
4383
4272
|
/*! recurrence editor theme wise definitions*/
|
|
4384
4273
|
/*! Recurrence-Editor component layout */
|
|
4385
4274
|
.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;
|