igniteui-theming 6.3.0 → 6.3.2

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",
3
+ "version": "6.3.2",
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": {
@@ -132,6 +132,7 @@ $light-button-group: extend(
132
132
  /// @prop {Map} disabled-selected-icon-color [color: ('gray', 400)] - The disabled icon color for a selected item in the button group.
133
133
  /// @prop {Map} disabled-selected-border-color [color: ('gray', 400)] - The disabled border color for a selected item from the button group.
134
134
  /// @prop {List} border-radius [(rem(2px), rem(0), rem(20px))] - The border radius used for button-group component.
135
+ /// @prop {Number} default-size [3] - The default size used for the button-group component.
135
136
  /// @requires {Map} $light-button-group
136
137
  /// @requires {Map} $default-elevation-button-group
137
138
  $material-button-group: extend(
@@ -297,6 +298,8 @@ $material-button-group: extend(
297
298
  400,
298
299
  ),
299
300
  ),
301
+
302
+ default-size: 3,
300
303
  )
301
304
  );
302
305
 
@@ -29,7 +29,7 @@
29
29
  /// @prop {Map} disabled-border-color [color: ('gray', 100)] - The disabled border color of the material icon button.
30
30
  /// @prop {List} border-radius [(rem(20px), rem(0), rem(20px))] - The border radius used for the material icon button.
31
31
  /// @prop {List} size [(rem(24px), rem(30px), rem(36px))] - The size used for the material icon button.
32
- /// @prop {Number} default-size [2] - The default size used for the icon button.
32
+ /// @prop {Number} default-size [3] - The default size used for the icon button.
33
33
  $material-base-icon-button: (
34
34
  shadow-color: transparent,
35
35
  background: transparent,
@@ -121,7 +121,7 @@ $material-base-icon-button: (
121
121
  rem(36px),
122
122
  ),
123
123
  ),
124
- default-size: 2,
124
+ default-size: 3,
125
125
  );
126
126
 
127
127
  /// Generates a material flat icon button schema.
@@ -11,7 +11,7 @@
11
11
  /// Generates a base light navbar schema.
12
12
  /// @type {Map}
13
13
  /// @prop {Map} background [color: ('primary', 500)] - The navbar background color.
14
- /// @prop {Map} border-color [color: ('primary', 500)] - The navbar border color.
14
+ /// @prop {Color} border-color [transparent] - The navbar border color.
15
15
  /// @prop {Map} text-color [contrast-color: ('primary', 500)] - The navbar text color.
16
16
  /// @prop {Map} idle-icon-color [contrast-color: ('primary', 500)] - The navbar idle icon color.
17
17
  /// @prop {Map} hover-icon-color [contrast-color: ('primary', 500)] - The navbar hover icon color.
@@ -26,12 +26,7 @@ $light-navbar: extend(
26
26
  500,
27
27
  ),
28
28
  ),
29
- border-color: (
30
- color: (
31
- 'primary',
32
- 500,
33
- ),
34
- ),
29
+ border-color: transparent,
35
30
  text-color: (
36
31
  contrast-color: (
37
32
  'primary',
@@ -61,7 +56,6 @@ $material-navbar: $light-navbar;
61
56
  /// Generates a fluent navbar schema.
62
57
  /// @type {Map}
63
58
  /// @prop {Map} background [color: 'surface'] - The navbar background color.
64
- /// @prop {Map} border-color [color: 'surface'] - The navbar border color.
65
59
  /// @prop {Map} text-color [color: ('gray', 900)] - The navbar text color.
66
60
  /// @prop {Map} idle-icon-color [color: ('primary', 500)] - The navbar idle icon color.
67
61
  /// @prop {Map} hover-icon-color [color: ('primary', 500)] - The navbar hover icon color.
@@ -72,9 +66,6 @@ $fluent-navbar: extend(
72
66
  background: (
73
67
  color: 'surface',
74
68
  ),
75
- border-color: (
76
- color: 'surface',
77
- ),
78
69
  text-color: (
79
70
  color: (
80
71
  'gray',