@ikatec/nebula-tokens 0.0.1-alpha.16 → 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,40 @@ 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
+ }
333
+ interface Switch {
334
+ background: {
335
+ off: {
336
+ default: string;
337
+ hover: string;
338
+ focus: string;
339
+ disabled: string;
340
+ };
341
+ on: {
342
+ default: string;
343
+ hover: string;
344
+ focus: string;
345
+ disabled: string;
346
+ };
347
+ };
348
+ ring: string;
349
+ circle: string;
350
+ }
351
+ interface Tooltip {
352
+ background: string;
353
+ text: string;
354
+ }
321
355
  declare const colors: {
322
356
  primary: {
323
357
  50: string;
@@ -400,6 +434,9 @@ declare const colors: {
400
434
  dialog: Dialog;
401
435
  checkbox: Checkbox;
402
436
  drawer: Drawer;
437
+ breadcrumb: Breadcrumb;
438
+ switch: Switch;
439
+ tooltip: Tooltip;
403
440
  };
404
441
 
405
442
  declare const space: {
package/dist/index.d.ts CHANGED
@@ -318,6 +318,24 @@ interface Drawer {
318
318
  border: string;
319
319
  };
320
320
  }
321
+ interface Switch {
322
+ background: {
323
+ off: {
324
+ default: string;
325
+ hover: string;
326
+ focus: string;
327
+ disabled: string;
328
+ };
329
+ on: {
330
+ default: string;
331
+ hover: string;
332
+ focus: string;
333
+ disabled: string;
334
+ };
335
+ };
336
+ ring: string;
337
+ circle: string;
338
+ }
321
339
  declare const colors: {
322
340
  primary: {
323
341
  50: string;
@@ -400,6 +418,7 @@ declare const colors: {
400
418
  dialog: Dialog;
401
419
  checkbox: Checkbox;
402
420
  drawer: Drawer;
421
+ switch: Switch;
403
422
  };
404
423
 
405
424
  declare const space: {
package/dist/index.js CHANGED
@@ -358,6 +358,24 @@ var drawer = {
358
358
  border: "var(--drawer-footer-border)"
359
359
  }
360
360
  };
361
+ var switchColors = {
362
+ background: {
363
+ off: {
364
+ default: "var(--switch-background-off-default)",
365
+ hover: "var(--switch-background-off-hover)",
366
+ focus: "var(--switch-background-off-focus)",
367
+ disabled: "var(--switch-background-off-disabled)"
368
+ },
369
+ on: {
370
+ default: "var(--switch-background-on-default)",
371
+ hover: "var(--switch-background-on-hover)",
372
+ focus: "var(--switch-background-on-focus)",
373
+ disabled: "var(--switch-background-on-disabled)"
374
+ }
375
+ },
376
+ ring: "var(--switch-ring)",
377
+ circle: "var(--switch-circle)"
378
+ };
361
379
  var colors = {
362
380
  primary: {
363
381
  50: "var(--primary-50)",
@@ -439,7 +457,8 @@ var colors = {
439
457
  inputText,
440
458
  dialog,
441
459
  checkbox,
442
- drawer
460
+ drawer,
461
+ switch: switchColors
443
462
  };
444
463
 
445
464
  // src/space.ts
package/dist/index.mjs CHANGED
@@ -326,6 +326,38 @@ 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
+ };
339
+ var switchColors = {
340
+ background: {
341
+ off: {
342
+ default: "var(--switch-background-off-default)",
343
+ hover: "var(--switch-background-off-hover)",
344
+ focus: "var(--switch-background-off-focus)",
345
+ disabled: "var(--switch-background-off-disabled)"
346
+ },
347
+ on: {
348
+ default: "var(--switch-background-on-default)",
349
+ hover: "var(--switch-background-on-hover)",
350
+ focus: "var(--switch-background-on-focus)",
351
+ disabled: "var(--switch-background-on-disabled)"
352
+ }
353
+ },
354
+ ring: "var(--switch-ring)",
355
+ circle: "var(--switch-circle)"
356
+ };
357
+ var tooltip = {
358
+ background: "var(--tooltip-background)",
359
+ text: "var(--tooltip-text)"
360
+ };
329
361
  var colors = {
330
362
  primary: {
331
363
  50: "var(--primary-50)",
@@ -407,7 +439,10 @@ var colors = {
407
439
  inputText,
408
440
  dialog,
409
441
  checkbox,
410
- drawer
442
+ drawer,
443
+ breadcrumb,
444
+ switch: switchColors,
445
+ tooltip
411
446
  };
412
447
 
413
448
  // 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.16",
3
+ "version": "0.0.1-alpha.18",
4
4
  "description": "Design tokens",
5
5
  "publishConfig": {
6
6
  "access": "public"