igniteui-theming 13.0.0-beta.2 → 13.0.1

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": "13.0.0-beta.2",
3
+ "version": "13.0.1",
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": {
@@ -12,6 +12,6 @@ $default-elevation-badge: (
12
12
 
13
13
  /// @type Map
14
14
  /// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the badge shadow.
15
- $bootstrap-elevation-badge: (
15
+ $indigo-elevation-badge: (
16
16
  elevation: 0,
17
17
  );
@@ -70,10 +70,8 @@ $fluent-badge: $light-badge;
70
70
  /// @prop {Number} border-width [1px] - The border width of the badge component.
71
71
  /// @prop {Number} border-radius [rem(4px)] - The border radius used for badge.
72
72
  /// @requires {Map} $light-badge
73
- /// @requires {Map} $bootstrap-elevation-badge
74
73
  $bootstrap-badge: extend(
75
74
  $light-badge,
76
- $bootstrap-elevation-badge,
77
75
  (
78
76
  border-width: 1px,
79
77
 
@@ -84,4 +82,5 @@ $bootstrap-badge: extend(
84
82
  /// Generates an indigo badge schema.
85
83
  /// @type {Map}
86
84
  /// @requires {Map} $light-badge
87
- $indigo-badge: $light-badge;
85
+ /// @requires {Map} $indigo-elevation-badge
86
+ $indigo-badge: extend($light-badge, $indigo-elevation-badge);