@mastra/playground-ui 30.0.0 → 30.0.1-alpha.0

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.
@@ -76,9 +76,7 @@ export * from './ds/components/Chip';
76
76
  export * from './ds/components/Tree';
77
77
  export * from './ds/components/DataFilter';
78
78
  export * from './ds/components/DataList';
79
- export * from './ds/components/EntityList';
80
79
  export * from './ds/components/LogsDataList';
81
- export * from './ds/components/EntityListPageLayout';
82
80
  export * from './ds/components/PageLayout';
83
81
  export * from './ds/components/ListSearch';
84
82
  export * from './ds/components/ErrorBoundary';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@mastra/playground-ui",
3
3
  "type": "module",
4
- "version": "30.0.0",
4
+ "version": "30.0.1-alpha.0",
5
5
  "description": "Mastra Playground components",
6
6
  "main": "dist/index.umd.js",
7
7
  "module": "dist/index.es.js",
@@ -129,10 +129,10 @@
129
129
  "vite-plugin-dts": "^4.5.4",
130
130
  "vite-plugin-lib-inject-css": "^2.2.2",
131
131
  "vitest": "4.1.5",
132
- "@internal/lint": "0.0.98",
133
132
  "@mastra/client-js": "^1.21.0",
134
- "@mastra/react": "0.4.1",
135
- "@mastra/core": "1.37.0"
133
+ "@mastra/core": "1.37.0",
134
+ "@internal/lint": "0.0.98",
135
+ "@mastra/react": "0.4.1"
136
136
  },
137
137
  "homepage": "https://mastra.ai",
