@ikatec/nebula-tokens 1.3.0-beta.1 → 1.4.0-beta.1
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.
|
Binary file
|
package/dist/index.d.mts
CHANGED
|
@@ -566,6 +566,14 @@ interface BannerAlert {
|
|
|
566
566
|
};
|
|
567
567
|
};
|
|
568
568
|
}
|
|
569
|
+
interface TipCard {
|
|
570
|
+
header: {
|
|
571
|
+
icon: {
|
|
572
|
+
color: string;
|
|
573
|
+
background: string;
|
|
574
|
+
};
|
|
575
|
+
};
|
|
576
|
+
}
|
|
569
577
|
declare const colors: {
|
|
570
578
|
primary: {
|
|
571
579
|
50: string;
|
|
@@ -666,6 +674,7 @@ declare const colors: {
|
|
|
666
674
|
slider: Slider;
|
|
667
675
|
stepper: Stepper;
|
|
668
676
|
bannerAlert: BannerAlert;
|
|
677
|
+
tipCard: TipCard;
|
|
669
678
|
};
|
|
670
679
|
|
|
671
680
|
declare const space: {
|
package/dist/index.mjs
CHANGED
|
@@ -568,6 +568,14 @@ var bannerAlert = {
|
|
|
568
568
|
}
|
|
569
569
|
}
|
|
570
570
|
};
|
|
571
|
+
var tipCard = {
|
|
572
|
+
header: {
|
|
573
|
+
icon: {
|
|
574
|
+
color: "var(--tipCard-header-icon-color)",
|
|
575
|
+
background: "var(--tipCard-header-icon-background)"
|
|
576
|
+
}
|
|
577
|
+
}
|
|
578
|
+
};
|
|
571
579
|
var colors = {
|
|
572
580
|
primary: {
|
|
573
581
|
50: "var(--primary-50)",
|
|
@@ -667,7 +675,8 @@ var colors = {
|
|
|
667
675
|
cropper,
|
|
668
676
|
slider,
|
|
669
677
|
stepper,
|
|
670
|
-
bannerAlert
|
|
678
|
+
bannerAlert,
|
|
679
|
+
tipCard
|
|
671
680
|
};
|
|
672
681
|
|
|
673
682
|
// src/space.ts
|
package/package.json
CHANGED
|
Binary file
|