igniteui-theming 23.2.0 → 23.2.2
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/themes/schemas/components/dark/_button.scss +2 -2
- package/sass/themes/schemas/components/dark/_overlay.scss +0 -2
- package/sass/themes/schemas/components/dark/_stepper.scss +7 -0
- package/sass/themes/schemas/components/light/_button.scss +2 -2
- package/sass/themes/schemas/components/light/_dialog.scss +1 -10
- package/sass/themes/schemas/components/light/_grid-toolbar.scss +0 -15
- package/sass/themes/schemas/components/light/_overlay.scss +0 -2
- package/sass/themes/schemas/components/light/_stepper.scss +13 -14
- package/tailwind/utilities/bootstrap.css +1 -1
- package/tailwind/utilities/fluent.css +1 -1
- package/tailwind/utilities/indigo.css +1 -1
- package/tailwind/utilities/material.css +1 -1
package/package.json
CHANGED
|
@@ -759,7 +759,7 @@ $indigo-flat-button-dark: extend(
|
|
|
759
759
|
/// @prop {Map} hover-border-color [contrast-color: ('primary', 500, 0.8)] - The hover border color of an outlined button.
|
|
760
760
|
/// @prop {Map} focus-hover-background [contrast-color: ('primary', 500, 0.1)] - The background color on focus hovered state of an outlined button.
|
|
761
761
|
/// @prop {Map} focus-background [contrast-color: ('primary', 500, 0.1)] - The background color of an outlined button when focused with click and keyboard.
|
|
762
|
-
/// @prop {Map} focus-border-color [contrast-color: ('primary', 500, 0.
|
|
762
|
+
/// @prop {Map} focus-border-color [contrast-color: ('primary', 500, 0.8)] - The focus border color of an outlined button.
|
|
763
763
|
/// @prop {Map} focus-visible-border-color [contrast-color: ('primary', 500, 0.6)] - The focus-visible border color of an outlined button.
|
|
764
764
|
/// @prop {Map} active-background [contrast-color: ('primary', 500, 0.1)] - The active background color of an outlined button.
|
|
765
765
|
/// @prop {Map} active-border-color [contrast-color: ('primary', 500, 0.8)] - The active border color of an outlined button.
|
|
@@ -810,7 +810,7 @@ $indigo-outlined-button-dark: extend(
|
|
|
810
810
|
contrast-color: (
|
|
811
811
|
'primary',
|
|
812
812
|
500,
|
|
813
|
-
0.
|
|
813
|
+
0.8,
|
|
814
814
|
),
|
|
815
815
|
),
|
|
816
816
|
focus-visible-border-color: (
|
|
@@ -22,12 +22,10 @@ $dark-material-overlay: extend(
|
|
|
22
22
|
|
|
23
23
|
/// Generates a dark fluent overlay schema.
|
|
24
24
|
/// @type {Map}
|
|
25
|
-
/// @property {Color} background-color [rgba(0, 0, 0, .4)] - The background color used for modal overlays.
|
|
26
25
|
/// @requires $fluent-overlay
|
|
27
26
|
$dark-fluent-overlay: extend(
|
|
28
27
|
$fluent-overlay,
|
|
29
28
|
(
|
|
30
|
-
background-color: rgb(0 0 0 / 0.4),
|
|
31
29
|
_meta: (
|
|
32
30
|
theme: 'fluent',
|
|
33
31
|
variant: 'dark',
|
|
@@ -273,6 +273,7 @@ $dark-fluent-stepper: extend(
|
|
|
273
273
|
|
|
274
274
|
/// Generates a dark bootstrap stepper schema.
|
|
275
275
|
/// @type {Map}
|
|
276
|
+
/// @prop {Map} indicator-color [color: ('primary', 300)] - The text color of the incomplete step indicator.
|
|
276
277
|
/// @prop {Map} step-separator-color [color: ('gray', 100)] - The separator border-color of between the steps.
|
|
277
278
|
/// @prop {Map} invalid-title-color [color: ('error', 400)] - The color of the invalid step title.
|
|
278
279
|
/// @prop {Map} invalid-title-hover-color [color: ('error', 400)] - The color of the invalid step title on hover.
|
|
@@ -287,6 +288,12 @@ $dark-bootstrap-stepper: extend(
|
|
|
287
288
|
$bootstrap-stepper,
|
|
288
289
|
$base-stepper,
|
|
289
290
|
(
|
|
291
|
+
indicator-color: (
|
|
292
|
+
color: (
|
|
293
|
+
'primary',
|
|
294
|
+
300,
|
|
295
|
+
),
|
|
296
|
+
),
|
|
290
297
|
step-separator-color: (
|
|
291
298
|
color: (
|
|
292
299
|
'gray',
|
|
@@ -1484,7 +1484,7 @@ $indigo-flat-button: extend(
|
|
|
1484
1484
|
/// @type {Map}
|
|
1485
1485
|
/// @prop {Map} border-color [color: ('gray', 500)] - The border color of an outlined button.
|
|
1486
1486
|
/// @prop {Map} hover-border-color [color: ('gray', 600)] - The hover border color of a outlined button.
|
|
1487
|
-
/// @prop {Map} focus-border-color [color: ('gray',
|
|
1487
|
+
/// @prop {Map} focus-border-color [color: ('gray', 600)] - The focus border color of a outlined button.
|
|
1488
1488
|
/// @prop {Map} focus-visible-border-color [color: ('gray', 500)] - The focus-visible border color of a outlined button.
|
|
1489
1489
|
/// @prop {Map} active-border-color [color: ('gray', 900, 0.15)] - The active border color of a outlined button.
|
|
1490
1490
|
/// @prop {Map} disabled-border-color [color: ('gray', 900, 0.15)] - The disabled focused border color of an outlined button.
|
|
@@ -1509,7 +1509,7 @@ $indigo-outlined-button: extend(
|
|
|
1509
1509
|
focus-border-color: (
|
|
1510
1510
|
color: (
|
|
1511
1511
|
'gray',
|
|
1512
|
-
|
|
1512
|
+
600,
|
|
1513
1513
|
),
|
|
1514
1514
|
),
|
|
1515
1515
|
focus-visible-border-color: (
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
/// @prop {Map} title-color [color: ('gray', 900)] - The dialog title text color.
|
|
15
15
|
/// @prop {Map} message-color [color: ('gray', 600)] - The dialog message text color.
|
|
16
16
|
/// @prop {Color} border-color [transparent] - The border color for dialog component.
|
|
17
|
-
/// @prop {Map} backdrop [color: ('gray',
|
|
17
|
+
/// @prop {Map} backdrop [color: ('gray', 500, .54)] - The dialog backdrop color.
|
|
18
18
|
/// @prop {Number} elevation [24] - The elevation level, between 0-24, to be used for the dialog.
|
|
19
19
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(36px))] - The border radius used for dialog.
|
|
20
20
|
/// @prop {Number} default-size [2] - The default size used for the dialog component.
|
|
@@ -102,7 +102,6 @@ $material-dialog: extend(
|
|
|
102
102
|
|
|
103
103
|
/// Generates a fluent dialog schema.
|
|
104
104
|
/// @type {Map}
|
|
105
|
-
/// @prop {Map} backdrop [color: ('gray', 900, .4)] - The dialog backdrop color.
|
|
106
105
|
/// @prop {List} border-radius [(rem(2px), rem(0), rem(36px))] - The border radius used for dialog.
|
|
107
106
|
/// @prop {Map} message-color [color: ('gray', 700)] - The dialog message text color.
|
|
108
107
|
/// @prop {Map} typography [
|
|
@@ -113,14 +112,6 @@ $material-dialog: extend(
|
|
|
113
112
|
$fluent-dialog: extend(
|
|
114
113
|
$light-dialog,
|
|
115
114
|
(
|
|
116
|
-
backdrop: (
|
|
117
|
-
color: (
|
|
118
|
-
'gray',
|
|
119
|
-
900,
|
|
120
|
-
0.4,
|
|
121
|
-
),
|
|
122
|
-
),
|
|
123
|
-
|
|
124
115
|
border-radius: (
|
|
125
116
|
border-radius: (
|
|
126
117
|
rem(2px),
|
|
@@ -107,7 +107,6 @@ $material-grid-toolbar: extend(
|
|
|
107
107
|
/// Generates a fluent grid-toolbar schema.
|
|
108
108
|
/// @type {Map}
|
|
109
109
|
/// @prop {Map} background-color [color: 'surface'] - The toolbar background color.
|
|
110
|
-
/// @prop {Map} title-text-color [color: ('gray', 700)] - The toolbar title text color.
|
|
111
110
|
/// @requires {Map} $light-grid-toolbar
|
|
112
111
|
$fluent-grid-toolbar: extend(
|
|
113
112
|
$light-grid-toolbar,
|
|
@@ -116,13 +115,6 @@ $fluent-grid-toolbar: extend(
|
|
|
116
115
|
color: 'surface',
|
|
117
116
|
),
|
|
118
117
|
|
|
119
|
-
title-text-color: (
|
|
120
|
-
color: (
|
|
121
|
-
'gray',
|
|
122
|
-
700,
|
|
123
|
-
),
|
|
124
|
-
),
|
|
125
|
-
|
|
126
118
|
_meta: (
|
|
127
119
|
theme: 'fluent',
|
|
128
120
|
variant: 'light',
|
|
@@ -132,18 +124,11 @@ $fluent-grid-toolbar: extend(
|
|
|
132
124
|
|
|
133
125
|
/// Generates a bootstrap grid-toolbar schema.
|
|
134
126
|
/// @type {Map}
|
|
135
|
-
/// @prop {Map} title-text-color [color: ('gray', 600)] - The toolbar title text color.
|
|
136
127
|
/// @prop {Map} border-color [color: ('gray', 100)] - The toolbar border-bottom color.
|
|
137
128
|
/// @requires {Map} $light-grid-toolbar
|
|
138
129
|
$bootstrap-grid-toolbar: extend(
|
|
139
130
|
$light-grid-toolbar,
|
|
140
131
|
(
|
|
141
|
-
title-text-color: (
|
|
142
|
-
color: (
|
|
143
|
-
'gray',
|
|
144
|
-
600,
|
|
145
|
-
),
|
|
146
|
-
),
|
|
147
132
|
border-color: (
|
|
148
133
|
color: (
|
|
149
134
|
'gray',
|
|
@@ -35,12 +35,10 @@ $material-overlay: extend(
|
|
|
35
35
|
|
|
36
36
|
/// Generates a fluent overlay schema.
|
|
37
37
|
/// @type {Map}
|
|
38
|
-
/// @prop {Color} background-color [rgba(255, 255, 255, .4)] - The background color used for modal overlays.
|
|
39
38
|
/// @requires {Map} $light-overlay
|
|
40
39
|
$fluent-overlay: extend(
|
|
41
40
|
$light-overlay,
|
|
42
41
|
(
|
|
43
|
-
background-color: rgb(255 255 255 / 0.4),
|
|
44
42
|
_meta: (
|
|
45
43
|
theme: 'fluent',
|
|
46
44
|
variant: 'light',
|
|
@@ -16,7 +16,6 @@
|
|
|
16
16
|
/// @prop {Map} subtitle-color [color: ('gray', 700)] - The text color of the step subtitle.
|
|
17
17
|
/// @prop {Map} subtitle-hover-color [color: ('gray', 700)] - The text color of the step subtitle on hover.
|
|
18
18
|
/// @prop {Map} subtitle-focus-color [color: ('gray', 700)] - The text color of the step subtitle on focus.
|
|
19
|
-
/// @prop {Map} indicator-color [color: ('primary', 500)] - The text color of the incomplete step indicator.
|
|
20
19
|
/// @prop {Color} indicator-background [transparent] - The background color of the incomplete step indicator.
|
|
21
20
|
/// @prop {Map} indicator-outline [color: ('gray', 400)] - The outline color of the incomplete step indicator.
|
|
22
21
|
/// @prop {Color} invalid-step-background [transparent] - The background of the invalid step header.
|
|
@@ -75,12 +74,6 @@ $light-stepper: (
|
|
|
75
74
|
300,
|
|
76
75
|
),
|
|
77
76
|
),
|
|
78
|
-
indicator-color: (
|
|
79
|
-
color: (
|
|
80
|
-
'primary',
|
|
81
|
-
500,
|
|
82
|
-
),
|
|
83
|
-
),
|
|
84
77
|
title-color: (
|
|
85
78
|
color: (
|
|
86
79
|
'gray',
|
|
@@ -638,6 +631,7 @@ $fluent-stepper: extend(
|
|
|
638
631
|
|
|
639
632
|
/// Generates a bootstrap stepper schema.
|
|
640
633
|
/// @type {Map}
|
|
634
|
+
/// @prop {Map} indicator-color [color: ('primary', 600)] - The text color of the incomplete step indicator.
|
|
641
635
|
/// @prop {Map} indicator-outline [color: ('gray', 400)] - The outline color of the incomplete step indicator.
|
|
642
636
|
/// @prop {Map} disabled-indicator-outline [color: ('gray', 300)] - The outline color of the disabled step indicator.
|
|
643
637
|
/// @prop {Map} complete-indicator-background [color: ('gray', 300)] - The background color of the completed step indicator.
|
|
@@ -664,6 +658,18 @@ $fluent-stepper: extend(
|
|
|
664
658
|
$bootstrap-stepper: extend(
|
|
665
659
|
$light-stepper,
|
|
666
660
|
(
|
|
661
|
+
indicator-color: (
|
|
662
|
+
color: (
|
|
663
|
+
'primary',
|
|
664
|
+
600,
|
|
665
|
+
),
|
|
666
|
+
),
|
|
667
|
+
indicator-outline: (
|
|
668
|
+
color: (
|
|
669
|
+
'gray',
|
|
670
|
+
400,
|
|
671
|
+
),
|
|
672
|
+
),
|
|
667
673
|
step-hover-background: (
|
|
668
674
|
color: (
|
|
669
675
|
'gray',
|
|
@@ -756,13 +762,6 @@ $bootstrap-stepper: extend(
|
|
|
756
762
|
0.5,
|
|
757
763
|
),
|
|
758
764
|
),
|
|
759
|
-
indicator-outline: (
|
|
760
|
-
color: (
|
|
761
|
-
'gray',
|
|
762
|
-
400,
|
|
763
|
-
),
|
|
764
|
-
),
|
|
765
|
-
|
|
766
765
|
// Complete
|
|
767
766
|
complete-indicator-background:
|
|
768
767
|
(
|