igniteui-theming 9.0.0-beta.2 → 9.0.0-beta.3
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
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-theming",
|
|
3
|
-
"version": "9.0.0-beta.
|
|
3
|
+
"version": "9.0.0-beta.3",
|
|
4
4
|
"description": "A set of Sass variables, mixins, and functions for generating palettes, typography, and elevations used by Ignite UI components.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,7 +25,7 @@ $dark-bootstrap-tooltip: $bootstrap-tooltip;
|
|
|
25
25
|
|
|
26
26
|
/// Generates a dark indigo tooltip schema.
|
|
27
27
|
/// @type {Map}
|
|
28
|
-
/// @prop {Map} background [color: ('gray', 300)] - The background color of the tooltip.
|
|
28
|
+
/// @prop {Map} background [color: ('gray', 300, .9)] - The background color of the tooltip.
|
|
29
29
|
/// @prop {Map} text-color [contrast-color: ('gray', 50)] - The text color of the tooltip.
|
|
30
30
|
/// @prop {Number} elevation [9] - The elevation level, between 0-24, to be used for the tooltip.
|
|
31
31
|
/// @requires {Map} $indigo-tooltip
|
|
@@ -38,6 +38,7 @@ $dark-indigo-tooltip: extend(
|
|
|
38
38
|
color: (
|
|
39
39
|
'gray',
|
|
40
40
|
300,
|
|
41
|
+
0.9,
|
|
41
42
|
),
|
|
42
43
|
),
|
|
43
44
|
text-color: (
|
|
@@ -108,7 +108,7 @@ $bootstrap-tooltip: extend(
|
|
|
108
108
|
|
|
109
109
|
/// Generates an indigo tooltip schema.
|
|
110
110
|
/// @type {Map}
|
|
111
|
-
/// @prop {Map} background [color: ('gray', 600)] - The background color of the tooltip.
|
|
111
|
+
/// @prop {Map} background [color: ('gray', 600, .9)] - The background color of the tooltip.
|
|
112
112
|
/// @prop {List} border-radius [(rem(4px), rem(0), rem(16px))] - The border radius used for tooltip.
|
|
113
113
|
/// @prop {Number} elevation [8] - The elevation level, between 0-24, to be used for the tooltip.
|
|
114
114
|
/// @requires {Map} $light-tooltip
|
|
@@ -121,6 +121,7 @@ $indigo-tooltip: extend(
|
|
|
121
121
|
color: (
|
|
122
122
|
'gray',
|
|
123
123
|
600,
|
|
124
|
+
0.9,
|
|
124
125
|
),
|
|
125
126
|
),
|
|
126
127
|
|