@ikatec/nebula-tokens 0.0.1-alpha.17 → 0.0.1-alpha.18

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/index.d.mts CHANGED
@@ -318,6 +318,18 @@ interface Drawer {
318
318
  border: string;
319
319
  };
320
320
  }
321
+ interface Breadcrumb {
322
+ text: {
323
+ default: string;
324
+ hover: string;
325
+ active: string;
326
+ };
327
+ ellipsis: {
328
+ background: {
329
+ hover: string;
330
+ };
331
+ };
332
+ }
321
333
  interface Switch {
322
334
  background: {
323
335
  off: {
@@ -422,6 +434,7 @@ declare const colors: {
422
434
  dialog: Dialog;
423
435
  checkbox: Checkbox;
424
436
  drawer: Drawer;
437
+ breadcrumb: Breadcrumb;
425
438
  switch: Switch;
426
439
  tooltip: Tooltip;
427
440
  };
package/dist/index.mjs CHANGED
@@ -326,6 +326,16 @@ var drawer = {
326
326
  border: "var(--drawer-footer-border)"
327
327
  }
328
328
  };
329
+ var breadcrumb = {
330
+ text: {
331
+ default: "var(--breadcrumb-text-default)",
332
+ hover: "var(--breadcrumb-text-hover)",
333
+ active: "var(--breadcrumb-text-active)"
334
+ },
335
+ ellipsis: {
336
+ background: { hover: "var(--breadcrumb-ellipsis-bg-hover)" }
337
+ }
338
+ };
329
339
  var switchColors = {
330
340
  background: {
331
341
  off: {
@@ -430,6 +440,7 @@ var colors = {
430
440
  dialog,
431
441
  checkbox,
432
442
  drawer,
443
+ breadcrumb,
433
444
  switch: switchColors,
434
445
  tooltip
435
446
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikatec/nebula-tokens",
3
- "version": "0.0.1-alpha.17",
3
+ "version": "0.0.1-alpha.18",
4
4
  "description": "Design tokens",
5
5
  "publishConfig": {
6
6
  "access": "public"