@uipath/apollo-wind 0.10.0 → 0.11.0-pr295.af4e744
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/dist/components/custom/canvas-studio.cjs +133 -0
- package/dist/components/custom/canvas-studio.d.ts +99 -0
- package/dist/components/custom/canvas-studio.js +93 -0
- package/dist/components/custom/canvas.cjs +44 -0
- package/dist/components/custom/canvas.d.ts +14 -0
- package/dist/components/custom/canvas.js +10 -0
- package/dist/components/custom/chat-composer.cjs +105 -0
- package/dist/components/custom/chat-composer.d.ts +15 -0
- package/dist/components/custom/chat-composer.js +71 -0
- package/dist/components/custom/chat-first-experience.cjs +87 -0
- package/dist/components/custom/chat-first-experience.d.ts +24 -0
- package/dist/components/custom/chat-first-experience.js +53 -0
- package/dist/components/custom/chat-prompt-suggestions.cjs +49 -0
- package/dist/components/custom/chat-prompt-suggestions.d.ts +18 -0
- package/dist/components/custom/chat-prompt-suggestions.js +15 -0
- package/dist/components/custom/chat-steps-view.cjs +308 -0
- package/dist/components/custom/chat-steps-view.d.ts +38 -0
- package/dist/components/custom/chat-steps-view.js +274 -0
- package/dist/components/custom/flow-node.cjs +76 -0
- package/dist/components/custom/flow-node.d.ts +20 -0
- package/dist/components/custom/flow-node.js +42 -0
- package/dist/components/custom/flow-properties-bar.cjs +103 -0
- package/dist/components/custom/flow-properties-bar.d.ts +21 -0
- package/dist/components/custom/flow-properties-bar.js +69 -0
- package/dist/components/custom/flow-properties-expanded.cjs +328 -0
- package/dist/components/custom/flow-properties-expanded.d.ts +21 -0
- package/dist/components/custom/flow-properties-expanded.js +294 -0
- package/dist/components/custom/flow-properties-simple.cjs +364 -0
- package/dist/components/custom/flow-properties-simple.d.ts +62 -0
- package/dist/components/custom/flow-properties-simple.js +330 -0
- package/dist/components/custom/flow-properties.cjs +56 -0
- package/dist/components/custom/flow-properties.d.ts +28 -0
- package/dist/components/custom/flow-properties.js +22 -0
- package/dist/components/custom/global-header.cjs +422 -0
- package/dist/components/custom/global-header.d.ts +38 -0
- package/dist/components/custom/global-header.js +388 -0
- package/dist/components/custom/grid-maestro.cjs +62 -0
- package/dist/components/custom/grid-maestro.d.ts +19 -0
- package/dist/components/custom/grid-maestro.js +22 -0
- package/dist/components/custom/page-header.cjs +92 -0
- package/dist/components/custom/page-header.d.ts +43 -0
- package/dist/components/custom/page-header.js +58 -0
- package/dist/components/custom/panel-delegate.cjs +285 -0
- package/dist/components/custom/panel-delegate.d.ts +34 -0
- package/dist/components/custom/panel-delegate.js +251 -0
- package/dist/components/custom/panel-flow.cjs +262 -0
- package/dist/components/custom/panel-flow.d.ts +38 -0
- package/dist/components/custom/panel-flow.js +225 -0
- package/dist/components/custom/panel-maestro.cjs +74 -0
- package/dist/components/custom/panel-maestro.d.ts +30 -0
- package/dist/components/custom/panel-maestro.js +40 -0
- package/dist/components/custom/panel-studio.cjs +122 -0
- package/dist/components/custom/panel-studio.d.ts +48 -0
- package/dist/components/custom/panel-studio.js +85 -0
- package/dist/components/custom/toolbar-canvas.cjs +124 -0
- package/dist/components/custom/toolbar-canvas.d.ts +15 -0
- package/dist/components/custom/toolbar-canvas.js +90 -0
- package/dist/components/custom/toolbar-view.cjs +121 -0
- package/dist/components/custom/toolbar-view.d.ts +14 -0
- package/dist/components/custom/toolbar-view.js +87 -0
- package/dist/components/custom/viewport-guard.cjs +92 -0
- package/dist/components/custom/viewport-guard.d.ts +23 -0
- package/dist/components/custom/viewport-guard.js +55 -0
- package/dist/components/forms/field-renderer.cjs +3 -1
- package/dist/components/forms/field-renderer.js +3 -1
- package/dist/components/forms/form-designer.cjs +13 -2
- package/dist/components/forms/form-designer.js +13 -2
- package/dist/components/forms/rules-engine.d.ts +1 -1
- package/dist/components/ui/breadcrumb.cjs +1 -2
- package/dist/components/ui/breadcrumb.js +1 -2
- package/dist/components/ui/button-group.cjs +5 -3
- package/dist/components/ui/button-group.d.ts +2 -2
- package/dist/components/ui/button-group.js +5 -3
- package/dist/components/ui/button.cjs +3 -3
- package/dist/components/ui/button.js +3 -3
- package/dist/components/ui/chart.cjs +223 -0
- package/dist/components/ui/chart.d.ts +40 -0
- package/dist/components/ui/chart.js +174 -0
- package/dist/components/ui/code-block.cjs +258 -0
- package/dist/components/ui/code-block.d.ts +48 -0
- package/dist/components/ui/code-block.js +207 -0
- package/dist/components/ui/data-table.cjs +22 -4
- package/dist/components/ui/data-table.d.ts +5 -2
- package/dist/components/ui/data-table.js +23 -5
- package/dist/components/ui/editable-cell.cjs +3 -10
- package/dist/components/ui/editable-cell.js +3 -10
- package/dist/components/ui/empty-state.cjs +17 -6
- package/dist/components/ui/empty-state.d.ts +7 -0
- package/dist/components/ui/empty-state.js +17 -6
- package/dist/components/ui/file-upload.cjs +8 -0
- package/dist/components/ui/file-upload.js +8 -0
- package/dist/components/ui/index.cjs +289 -149
- package/dist/components/ui/index.d.ts +2 -3
- package/dist/components/ui/index.js +2 -3
- package/dist/components/ui/multi-select.cjs +3 -10
- package/dist/components/ui/multi-select.js +3 -10
- package/dist/components/ui/pagination.cjs +0 -1
- package/dist/components/ui/pagination.js +0 -1
- package/dist/components/ui/resizable.d.ts +1 -1
- package/dist/components/ui/tree-view.cjs +1117 -0
- package/dist/components/ui/tree-view.d.ts +95 -0
- package/dist/components/ui/tree-view.js +1083 -0
- package/dist/foundation/Future/colors.cjs +92 -0
- package/dist/foundation/Future/colors.d.ts +132 -0
- package/dist/foundation/Future/colors.js +43 -0
- package/dist/foundation/Future/radius.cjs +46 -0
- package/dist/foundation/Future/radius.d.ts +33 -0
- package/dist/foundation/Future/radius.js +12 -0
- package/dist/foundation/Future/responsive.cjs +49 -0
- package/dist/foundation/Future/responsive.d.ts +40 -0
- package/dist/foundation/Future/responsive.js +12 -0
- package/dist/foundation/Future/shadows.cjs +48 -0
- package/dist/foundation/Future/shadows.d.ts +29 -0
- package/dist/foundation/Future/shadows.js +11 -0
- package/dist/foundation/Future/spacing.cjs +71 -0
- package/dist/foundation/Future/spacing.d.ts +80 -0
- package/dist/foundation/Future/spacing.js +31 -0
- package/dist/foundation/Future/strokes.cjs +59 -0
- package/dist/foundation/Future/strokes.d.ts +49 -0
- package/dist/foundation/Future/strokes.js +19 -0
- package/dist/foundation/Future/types.cjs +18 -0
- package/dist/foundation/Future/types.d.ts +25 -0
- package/dist/foundation/Future/types.js +0 -0
- package/dist/foundation/Future/typography.cjs +79 -0
- package/dist/foundation/Future/typography.d.ts +86 -0
- package/dist/foundation/Future/typography.js +33 -0
- package/dist/index.cjs +131 -221
- package/dist/index.d.ts +4 -3
- package/dist/index.js +3 -4
- package/dist/src/foundation/Future/themes.css +279 -0
- package/dist/styles.css +1941 -605
- package/dist/tailwind.css +874 -87
- package/dist/templates/Admin/settings-admin.d.ts +5 -0
- package/dist/templates/Admin/template-admin.d.ts +86 -0
- package/dist/templates/Delegate/template-delegate.d.ts +26 -0
- package/dist/templates/EmptyErrors/error-components.d.ts +3 -0
- package/dist/templates/Experiments/ideas-AnimatedGradientText.d.ts +23 -0
- package/dist/templates/Flow/template-flow.d.ts +57 -0
- package/dist/templates/Maestro/template-maestro.d.ts +52 -0
- package/dist/templates/Studio/template-studio.d.ts +102 -0
- package/dist/templates/{vscode-example.d.ts → VisualStudio/shell.d.ts} +1 -1
- package/package.json +12 -1
- package/dist/components/ui/menubar.cjs +0 -210
- package/dist/components/ui/menubar.d.ts +0 -28
- package/dist/components/ui/menubar.js +0 -131
- package/dist/components/ui/navigation-menu.cjs +0 -122
- package/dist/components/ui/navigation-menu.d.ts +0 -12
- package/dist/components/ui/navigation-menu.js +0 -64
- package/dist/examples/admin-layout-example.cjs +0 -490
- package/dist/examples/admin-layout-example.d.ts +0 -92
- package/dist/examples/admin-layout-example.js +0 -411
- package/dist/examples/app-shell-example.cjs +0 -452
- package/dist/examples/app-shell-example.d.ts +0 -52
- package/dist/examples/app-shell-example.js +0 -418
- package/dist/examples/dashboard-example.cjs +0 -590
- package/dist/examples/dashboard-example.d.ts +0 -11
- package/dist/examples/dashboard-example.js +0 -556
- package/dist/examples/data-management-example.cjs +0 -584
- package/dist/examples/data-management-example.d.ts +0 -1
- package/dist/examples/data-management-example.js +0 -550
- package/dist/examples/flow-editor-layout-example.cjs +0 -309
- package/dist/examples/flow-editor-layout-example.d.ts +0 -22
- package/dist/examples/flow-editor-layout-example.js +0 -269
- package/dist/examples/flow-start-example.cjs +0 -467
- package/dist/examples/flow-start-example.d.ts +0 -30
- package/dist/examples/flow-start-example.js +0 -433
- package/dist/examples/form-builder-example.cjs +0 -674
- package/dist/examples/form-builder-example.js +0 -640
- package/dist/examples/new-project-example.cjs +0 -550
- package/dist/examples/new-project-example.d.ts +0 -30
- package/dist/examples/new-project-example.js +0 -516
- package/dist/examples/settings-example.cjs +0 -864
- package/dist/examples/settings-example.d.ts +0 -1
- package/dist/examples/settings-example.js +0 -830
- package/dist/examples/vscode-example.cjs +0 -340
- package/dist/examples/vscode-example.d.ts +0 -80
- package/dist/examples/vscode-example.js +0 -270
- package/dist/templates/admin-layout-example.d.ts +0 -92
- package/dist/templates/app-shell-example.d.ts +0 -52
- package/dist/templates/dashboard-example.d.ts +0 -11
- package/dist/templates/data-management-example.d.ts +0 -1
- package/dist/templates/flow-editor-layout-example.d.ts +0 -22
- package/dist/templates/flow-start-example.d.ts +0 -30
- package/dist/templates/form-builder-example.d.ts +0 -1
- package/dist/templates/new-project-example.d.ts +0 -30
- package/dist/templates/settings-example.d.ts +0 -1
- /package/dist/{examples → templates/Forms}/form-builder-example.d.ts +0 -0
|
@@ -1,92 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
import { DataTable, DataTableColumnHeader, DataTableSelectColumn } from '../components/ui/data-table';
|
|
3
|
-
interface AdminLayoutProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
4
|
-
children: React.ReactNode;
|
|
5
|
-
}
|
|
6
|
-
export declare function AdminLayout({ className, children, ...props }: AdminLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
interface AdminHeaderProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
8
|
-
logo?: React.ReactNode;
|
|
9
|
-
title?: string;
|
|
10
|
-
children?: React.ReactNode;
|
|
11
|
-
}
|
|
12
|
-
export declare function AdminHeader({ className, logo, title, children, ...props }: AdminHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
interface AdminHeaderActionsProps {
|
|
14
|
-
notifications?: number;
|
|
15
|
-
avatar?: React.ReactNode;
|
|
16
|
-
}
|
|
17
|
-
export declare function AdminHeaderActions({ notifications, avatar }: AdminHeaderActionsProps): import("react/jsx-runtime").JSX.Element;
|
|
18
|
-
interface AdminContentProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
19
|
-
children: React.ReactNode;
|
|
20
|
-
}
|
|
21
|
-
export declare function AdminContent({ className, children, ...props }: AdminContentProps): import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
interface AdminSidebarProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
23
|
-
children: React.ReactNode;
|
|
24
|
-
width?: number;
|
|
25
|
-
}
|
|
26
|
-
export declare function AdminSidebar({ className, children, width, ...props }: AdminSidebarProps): import("react/jsx-runtime").JSX.Element;
|
|
27
|
-
interface AdminSidebarHeaderProps {
|
|
28
|
-
title: string;
|
|
29
|
-
onSearch?: () => void;
|
|
30
|
-
onAdd?: () => void;
|
|
31
|
-
}
|
|
32
|
-
export declare function AdminSidebarHeader({ title, onSearch, onAdd }: AdminSidebarHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
33
|
-
interface AdminNavItem {
|
|
34
|
-
id: string;
|
|
35
|
-
label: string;
|
|
36
|
-
icon?: React.ReactNode;
|
|
37
|
-
badge?: React.ReactNode;
|
|
38
|
-
}
|
|
39
|
-
interface AdminSidebarNavProps {
|
|
40
|
-
items: AdminNavItem[];
|
|
41
|
-
selectedId?: string;
|
|
42
|
-
onSelect?: (id: string) => void;
|
|
43
|
-
}
|
|
44
|
-
export declare function AdminSidebarNav({ items, selectedId, onSelect }: AdminSidebarNavProps): import("react/jsx-runtime").JSX.Element;
|
|
45
|
-
interface AdminMainProps extends React.HTMLAttributes<HTMLDivElement> {
|
|
46
|
-
children: React.ReactNode;
|
|
47
|
-
}
|
|
48
|
-
export declare function AdminMain({ className, children, ...props }: AdminMainProps): import("react/jsx-runtime").JSX.Element;
|
|
49
|
-
interface BreadcrumbItemType {
|
|
50
|
-
label: string;
|
|
51
|
-
href?: string;
|
|
52
|
-
}
|
|
53
|
-
interface AdminBreadcrumbProps {
|
|
54
|
-
items: BreadcrumbItemType[];
|
|
55
|
-
}
|
|
56
|
-
export declare function AdminBreadcrumb({ items }: AdminBreadcrumbProps): import("react/jsx-runtime").JSX.Element;
|
|
57
|
-
interface AdminPageHeaderProps {
|
|
58
|
-
title: string;
|
|
59
|
-
breadcrumb?: BreadcrumbItemType[];
|
|
60
|
-
actions?: React.ReactNode;
|
|
61
|
-
tabs?: {
|
|
62
|
-
value: string;
|
|
63
|
-
label: string;
|
|
64
|
-
}[];
|
|
65
|
-
activeTab?: string;
|
|
66
|
-
onTabChange?: (value: string) => void;
|
|
67
|
-
}
|
|
68
|
-
export declare function AdminPageHeader({ title, breadcrumb, actions, tabs, activeTab, onTabChange, }: AdminPageHeaderProps): import("react/jsx-runtime").JSX.Element;
|
|
69
|
-
interface AdminToolbarProps {
|
|
70
|
-
children?: React.ReactNode;
|
|
71
|
-
actions?: React.ReactNode;
|
|
72
|
-
}
|
|
73
|
-
export declare function AdminToolbar({ children, actions }: AdminToolbarProps): import("react/jsx-runtime").JSX.Element;
|
|
74
|
-
interface AdminFilterProps {
|
|
75
|
-
label: string;
|
|
76
|
-
value: string;
|
|
77
|
-
options: {
|
|
78
|
-
value: string;
|
|
79
|
-
label: string;
|
|
80
|
-
}[];
|
|
81
|
-
onValueChange?: (value: string) => void;
|
|
82
|
-
}
|
|
83
|
-
export declare function AdminFilter({ label, value, options, onValueChange }: AdminFilterProps): import("react/jsx-runtime").JSX.Element;
|
|
84
|
-
export { DataTable as AdminTable, DataTableColumnHeader, DataTableSelectColumn };
|
|
85
|
-
interface AdminPaginationProps {
|
|
86
|
-
total: number;
|
|
87
|
-
page: number;
|
|
88
|
-
pageSize: number;
|
|
89
|
-
onPageChange?: (page: number) => void;
|
|
90
|
-
onPageSizeChange?: (size: number) => void;
|
|
91
|
-
}
|
|
92
|
-
export declare function AdminPagination({ total, page, pageSize, onPageChange, onPageSizeChange, }: AdminPaginationProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,52 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export interface AppShellExampleProps {
|
|
3
|
-
className?: string;
|
|
4
|
-
logo?: React.ReactNode;
|
|
5
|
-
tenant?: string;
|
|
6
|
-
user?: {
|
|
7
|
-
name: string;
|
|
8
|
-
email: string;
|
|
9
|
-
avatar?: string;
|
|
10
|
-
};
|
|
11
|
-
navigation?: Array<{
|
|
12
|
-
label: string;
|
|
13
|
-
href?: string;
|
|
14
|
-
active?: boolean;
|
|
15
|
-
badge?: string;
|
|
16
|
-
}>;
|
|
17
|
-
heroSection?: {
|
|
18
|
-
title: React.ReactNode;
|
|
19
|
-
description?: string;
|
|
20
|
-
cta?: {
|
|
21
|
-
label: string;
|
|
22
|
-
onClick?: () => void;
|
|
23
|
-
};
|
|
24
|
-
illustration?: React.ReactNode;
|
|
25
|
-
};
|
|
26
|
-
sections?: Array<{
|
|
27
|
-
title: string;
|
|
28
|
-
viewAllLink?: {
|
|
29
|
-
label: string;
|
|
30
|
-
onClick?: () => void;
|
|
31
|
-
};
|
|
32
|
-
items: Array<{
|
|
33
|
-
id: string;
|
|
34
|
-
title: string;
|
|
35
|
-
description?: string;
|
|
36
|
-
badge?: {
|
|
37
|
-
label: string;
|
|
38
|
-
variant?: 'default' | 'secondary' | 'destructive' | 'outline';
|
|
39
|
-
};
|
|
40
|
-
footer?: string;
|
|
41
|
-
action?: {
|
|
42
|
-
label: string;
|
|
43
|
-
onClick?: () => void;
|
|
44
|
-
};
|
|
45
|
-
}>;
|
|
46
|
-
}>;
|
|
47
|
-
sidebar?: {
|
|
48
|
-
title: string;
|
|
49
|
-
content: React.ReactNode;
|
|
50
|
-
};
|
|
51
|
-
}
|
|
52
|
-
export declare function AppShellExample({ className, logo, tenant, user, navigation, heroSection, sections, sidebar, }: AppShellExampleProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export interface DashboardExampleProps {
|
|
2
|
-
className?: string;
|
|
3
|
-
title?: string;
|
|
4
|
-
description?: string;
|
|
5
|
-
user?: {
|
|
6
|
-
name: string;
|
|
7
|
-
email: string;
|
|
8
|
-
avatar?: string;
|
|
9
|
-
};
|
|
10
|
-
}
|
|
11
|
-
export declare function DashboardExample({ className, title, description, user, }: DashboardExampleProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function DataManagementExample(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export interface SidebarPanelConfig {
|
|
3
|
-
id: string;
|
|
4
|
-
icon: React.ReactNode;
|
|
5
|
-
label: string;
|
|
6
|
-
}
|
|
7
|
-
export interface FlowEditorLayoutProps {
|
|
8
|
-
className?: string;
|
|
9
|
-
sidebarOptions?: SidebarPanelConfig[];
|
|
10
|
-
sidebarContent?: React.ReactNode;
|
|
11
|
-
activeSidebarId?: string;
|
|
12
|
-
sidebarOpen?: boolean;
|
|
13
|
-
onSidebarChange?: (panelId: string) => void;
|
|
14
|
-
onSidebarOpenChange?: (open: boolean) => void;
|
|
15
|
-
mainContent?: React.ReactNode;
|
|
16
|
-
bottomContent?: React.ReactNode;
|
|
17
|
-
bottomOpen?: boolean;
|
|
18
|
-
}
|
|
19
|
-
export declare function FlowEditorLayout({ className, sidebarOptions, sidebarContent, activeSidebarId, sidebarOpen, onSidebarChange, onSidebarOpenChange, mainContent, bottomContent, bottomOpen, }: FlowEditorLayoutProps): import("react/jsx-runtime").JSX.Element;
|
|
20
|
-
declare function CanvasToolbar(): import("react/jsx-runtime").JSX.Element;
|
|
21
|
-
declare function PublishToolbar(): import("react/jsx-runtime").JSX.Element;
|
|
22
|
-
export { CanvasToolbar, PublishToolbar };
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import * as React from 'react';
|
|
2
|
-
export interface ProcessOption {
|
|
3
|
-
id: string;
|
|
4
|
-
title: string;
|
|
5
|
-
description: string;
|
|
6
|
-
icon: React.ReactNode;
|
|
7
|
-
badge?: string;
|
|
8
|
-
badgeVariant?: 'default' | 'secondary' | 'destructive' | 'outline';
|
|
9
|
-
onClick?: () => void;
|
|
10
|
-
}
|
|
11
|
-
export interface RecentProject {
|
|
12
|
-
id: string;
|
|
13
|
-
name: string;
|
|
14
|
-
type: 'flow' | 'bpmn' | 'case' | 'autopilot';
|
|
15
|
-
lastModified: string;
|
|
16
|
-
status?: 'draft' | 'published' | 'archived';
|
|
17
|
-
}
|
|
18
|
-
export type ViewMode = 'cards' | 'table';
|
|
19
|
-
export interface FlowStartExampleProps {
|
|
20
|
-
className?: string;
|
|
21
|
-
title?: string;
|
|
22
|
-
subtitle?: string;
|
|
23
|
-
processOptions?: ProcessOption[];
|
|
24
|
-
recentProjects?: RecentProject[];
|
|
25
|
-
showSkeleton?: boolean;
|
|
26
|
-
defaultViewMode?: ViewMode;
|
|
27
|
-
onOptionSelect?: (optionId: string) => void;
|
|
28
|
-
onProjectSelect?: (projectId: string) => void;
|
|
29
|
-
}
|
|
30
|
-
export declare function FlowStartExample({ className, title, subtitle, processOptions, recentProjects, showSkeleton, defaultViewMode, onOptionSelect, onProjectSelect, }: FlowStartExampleProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function FormBuilderExample(): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
export interface ProjectExample {
|
|
2
|
-
id: string;
|
|
3
|
-
name: string;
|
|
4
|
-
description: string;
|
|
5
|
-
usageCount: number;
|
|
6
|
-
category?: string;
|
|
7
|
-
tools?: string[];
|
|
8
|
-
onUse?: () => void;
|
|
9
|
-
}
|
|
10
|
-
export interface NewProjectExampleProps {
|
|
11
|
-
className?: string;
|
|
12
|
-
title?: string;
|
|
13
|
-
subtitle?: string;
|
|
14
|
-
templates?: ProjectExample[];
|
|
15
|
-
categories?: Array<{
|
|
16
|
-
id: string;
|
|
17
|
-
label: string;
|
|
18
|
-
}>;
|
|
19
|
-
tools?: Array<{
|
|
20
|
-
id: string;
|
|
21
|
-
label: string;
|
|
22
|
-
}>;
|
|
23
|
-
autopilot?: {
|
|
24
|
-
placeholder?: string;
|
|
25
|
-
disclaimer?: string;
|
|
26
|
-
onSubmit?: (prompt: string) => void;
|
|
27
|
-
};
|
|
28
|
-
onCreateBlank?: () => void;
|
|
29
|
-
}
|
|
30
|
-
export declare function NewProjectExample({ className, title, subtitle, templates, categories, tools, autopilot, onCreateBlank, }: NewProjectExampleProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export declare function SettingsExample(): import("react/jsx-runtime").JSX.Element;
|
|
File without changes
|