@uipath/apollo-wind 0.9.1 → 0.10.0-pr219.61d64eb

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 (158) hide show
  1. package/dist/components/custom/canvas.cjs +44 -0
  2. package/dist/components/custom/canvas.d.ts +14 -0
  3. package/dist/components/custom/canvas.js +10 -0
  4. package/dist/components/custom/chat-composer.cjs +105 -0
  5. package/dist/components/custom/chat-composer.d.ts +15 -0
  6. package/dist/components/custom/chat-composer.js +71 -0
  7. package/dist/components/custom/chat-first-experience.cjs +87 -0
  8. package/dist/components/custom/chat-first-experience.d.ts +24 -0
  9. package/dist/components/custom/chat-first-experience.js +53 -0
  10. package/dist/components/custom/chat-prompt-suggestions.cjs +48 -0
  11. package/dist/components/custom/chat-prompt-suggestions.d.ts +18 -0
  12. package/dist/components/custom/chat-prompt-suggestions.js +14 -0
  13. package/dist/components/custom/chat-steps-view.cjs +307 -0
  14. package/dist/components/custom/chat-steps-view.d.ts +38 -0
  15. package/dist/components/custom/chat-steps-view.js +273 -0
  16. package/dist/components/custom/flow-node.cjs +76 -0
  17. package/dist/components/custom/flow-node.d.ts +20 -0
  18. package/dist/components/custom/flow-node.js +42 -0
  19. package/dist/components/custom/flow-properties-bar.cjs +101 -0
  20. package/dist/components/custom/flow-properties-bar.d.ts +21 -0
  21. package/dist/components/custom/flow-properties-bar.js +67 -0
  22. package/dist/components/custom/flow-properties-expanded.cjs +324 -0
  23. package/dist/components/custom/flow-properties-expanded.d.ts +19 -0
  24. package/dist/components/custom/flow-properties-expanded.js +290 -0
  25. package/dist/components/custom/flow-properties-simple.cjs +357 -0
  26. package/dist/components/custom/flow-properties-simple.d.ts +62 -0
  27. package/dist/components/custom/flow-properties-simple.js +323 -0
  28. package/dist/components/custom/flow-properties.cjs +56 -0
  29. package/dist/components/custom/flow-properties.d.ts +28 -0
  30. package/dist/components/custom/flow-properties.js +22 -0
  31. package/dist/components/custom/global-header.cjs +415 -0
  32. package/dist/components/custom/global-header.d.ts +38 -0
  33. package/dist/components/custom/global-header.js +381 -0
  34. package/dist/components/custom/grid-maestro.cjs +62 -0
  35. package/dist/components/custom/grid-maestro.d.ts +19 -0
  36. package/dist/components/custom/grid-maestro.js +22 -0
  37. package/dist/components/custom/panel-delegate.cjs +280 -0
  38. package/dist/components/custom/panel-delegate.d.ts +34 -0
  39. package/dist/components/custom/panel-delegate.js +246 -0
  40. package/dist/components/custom/panel-flow.cjs +260 -0
  41. package/dist/components/custom/panel-flow.d.ts +38 -0
  42. package/dist/components/custom/panel-flow.js +223 -0
  43. package/dist/components/custom/panel-maestro.cjs +73 -0
  44. package/dist/components/custom/panel-maestro.d.ts +30 -0
  45. package/dist/components/custom/panel-maestro.js +39 -0
  46. package/dist/components/custom/toolbar-canvas.cjs +121 -0
  47. package/dist/components/custom/toolbar-canvas.d.ts +15 -0
  48. package/dist/components/custom/toolbar-canvas.js +87 -0
  49. package/dist/components/custom/toolbar-view.cjs +119 -0
  50. package/dist/components/custom/toolbar-view.d.ts +14 -0
  51. package/dist/components/custom/toolbar-view.js +85 -0
  52. package/dist/components/custom/viewport-guard.cjs +92 -0
  53. package/dist/components/custom/viewport-guard.d.ts +23 -0
  54. package/dist/components/custom/viewport-guard.js +55 -0
  55. package/dist/components/ui/button.cjs +3 -3
  56. package/dist/components/ui/button.js +3 -3
  57. package/dist/components/ui/chart.cjs +218 -0
  58. package/dist/components/ui/chart.d.ts +40 -0
  59. package/dist/components/ui/chart.js +169 -0
  60. package/dist/components/ui/data-table.cjs +14 -2
  61. package/dist/components/ui/data-table.d.ts +4 -1
  62. package/dist/components/ui/data-table.js +15 -3
  63. package/dist/components/ui/empty-state.cjs +17 -6
  64. package/dist/components/ui/empty-state.d.ts +7 -0
  65. package/dist/components/ui/empty-state.js +17 -6
  66. package/dist/components/ui/file-upload.cjs +82 -42
  67. package/dist/components/ui/file-upload.d.ts +3 -1
  68. package/dist/components/ui/file-upload.js +82 -42
  69. package/dist/components/ui/index.cjs +289 -149
  70. package/dist/components/ui/index.d.ts +2 -3
  71. package/dist/components/ui/index.js +2 -3
  72. package/dist/components/ui/tree-view.cjs +1101 -0
  73. package/dist/components/ui/tree-view.d.ts +95 -0
  74. package/dist/components/ui/tree-view.js +1067 -0
  75. package/dist/foundation/Future/colors.cjs +92 -0
  76. package/dist/foundation/Future/colors.d.ts +132 -0
  77. package/dist/foundation/Future/colors.js +43 -0
  78. package/dist/foundation/Future/radius.cjs +46 -0
  79. package/dist/foundation/Future/radius.d.ts +33 -0
  80. package/dist/foundation/Future/radius.js +12 -0
  81. package/dist/foundation/Future/responsive.cjs +49 -0
  82. package/dist/foundation/Future/responsive.d.ts +40 -0
  83. package/dist/foundation/Future/responsive.js +12 -0
  84. package/dist/foundation/Future/shadows.cjs +48 -0
  85. package/dist/foundation/Future/shadows.d.ts +29 -0
  86. package/dist/foundation/Future/shadows.js +11 -0
  87. package/dist/foundation/Future/spacing.cjs +71 -0
  88. package/dist/foundation/Future/spacing.d.ts +80 -0
  89. package/dist/foundation/Future/spacing.js +31 -0
  90. package/dist/foundation/Future/strokes.cjs +59 -0
  91. package/dist/foundation/Future/strokes.d.ts +49 -0
  92. package/dist/foundation/Future/strokes.js +19 -0
  93. package/dist/foundation/Future/types.cjs +18 -0
  94. package/dist/foundation/Future/types.d.ts +18 -0
  95. package/dist/foundation/Future/types.js +0 -0
  96. package/dist/foundation/Future/typography.cjs +79 -0
  97. package/dist/foundation/Future/typography.d.ts +86 -0
  98. package/dist/foundation/Future/typography.js +33 -0
  99. package/dist/index.cjs +125 -219
  100. package/dist/index.d.ts +2 -3
  101. package/dist/index.js +2 -4
  102. package/dist/src/foundation/Future/themes.css +371 -0
  103. package/dist/styles.css +1704 -582
  104. package/dist/tailwind.css +4 -0
  105. package/dist/templates/Admin/settings-admin.d.ts +5 -0
  106. package/dist/templates/Admin/template-admin.d.ts +105 -0
  107. package/dist/templates/Delegate/template-delegate.d.ts +26 -0
  108. package/dist/templates/EmptyErrors/error-components.d.ts +3 -0
  109. package/dist/templates/Experiments/ideas-AnimatedGradientText.d.ts +23 -0
  110. package/dist/templates/Flow/template-flow.d.ts +52 -0
  111. package/dist/templates/Maestro/template-maestro.d.ts +52 -0
  112. package/dist/templates/{vscode-example.d.ts → VisualStudio/shell.d.ts} +1 -1
  113. package/package.json +10 -1
  114. package/dist/components/ui/menubar.cjs +0 -210
  115. package/dist/components/ui/menubar.d.ts +0 -28
  116. package/dist/components/ui/menubar.js +0 -131
  117. package/dist/components/ui/navigation-menu.cjs +0 -122
  118. package/dist/components/ui/navigation-menu.d.ts +0 -12
  119. package/dist/components/ui/navigation-menu.js +0 -64
  120. package/dist/examples/admin-layout-example.cjs +0 -490
  121. package/dist/examples/admin-layout-example.d.ts +0 -92
  122. package/dist/examples/admin-layout-example.js +0 -411
  123. package/dist/examples/app-shell-example.cjs +0 -452
  124. package/dist/examples/app-shell-example.d.ts +0 -52
  125. package/dist/examples/app-shell-example.js +0 -418
  126. package/dist/examples/dashboard-example.cjs +0 -590
  127. package/dist/examples/dashboard-example.d.ts +0 -11
  128. package/dist/examples/dashboard-example.js +0 -556
  129. package/dist/examples/data-management-example.cjs +0 -584
  130. package/dist/examples/data-management-example.d.ts +0 -1
  131. package/dist/examples/data-management-example.js +0 -550
  132. package/dist/examples/flow-editor-layout-example.cjs +0 -309
  133. package/dist/examples/flow-editor-layout-example.d.ts +0 -22
  134. package/dist/examples/flow-editor-layout-example.js +0 -269
  135. package/dist/examples/flow-start-example.cjs +0 -467
  136. package/dist/examples/flow-start-example.d.ts +0 -30
  137. package/dist/examples/flow-start-example.js +0 -433
  138. package/dist/examples/form-builder-example.cjs +0 -674
  139. package/dist/examples/form-builder-example.js +0 -640
  140. package/dist/examples/new-project-example.cjs +0 -550
  141. package/dist/examples/new-project-example.d.ts +0 -30
  142. package/dist/examples/new-project-example.js +0 -516
  143. package/dist/examples/settings-example.cjs +0 -864
  144. package/dist/examples/settings-example.d.ts +0 -1
  145. package/dist/examples/settings-example.js +0 -830
  146. package/dist/examples/vscode-example.cjs +0 -340
  147. package/dist/examples/vscode-example.d.ts +0 -80
  148. package/dist/examples/vscode-example.js +0 -270
  149. package/dist/templates/admin-layout-example.d.ts +0 -92
  150. package/dist/templates/app-shell-example.d.ts +0 -52
  151. package/dist/templates/dashboard-example.d.ts +0 -11
  152. package/dist/templates/data-management-example.d.ts +0 -1
  153. package/dist/templates/flow-editor-layout-example.d.ts +0 -22
  154. package/dist/templates/flow-start-example.d.ts +0 -30
  155. package/dist/templates/form-builder-example.d.ts +0 -1
  156. package/dist/templates/new-project-example.d.ts +0 -30
  157. package/dist/templates/settings-example.d.ts +0 -1
  158. /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;