@mastra/playground-ui 32.0.1 → 32.0.2-alpha.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/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 32.0.2-alpha.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed combobox popups so model picker dropdowns open correctly outside side dialogs. ([#17556](https://github.com/mastra-ai/mastra/pull/17556))
8
+
9
+ - Updated dependencies [[`fcf6027`](https://github.com/mastra-ai/mastra/commit/fcf602747f6771731dda268ff3493b836f9f0ee9), [`f82cc72`](https://github.com/mastra-ai/mastra/commit/f82cc72edca0ce636fe18abaf2598d89a0c6bcca), [`fcf6027`](https://github.com/mastra-ai/mastra/commit/fcf602747f6771731dda268ff3493b836f9f0ee9)]:
10
+ - @mastra/client-js@1.23.2-alpha.0
11
+ - @mastra/react@0.5.2-alpha.0
12
+ - @mastra/core@1.41.0-alpha.0
13
+
3
14
  ## 32.0.1
4
15
 
5
16
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -6539,7 +6539,7 @@ function Combobox({
6539
6539
  }) {
6540
6540
  const selectedOption = options.find((option) => option.value === value) ?? null;
6541
6541
  const portalContainer = usePortalContainer();
6542
- const resolvedContainer = container ?? portalContainer;
6542
+ const resolvedContainer = container ?? portalContainer ?? void 0;
6543
6543
  const handleSelect = (item) => {
6544
6544
  if (item) {
6545
6545
  onValueChange?.(item.value);