@mastra/playground-ui 21.0.0-alpha.0 → 21.0.0-alpha.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/CHANGELOG.md +14 -0
- package/dist/index.cjs.js +13 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +8 -0
- package/dist/index.es.js +13 -2
- package/dist/index.es.js.map +1 -1
- package/dist/src/domains/agents/hooks/use-agent-trace-scores.d.ts +1 -0
- package/dist/src/domains/configuration/__tests__/studio-config-form-api-prefix.test.d.ts +1 -0
- package/dist/src/ds/components/FormFieldBlocks/fields/search-field-block.stories.d.ts +1 -0
- package/package.json +10 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @mastra/playground-ui
|
|
2
2
|
|
|
3
|
+
## 21.0.0-alpha.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Added component tests for StudioConfigForm apiPrefix handling to validate the fix for issue #14634. ([#14893](https://github.com/mastra-ai/mastra/pull/14893))
|
|
8
|
+
|
|
9
|
+
- Fixed SearchFieldBlock search icon sizing and vertical alignment to properly scale across all input sizes (sm, md, default, lg) ([#14927](https://github.com/mastra-ai/mastra/pull/14927))
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`13f4327`](https://github.com/mastra-ai/mastra/commit/13f4327f052faebe199cefbe906d33bf90238767)]:
|
|
12
|
+
- @mastra/core@1.21.0-alpha.1
|
|
13
|
+
- @mastra/client-js@1.12.0-alpha.1
|
|
14
|
+
- @mastra/ai-sdk@1.3.0
|
|
15
|
+
- @mastra/react@0.2.21-alpha.1
|
|
16
|
+
|
|
3
17
|
## 21.0.0-alpha.0
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.cjs.js
CHANGED
|
@@ -34303,14 +34303,25 @@ function SearchFieldBlock({
|
|
|
34303
34303
|
placeholder,
|
|
34304
34304
|
onChange,
|
|
34305
34305
|
size,
|
|
34306
|
-
className:
|
|
34306
|
+
className: cn(
|
|
34307
|
+
size === "sm" && "pl-8",
|
|
34308
|
+
size === "md" && "pl-9",
|
|
34309
|
+
(!size || size === "default") && "pl-10",
|
|
34310
|
+
size === "lg" && "pl-11"
|
|
34311
|
+
)
|
|
34307
34312
|
}
|
|
34308
34313
|
),
|
|
34309
34314
|
/* @__PURE__ */ jsxRuntime.jsx(
|
|
34310
34315
|
lucideReact.SearchIcon,
|
|
34311
34316
|
{
|
|
34312
34317
|
"aria-hidden": "true",
|
|
34313
|
-
className:
|
|
34318
|
+
className: cn(
|
|
34319
|
+
"text-neutral4 opacity-50 group-has-focus:opacity-100 absolute left-3 top-1/2 -translate-y-1/2",
|
|
34320
|
+
size === "sm" && "w-3.5 h-3.5",
|
|
34321
|
+
size === "md" && "w-4 h-4",
|
|
34322
|
+
(!size || size === "default") && "w-[1.125rem] h-[1.125rem]",
|
|
34323
|
+
size === "lg" && "w-5 h-5"
|
|
34324
|
+
)
|
|
34314
34325
|
}
|
|
34315
34326
|
),
|
|
34316
34327
|
onReset && value && /* @__PURE__ */ jsxRuntime.jsx(
|