@xsolla/xui-status-dropdown 0.172.2 → 0.173.1
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/native/index.js +5 -1
- package/native/index.js.map +1 -1
- package/native/index.mjs +5 -1
- package/native/index.mjs.map +1 -1
- package/package.json +5 -5
- package/web/index.js +5 -1
- package/web/index.js.map +1 -1
- package/web/index.mjs +5 -1
- package/web/index.mjs.map +1 -1
package/native/index.mjs
CHANGED
|
@@ -1117,7 +1117,11 @@ var StatusDropdown = forwardRef(
|
|
|
1117
1117
|
themeMode,
|
|
1118
1118
|
themeProductContext
|
|
1119
1119
|
}, ref) => {
|
|
1120
|
-
const { theme } = useResolvedTheme({
|
|
1120
|
+
const { theme: rawTheme } = useResolvedTheme({
|
|
1121
|
+
themeMode,
|
|
1122
|
+
themeProductContext
|
|
1123
|
+
});
|
|
1124
|
+
const theme = rawTheme;
|
|
1121
1125
|
const paletteColors = getPaletteColors(palette, theme);
|
|
1122
1126
|
const contentColor = theme.colors.content.primary;
|
|
1123
1127
|
const sizeStyles = theme.sizing.tag(size);
|