@mastra/playground-ui 7.0.0-beta.23 → 7.0.0-beta.24

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.
Files changed (40) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/dist/index.cjs.js +591 -238
  3. package/dist/index.cjs.js.map +1 -1
  4. package/dist/index.css +10 -10
  5. package/dist/index.es.js +584 -231
  6. package/dist/index.es.js.map +1 -1
  7. package/dist/spacings-Ddc7umGk.js +196 -0
  8. package/dist/spacings-Ddc7umGk.js.map +1 -0
  9. package/dist/spacings-bCnRJAUT.cjs +206 -0
  10. package/dist/spacings-bCnRJAUT.cjs.map +1 -0
  11. package/dist/src/ds/components/Alert/Alert.d.ts +2 -1
  12. package/dist/src/ds/components/Avatar/Avatar.d.ts +2 -1
  13. package/dist/src/ds/components/Badge/Badge.d.ts +1 -1
  14. package/dist/src/ds/components/Button/Button.d.ts +1 -1
  15. package/dist/src/ds/components/Card/Card.d.ts +26 -0
  16. package/dist/src/ds/components/Card/index.d.ts +2 -0
  17. package/dist/src/ds/components/Collapsible/collapsible.d.ts +4 -3
  18. package/dist/src/ds/components/EmptyState/EmptyState.d.ts +10 -9
  19. package/dist/src/ds/components/EmptyState/index.d.ts +2 -1
  20. package/dist/src/ds/components/Input/input.d.ts +2 -0
  21. package/dist/src/ds/components/Kbd/kbd.d.ts +2 -1
  22. package/dist/src/ds/components/Notification/notification.d.ts +1 -1
  23. package/dist/src/ds/components/Spinner/spinner.d.ts +2 -1
  24. package/dist/src/ds/components/StatusBadge/StatusBadge.d.ts +13 -0
  25. package/dist/src/ds/components/StatusBadge/index.d.ts +2 -0
  26. package/dist/src/ds/primitives/form-element.d.ts +3 -2
  27. package/dist/src/ds/primitives/transitions.d.ts +22 -0
  28. package/dist/src/ds/tokens/animations.d.ts +5 -0
  29. package/dist/src/ds/tokens/colors.d.ts +2 -1
  30. package/dist/src/ds/tokens/index.d.ts +2 -0
  31. package/dist/src/ds/tokens/shadows.d.ts +14 -0
  32. package/dist/tailwind.preset.cjs.js +38 -10
  33. package/dist/tailwind.preset.cjs.js.map +1 -1
  34. package/dist/tailwind.preset.es.js +29 -1
  35. package/dist/tailwind.preset.es.js.map +1 -1
  36. package/dist/tokens.cjs.js +17 -175
  37. package/dist/tokens.cjs.js.map +1 -1
  38. package/dist/tokens.es.js +8 -169
  39. package/dist/tokens.es.js.map +1 -1
  40. package/package.json +8 -8
package/CHANGELOG.md CHANGED
@@ -1,5 +1,28 @@
1
1
  # @mastra/playground-ui
2
2
 
3
+ ## 7.0.0-beta.24
4
+
5
+ ### Minor Changes
6
+
7
+ - Enhance design system components with visual polish and micro-interactions. ([#12045](https://github.com/mastra-ai/mastra/pull/12045))
8
+
9
+ Phase 2 of DS enhancement covering 40+ components:
10
+ - **Form Controls**: Checkbox, RadioGroup, Switch, Slider, Combobox with focus rings, hover states, and smooth transitions
11
+ - **Navigation**: Tabs with animated indicator, Steps with progress animation, Collapsible with icon rotation
12
+ - **Feedback**: Alert with entrance animation, Notification with slide animations, Skeleton with gradient shimmer
13
+ - **Display**: Badge with semantic variants, Avatar with interactive mode, StatusBadge enhancements
14
+ - **Layout**: SideDialog with backdrop blur, ScrollArea with visibility transitions
15
+
16
+ All components now use consistent design tokens (duration-normal, ease-out-custom, shadow-focus-ring) and GPU-accelerated properties for smooth 60fps animations.
17
+
18
+ ### Patch Changes
19
+
20
+ - Updated dependencies [[`1dbd8c7`](https://github.com/mastra-ai/mastra/commit/1dbd8c729fb6536ec52f00064d76b80253d346e9), [`c59e13c`](https://github.com/mastra-ai/mastra/commit/c59e13c7688284bd96b2baee3e314335003548de), [`f93e2f5`](https://github.com/mastra-ai/mastra/commit/f93e2f575e775e627e5c1927cefdd72db07858ed), [`461e448`](https://github.com/mastra-ai/mastra/commit/461e448852fe999506a6046d50b1efc27d8aa378), [`f9a2509`](https://github.com/mastra-ai/mastra/commit/f9a25093ea72d210a5e52cfcb3bcc8b5e02dc25c), [`64554f4`](https://github.com/mastra-ai/mastra/commit/64554f48f26f028b738a04576d34ff992983529e), [`7a010c5`](https://github.com/mastra-ai/mastra/commit/7a010c56b846a313a49ae42fccd3d8de2b9f292d)]:
21
+ - @mastra/core@1.0.0-beta.24
22
+ - @mastra/schema-compat@1.0.0-beta.7
23
+ - @mastra/client-js@1.0.0-beta.24
24
+ - @mastra/react@1.0.0-beta.24
25
+
3
26
  ## 7.0.0-beta.23
4
27
 
5
28
  ### Patch Changes