@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.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/web/index.mjs
CHANGED
|
@@ -1157,7 +1157,11 @@ var StatusDropdown = forwardRef(
|
|
|
1157
1157
|
themeMode,
|
|
1158
1158
|
themeProductContext
|
|
1159
1159
|
}, ref) => {
|
|
1160
|
-
const { theme } = useResolvedTheme({
|
|
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);
|