@ecohouse/ui 0.1.14 → 0.1.15
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/theme/colors.test.ts +3 -0
- package/src/theme/typography.ts +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -676,12 +676,12 @@ declare const statCardTypography: {
|
|
|
676
676
|
readonly lineHeight: 16;
|
|
677
677
|
readonly letterSpacing: 0;
|
|
678
678
|
};
|
|
679
|
-
/** Segmented toggle label — Medium
|
|
679
|
+
/** Segmented toggle label — Medium 12, line-height 100%, letter-spacing 0. */
|
|
680
680
|
declare const segmentedToggleTypography: {
|
|
681
681
|
readonly fontFamily: "Noto Sans Armenian";
|
|
682
|
-
readonly fontSize:
|
|
682
|
+
readonly fontSize: 12;
|
|
683
683
|
readonly fontWeight: "500";
|
|
684
|
-
readonly lineHeight:
|
|
684
|
+
readonly lineHeight: 12;
|
|
685
685
|
readonly letterSpacing: 0;
|
|
686
686
|
};
|
|
687
687
|
/** Language switcher trigger and option labels — SemiBold 14. */
|
package/dist/index.d.ts
CHANGED
|
@@ -676,12 +676,12 @@ declare const statCardTypography: {
|
|
|
676
676
|
readonly lineHeight: 16;
|
|
677
677
|
readonly letterSpacing: 0;
|
|
678
678
|
};
|
|
679
|
-
/** Segmented toggle label — Medium
|
|
679
|
+
/** Segmented toggle label — Medium 12, line-height 100%, letter-spacing 0. */
|
|
680
680
|
declare const segmentedToggleTypography: {
|
|
681
681
|
readonly fontFamily: "Noto Sans Armenian";
|
|
682
|
-
readonly fontSize:
|
|
682
|
+
readonly fontSize: 12;
|
|
683
683
|
readonly fontWeight: "500";
|
|
684
|
-
readonly lineHeight:
|
|
684
|
+
readonly lineHeight: 12;
|
|
685
685
|
readonly letterSpacing: 0;
|
|
686
686
|
};
|
|
687
687
|
/** Language switcher trigger and option labels — SemiBold 14. */
|
package/dist/index.js
CHANGED
|
@@ -97,9 +97,9 @@ var statCardTypography = {
|
|
|
97
97
|
};
|
|
98
98
|
var segmentedToggleTypography = {
|
|
99
99
|
fontFamily: fonts.sans,
|
|
100
|
-
fontSize:
|
|
100
|
+
fontSize: 12,
|
|
101
101
|
fontWeight: "500",
|
|
102
|
-
lineHeight:
|
|
102
|
+
lineHeight: 12,
|
|
103
103
|
letterSpacing: 0
|
|
104
104
|
};
|
|
105
105
|
var languageSwitcherTypography = {
|