igniteui-theming 6.3.0-beta.3 → 6.3.0-beta.4
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": "6.3.0-beta.
|
|
3
|
+
"version": "6.3.0-beta.4",
|
|
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": {
|
|
@@ -144,11 +144,11 @@ $dark-bootstrap-switch: extend(
|
|
|
144
144
|
/// @prop {Map} thumb-on-color [contrast-color: ('gray', 50)] - The color of the thumb when the switch is on.
|
|
145
145
|
/// @prop {Map} thumb-disabled-color [contrast-color: ('gray', 50, .2)] - The color of the thumb when the switch is disabled.
|
|
146
146
|
/// @prop {Map} thumb-on-disabled-color [contrast-color: ('gray', 50, .2)] - The color of the thumb when the switch is on and disabled.
|
|
147
|
-
/// @prop {Map} track-on-hover-color [color: ('primary',
|
|
147
|
+
/// @prop {Map} track-on-hover-color [color: ('primary', 300)] - The color of the track when the switch is on and hovered.
|
|
148
148
|
/// @prop {Map} border-color [contrast-color: ('gray', 50, .6)] - The border color of the switch.
|
|
149
149
|
/// @prop {Map} border-hover-color [contrast-color: ('gray', 50, .8)] - The border color of the switch on hover.
|
|
150
150
|
/// @prop {Map} border-disabled-color [contrast-color: ('gray', 50, .2)] - The border color of the disabled switch.
|
|
151
|
-
/// @prop {Map} border-on-hover-color [color: ('primary',
|
|
151
|
+
/// @prop {Map} border-on-hover-color [color: ('primary', 300)] - The border color of the on-switch.
|
|
152
152
|
/// @prop {Map} error-color [contrast-color: ('gray', 50, .6)] - The border and thumb color in invalid state.
|
|
153
153
|
/// @prop {Map} focus-outline-color [contrast-color: ('gray', 50, .2)] - The focus outlined color.
|
|
154
154
|
/// @requires $indigo-switch
|
|
@@ -212,7 +212,7 @@ $dark-indigo-switch: extend(
|
|
|
212
212
|
track-on-hover-color: (
|
|
213
213
|
color: (
|
|
214
214
|
'primary',
|
|
215
|
-
|
|
215
|
+
300,
|
|
216
216
|
),
|
|
217
217
|
),
|
|
218
218
|
border-color: (
|
|
@@ -239,7 +239,7 @@ $dark-indigo-switch: extend(
|
|
|
239
239
|
border-on-hover-color: (
|
|
240
240
|
color: (
|
|
241
241
|
'primary',
|
|
242
|
-
|
|
242
|
+
300,
|
|
243
243
|
),
|
|
244
244
|
),
|
|
245
245
|
error-color: (
|