138
138
  "repository": {
@@ -1,9 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export type EntityListCellProps = {
3
- children: ReactNode;
4
- className?: string;
5
- };
6
- export declare function EntityListCell({ children, className }: EntityListCellProps): import("react/jsx-runtime").JSX.Element;
7
- export declare function EntityListTextCell({ children, className }: EntityListCellProps): import("react/jsx-runtime").JSX.Element;
8
- export declare function EntityListNameCell({ children, className }: EntityListCellProps): import("react/jsx-runtime").JSX.Element;
9
- export declare function EntityListDescriptionCell({ children, className }: EntityListCellProps): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +0,0 @@
1
- export type EntityListNoMatchProps = {
2
- message?: string;
3
- className?: string;
4
- };
5
- export declare function EntityListNoMatch({ message, className }: EntityListNoMatchProps): import("react/jsx-runtime").JSX.Element;
@@ -1,7 +0,0 @@
1
- export type EntityListPaginationProps = {
2
- currentPage?: number;
3
- hasMore?: boolean;
4
- onNextPage?: () => void;
5
- onPrevPage?: () => void;
6
- };
7
- export declare function EntityListPagination({ currentPage, hasMore, onNextPage, onPrevPage }: EntityListPaginationProps): import("react/jsx-runtime").JSX.Element;
@@ -1,7 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export type EntityListRootProps = {
3
- children: ReactNode;
4
- columns: string;
5
- className?: string;
6
- };
7
- export declare function EntityListRoot({ children, columns, className }: EntityListRootProps): import("react/jsx-runtime").JSX.Element;
@@ -1,9 +0,0 @@
1
- import { ReactNode } from 'react';
2
- import { LinkComponent } from '../../types/link-component';
3
- export type EntityListRowLinkProps = {
4
- children: ReactNode;
5
- to: string;
6
- className?: string;
7
- LinkComponent: LinkComponent;
8
- };
9
- export declare function EntityListRowLink({ children, to, className, LinkComponent: Link }: EntityListRowLinkProps): import("react/jsx-runtime").JSX.Element;
@@ -1,8 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export type EntityListRowProps = {
3
- children: ReactNode;
4
- className?: string;
5
- onClick?: () => void;
6
- selected?: boolean;
7
- };
8
- export declare function EntityListRow({ children, className, onClick, selected }: EntityListRowProps): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export type EntityListRowsProps = {
3
- children: ReactNode;
4
- className?: string;
5
- };
6
- export declare function EntityListRows({ children, className }: EntityListRowsProps): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +0,0 @@
1
- export type EntityListSkeletonProps = {
2
- columns: string;
3
- numberOfRows?: number;
4
- };
5
- export declare function EntityListSkeleton({ columns, numberOfRows }: EntityListSkeletonProps): import("react/jsx-runtime").JSX.Element;
@@ -1,20 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export type EntityListTopCellProps = {
3
- children: ReactNode;
4
- className?: string;
5
- };
6
- export declare const EntityListTopCell: import('react').ForwardRefExoticComponent<EntityListTopCellProps & import('react').RefAttributes<HTMLSpanElement>>;
7
- export type EntityListTopCellWithTooltipProps = {
8
- children: ReactNode;
9
- tooltip: string;
10
- className?: string;
11
- };
12
- export declare function EntityListTopCellWithTooltip({ children, tooltip, className }: EntityListTopCellWithTooltipProps): import("react/jsx-runtime").JSX.Element;
13
- export type EntityListTopCellSmartProps = {
14
- long: ReactNode;
15
- short: ReactNode;
16
- tooltip?: string;
17
- breakpoint?: 'sm' | 'md' | 'lg' | 'xl' | '2xl';
18
- className?: string;
19
- };
20
- export declare function EntityListTopCellSmart({ long, short, tooltip, breakpoint, className, }: EntityListTopCellSmartProps): import("react/jsx-runtime").JSX.Element;
@@ -1,6 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export type EntityListTopProps = {
3
- children: ReactNode;
4
- className?: string;
5
- };
6
- export declare function EntityListTop({ children, className }: EntityListTopProps): import("react/jsx-runtime").JSX.Element;
@@ -1,24 +0,0 @@
1
- import { EntityListCell, EntityListTextCell, EntityListNameCell, EntityListDescriptionCell } from './entity-list-cells';
2
- import { EntityListNoMatch } from './entity-list-no-match';
3
- import { EntityListPagination } from './entity-list-pagination';
4
- import { EntityListRoot } from './entity-list-root';
5
- import { EntityListRow } from './entity-list-row';
6
- import { EntityListRowLink } from './entity-list-row-link';
7
- import { EntityListRows } from './entity-list-rows';
8
- import { EntityListTop } from './entity-list-top';
9
- import { EntityListTopCellWithTooltip, EntityListTopCellSmart } from './entity-list-top-cell';
10
- export declare const EntityList: typeof EntityListRoot & {
11
- Top: typeof EntityListTop;
12
- TopCell: import('react').ForwardRefExoticComponent<import('./entity-list-top-cell').EntityListTopCellProps & import('react').RefAttributes<HTMLSpanElement>>;
13
- TopCellWithTooltip: typeof EntityListTopCellWithTooltip;
14
- TopCellSmart: typeof EntityListTopCellSmart;
15
- Rows: typeof EntityListRows;
16
- Row: typeof EntityListRow;
17
- RowLink: typeof EntityListRowLink;
18
- Cell: typeof EntityListCell;
19
- TextCell: typeof EntityListTextCell;
20
- NameCell: typeof EntityListNameCell;
21
- DescriptionCell: typeof EntityListDescriptionCell;
22
- NoMatch: typeof EntityListNoMatch;
23
- Pagination: typeof EntityListPagination;
24
- };
@@ -1,2 +0,0 @@
1
- export * from './entity-list';
2
- export * from './entity-list-skeleton';
@@ -1,5 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export declare function EntityListPageLayoutRoot({ children, className }: {
3
- children: ReactNode;
4
- className?: string;
5
- }): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +0,0 @@
1
- import { ReactNode } from 'react';
2
- export declare function EntityListPageLayoutTop({ children, className }: {
3
- children: ReactNode;
4
- className?: string;
5
- }): import("react/jsx-runtime").JSX.Element;
@@ -1,5 +0,0 @@
1
- import { EntityListPageLayoutRoot } from './entity-list-page-layout-root';
2
- import { EntityListPageLayoutTop } from './entity-list-page-layout-top';
3
- export declare const EntityListPageLayout: typeof EntityListPageLayoutRoot & {
4
- Top: typeof EntityListPageLayoutTop;
5
- };
@@ -1 +0,0 @@
1
- export { EntityListPageLayout } from './entity-list-page-layout';