igniteui-theming 8.0.0-beta.3 → 8.0.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": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.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": {
|
|
@@ -90,7 +90,7 @@ $dark-bootstrap-list: extend(
|
|
|
90
90
|
/// Generates a dark indigo list schema.
|
|
91
91
|
/// @type {Map}
|
|
92
92
|
/// @prop {Map} header-text-color [contrast-color: ('gray', 50, .6)] - The list header text color.
|
|
93
|
-
/// @prop {Map} item-background-hover [color: ('primary',
|
|
93
|
+
/// @prop {Map} item-background-hover [color: ('primary', 400, .3)] - The list item hover background.
|
|
94
94
|
/// @prop {Map} item-background-active [color: ('primary')] - The active list item background color.
|
|
95
95
|
/// @prop {Map} item-text-color [contrast-color: ('gray', 50, .9)] - The list item text color.
|
|
96
96
|
/// @prop {Map} item-text-color-hover [contrast-color: ('gray', 50)] - The list item text color.
|
|
@@ -119,8 +119,8 @@ $dark-indigo-list: extend(
|
|
|
119
119
|
item-background-hover: (
|
|
120
120
|
color: (
|
|
121
121
|
'primary',
|
|
122
|
-
|
|
123
|
-
0.
|
|
122
|
+
400,
|
|
123
|
+
0.3,
|
|
124
124
|
),
|
|
125
125
|
),
|
|
126
126
|
|
|
@@ -216,22 +216,22 @@ $bootstrap-list: extend(
|
|
|
216
216
|
/// @type {Map}
|
|
217
217
|
/// @prop {Color} background [transparent] - The list background color.
|
|
218
218
|
/// @prop {Color} header-background [transparent] - The list header background color.
|
|
219
|
-
/// @prop {Map} header-text-color [color: ('
|
|
219
|
+
/// @prop {Map} header-text-color [color: ('gray', 600)] - The list header text color.
|
|
220
220
|
/// @prop {Color} item-background [transparent] - The list item background color.
|
|
221
221
|
/// @prop {Map} item-background-hover [color: ('primary', 300, .3)] - The list item hover background.
|
|
222
222
|
/// @prop {Map} item-background-active [ color: ('primary', 300, .3)] - The active list item background color.
|
|
223
223
|
/// @prop {Map} item-text-color [color: ('gray', 800)] - The list item text color.
|
|
224
|
-
/// @prop {Map} item-text-color-hover [color: ('gray',
|
|
224
|
+
/// @prop {Map} item-text-color-hover [color: ('gray', 900)] - The list item text color.
|
|
225
225
|
/// @prop {Map} item-text-color-active [color: ('gray', 800)] - The active list item text color.
|
|
226
226
|
/// @prop {Map} item-subtitle-color [color: ('gray', 600)] - The list item subtitle color.
|
|
227
|
-
/// @prop {Map} item-subtitle-color-hover [color: ('gray',
|
|
228
|
-
/// @prop {Map} item-subtitle-color-active [color: ('gray',
|
|
227
|
+
/// @prop {Map} item-subtitle-color-hover [color: ('gray', 700)] - The list item subtitle hover color.
|
|
228
|
+
/// @prop {Map} item-subtitle-color-active [color: ('gray', 700)] - The list item subtitle active color.
|
|
229
229
|
/// @prop {Map} item-action-color [color: ('gray', 600)] - The list item action color.
|
|
230
|
-
/// @prop {Map} item-action-color-hover [color: ('gray',
|
|
231
|
-
/// @prop {Map} item-action-color-active [color: ('gray',
|
|
230
|
+
/// @prop {Map} item-action-color-hover [color: ('gray', 700)] - The list item action hover color.
|
|
231
|
+
/// @prop {Map} item-action-color-active [color: ('gray', 700)] - The list item action active color.
|
|
232
232
|
/// @prop {Map} item-thumbnail-color [color: ('gray', 600)] - The list item thumbnail color.
|
|
233
233
|
/// @prop {Map} item-thumbnail-color-hover [color: ('gray', 600)] - The list item thumbnail hover color.
|
|
234
|
-
/// @prop {Map} item-thumbnail-color-active [color: ('gray',
|
|
234
|
+
/// @prop {Map} item-thumbnail-color-active [color: ('gray', 700)] - The list item thumbnail active color.
|
|
235
235
|
/// @prop {Number} item-border-radius [0] - The border radius used for list item.
|
|
236
236
|
/// @requires {Map} $light-list
|
|
237
237
|
$indigo-list: extend(
|
|
@@ -243,7 +243,7 @@ $indigo-list: extend(
|
|
|
243
243
|
|
|
244
244
|
header-text-color: (
|
|
245
245
|
color: (
|
|
246
|
-
'
|
|
246
|
+
'gray',
|
|
247
247
|
600,
|
|
248
248
|
),
|
|
249
249
|
),
|
|
@@ -283,7 +283,7 @@ $indigo-list: extend(
|
|
|
283
283
|
item-text-color-active: (
|
|
284
284
|
color: (
|
|
285
285
|
'gray',
|
|
286
|
-
|
|
286
|
+
900,
|
|
287
287
|
),
|
|
288
288
|
),
|
|
289
289
|
|
|
@@ -297,14 +297,14 @@ $indigo-list: extend(
|
|
|
297
297
|
item-action-color-hover: (
|
|
298
298
|
color: (
|
|
299
299
|
'gray',
|
|
300
|
-
|
|
300
|
+
700,
|
|
301
301
|
),
|
|
302
302
|
),
|
|
303
303
|
|
|
304
304
|
item-action-color-active: (
|
|
305
305
|
color: (
|
|
306
306
|
'gray',
|
|
307
|
-
|
|
307
|
+
700,
|
|
308
308
|
),
|
|
309
309
|
),
|
|
310
310
|
|
|
@@ -318,14 +318,14 @@ $indigo-list: extend(
|
|
|
318
318
|
item-subtitle-color-hover: (
|
|
319
319
|
color: (
|
|
320
320
|
'gray',
|
|
321
|
-
|
|
321
|
+
700,
|
|
322
322
|
),
|
|
323
323
|
),
|
|
324
324
|
|
|
325
325
|
item-subtitle-color-active: (
|
|
326
326
|
color: (
|
|
327
327
|
'gray',
|
|
328
|
-
|
|
328
|
+
700,
|
|
329
329
|
),
|
|
330
330
|
),
|
|
331
331
|
|
|
@@ -346,7 +346,7 @@ $indigo-list: extend(
|
|
|
346
346
|
item-thumbnail-color-active: (
|
|
347
347
|
color: (
|
|
348
348
|
'gray',
|
|
349
|
-
|
|
349
|
+
700,
|
|
350
350
|
),
|
|
351
351
|
),
|
|
352
352
|
|