@bi-digital/tokens 0.2.1 → 0.2.3

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/dist/tokens.css CHANGED
@@ -162,4 +162,5 @@
162
162
  --bi-icon-secondary: var(--bi-neutral-50);
163
163
  --bi-icon-disabled: var(--bi-neutral-50);
164
164
  --bi-icon-link: var(--bi-primary-50);
165
+ --bi-navbar-height: var(--bi-scale-16x);
165
166
  }
package/dist/tokens.d.ts CHANGED
@@ -204,4 +204,7 @@ declare const tokens: {
204
204
  "press-dark": DesignToken;
205
205
  "press-light": DesignToken;
206
206
  };
207
+ navbar: {
208
+ height: DesignToken;
209
+ };
207
210
  };
package/dist/tokens.js CHANGED
@@ -2577,4 +2577,22 @@ export default {
2577
2577
  path: ["states", "press-light"],
2578
2578
  },
2579
2579
  },
2580
+ navbar: {
2581
+ height: {
2582
+ $type: "dimension",
2583
+ $value: "4rem",
2584
+ filePath: "tokens/custom.tokens.json",
2585
+ isSource: true,
2586
+ original: {
2587
+ $type: "dimension",
2588
+ $value: "{scale.16x}",
2589
+ },
2590
+ name: "bi-navbar-height",
2591
+ attributes: {
2592
+ category: "navbar",
2593
+ type: "height",
2594
+ },
2595
+ path: ["navbar", "height"],
2596
+ },
2597
+ },
2580
2598
  };
package/dist/tokens.scss CHANGED
@@ -160,3 +160,4 @@ $bi-states-hover-dark: rgba(38, 51, 63, 0.1);
160
160
  $bi-states-hover-light: rgba(255, 255, 255, 0.1);
161
161
  $bi-states-press-dark: rgba(38, 51, 63, 0.15);
162
162
  $bi-states-press-light: rgba(255, 255, 255, 0.15);
163
+ $bi-navbar-height: 4rem;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bi-digital/tokens",
3
- "version": "0.2.1",
3
+ "version": "0.2.3",
4
4
  "description": "CSS and SASS variables for the BI Design System",
5
5
  "author": "BI Digital",
6
6
  "license": "ISC",