@ikatec/nebula-tokens 1.4.0-beta.1 → 1.5.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
|
@@ -448,9 +448,18 @@ interface Typography {
|
|
|
448
448
|
};
|
|
449
449
|
caption: string;
|
|
450
450
|
link: {
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
451
|
+
default: {
|
|
452
|
+
color: string;
|
|
453
|
+
hover: string;
|
|
454
|
+
active: string;
|
|
455
|
+
disabled: string;
|
|
456
|
+
};
|
|
457
|
+
external: {
|
|
458
|
+
color: string;
|
|
459
|
+
hover: string;
|
|
460
|
+
active: string;
|
|
461
|
+
disabled: string;
|
|
462
|
+
};
|
|
454
463
|
};
|
|
455
464
|
}
|
|
456
465
|
interface Skeleton {
|
package/dist/index.mjs
CHANGED
|
@@ -442,9 +442,18 @@ var actionBar = {
|
|
|
442
442
|
var typography = {
|
|
443
443
|
caption: "var(--typography-caption-color)",
|
|
444
444
|
link: {
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
445
|
+
default: {
|
|
446
|
+
color: "var(--typography-link-default-color)",
|
|
447
|
+
hover: "var(--typography-link-default-hover-color)",
|
|
448
|
+
active: "var(--typography-link--default-active-color:)",
|
|
449
|
+
disabled: "var(--typography-link-default-disabled-color)"
|
|
450
|
+
},
|
|
451
|
+
external: {
|
|
452
|
+
color: "var(--typography-link-external-color)",
|
|
453
|
+
hover: "var(--typography-link-external-hover-color)",
|
|
454
|
+
active: "var(--typography-link-external-active-color)",
|
|
455
|
+
disabled: "var(--typography-link-external-disabled-color)"
|
|
456
|
+
}
|
|
448
457
|
},
|
|
449
458
|
heading: {
|
|
450
459
|
"1": "var(--typography-heading-1-color)",
|
package/package.json
CHANGED
|
Binary file
|