igniteui-theming 1.0.0-beta.12 → 1.0.0-beta.13

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": "1.0.0-beta.12",
3
+ "version": "1.0.0-beta.13",
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": {
@@ -116,11 +116,11 @@ $ignored-keys: ('name', 'palette', 'variant', 'selector');
116
116
  /// Adds the required CSS properties so that the scope can react to size changes.
117
117
  /// @access public
118
118
  @mixin sizable() {
119
- --is-large: clamp(0, (var(--ig-size, 1) + 1) - var(--ig-size-large, 3), 1);
119
+ --is-large: clamp(0, (var(--component-size, 1) + 1) - var(--ig-size-large, 3), 1);
120
120
  --is-medium:
121
121
  min(
122
- clamp(0, (var(--ig-size, 1) + 1) - var(--ig-size-medium, 2), 1),
123
- clamp(0, var(--ig-size-large, 3) - var(--ig-size, 1), 1)
122
+ clamp(0, (var(--component-size, 1) + 1) - var(--ig-size-medium, 2), 1),
123
+ clamp(0, var(--ig-size-large, 3) - var(--component-size, 1), 1)
124
124
  );
125
- --is-small: clamp(0, var(--ig-size-medium) - var(--ig-size, 1), 1);
125
+ --is-small: clamp(0, var(--ig-size-medium) - var(--component-size, 1), 1);
126
126
  }