@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.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,11 +1892,8 @@ var styles6 = StyleSheet.create({
|
|
|
1891
1892
|
padding: 8,
|
|
1892
1893
|
gap: 8,
|
|
1893
1894
|
borderRadius: 12,
|
|
1894
|
-
backgroundColor: colors.
|
|
1895
|
-
|
|
1896
|
-
web: { boxShadow: `0 8px 24px ${colors.black}73` },
|
|
1897
|
-
default: { elevation: 8 }
|
|
1898
|
-
})
|
|
1895
|
+
backgroundColor: colors.whiteAlpha6,
|
|
1896
|
+
overflow: "hidden"
|
|
1899
1897
|
},
|
|
1900
1898
|
item: {
|
|
1901
1899
|
height: CONTROL_HEIGHT,
|
|
@@ -1906,10 +1904,10 @@ var styles6 = StyleSheet.create({
|
|
|
1906
1904
|
borderRadius: 8
|
|
1907
1905
|
},
|
|
1908
1906
|
itemHovered: {
|
|
1909
|
-
backgroundColor: colors.
|
|
1907
|
+
backgroundColor: colors.whiteAlpha6
|
|
1910
1908
|
},
|
|
1911
1909
|
itemSelected: {
|
|
1912
|
-
backgroundColor: colors.
|
|
1910
|
+
backgroundColor: colors.whiteAlpha6
|
|
1913
1911
|
},
|
|
1914
1912
|
itemLabel: {
|
|
1915
1913
|
...languageSwitcherTypography,
|