@xsolla/xui-status-dropdown 0.172.2 → 0.173.0

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.mjs CHANGED
@@ -1117,7 +1117,11 @@ var StatusDropdown = forwardRef(
1117
1117
  themeMode,
1118
1118
  themeProductContext
1119
1119
  }, ref) => {
1120
- const { theme } = useResolvedTheme({ themeMode, themeProductContext });
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);