igniteui-theming 6.3.1 → 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
|
@@ -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 [
|
|
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:
|
|
124
|
+
default-size: 3,
|
|
125
125
|
);
|
|
126
126
|
|
|
127
127
|
/// Generates a material flat icon button schema.
|