@ecohouse/ui 0.1.9 → 0.1.11
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 +6 -8
- 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 +6 -8
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/components/LanguageSwitcher/LanguageSwitcher.tsx +5 -8
- 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,11 +1898,8 @@ var styles6 = reactNative.StyleSheet.create({
|
|
|
1897
1898
|
padding: 8,
|
|
1898
1899
|
gap: 8,
|
|
1899
1900
|
borderRadius: 12,
|
|
1900
|
-
backgroundColor: colors.
|
|
1901
|
-
|
|
1902
|
-
web: { boxShadow: `0 8px 24px ${colors.black}73` },
|
|
1903
|
-
default: { elevation: 8 }
|
|
1904
|
-
})
|
|
1901
|
+
backgroundColor: colors.whiteAlpha6,
|
|
1902
|
+
overflow: "hidden"
|
|
1905
1903
|
},
|
|
1906
1904
|
item: {
|
|
1907
1905
|
height: CONTROL_HEIGHT,
|
|
@@ -1912,10 +1910,10 @@ var styles6 = reactNative.StyleSheet.create({
|
|
|
1912
1910
|
borderRadius: 8
|
|
1913
1911
|
},
|
|
1914
1912
|
itemHovered: {
|
|
1915
|
-
backgroundColor: colors.
|
|
1913
|
+
backgroundColor: colors.whiteAlpha6
|
|
1916
1914
|
},
|
|
1917
1915
|
itemSelected: {
|
|
1918
|
-
backgroundColor: colors.
|
|
1916
|
+
backgroundColor: colors.whiteAlpha6
|
|
1919
1917
|
},
|
|
1920
1918
|
itemLabel: {
|
|
1921
1919
|
...languageSwitcherTypography,
|