@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/web/index.mjs CHANGED
@@ -1157,7 +1157,11 @@ var StatusDropdown = forwardRef(
1157
1157
  themeMode,
1158
1158
  themeProductContext
1159
1159
  }, ref) => {
1160
- const { theme } = useResolvedTheme({ themeMode, themeProductContext });
1160
+ const { theme: rawTheme } = useResolvedTheme({
1161
+ themeMode,
1162
+ themeProductContext
1163
+ });
1164
+ const theme = rawTheme;
1161
1165
  const paletteColors = getPaletteColors(palette, theme);
1162
1166
  const contentColor = theme.colors.content.primary;
1163
1167
  const sizeStyles = theme.sizing.tag(size);