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

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.ts 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: {
@@ -336,6 +348,10 @@ interface Switch {
336
348
  ring: string;
337
349
  circle: string;
338
350
  }
351
+ interface Tooltip {
352
+ background: string;
353
+ text: string;
354
+ }
339
355
  declare const colors: {
340
356
  primary: {
341
357
  50: string;
@@ -418,7 +434,9 @@ declare const colors: {
418
434
  dialog: Dialog;
419
435
  checkbox: Checkbox;
420
436
  drawer: Drawer;
437
+ breadcrumb: Breadcrumb;
421
438
  switch: Switch;
439
+ tooltip: Tooltip;
422
440
  };
423
441
 
424
442
  declare const space: {
package/dist/index.js CHANGED
@@ -358,6 +358,16 @@ var drawer = {
358
358
  border: "var(--drawer-footer-border)"
359
359
  }
360
360
  };
361
+ var breadcrumb = {
362
+ text: {
363
+ default: "var(--breadcrumb-text-default)",
364
+ hover: "var(--breadcrumb-text-hover)",
365
+ active: "var(--breadcrumb-text-active)"
366
+ },
367
+ ellipsis: {
368
+ background: { hover: "var(--breadcrumb-ellipsis-bg-hover)" }
369
+ }
370
+ };
361
371
  var switchColors = {
362
372
  background: {
363
373
  off: {
@@ -376,6 +386,10 @@ var switchColors = {
376
386
  ring: "var(--switch-ring)",
377
387
  circle: "var(--switch-circle)"
378
388
  };
389
+ var tooltip = {
390
+ background: "var(--tooltip-background)",
391
+ text: "var(--tooltip-text)"
392
+ };
379
393
  var colors = {
380
394
  primary: {
381
395
  50: "var(--primary-50)",
@@ -458,7 +472,9 @@ var colors = {
458
472
  dialog,
459
473
  checkbox,
460
474
  drawer,
461
- switch: switchColors
475
+ breadcrumb,
476
+ switch: switchColors,
477
+ tooltip
462
478
  };
463
479
 
464
480
  // src/space.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ikatec/nebula-tokens",
3
- "version": "0.0.1-alpha.18",
3
+ "version": "0.0.1-alpha.19",
4
4
  "description": "Design tokens",
5
5
  "publishConfig": {
6
6
  "access": "public"