igniteui-theming 6.0.0 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/sass/color/presets/dark/_material.scss +1 -1
- package/sass/color/presets/light/_material.scss +1 -1
- package/sass/themes/schemas/components/dark/_calendar.scss +393 -163
- package/sass/themes/schemas/components/light/_button.scss +10 -10
- package/sass/themes/schemas/components/light/_calendar.scss +504 -397
- package/sass/themes/schemas/components/light/_drop-down.scss +4 -4
- package/sass/themes/schemas/components/light/_switch.scss +2 -0
|
@@ -340,9 +340,9 @@ $bootstrap-drop-down: extend(
|
|
|
340
340
|
/// @prop {Map} focused-item-background [color: ('primary', 500, .15)] - The drop-down focused item background color.
|
|
341
341
|
/// @prop {Map} selected-item-text-color [contrast-color: ('primary', 500)] - The drop-down selected item text color.
|
|
342
342
|
/// @prop {Map} selected-hover-item-background [color: ('primary', 400)] - The drop-down selected item hover background color.
|
|
343
|
-
/// @prop {Map} selected-hover-item-text-color [contrast-color: ('primary',
|
|
343
|
+
/// @prop {Map} selected-hover-item-text-color [contrast-color: ('primary', 500)] - The drop-down selected item hover text color.
|
|
344
344
|
/// @prop {Map} selected-focus-item-background [color: ('primary', 400)] - The drop-down selected item focus background color.
|
|
345
|
-
/// @prop {Map} selected-focus-item-text-color [contrast-color: ('primary',
|
|
345
|
+
/// @prop {Map} selected-focus-item-text-color [contrast-color: ('primary', 500)] - The drop-down selected item focus text color.
|
|
346
346
|
/// @prop {Number} elevation [3] - The elevation level, between 0-24, to be used for the badge shadow.
|
|
347
347
|
/// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for drop-down component.
|
|
348
348
|
/// @prop {List} item-border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for the drop-down items.
|
|
@@ -393,7 +393,7 @@ $indigo-drop-down: extend(
|
|
|
393
393
|
selected-hover-item-text-color: (
|
|
394
394
|
contrast-color: (
|
|
395
395
|
'primary',
|
|
396
|
-
|
|
396
|
+
500,
|
|
397
397
|
),
|
|
398
398
|
),
|
|
399
399
|
selected-focus-item-background: (
|
|
@@ -405,7 +405,7 @@ $indigo-drop-down: extend(
|
|
|
405
405
|
selected-focus-item-text-color: (
|
|
406
406
|
contrast-color: (
|
|
407
407
|
'primary',
|
|
408
|
-
|
|
408
|
+
500,
|
|
409
409
|
),
|
|
410
410
|
),
|
|
411
411
|
border-radius: (
|
|
@@ -411,6 +411,7 @@ $bootstrap-switch: extend(
|
|
|
411
411
|
/// @prop {Map} label-disabled-color [color: ('gray', 300)] - The color of the switch label when the switch is disabled
|
|
412
412
|
/// @prop {Map} error-color [color: ('gray', 500)] - The border and thumb color in invalid state.
|
|
413
413
|
/// @prop {Map} error-color-hover [color: ('gray', 300)] - The border and thumb color in invalid state on hover.
|
|
414
|
+
/// @prop {Color} track-error-color [transparent] - The color of the track in invalid state when the switch is off.
|
|
414
415
|
/// @prop {List} border-radius-track [(rem(8px), rem(0), rem(8px))] - The border radius used for switch track.
|
|
415
416
|
/// @prop {Map} focus-outline-color [color: ('gray', 300)] - The focus outlined color.
|
|
416
417
|
/// @prop {Map} focus-outline-color-focused [color: ('primary', 200)] - The focus outlined color for focused state.
|
|
@@ -472,6 +473,7 @@ $indigo-switch: extend(
|
|
|
472
473
|
300,
|
|
473
474
|
),
|
|
474
475
|
),
|
|
476
|
+
track-error-color: transparent,
|
|
475
477
|
thumb-disabled-color: (
|
|
476
478
|
color: (
|
|
477
479
|
'gray',
|