igniteui-theming 3.1.0 → 3.1.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
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
/// Generates a dark base toast schema.
|
|
11
11
|
/// @type {Map}
|
|
12
12
|
/// @prop {Map} background [color: ('gray', 500, .9)] - The background color used for the toast.
|
|
13
|
+
/// @prop {Map} border-color [color: ('gray', 500, .9)] - The border color used for the toast.
|
|
13
14
|
/// @prop {Map} text-color [contrast-color: ('gray', 500)] - The text-color used for the toast.
|
|
14
15
|
$dark-base-toast: (
|
|
15
16
|
background: (
|
|
@@ -19,6 +20,13 @@ $dark-base-toast: (
|
|
|
19
20
|
0.9,
|
|
20
21
|
),
|
|
21
22
|
),
|
|
23
|
+
border-color: (
|
|
24
|
+
color: (
|
|
25
|
+
'gray',
|
|
26
|
+
500,
|
|
27
|
+
0.9,
|
|
28
|
+
),
|
|
29
|
+
),
|
|
22
30
|
|
|
23
31
|
text-color: (
|
|
24
32
|
contrast-color: (
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
/// Generates a light divider schema.
|
|
11
11
|
/// @type {Map}
|
|
12
12
|
/// @prop {Map} color [color: ('gray', 300)] - The color used for the divider.
|
|
13
|
+
/// @prop {number} inset [0] - The inset value of the divider.
|
|
13
14
|
$light-divider: (
|
|
14
15
|
color: (
|
|
15
16
|
color: (
|
|
@@ -17,6 +18,7 @@ $light-divider: (
|
|
|
17
18
|
300,
|
|
18
19
|
),
|
|
19
20
|
),
|
|
21
|
+
inset: 0,
|
|
20
22
|
);
|
|
21
23
|
|
|
22
24
|
/// Generates a fluent divider schema.
|
|
@@ -11,6 +11,7 @@
|
|
|
11
11
|
/// Generates a light toast schema.
|
|
12
12
|
/// @type {Map}
|
|
13
13
|
/// @prop {Map} background [color: ('gray', 700, .9)] - The background color used for the toast.
|
|
14
|
+
/// @prop {Map} border-color [color: ('gray', 700, .9)] - The border color used for the toast.
|
|
14
15
|
/// @prop {Map} text-color [contrast-color: ('gray', 700)] - The text-color used for the toast.
|
|
15
16
|
/// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the toast.
|
|
16
17
|
/// @prop {List} border-radius [(rem(26px), rem(0), rem(26px))] - The border radius used for toast.
|
|
@@ -25,6 +26,13 @@ $light-toast: extend(
|
|
|
25
26
|
0.9,
|
|
26
27
|
),
|
|
27
28
|
),
|
|
29
|
+
border-color: (
|
|
30
|
+
color: (
|
|
31
|
+
'gray',
|
|
32
|
+
700,
|
|
33
|
+
0.9,
|
|
34
|
+
),
|
|
35
|
+
),
|
|
28
36
|
|
|
29
37
|
text-color: (
|
|
30
38
|
contrast-color: (
|
|
@@ -63,6 +71,7 @@ $fluent-toast: extend(
|
|
|
63
71
|
/// Generates a bootstrap toast schema.
|
|
64
72
|
/// @type {Map}
|
|
65
73
|
/// @prop {Map} background [color: (color: ('surface')] - The background color used for the toast.
|
|
74
|
+
/// @prop {Map} border-color [color: ('gray', 300)] - The border color used for the toast.
|
|
66
75
|
/// @prop {Map} text-color [color: ('gray', 600)] - The text-color used for the toast.
|
|
67
76
|
/// @prop {Number} elevation [10] - The elevation level, between 0-24, to be used for the toast.
|
|
68
77
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(26px))] - The border radius used for toast.
|
|
@@ -77,6 +86,12 @@ $bootstrap-toast: extend(
|
|
|
77
86
|
'surface',
|
|
78
87
|
),
|
|
79
88
|
),
|
|
89
|
+
border-color: (
|
|
90
|
+
color: (
|
|
91
|
+
'gray',
|
|
92
|
+
300,
|
|
93
|
+
),
|
|
94
|
+
),
|
|
80
95
|
|
|
81
96
|
text-color: (
|
|
82
97
|
color: (
|