@ikatec/nebula-tokens 1.0.16 → 1.0.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.ts +9 -0
- package/dist/index.js +10 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -445,6 +445,14 @@ interface Calendar {
|
|
|
445
445
|
selectionChevron: string;
|
|
446
446
|
};
|
|
447
447
|
}
|
|
448
|
+
interface FileUpload {
|
|
449
|
+
background: string;
|
|
450
|
+
backgroundHover: string;
|
|
451
|
+
backgroundFile: string;
|
|
452
|
+
borderFile: string;
|
|
453
|
+
border: string;
|
|
454
|
+
icon: string;
|
|
455
|
+
}
|
|
448
456
|
declare const colors: {
|
|
449
457
|
primary: {
|
|
450
458
|
50: string;
|
|
@@ -538,6 +546,7 @@ declare const colors: {
|
|
|
538
546
|
typography: Typography;
|
|
539
547
|
skeleton: Skeleton;
|
|
540
548
|
calendar: Calendar;
|
|
549
|
+
fileUpload: FileUpload;
|
|
541
550
|
};
|
|
542
551
|
|
|
543
552
|
declare const space: {
|
package/dist/index.js
CHANGED
|
@@ -480,6 +480,14 @@ var calendar = {
|
|
|
480
480
|
selectionChevron: "var(--calendar-month-selectionChevron-color)"
|
|
481
481
|
}
|
|
482
482
|
};
|
|
483
|
+
var fileUpload = {
|
|
484
|
+
background: "var(--fileupload-background)",
|
|
485
|
+
backgroundHover: "var(--fileupload-backgroundHover)",
|
|
486
|
+
backgroundFile: "var(--fileupload-backgroundFile)",
|
|
487
|
+
borderFile: "var(--fileupload-borderFile)",
|
|
488
|
+
border: "var(--fileupload-border)",
|
|
489
|
+
icon: "var(--fileupload-icon)"
|
|
490
|
+
};
|
|
483
491
|
var colors = {
|
|
484
492
|
primary: {
|
|
485
493
|
50: "var(--primary-50)",
|
|
@@ -572,7 +580,8 @@ var colors = {
|
|
|
572
580
|
actionBar,
|
|
573
581
|
typography,
|
|
574
582
|
skeleton,
|
|
575
|
-
calendar
|
|
583
|
+
calendar,
|
|
584
|
+
fileUpload
|
|
576
585
|
};
|
|
577
586
|
|
|
578
587
|
// src/space.ts
|