@mastra/playground-ui 4.0.4-alpha.0 → 4.0.4-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/{LICENSE → LICENSE.md} +3 -1
- package/dist/components/ui/data-table.d.ts +1 -5
- package/dist/domains/agents/agents-table.d.ts +1 -2
- package/dist/domains/workflows/workflows-table.d.ts +1 -2
- package/dist/ds/components/Breadcrumb/Breadcrumb.d.ts +1 -1
- package/dist/ds/components/Button/Button.d.ts +1 -0
- package/dist/index.cjs.js +8038 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.es.js +171 -65
- package/dist/index.es.js.map +1 -1
- package/dist/tokens.cjs.js +85 -0
- package/dist/tokens.cjs.js.map +1 -0
- package/dist/tokens.d.ts +1 -0
- package/dist/tokens.es.js +73 -0
- package/dist/tokens.es.js.map +1 -0
- package/package.json +15 -5
package/{LICENSE → LICENSE.md}
RENAMED
|
@@ -36,10 +36,6 @@ interface DataTableProps<TData, TValue> {
|
|
|
36
36
|
* goto previous page
|
|
37
37
|
*/
|
|
38
38
|
gotoPreviousPage?: () => void;
|
|
39
|
-
/**
|
|
40
|
-
* table max height
|
|
41
|
-
*/
|
|
42
|
-
maxHeight?: string;
|
|
43
39
|
/**
|
|
44
40
|
* disable table container radius
|
|
45
41
|
* @default false
|
|
@@ -72,5 +68,5 @@ interface DataTableProps<TData, TValue> {
|
|
|
72
68
|
*/
|
|
73
69
|
emptyText?: string;
|
|
74
70
|
}
|
|
75
|
-
export declare const DataTable: <TData, TValue>({
|
|
71
|
+
export declare const DataTable: <TData, TValue>({ icon, withoutBorder, columns, data, className, pagination, gotoNextPage, gotoPreviousPage, withoutRadius, disabledFlex, emptyStateHeight, getRowId, selectedRowId, isLoading, emptyText, }: DataTableProps<TData, TValue>) => import("react/jsx-runtime").JSX.Element;
|
|
76
72
|
export {};
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ColumnDef } from '@tanstack/react-table';
|
|
2
2
|
|
|
3
|
-
export declare const AgentsTable: ({
|
|
4
|
-
title?: React.ReactNode;
|
|
3
|
+
export declare const AgentsTable: ({ agentsList, columns, isLoading, }: {
|
|
5
4
|
agentsList: any[];
|
|
6
5
|
columns: ColumnDef<any>[];
|
|
7
6
|
isLoading?: boolean;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { ColumnDef } from '@tanstack/react-table';
|
|
2
2
|
|
|
3
|
-
export declare const WorkflowsTable: ({
|
|
4
|
-
title?: React.ReactNode;
|
|
3
|
+
export declare const WorkflowsTable: ({ workflowsList, columns, isLoading, }: {
|
|
5
4
|
workflowsList: any[];
|
|
6
5
|
columns: ColumnDef<any>[];
|
|
7
6
|
isLoading?: boolean;
|