igniteui-theming 6.3.0-beta.1 → 6.3.0-beta.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-beta.1",
3
+ "version": "6.3.0-beta.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": {
@@ -15,3 +15,9 @@ $default-elevation-navbar: (
15
15
  $bootstrap-elevation-navbar: (
16
16
  elevation: 0,
17
17
  );
18
+
19
+ /// @type Map
20
+ /// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the navbar.
21
+ $indigo-elevation-navbar: (
22
+ elevation: 0,
23
+ );
@@ -135,4 +135,5 @@ $bootstrap-navbar: extend(
135
135
  /// @type {Map}
136
136
  /// @prop {Number} elevation [0] - The elevation level, between 0-24, to be used for the navbar.
137
137
  /// @requires {Map} $light-navbar
138
- $indigo-navbar: $light-navbar;
138
+ /// @requires {Map} $indigo-elevation-navbar
139
+ $indigo-navbar: extend($light-navbar, $indigo-elevation-navbar);