igniteui-theming 15.1.1 → 16.0.0

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": "15.1.1",
3
+ "version": "16.0.0",
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": {
@@ -18,6 +18,8 @@
18
18
  /// @prop {Map} stripes-color [color: ('gray', 50, .7)] - The track stripes color.
19
19
  /// @prop {Map} text-color [color: ('gray', 700)] - The track value text color.
20
20
  /// @prop {List} track-border-radius [(rem(0), rem(0), rem(8px))] - The border radius used for the progress bar track.
21
+ /// @prop {Number} track-height [rem(4px)] - The linear progress bar track height.
22
+ /// @prop {Number} strip-size [rem(16px)] - The linear progress bar strip size.
21
23
  /// @prop {Map} typography [label: (value: 'subtitle-2')] - The typography styles used for the component.
22
24
  $light-progress-linear: extend(
23
25
  (
@@ -82,6 +84,8 @@ $light-progress-linear: extend(
82
84
  ),
83
85
  ),
84
86
 
87
+ track-height: rem(4px),
88
+ strip-size: rem(16px),
85
89
  typography: (
86
90
  label: (
87
91
  value: 'subtitle-2',
@@ -97,13 +101,21 @@ $material-progress-linear: $light-progress-linear;
97
101
 
98
102
  /// Generates a fluent progress-linear schema.
99
103
  /// @type {Map}
104
+ /// @prop {Number} track-height [rem(2px)] - The linear progress bar track height.
100
105
  /// @requires $light-progress-linear
101
- $fluent-progress-linear: $light-progress-linear;
106
+ $fluent-progress-linear: extend(
107
+ $light-progress-linear,
108
+ (
109
+ track-height: rem(2px),
110
+ )
111
+ );
102
112
 
103
113
  /// Generates a bootstrap progress-linear schema.
104
114
  /// @type {Map}
105
115
  /// @prop {Map} stripes-color [color: ('gray', 50, .2)] - The track stripes color.
106
116
  /// @prop {List} track-border-radius [(rem(4px), rem(0), rem(8px))] - The border radius used for the progress bar track.
117
+ /// @prop {Number} track-height [rem(16px)] - The linear progress bar track height.
118
+ /// @prop {Number} strip-size [rem(5px)] - The linear progress bar strip size.
107
119
  /// @requires $light-progress-linear
108
120
  $bootstrap-progress-linear: extend(
109
121
  $light-progress-linear,
@@ -123,6 +135,9 @@ $bootstrap-progress-linear: extend(
123
135
  rem(8px),
124
136
  ),
125
137
  ),
138
+
139
+ track-height: rem(16px),
140
+ strip-size: rem(5px),
126
141
  )
127
142
  );
128
143
 
@@ -203,7 +218,11 @@ $indigo-progress-linear: extend(
203
218
  /// Generates a base light progress-circular schema.
204
219
  /// @type {Map}
205
220
  /// @prop {Map} base-circle-color [color: ('gray', 300)] - The base circle fill color.
206
- /// @prop {Map} progress-circle-color [color: ('primary', 500)] - The progress circle fill color.
221
+ /// @prop {Map} fill-color-default [color: ('primary', 500)] - The progress circle default fill color.
222
+ /// @prop {Map} fill-color-danger [color: ('error')] - The progress circle danger fill color.
223
+ /// @prop {Map} fill-color-warning [color: ('warn')] - The progress circle warning fill color.
224
+ /// @prop {Map} fill-color-info [color: ('info')] - The progress circle info fill color.
225
+ /// @prop {Map} fill-color-success [color: ('success')] - The progress circle success fill color.
207
226
  /// @prop {Map} text-color [color: ('gray', 700)] - The value text color.
208
227
  /// @prop {Number} diameter [rem(32px)] - The progress circle diameter.
209
228
  /// @prop {List} track-border-radius [rem(0)] - The border radius used for the progress bar track.
@@ -216,13 +235,37 @@ $light-progress-circular: extend(
216
235
  ),
217
236
  ),
218
237
 
219
- progress-circle-color: (
238
+ fill-color-default: (
220
239
  color: (
221
240
  'primary',
222
241
  500,
223
242
  ),
224
243
  ),
225
244
 
245
+ fill-color-danger: (
246
+ color: (
247
+ 'error',
248
+ ),
249
+ ),
250
+
251
+ fill-color-warning: (
252
+ color: (
253
+ 'warn',
254
+ ),
255
+ ),
256
+
257
+ fill-color-info: (
258
+ color: (
259
+ 'info',
260
+ ),
261
+ ),
262
+
263
+ fill-color-success: (
264
+ color: (
265
+ 'success',
266
+ ),
267
+ ),
268
+
226
269
  text-color: (
227
270
  color: (
228
271
  'gray',
@@ -259,7 +302,11 @@ $bootstrap-progress-circular: extend(
259
302
  /// Generates an indigo progress-circular schema.
260
303
  /// @type {Map}
261
304
  /// @prop {Map} base-circle-color [color: ('gray', 900, .15)] - The base circle fill color.
262
- /// @prop {Map} progress-circle-color [color: ('primary', 400)] - The progress circle fill color.
305
+ /// @prop {Map} fill-color-default [color: ('primary', 400)] - The track default fill color.
306
+ /// @prop {Map} fill-color-danger [color: ('error', 400)] - The track danger fill color.
307
+ /// @prop {Map} fill-color-warning [color: ('warn', 400)] - The track warning fill color.
308
+ /// @prop {Map} fill-color-info [color: ('info', 400)] - The track info fill color.
309
+ /// @prop {Map} fill-color-success [color: ('success', 400)] - The track success fill color.
263
310
  /// @prop {Map} text-color [color: ('gray', 600)] - The value text color.
264
311
  /// @prop {Number} diameter [rem(48px)] - The progress circle diameter.
265
312
  $indigo-progress-circular: (
@@ -271,13 +318,41 @@ $indigo-progress-circular: (
271
318
  ),
272
319
  ),
273
320
 
274
- progress-circle-color: (
321
+ fill-color-default: (
275
322
  color: (
276
323
  'primary',
277
324
  400,
278
325
  ),
279
326
  ),
280
327
 
328
+ fill-color-danger: (
329
+ color: (
330
+ 'error',
331
+ 400,
332
+ ),
333
+ ),
334
+
335
+ fill-color-warning: (
336
+ color: (
337
+ 'warn',
338
+ 400,
339
+ ),
340
+ ),
341
+
342
+ fill-color-info: (
343
+ color: (
344
+ 'info',
345
+ 400,
346
+ ),
347
+ ),
348
+
349
+ fill-color-success: (
350
+ color: (
351
+ 'success',
352
+ 400,
353
+ ),
354
+ ),
355
+
281
356
  text-color: (
282
357
  color: (
283
358
  'gray',