@ikatec/nebula-tokens 1.0.5 → 1.0.6
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 +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +5 -1
- package/dist/index.mjs +5 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -396,6 +396,9 @@ interface Toast {
|
|
|
396
396
|
interface ActionBar {
|
|
397
397
|
divider: string;
|
|
398
398
|
}
|
|
399
|
+
interface Skeleton {
|
|
400
|
+
background: string;
|
|
401
|
+
}
|
|
399
402
|
declare const colors: {
|
|
400
403
|
primary: {
|
|
401
404
|
50: string;
|
|
@@ -486,6 +489,7 @@ declare const colors: {
|
|
|
486
489
|
box: Box;
|
|
487
490
|
toast: Toast;
|
|
488
491
|
actionBar: ActionBar;
|
|
492
|
+
skeleton: Skeleton;
|
|
489
493
|
};
|
|
490
494
|
|
|
491
495
|
declare const space: {
|
package/dist/index.d.ts
CHANGED
|
@@ -396,6 +396,9 @@ interface Toast {
|
|
|
396
396
|
interface ActionBar {
|
|
397
397
|
divider: string;
|
|
398
398
|
}
|
|
399
|
+
interface Skeleton {
|
|
400
|
+
background: string;
|
|
401
|
+
}
|
|
399
402
|
declare const colors: {
|
|
400
403
|
primary: {
|
|
401
404
|
50: string;
|
|
@@ -486,6 +489,7 @@ declare const colors: {
|
|
|
486
489
|
box: Box;
|
|
487
490
|
toast: Toast;
|
|
488
491
|
actionBar: ActionBar;
|
|
492
|
+
skeleton: Skeleton;
|
|
489
493
|
};
|
|
490
494
|
|
|
491
495
|
declare const space: {
|
package/dist/index.js
CHANGED
|
@@ -434,6 +434,9 @@ var toast = {
|
|
|
434
434
|
var actionBar = {
|
|
435
435
|
divider: "var(--actionBar-background-divider)"
|
|
436
436
|
};
|
|
437
|
+
var skeleton = {
|
|
438
|
+
background: "var(--skeleton-background)"
|
|
439
|
+
};
|
|
437
440
|
var colors = {
|
|
438
441
|
primary: {
|
|
439
442
|
50: "var(--primary-50)",
|
|
@@ -523,7 +526,8 @@ var colors = {
|
|
|
523
526
|
tabs,
|
|
524
527
|
box,
|
|
525
528
|
toast,
|
|
526
|
-
actionBar
|
|
529
|
+
actionBar,
|
|
530
|
+
skeleton
|
|
527
531
|
};
|
|
528
532
|
|
|
529
533
|
// src/space.ts
|
package/dist/index.mjs
CHANGED
|
@@ -402,6 +402,9 @@ var toast = {
|
|
|
402
402
|
var actionBar = {
|
|
403
403
|
divider: "var(--actionBar-background-divider)"
|
|
404
404
|
};
|
|
405
|
+
var skeleton = {
|
|
406
|
+
background: "var(--skeleton-background)"
|
|
407
|
+
};
|
|
405
408
|
var colors = {
|
|
406
409
|
primary: {
|
|
407
410
|
50: "var(--primary-50)",
|
|
@@ -491,7 +494,8 @@ var colors = {
|
|
|
491
494
|
tabs,
|
|
492
495
|
box,
|
|
493
496
|
toast,
|
|
494
|
-
actionBar
|
|
497
|
+
actionBar,
|
|
498
|
+
skeleton
|
|
495
499
|
};
|
|
496
500
|
|
|
497
501
|
// src/space.ts
|