@mastra/playground-ui 17.0.1-alpha.0 → 18.0.0-alpha.2

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,28 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 18.0.0-alpha.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Fixed blank page crash when clicking "Add Header" while using `npx mastra studio` ([#14482](https://github.com/mastra-ai/mastra/pull/14482))
8
+
9
+ - Updated dependencies [[`9e1a3ed`](https://github.com/mastra-ai/mastra/commit/9e1a3ed07cfafb5e8e19a796ce0bee817002d7c0), [`413fe2c`](https://github.com/mastra-ai/mastra/commit/413fe2c23548a3b1324b5d7939c98418246e903c), [`a579f7a`](https://github.com/mastra-ai/mastra/commit/a579f7a31e582674862b5679bc79af7ccf7429b8), [`631d9d9`](https://github.com/mastra-ai/mastra/commit/631d9d9ce2b96169d8cdd12bdc45d4f3a0f3b530)]:
10
+ - @mastra/core@1.15.0-alpha.2
11
+ - @mastra/ai-sdk@1.2.0-alpha.1
12
+ - @mastra/client-js@1.9.1-alpha.2
13
+ - @mastra/react@0.2.16-alpha.2
14
+
15
+ ## 17.0.1-alpha.1
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [[`cd7b568`](https://github.com/mastra-ai/mastra/commit/cd7b568fe427b1b4838abe744fa5367a47539db3), [`681ee1c`](https://github.com/mastra-ai/mastra/commit/681ee1c811359efd1b8bebc4bce35b9bb7b14bec)]:
20
+ - @mastra/schema-compat@1.2.6-alpha.1
21
+ - @mastra/core@1.15.0-alpha.1
22
+ - @mastra/client-js@1.9.1-alpha.1
23
+ - @mastra/ai-sdk@1.1.5-alpha.0
24
+ - @mastra/react@0.2.16-alpha.1
25
+
3
26
  ## 17.0.1-alpha.0
4
27
 
5
28
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -7563,7 +7563,6 @@ function FieldBlockLayout({
7563
7563
  layout = "vertical",
7564
7564
  labelColumnWidth
7565
7565
  }) {
7566
- console.log({ labelColumnWidth, layout });
7567
7566
  return /* @__PURE__ */ jsxRuntime.jsx(
7568
7567
  "div",
7569
7568
  {
@@ -18659,7 +18658,7 @@ const StudioConfigForm = ({ initialConfig, onSave }) => {
18659
18658
  const handleRemoveHeader = (index) => {
18660
18659
  setHeaders((prev) => prev.filter((_, i) => i !== index));
18661
18660
  };
18662
- return /* @__PURE__ */ jsxRuntime.jsxs("form", { onSubmit: handleSubmit, className: "space-y-6", children: [
18661
+ return /* @__PURE__ */ jsxRuntime.jsx(TooltipProvider, { delayDuration: 0, children: /* @__PURE__ */ jsxRuntime.jsxs("form", { onSubmit: handleSubmit, className: "space-y-6", children: [
18663
18662
  /* @__PURE__ */ jsxRuntime.jsx(
18664
18663
  TextFieldBlock,
18665
18664
  {
@@ -18684,7 +18683,7 @@ const StudioConfigForm = ({ initialConfig, onSave }) => {
18684
18683
  /* @__PURE__ */ jsxRuntime.jsx(lucideReact.SaveIcon, {}),
18685
18684
  "Save Configuration"
18686
18685
  ] })
18687
- ] });
18686
+ ] }) });
18688
18687
  };
18689
18688
 
18690
18689
  const useMastraPackages = () => {