@mastra/playground-ui 20.0.0 → 20.0.1-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 +37 -0
- package/dist/index.cjs.js +18 -20
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.css +1 -22
- package/dist/index.es.js +18 -20
- package/dist/index.es.js.map +1 -1
- package/dist/src/ds/components/Tabs/tabs-list.d.ts +1 -2
- package/dist/src/ds/components/Tabs/tabs.stories.d.ts +0 -1
- package/package.json +7 -7
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
export type TabListProps = {
|
|
2
2
|
children: React.ReactNode;
|
|
3
3
|
className?: string;
|
|
4
|
-
variant?: 'default' | 'buttons';
|
|
5
4
|
alignment?: 'left' | 'full-width';
|
|
6
5
|
};
|
|
7
|
-
export declare const TabList: ({ children,
|
|
6
|
+
export declare const TabList: ({ children, alignment, className }: TabListProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -4,7 +4,6 @@ declare const meta: Meta<typeof Tabs>;
|
|
|
4
4
|
export default meta;
|
|
5
5
|
type Story = StoryObj<typeof Tabs>;
|
|
6
6
|
export declare const Default: Story;
|
|
7
|
-
export declare const ButtonsVariant: Story;
|
|
8
7
|
export declare const TwoTabs: Story;
|
|
9
8
|
export declare const ManyTabs: Story;
|
|
10
9
|
export declare const WithClosableTabs: Story;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mastra/playground-ui",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "20.0.
|
|
4
|
+
"version": "20.0.1-alpha.2",
|
|
5
5
|
"description": "Mastra Playground components",
|
|
6
6
|
"main": "dist/index.umd.js",
|
|
7
7
|
"module": "dist/index.es.js",
|
|
@@ -120,8 +120,8 @@
|
|
|
120
120
|
"tailwindcss": "^4.0.0",
|
|
121
121
|
"zod": "^3.25.0 || ^4.0.0",
|
|
122
122
|
"@mastra/ai-sdk": "^1.3.0",
|
|
123
|
-
"@mastra/client-js": "^1.11.
|
|
124
|
-
"@mastra/react": "0.2.
|
|
123
|
+
"@mastra/client-js": "^1.11.1-alpha.2",
|
|
124
|
+
"@mastra/react": "0.2.19-alpha.2",
|
|
125
125
|
"@mastra/schema-compat": "1.2.7"
|
|
126
126
|
},
|
|
127
127
|
"devDependencies": {
|
|
@@ -154,11 +154,11 @@
|
|
|
154
154
|
"vite-plugin-lib-inject-css": "^2.2.2",
|
|
155
155
|
"vitest": "4.0.18",
|
|
156
156
|
"zod": "^4.3.6",
|
|
157
|
-
"@internal/lint": "0.0.75",
|
|
158
|
-
"@mastra/client-js": "^1.11.0",
|
|
159
157
|
"@mastra/ai-sdk": "^1.3.0",
|
|
160
|
-
"@
|
|
161
|
-
"@mastra/core": "1.
|
|
158
|
+
"@internal/lint": "0.0.75",
|
|
159
|
+
"@mastra/core": "1.19.0-alpha.2",
|
|
160
|
+
"@mastra/react": "0.2.19-alpha.2",
|
|
161
|
+
"@mastra/client-js": "^1.11.1-alpha.2",
|
|
162
162
|
"@mastra/schema-compat": "1.2.7"
|
|
163
163
|
},
|
|
164
164
|
"homepage": "https://mastra.ai",
|