igniteui-theming 2.1.1 → 3.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": "2.1.1",
3
+ "version": "3.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": {
@@ -20,7 +20,6 @@ $dark-fluent-chip: $fluent-chip;
20
20
  /// Generates a dark bootstrap chip schema based on a mix of $bootstrap-chip and $ase-dark-chip.
21
21
  /// @type {Map}
22
22
  /// @requires $bootstrap-chip
23
- /// @requires $base-dark-chip
24
23
  $dark-bootstrap-chip: $bootstrap-chip;
25
24
 
26
25
  /// Generates a dark indigo chip schema based on a mix of $indigo-chip and $base-dark-chip.
@@ -36,7 +35,6 @@ $dark-bootstrap-chip: $bootstrap-chip;
36
35
  /// @prop {Map} hover-border-color [color: ('gray', 400)] - The chip hover border color.
37
36
  /// @prop {Color} focus-border-color [color: ('gray', 400)] - The chip focus border color.
38
37
  /// @requires $indigo-chip
39
- /// @requires $base-dark-chip
40
38
  $dark-indigo-chip: extend(
41
39
  $indigo-chip,
42
40
  (
@@ -23,7 +23,6 @@ $base-dark-pagination: (
23
23
  /// @type {Map}
24
24
  /// @requires $light-pagination
25
25
  /// @requires $base-dark-pagination
26
- /// @see $default-palette
27
26
  $dark-pagination: extend($light-pagination, $base-dark-pagination);
28
27
 
29
28
  /// Generates a dark fluent pagination schema based on a mix of $fluent-pagination and $base-dark-pagination.
@@ -35,10 +34,9 @@ $dark-fluent-pagination: extend($fluent-pagination, $base-dark-pagination);
35
34
  /// Generates a dark bootstrap pagination schema based on a mix of $bootstrap-pagination and $base-dark-pagination.
36
35
  /// @type {Map}
37
36
  /// @requires $bootstrap-pagination
38
- /// @requires $base-dark-pagination
39
37
  $dark-bootstrap-pagination: $bootstrap-pagination;
40
38
 
41
39
  /// Generates a dark indigo pagination schema.
42
40
  /// @type {Map}
43
- /// @requires $dark-pagination
41
+ /// @requires $indigo-pagination
44
42
  $dark-indigo-pagination: extend($indigo-pagination, $base-dark-pagination);
@@ -32,20 +32,17 @@ $dark-base-progress-linear: (
32
32
  /// @type {Map}
33
33
  /// @requires $light-progress-linear
34
34
  /// @requires $dark-base-progress-linear
35
- /// @see $default-palette
36
35
  $dark-progress-linear: extend($light-progress-linear, $dark-base-progress-linear);
37
36
 
38
37
  /// Generates a dark fluent progress-linear schema.
39
38
  /// @type {Map}
40
39
  /// @requires $fluent-progress-linear
41
40
  /// @requires $dark-base-progress-linear
42
- /// @see $default-palette
43
41
  $dark-fluent-progress-linear: extend($fluent-progress-linear, $dark-base-progress-linear);
44
42
 
45
43
  /// Generates a dark bootstrap progress-linear schema.
46
44
  /// @type {Map}
47
45
  /// @requires $bootstrap-progress-linear
48
- /// @see $default-palette
49
46
  $dark-bootstrap-progress-linear: $bootstrap-progress-linear;
50
47
 
51
48
  /// Generates a dark indigo progress-linear schema.
@@ -53,7 +50,6 @@ $dark-bootstrap-progress-linear: $bootstrap-progress-linear;
53
50
  /// @prop {Map} track-color [color: ('gray', 100)] - The main track color.
54
51
  /// @prop {Color} stripes-color [rgba(#222, .35)] - The track stripes color.
55
52
  /// @requires $indigo-progress-linear
56
- /// @see $default-palette
57
53
  $dark-indigo-progress-linear: extend(
58
54
  $indigo-progress-linear,
59
55
  (
@@ -102,7 +102,6 @@ $dark-stepper: extend($light-stepper, $base-stepper);
102
102
  /// @prop {Map} complete-indicator-background [color: ('gray', 100)] - The background color of the completed step indicator.
103
103
  /// @requires $fluent-stepper
104
104
  /// @requires $base-stepper
105
- /// @see $default-palette
106
105
  $dark-fluent-stepper: extend(
107
106
  $fluent-stepper,
108
107
  $base-stepper,
@@ -157,7 +156,6 @@ $dark-bootstrap-stepper: extend(
157
156
  /// @prop {Map} disabled-indicator-outline [color: ('gray', 300)] - The outline color of the disabled step indicator.
158
157
  /// @requires $indigo-stepper
159
158
  /// @requires $base-stepper
160
- /// @see $default-palette
161
159
  $dark-indigo-stepper: extend(
162
160
  $indigo-stepper,
163
161
  $base-stepper,
@@ -11,7 +11,7 @@
11
11
  /// @type {Map}
12
12
  /// @prop {Map} background [color: ('gray', 400, .54)]- The background color of the avatar.
13
13
  /// @prop {Map} color [color: ('gray', 800, .96)] - The text/icon color of the avatar.
14
- /// @prop {Number} border-radius [rem(0)] - The border radius.
14
+ /// @prop {Number} border-radius [rem(8px)] - The border radius for rounded avatar.
15
15
  /// @prop {List} size [(rem(40px), rem(64px), rem(88px))] - The size used for the avatar width and height.
16
16
  $light-avatar: (
17
17
  background: (
@@ -28,7 +28,7 @@ $light-avatar: (
28
28
  0.96,
29
29
  ),
30
30
  ),
31
- border-radius: rem(0),
31
+ border-radius: rem(8px),
32
32
  size: (
33
33
  sizable: (
34
34
  rem(40px),
@@ -47,7 +47,7 @@ $fluent-avatar: $light-avatar;
47
47
  /// @type {Map}
48
48
  /// @prop {Map} background [color: ('gray', 400)]- The background color of the avatar.
49
49
  /// @prop {Map} color [contrast-color: ('gray', 400)] - The text/icon color of the avatar.
50
- /// @prop {Number} border-radius [rem(4px)] - The border radius.
50
+ /// @prop {Number} border-radius [rem(4px)] - The border radius for rounded avatar.
51
51
  /// @requires {Map} $light-avatar
52
52
  $bootstrap-avatar: extend(
53
53
  $light-avatar,
@@ -498,9 +498,11 @@ $fluent-input-group: extend(
498
498
  rem(20px),
499
499
  ),
500
500
  size: (
501
- rem(32px),
502
- rem(40px),
503
- rem(48px),
501
+ sizable: (
502
+ rem(32px),
503
+ rem(40px),
504
+ rem(48px),
505
+ ),
504
506
  ),
505
507
  )
506
508
  );
@@ -657,9 +659,11 @@ $bootstrap-input-group: extend(
657
659
  ),
658
660
  ),
659
661
  size: (
660
- rem(31px),
661
- rem(38px),
662
- rem(48px),
662
+ sizable: (
663
+ rem(31px),
664
+ rem(38px),
665
+ rem(48px),
666
+ ),
663
667
  ),
664
668
  )
665
669
  );
@@ -25,7 +25,6 @@
25
25
  /// @prop {List} border-radius [(rem(4px), rem(0), rem(20px))] - The border radius used for the overall shape of the time-picker.
26
26
  /// @prop {List} active-item-border-radius [(rem(15px), rem(0), rem(20px))] - The border radius used for the highlight of the active item in the time-picker.
27
27
  /// @requires {Map} $default-elevation-time-picker
28
- /// @see $default-palette
29
28
  $light-time-picker: extend(
30
29
  $default-elevation-time-picker,
31
30
  (