@ecohouse/ui 0.1.9 → 0.1.10
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 +5 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +5 -4
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/LanguageSwitcher/LanguageSwitcher.tsx +4 -4
- package/src/theme/colors.test.ts +1 -0
- package/src/theme/colors.ts +1 -0
package/dist/index.d.cts
CHANGED
|
@@ -600,6 +600,7 @@ declare const colors: {
|
|
|
600
600
|
readonly whiteAlpha86: "#FFFFFFDB";
|
|
601
601
|
readonly whiteAlpha40: "#FFFFFF66";
|
|
602
602
|
readonly whiteAlpha20: "#FFFFFF33";
|
|
603
|
+
readonly whiteAlpha6: "#FFFFFF0F";
|
|
603
604
|
readonly whiteAlpha10: "#FFFFFF1A";
|
|
604
605
|
readonly whiteAlpha5: "#FFFFFF0D";
|
|
605
606
|
readonly dark: "#090909";
|
package/dist/index.d.ts
CHANGED
|
@@ -600,6 +600,7 @@ declare const colors: {
|
|
|
600
600
|
readonly whiteAlpha86: "#FFFFFFDB";
|
|
601
601
|
readonly whiteAlpha40: "#FFFFFF66";
|
|
602
602
|
readonly whiteAlpha20: "#FFFFFF33";
|
|
603
|
+
readonly whiteAlpha6: "#FFFFFF0F";
|
|
603
604
|
readonly whiteAlpha10: "#FFFFFF1A";
|
|
604
605
|
readonly whiteAlpha5: "#FFFFFF0D";
|
|
605
606
|
readonly dark: "#090909";
|
package/dist/index.js
CHANGED
|
@@ -33,6 +33,7 @@ var colors = {
|
|
|
33
33
|
whiteAlpha86: "#FFFFFFDB",
|
|
34
34
|
whiteAlpha40: "#FFFFFF66",
|
|
35
35
|
whiteAlpha20: "#FFFFFF33",
|
|
36
|
+
whiteAlpha6: "#FFFFFF0F",
|
|
36
37
|
whiteAlpha10: "#FFFFFF1A",
|
|
37
38
|
whiteAlpha5: "#FFFFFF0D",
|
|
38
39
|
dark: "#090909",
|
|
@@ -1864,7 +1865,7 @@ var styles6 = StyleSheet.create({
|
|
|
1864
1865
|
backgroundColor: "transparent"
|
|
1865
1866
|
},
|
|
1866
1867
|
triggerActive: {
|
|
1867
|
-
backgroundColor: colors.
|
|
1868
|
+
backgroundColor: colors.whiteAlpha6
|
|
1868
1869
|
},
|
|
1869
1870
|
triggerLabel: {
|
|
1870
1871
|
...languageSwitcherTypography,
|
|
@@ -1891,7 +1892,7 @@ var styles6 = StyleSheet.create({
|
|
|
1891
1892
|
padding: 8,
|
|
1892
1893
|
gap: 8,
|
|
1893
1894
|
borderRadius: 12,
|
|
1894
|
-
backgroundColor: colors.
|
|
1895
|
+
backgroundColor: colors.whiteAlpha6,
|
|
1895
1896
|
...Platform.select({
|
|
1896
1897
|
web: { boxShadow: `0 8px 24px ${colors.black}73` },
|
|
1897
1898
|
default: { elevation: 8 }
|
|
@@ -1906,10 +1907,10 @@ var styles6 = StyleSheet.create({
|
|
|
1906
1907
|
borderRadius: 8
|
|
1907
1908
|
},
|
|
1908
1909
|
itemHovered: {
|
|
1909
|
-
backgroundColor: colors.
|
|
1910
|
+
backgroundColor: colors.whiteAlpha6
|
|
1910
1911
|
},
|
|
1911
1912
|
itemSelected: {
|
|
1912
|
-
backgroundColor: colors.
|
|
1913
|
+
backgroundColor: colors.whiteAlpha6
|
|
1913
1914
|
},
|
|
1914
1915
|
itemLabel: {
|
|
1915
1916
|
...languageSwitcherTypography,
|