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
|
@@ -331,14 +331,14 @@ $material-outlined-button: extend(
|
|
|
331
331
|
/// @prop {Map} icon-color [color: ('secondary', 500)] - The idle icon color of the button.
|
|
332
332
|
/// @prop {Map} icon-color-hover [color: ('secondary', 500)] - The hover icon color of the button.
|
|
333
333
|
/// @prop {Map} hover-background [color: ('secondary', 400)] - The hover background color of a flat button.
|
|
334
|
-
/// @prop {Map} hover-foreground [contrast-color: ('secondary',
|
|
334
|
+
/// @prop {Map} hover-foreground [contrast-color: ('secondary', 500)] - The hover text color of a contained button.
|
|
335
335
|
/// @prop {Map} focus-background [color: ('secondary', 300)] - The focus background color of a flat button.
|
|
336
|
-
/// @prop {Map} focus-foreground [contrast-color: ('secondary',
|
|
336
|
+
/// @prop {Map} focus-foreground [contrast-color: ('secondary', 500)] - The focus text color of a contained button.
|
|
337
337
|
/// @prop {Map} focus-visible-background [color: ('secondary', 300)] - The focus-visible background color of a contained button.
|
|
338
338
|
/// @prop {Map} focus-hover-background [color: ('secondary', 400)] - The background color on focus hovered state of the button.
|
|
339
|
-
/// @prop {Map} focus-hover-foreground [contrast-color: ('secondary',
|
|
340
|
-
/// @prop {Map} focus-visible-foreground [contrast-color: ('secondary',
|
|
341
|
-
/// @prop {Map} active-foreground [contrast-color: ('secondary',
|
|
339
|
+
/// @prop {Map} focus-hover-foreground [contrast-color: ('secondary', 500)] - The text color on focus hovered state of the button.
|
|
340
|
+
/// @prop {Map} focus-visible-foreground [contrast-color: ('secondary', 500)] - The focus-visible text color of a contained button.
|
|
341
|
+
/// @prop {Map} active-foreground [contrast-color: ('secondary', 500)] - The active text color of a contained button.
|
|
342
342
|
/// @prop {Map} disabled-background [color: ('gray', 100)] - The disabled background color of the button.
|
|
343
343
|
/// @requires {Map} $light-contained-button
|
|
344
344
|
/// @requires {Map} $material-base-button
|
|
@@ -373,7 +373,7 @@ $material-contained-button: extend(
|
|
|
373
373
|
hover-foreground: (
|
|
374
374
|
contrast-color: (
|
|
375
375
|
'secondary',
|
|
376
|
-
|
|
376
|
+
500,
|
|
377
377
|
),
|
|
378
378
|
),
|
|
379
379
|
focus-background: (
|
|
@@ -385,7 +385,7 @@ $material-contained-button: extend(
|
|
|
385
385
|
focus-foreground: (
|
|
386
386
|
contrast-color: (
|
|
387
387
|
'secondary',
|
|
388
|
-
|
|
388
|
+
500,
|
|
389
389
|
),
|
|
390
390
|
),
|
|
391
391
|
focus-hover-background: (
|
|
@@ -397,7 +397,7 @@ $material-contained-button: extend(
|
|
|
397
397
|
focus-hover-foreground: (
|
|
398
398
|
contrast-color: (
|
|
399
399
|
'secondary',
|
|
400
|
-
|
|
400
|
+
500,
|
|
401
401
|
),
|
|
402
402
|
),
|
|
403
403
|
focus-visible-background: (
|
|
@@ -409,13 +409,13 @@ $material-contained-button: extend(
|
|
|
409
409
|
focus-visible-foreground: (
|
|
410
410
|
contrast-color: (
|
|
411
411
|
'secondary',
|
|
412
|
-
|
|
412
|
+
500,
|
|
413
413
|
),
|
|
414
414
|
),
|
|
415
415
|
active-foreground: (
|
|
416
416
|
contrast-color: (
|
|
417
417
|
'secondary',
|
|
418
|
-
|
|
418
|
+
500,
|
|
419
419
|
),
|
|
420
420
|
),
|
|
421
421
|
disabled-background: (
|