@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.cjs
CHANGED
|
@@ -39,6 +39,7 @@ var colors = {
|
|
|
39
39
|
whiteAlpha86: "#FFFFFFDB",
|
|
40
40
|
whiteAlpha40: "#FFFFFF66",
|
|
41
41
|
whiteAlpha20: "#FFFFFF33",
|
|
42
|
+
whiteAlpha6: "#FFFFFF0F",
|
|
42
43
|
whiteAlpha10: "#FFFFFF1A",
|
|
43
44
|
whiteAlpha5: "#FFFFFF0D",
|
|
44
45
|
dark: "#090909",
|
|
@@ -1870,7 +1871,7 @@ var styles6 = reactNative.StyleSheet.create({
|
|
|
1870
1871
|
backgroundColor: "transparent"
|
|
1871
1872
|
},
|
|
1872
1873
|
triggerActive: {
|
|
1873
|
-
backgroundColor: colors.
|
|
1874
|
+
backgroundColor: colors.whiteAlpha6
|
|
1874
1875
|
},
|
|
1875
1876
|
triggerLabel: {
|
|
1876
1877
|
...languageSwitcherTypography,
|
|
@@ -1897,7 +1898,7 @@ var styles6 = reactNative.StyleSheet.create({
|
|
|
1897
1898
|
padding: 8,
|
|
1898
1899
|
gap: 8,
|
|
1899
1900
|
borderRadius: 12,
|
|
1900
|
-
backgroundColor: colors.
|
|
1901
|
+
backgroundColor: colors.whiteAlpha6,
|
|
1901
1902
|
...reactNative.Platform.select({
|
|
1902
1903
|
web: { boxShadow: `0 8px 24px ${colors.black}73` },
|
|
1903
1904
|
default: { elevation: 8 }
|
|
@@ -1912,10 +1913,10 @@ var styles6 = reactNative.StyleSheet.create({
|
|
|
1912
1913
|
borderRadius: 8
|
|
1913
1914
|
},
|
|
1914
1915
|
itemHovered: {
|
|
1915
|
-
backgroundColor: colors.
|
|
1916
|
+
backgroundColor: colors.whiteAlpha6
|
|
1916
1917
|
},
|
|
1917
1918
|
itemSelected: {
|
|
1918
|
-
backgroundColor: colors.
|
|
1919
|
+
backgroundColor: colors.whiteAlpha6
|
|
1919
1920
|
},
|
|
1920
1921
|
itemLabel: {
|
|
1921
1922
|
...languageSwitcherTypography,
|