@mastra/playground-ui 23.0.0-alpha.10 → 23.0.0-alpha.12
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 +20 -0
- package/dist/index.cjs.js +630 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +45 -2
- package/dist/index.es.js +628 -8
- package/dist/index.es.js.map +1 -1
- package/dist/src/ds/components/DateTimeRangePicker/date-time-range-picker.d.ts +6 -1
- package/dist/src/ds/components/PropertyFilter/index.d.ts +5 -0
- package/dist/src/ds/components/PropertyFilter/pick-multi-panel.d.ts +17 -0
- package/dist/src/ds/components/PropertyFilter/property-filter-actions.d.ts +16 -0
- package/dist/src/ds/components/PropertyFilter/property-filter-applied.d.ts +21 -0
- package/dist/src/ds/components/PropertyFilter/property-filter-creator.d.ts +26 -0
- package/dist/src/ds/components/PropertyFilter/property-filter.stories.d.ts +13 -0
- package/dist/src/ds/components/PropertyFilter/types.d.ts +36 -0
- package/dist/src/index.d.ts +1 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @mastra/playground-ui
|
|
2
2
|
|
|
3
|
+
## 23.0.0-alpha.12
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`a371ac5`](https://github.com/mastra-ai/mastra/commit/a371ac534aa1bb368a1acf9d8b313378dfdc787e), [`47cee3e`](https://github.com/mastra-ai/mastra/commit/47cee3e137fe39109cf7fffd2a8cf47b76dc702e), [`c80dc16`](https://github.com/mastra-ai/mastra/commit/c80dc16e113e6cc159f510ffde501ad4711b2189), [`47cee3e`](https://github.com/mastra-ai/mastra/commit/47cee3e137fe39109cf7fffd2a8cf47b76dc702e)]:
|
|
8
|
+
- @mastra/core@1.26.0-alpha.12
|
|
9
|
+
- @mastra/client-js@1.14.0-alpha.12
|
|
10
|
+
- @mastra/react@0.2.27-alpha.12
|
|
11
|
+
|
|
12
|
+
## 23.0.0-alpha.11
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- New filter UX on the studio's **Traces** and **Logs** pages. Click **+ Add Filter** to pick a property and narrow by value; active filters render as editable pills. Filter state lives in the URL so filtered views survive reloads and can be shared by link. **Save filters for next time** remembers a default; **Clear** and **Remove all filters** are one click away. ([#15512](https://github.com/mastra-ai/mastra/pull/15512))
|
|
17
|
+
|
|
18
|
+
- Updated dependencies [[`20f59b8`](https://github.com/mastra-ai/mastra/commit/20f59b876cf91199efbc49a0e36b391240708f08), [`e2687a7`](https://github.com/mastra-ai/mastra/commit/e2687a7408790c384563816a9a28ed06735684c9), [`e2687a7`](https://github.com/mastra-ai/mastra/commit/e2687a7408790c384563816a9a28ed06735684c9), [`8f1b280`](https://github.com/mastra-ai/mastra/commit/8f1b280b7fe6999ec654f160cb69c1a8719e7a57), [`12df98c`](https://github.com/mastra-ai/mastra/commit/12df98c4904643d9481f5c78f3bed443725b4c96)]:
|
|
19
|
+
- @mastra/core@1.26.0-alpha.11
|
|
20
|
+
- @mastra/client-js@1.14.0-alpha.11
|
|
21
|
+
- @mastra/react@0.2.27-alpha.11
|
|
22
|
+
|
|
3
23
|
## 23.0.0-alpha.10
|
|
4
24
|
|
|
5
25
|
### Minor Changes
|