@nubase/frontend 0.1.4 → 0.1.6
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/index.d.mts +131 -37
- package/dist/index.d.ts +131 -37
- package/dist/index.js +15342 -14103
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +15216 -13995
- package/dist/index.mjs.map +1 -1
- package/dist/styles.css +112 -0
- package/package.json +4 -1
package/dist/index.d.mts
CHANGED
|
@@ -11,8 +11,10 @@ import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
|
11
11
|
import * as RechartsPrimitive from 'recharts';
|
|
12
12
|
import { Layout as Layout$1 } from 'react-grid-layout';
|
|
13
13
|
export { Layout, LayoutItem } from 'react-grid-layout';
|
|
14
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
14
15
|
import { ReactFormExtendedApi, AnyFieldApi } from '@tanstack/react-form';
|
|
15
16
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
17
|
+
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
16
18
|
import { ZodError } from 'zod';
|
|
17
19
|
|
|
18
20
|
/**
|
|
@@ -29,7 +31,7 @@ interface ResourceActionsExecutor {
|
|
|
29
31
|
interface AuthenticatedUser {
|
|
30
32
|
id: number;
|
|
31
33
|
email: string;
|
|
32
|
-
|
|
34
|
+
displayName: string;
|
|
33
35
|
}
|
|
34
36
|
/**
|
|
35
37
|
* Authentication state managed by the AuthenticationController.
|
|
@@ -47,10 +49,10 @@ interface AuthenticationState {
|
|
|
47
49
|
*/
|
|
48
50
|
type AuthenticationStateListener = (state: AuthenticationState) => void;
|
|
49
51
|
/**
|
|
50
|
-
* Login credentials for
|
|
52
|
+
* Login credentials for email/password authentication.
|
|
51
53
|
*/
|
|
52
54
|
interface LoginCredentials {
|
|
53
|
-
|
|
55
|
+
email: string;
|
|
54
56
|
password: string;
|
|
55
57
|
/** Workspace slug for path-based multi-workspace */
|
|
56
58
|
workspace?: string;
|
|
@@ -69,8 +71,8 @@ interface WorkspaceInfo {
|
|
|
69
71
|
interface LoginStartResponse {
|
|
70
72
|
/** Temporary token for completing login */
|
|
71
73
|
loginToken: string;
|
|
72
|
-
/** User's
|
|
73
|
-
|
|
74
|
+
/** User's email */
|
|
75
|
+
email: string;
|
|
74
76
|
/** List of workspaces the user belongs to */
|
|
75
77
|
workspaces: WorkspaceInfo[];
|
|
76
78
|
}
|
|
@@ -89,8 +91,8 @@ interface LoginCompleteCredentials {
|
|
|
89
91
|
interface SignupCredentials {
|
|
90
92
|
workspace: string;
|
|
91
93
|
workspaceName: string;
|
|
92
|
-
username: string;
|
|
93
94
|
email: string;
|
|
95
|
+
displayName: string;
|
|
94
96
|
password: string;
|
|
95
97
|
}
|
|
96
98
|
/**
|
|
@@ -121,7 +123,7 @@ interface AuthenticationController {
|
|
|
121
123
|
*/
|
|
122
124
|
subscribe(listener: AuthenticationStateListener): () => void;
|
|
123
125
|
/**
|
|
124
|
-
* Log in with
|
|
126
|
+
* Log in with email and password.
|
|
125
127
|
* On success, updates state to authenticated.
|
|
126
128
|
* On failure, throws an error.
|
|
127
129
|
*/
|
|
@@ -143,7 +145,7 @@ interface AuthenticationController {
|
|
|
143
145
|
* If not implemented, falls back to single-step login.
|
|
144
146
|
*/
|
|
145
147
|
loginStart?(credentials: {
|
|
146
|
-
|
|
148
|
+
email: string;
|
|
147
149
|
password: string;
|
|
148
150
|
}): Promise<LoginStartResponse>;
|
|
149
151
|
/**
|
|
@@ -469,6 +471,7 @@ interface SchemaFormBodyProps {
|
|
|
469
471
|
debounceMs?: number;
|
|
470
472
|
};
|
|
471
473
|
}
|
|
474
|
+
declare const SchemaFormBody: React__default.FC<SchemaFormBodyProps>;
|
|
472
475
|
|
|
473
476
|
type ModalFrameSchemaFormProps<TSchema extends ObjectSchema<any>> = {
|
|
474
477
|
onClose?: () => void;
|
|
@@ -1482,6 +1485,14 @@ interface ActionBarContainerProps extends React__default.HTMLAttributes<HTMLDivE
|
|
|
1482
1485
|
}
|
|
1483
1486
|
declare const ActionBarContainer: React__default.ForwardRefExoticComponent<ActionBarContainerProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1484
1487
|
|
|
1488
|
+
declare const buttonBarVariants: (props?: ({
|
|
1489
|
+
alignment?: "center" | "left" | "right" | null | undefined;
|
|
1490
|
+
variant?: "transparent" | "muted" | null | undefined;
|
|
1491
|
+
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
1492
|
+
interface ButtonBarProps extends React__default.HTMLAttributes<HTMLDivElement>, VariantProps<typeof buttonBarVariants> {
|
|
1493
|
+
}
|
|
1494
|
+
declare const ButtonBar: React__default.ForwardRefExoticComponent<ButtonBarProps & React__default.RefAttributes<HTMLDivElement>>;
|
|
1495
|
+
|
|
1485
1496
|
declare const calloutVariants: (props?: ({
|
|
1486
1497
|
variant?: "info" | "danger" | null | undefined;
|
|
1487
1498
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -1493,13 +1504,20 @@ interface CalloutProps extends React__default.HTMLAttributes<HTMLDivElement>, Va
|
|
|
1493
1504
|
}
|
|
1494
1505
|
declare const Callout: React__default.FC<CalloutProps>;
|
|
1495
1506
|
|
|
1496
|
-
|
|
1497
|
-
declare const
|
|
1498
|
-
|
|
1499
|
-
declare const
|
|
1500
|
-
|
|
1501
|
-
declare const
|
|
1502
|
-
|
|
1507
|
+
type CardProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1508
|
+
declare const Card: React$1.ForwardRefExoticComponent<CardProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1509
|
+
type CardHeaderProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1510
|
+
declare const CardHeader: React$1.ForwardRefExoticComponent<CardHeaderProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1511
|
+
type CardTitleProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1512
|
+
declare const CardTitle: React$1.ForwardRefExoticComponent<CardTitleProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1513
|
+
type CardDescriptionProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1514
|
+
declare const CardDescription: React$1.ForwardRefExoticComponent<CardDescriptionProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1515
|
+
type CardActionProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1516
|
+
declare const CardAction: React$1.ForwardRefExoticComponent<CardActionProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1517
|
+
type CardContentProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1518
|
+
declare const CardContent: React$1.ForwardRefExoticComponent<CardContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1519
|
+
type CardFooterProps = React$1.HTMLAttributes<HTMLDivElement>;
|
|
1520
|
+
declare const CardFooter: React$1.ForwardRefExoticComponent<CardFooterProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1503
1521
|
|
|
1504
1522
|
declare const THEMES: {
|
|
1505
1523
|
readonly light: "";
|
|
@@ -2200,6 +2218,52 @@ interface DockProps {
|
|
|
2200
2218
|
}
|
|
2201
2219
|
declare const Dock: React__default.FC<DockProps>;
|
|
2202
2220
|
|
|
2221
|
+
interface ActionDropdownMenuProps {
|
|
2222
|
+
trigger: React__default.ReactNode;
|
|
2223
|
+
actions: ActionOrSeparator[];
|
|
2224
|
+
className?: string;
|
|
2225
|
+
contentClassName?: string;
|
|
2226
|
+
/**
|
|
2227
|
+
* Side offset for the dropdown menu content.
|
|
2228
|
+
* @default 4
|
|
2229
|
+
*/
|
|
2230
|
+
sideOffset?: number;
|
|
2231
|
+
/**
|
|
2232
|
+
* Whether the menu should close when an action is executed.
|
|
2233
|
+
* @default true
|
|
2234
|
+
*/
|
|
2235
|
+
closeOnAction?: boolean;
|
|
2236
|
+
}
|
|
2237
|
+
/**
|
|
2238
|
+
* A dropdown menu component that takes standardized actions and renders them as menu items.
|
|
2239
|
+
* Supports both command and handler actions, with automatic action execution.
|
|
2240
|
+
* Actions can be grouped using "separator" entries.
|
|
2241
|
+
*/
|
|
2242
|
+
declare const ActionDropdownMenu: React__default.ForwardRefExoticComponent<ActionDropdownMenuProps & React__default.RefAttributes<never>>;
|
|
2243
|
+
|
|
2244
|
+
declare function DropdownMenu({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Root>): react_jsx_runtime.JSX.Element;
|
|
2245
|
+
declare function DropdownMenuPortal({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Portal>): react_jsx_runtime.JSX.Element;
|
|
2246
|
+
declare function DropdownMenuTrigger({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Trigger>): react_jsx_runtime.JSX.Element;
|
|
2247
|
+
declare function DropdownMenuContent({ className, sideOffset, side, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Content>): react_jsx_runtime.JSX.Element;
|
|
2248
|
+
declare function DropdownMenuGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Group>): react_jsx_runtime.JSX.Element;
|
|
2249
|
+
declare function DropdownMenuItem({ className, inset, variant, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Item> & {
|
|
2250
|
+
inset?: boolean;
|
|
2251
|
+
variant?: "default" | "destructive";
|
|
2252
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2253
|
+
declare function DropdownMenuCheckboxItem({ className, children, checked, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.CheckboxItem>): react_jsx_runtime.JSX.Element;
|
|
2254
|
+
declare function DropdownMenuRadioGroup({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioGroup>): react_jsx_runtime.JSX.Element;
|
|
2255
|
+
declare function DropdownMenuRadioItem({ className, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.RadioItem>): react_jsx_runtime.JSX.Element;
|
|
2256
|
+
declare function DropdownMenuLabel({ className, inset, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Label> & {
|
|
2257
|
+
inset?: boolean;
|
|
2258
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2259
|
+
declare function DropdownMenuSeparator({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Separator>): react_jsx_runtime.JSX.Element;
|
|
2260
|
+
declare function DropdownMenuShortcut({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
2261
|
+
declare function DropdownMenuSub({ ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.Sub>): react_jsx_runtime.JSX.Element;
|
|
2262
|
+
declare function DropdownMenuSubTrigger({ className, inset, children, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubTrigger> & {
|
|
2263
|
+
inset?: boolean;
|
|
2264
|
+
}): react_jsx_runtime.JSX.Element;
|
|
2265
|
+
declare function DropdownMenuSubContent({ className, ...props }: React$1.ComponentProps<typeof DropdownMenuPrimitive.SubContent>): react_jsx_runtime.JSX.Element;
|
|
2266
|
+
|
|
2203
2267
|
interface ThemeToggleProps {
|
|
2204
2268
|
className?: string;
|
|
2205
2269
|
defaultTheme: "light" | "dark";
|
|
@@ -2277,6 +2341,17 @@ interface FormFieldRendererProps {
|
|
|
2277
2341
|
}
|
|
2278
2342
|
declare const FormFieldRenderer: React__default.FC<FormFieldRendererProps>;
|
|
2279
2343
|
|
|
2344
|
+
type FormValidationErrorsProps = {
|
|
2345
|
+
form: ReactFormExtendedApi<any, any, any, any, any, any, any, any, any, any, any, any>;
|
|
2346
|
+
className?: string;
|
|
2347
|
+
testId?: string;
|
|
2348
|
+
};
|
|
2349
|
+
/**
|
|
2350
|
+
* Component to display form-level validation errors.
|
|
2351
|
+
* Subscribes to form state and displays onSubmit errors.
|
|
2352
|
+
*/
|
|
2353
|
+
declare const FormValidationErrors: React__default.FC<FormValidationErrorsProps>;
|
|
2354
|
+
|
|
2280
2355
|
interface SchemaFormProps extends React__default.FormHTMLAttributes<HTMLFormElement> {
|
|
2281
2356
|
form: SchemaFormConfiguration<any>;
|
|
2282
2357
|
className?: string;
|
|
@@ -2285,6 +2360,26 @@ interface SchemaFormProps extends React__default.FormHTMLAttributes<HTMLFormElem
|
|
|
2285
2360
|
}
|
|
2286
2361
|
declare const SchemaForm: React__default.ForwardRefExoticComponent<SchemaFormProps & React__default.RefAttributes<HTMLFormElement>>;
|
|
2287
2362
|
|
|
2363
|
+
interface SchemaFormButtonBarProps {
|
|
2364
|
+
form: SchemaFormConfiguration<any>;
|
|
2365
|
+
submitText?: string;
|
|
2366
|
+
isComputing?: boolean;
|
|
2367
|
+
className?: string;
|
|
2368
|
+
alignment?: "left" | "center" | "right";
|
|
2369
|
+
variant?: "transparent" | "muted";
|
|
2370
|
+
}
|
|
2371
|
+
declare const SchemaFormButtonBar: React__default.FC<SchemaFormButtonBarProps>;
|
|
2372
|
+
|
|
2373
|
+
type SchemaFormValidationErrorsProps = {
|
|
2374
|
+
form: SchemaFormConfiguration<any>;
|
|
2375
|
+
className?: string;
|
|
2376
|
+
};
|
|
2377
|
+
/**
|
|
2378
|
+
* Component to display form-level validation errors for SchemaForm.
|
|
2379
|
+
* Only renders in edit/create modes, not in view mode.
|
|
2380
|
+
*/
|
|
2381
|
+
declare const SchemaFormValidationErrors: React__default.FC<SchemaFormValidationErrorsProps>;
|
|
2382
|
+
|
|
2288
2383
|
declare const buttonVariants: (props?: ({
|
|
2289
2384
|
variant?: "secondary" | "default" | "destructive" | null | undefined;
|
|
2290
2385
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
@@ -2400,33 +2495,27 @@ interface MarkdownTextAreaHandle {
|
|
|
2400
2495
|
}
|
|
2401
2496
|
declare const MarkdownTextArea: React__default.ForwardRefExoticComponent<MarkdownTextAreaProps & React__default.RefAttributes<MarkdownTextAreaHandle>>;
|
|
2402
2497
|
|
|
2403
|
-
|
|
2404
|
-
}
|
|
2498
|
+
type BreadcrumbProps = React__default.ComponentProps<"nav">;
|
|
2405
2499
|
declare function Breadcrumb({ ...props }: BreadcrumbProps): react_jsx_runtime.JSX.Element;
|
|
2406
|
-
|
|
2407
|
-
}
|
|
2500
|
+
type BreadcrumbListProps = React__default.ComponentProps<"ol">;
|
|
2408
2501
|
declare function BreadcrumbList({ className, ...props }: BreadcrumbListProps): react_jsx_runtime.JSX.Element;
|
|
2409
|
-
|
|
2410
|
-
}
|
|
2502
|
+
type BreadcrumbItemProps = React__default.ComponentProps<"li">;
|
|
2411
2503
|
declare function BreadcrumbItem({ className, ...props }: BreadcrumbItemProps): react_jsx_runtime.JSX.Element;
|
|
2412
|
-
|
|
2413
|
-
}
|
|
2504
|
+
type BreadcrumbLinkProps = React__default.ComponentProps<"a">;
|
|
2414
2505
|
declare function BreadcrumbLink({ className, ...props }: BreadcrumbLinkProps): react_jsx_runtime.JSX.Element;
|
|
2415
|
-
|
|
2416
|
-
}
|
|
2506
|
+
type BreadcrumbPageProps = React__default.ComponentProps<"span">;
|
|
2417
2507
|
declare function BreadcrumbPage({ className, ...props }: BreadcrumbPageProps): react_jsx_runtime.JSX.Element;
|
|
2418
|
-
|
|
2508
|
+
type BreadcrumbSeparatorProps = React__default.ComponentProps<"li"> & {
|
|
2419
2509
|
children?: React__default.ReactNode;
|
|
2420
|
-
}
|
|
2510
|
+
};
|
|
2421
2511
|
declare function BreadcrumbSeparator({ children, className, ...props }: BreadcrumbSeparatorProps): react_jsx_runtime.JSX.Element;
|
|
2422
|
-
|
|
2423
|
-
}
|
|
2512
|
+
type BreadcrumbEllipsisProps = React__default.ComponentProps<"span">;
|
|
2424
2513
|
declare function BreadcrumbEllipsis({ className, ...props }: BreadcrumbEllipsisProps): react_jsx_runtime.JSX.Element;
|
|
2425
2514
|
|
|
2426
|
-
|
|
2515
|
+
type BreadcrumbBarProps = {
|
|
2427
2516
|
items: BreadcrumbItem$1[];
|
|
2428
2517
|
className?: string;
|
|
2429
|
-
}
|
|
2518
|
+
};
|
|
2430
2519
|
declare const BreadcrumbBar: FC<BreadcrumbBarProps>;
|
|
2431
2520
|
|
|
2432
2521
|
interface MainNavProps extends React.HTMLAttributes<HTMLElement> {
|
|
@@ -2477,8 +2566,6 @@ type SearchableTreeNavigatorProps = {
|
|
|
2477
2566
|
"data-testid"?: string;
|
|
2478
2567
|
};
|
|
2479
2568
|
declare const SearchableTreeNavigator: React$1.ForwardRefExoticComponent<SearchableTreeNavigatorProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2480
|
-
declare const SearchableListNavigator: React$1.ForwardRefExoticComponent<SearchableTreeNavigatorProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
2481
|
-
type SearchableListNavigatorProps = SearchableTreeNavigatorProps;
|
|
2482
2569
|
|
|
2483
2570
|
/**
|
|
2484
2571
|
* Internal flattened representation of a MenuItem for rendering.
|
|
@@ -2503,8 +2590,6 @@ declare const MenuItemComponent: ({ item, isSelected, onToggleExpanded, itemRef,
|
|
|
2503
2590
|
type TreeNavigatorItem = MenuItem;
|
|
2504
2591
|
/** @deprecated Use FlatMenuItem instead */
|
|
2505
2592
|
type FlatItem = FlatMenuItem;
|
|
2506
|
-
/** @deprecated Use MenuItemComponent instead */
|
|
2507
|
-
declare const TreeNavigatorItemComponent: ({ item, isSelected, onToggleExpanded, itemRef, "data-testid": testId, }: MenuItemComponentProps) => react_jsx_runtime.JSX.Element;
|
|
2508
2593
|
|
|
2509
2594
|
interface TreeNavigatorProps {
|
|
2510
2595
|
items: MenuItem[];
|
|
@@ -2558,6 +2643,15 @@ declare function TableHead({ className, ...props }: React$1.ComponentProps<"th">
|
|
|
2558
2643
|
declare function TableCell({ className, ...props }: React$1.ComponentProps<"td">): react_jsx_runtime.JSX.Element;
|
|
2559
2644
|
declare function TableCaption({ className, ...props }: React$1.ComponentProps<"caption">): react_jsx_runtime.JSX.Element;
|
|
2560
2645
|
|
|
2646
|
+
type TabsProps = React$1.ComponentProps<typeof TabsPrimitive.Root>;
|
|
2647
|
+
declare function Tabs({ className, ...props }: TabsProps): react_jsx_runtime.JSX.Element;
|
|
2648
|
+
type TabsListProps = React$1.ComponentProps<typeof TabsPrimitive.List>;
|
|
2649
|
+
declare function TabsList({ className, ...props }: TabsListProps): react_jsx_runtime.JSX.Element;
|
|
2650
|
+
type TabsTriggerProps = React$1.ComponentProps<typeof TabsPrimitive.Trigger>;
|
|
2651
|
+
declare function TabsTrigger({ className, ...props }: TabsTriggerProps): react_jsx_runtime.JSX.Element;
|
|
2652
|
+
type TabsContentProps = React$1.ComponentProps<typeof TabsPrimitive.Content>;
|
|
2653
|
+
declare function TabsContent({ className, ...props }: TabsContentProps): react_jsx_runtime.JSX.Element;
|
|
2654
|
+
|
|
2561
2655
|
interface SearchBarProps extends Omit<React__default.ComponentProps<"button">, "onClick"> {
|
|
2562
2656
|
context: NubaseContextData;
|
|
2563
2657
|
placeholder?: string;
|
|
@@ -2775,7 +2869,7 @@ declare class DashboardBuilder<TId extends string, TApiEndpoints = never> {
|
|
|
2775
2869
|
*
|
|
2776
2870
|
* @example
|
|
2777
2871
|
* ```typescript
|
|
2778
|
-
* import { apiEndpoints } from "
|
|
2872
|
+
* import { apiEndpoints } from "schema";
|
|
2779
2873
|
*
|
|
2780
2874
|
* const salesDashboard = createDashboard("sales")
|
|
2781
2875
|
* .withApiEndpoints(apiEndpoints)
|
|
@@ -3418,4 +3512,4 @@ declare function isServerNetworkError(error: unknown): error is ServerNetworkErr
|
|
|
3418
3512
|
*/
|
|
3419
3513
|
declare function getNetworkErrorMessage(error: unknown): string;
|
|
3420
3514
|
|
|
3421
|
-
export { ACTION_COLUMN_KEY, type Action, ActionBar, ActionBarContainer, type ActionBarContainerProps, type ActionBarProps, ActionCellFormatter, ActionCellRendererCell, ActionCellRendererGroup, type ActionKeybinding, type ActionLayout, type ActionOrSeparator, ActivityIndicator, type ActivityIndicatorProps, type AuthenticatedUser, type AuthenticationController, type AuthenticationState, type AuthenticationStateListener, type BaseAction, type BaseModalFrameProps, type BaseWidgetDescriptor, Breadcrumb, BreadcrumbBar, BreadcrumbEllipsis, BreadcrumbItem, BreadcrumbLink, BreadcrumbList, BreadcrumbPage, BreadcrumbSeparator, Button, type ButtonProps, type CalculatedColumn, type CalculatedColumnOrColumnGroup, type CalculatedColumnParent, Callout, type CalloutProps, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, CellComponent as Cell, type CellCopyArgs, type CellKeyDownArgs, type CellKeyboardEvent, type CellMouseArgs, type CellMouseEvent, type CellPasteArgs, type CellRendererProps, type CellSelectArgs, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, ClientNetworkError, type ColSpanArgs, type Column, type ColumnGroup, type ColumnOrColumnGroup, type ColumnWidth, type ColumnWidths, type CommandAction, type CommandRegistry, ConnectedWidget, type ConnectedWidgetProps, ControllableSearchableTree, type ControllableSearchableTreeProps, Dashboard, type DashboardDescriptor, type DashboardDragConfig, type DashboardGridConfig, type DashboardProps, DashboardRenderer, type DashboardRendererProps, type DashboardResizeConfig, DashboardWidget, type DashboardWidgetProps, DataGrid, DataGridDefaultRenderersContext, type DataGridHandle, type DataGridProps, DataState, type DataStateProps, type DefaultColumnOptions, Dialog, type DialogProps, Dock, type DockProps, EnhancedPagination, type EnhancedPaginationProps, type ErrorListener, type FillEvent, type FlatItem, type FlatMenuItem, FormControl, type FormControlProps, FormFieldRenderer, type FormFieldRendererProps, type GlobalActionsConfig, type HandlerAction, HttpClient, type HttpRequestConfig, type HttpResponse, type IconComponent, type InlineCreateViewConfig, type InlineResourceActionConfig, type InlineSearchViewConfig, type InlineViewConfig, type InlineViewViewConfig, type KeySequence, type Keybinding, type KeybindingState, type KpiWidgetDescriptor, Label, type LabelProps, EnhancedPagination as LegacyPagination, ListNavigator, type ListNavigatorItem, type ListNavigatorProps, type LoginCompleteCredentials, type LoginCredentials, type LoginStartResponse, MainNav, type MainNavProps, type MarkdownCommand, MarkdownTextArea, type MarkdownTextAreaHandle, type MarkdownTextAreaProps, type MenuItem, MenuItemComponent, type MenuItemOrSeparator, Modal, type ModalAlignment, type ModalConfig, ModalFrame, type ModalFrameProps, ModalFrameSchemaForm, type ModalFrameSchemaFormProps, ModalFrameStructured, type ModalFrameStructuredProps, type ModalInstance, type ModalProps, ModalProvider, type ModalSize, ModalViewRenderer, type ModalViewRendererProps, type NavItem, NavItems, NetworkError, type NetworkErrorOptions, NubaseApp, type NubaseAppProps, type NubaseContextData, type NubaseFrontendConfig, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type EnhancedPaginationProps as PaginationProps, type ParseErrorDetail, type ParsedKeybinding, type PromiseResult, type PromiseToastCallback, type PromiseToastConfig, type PromiseToastOptions, type ProportionalChartVariant, type ProportionalWidgetDescriptor, type RenderCellProps, type RenderCheckboxProps, type RenderEditCellProps, type RenderGroupCellProps, type RenderHeaderCellProps, type RenderRowProps, type RenderSortIconProps, type RenderSortPriorityProps, type RenderSortStatusProps, type RenderSummaryCellProps, type Renderers, type ResolvedMenuItem, type ResourceAction, type ResourceActionExecutionContext, type ResourceCreateView, ResourceCreateViewModalRenderer, type ResourceCreateViewModalRendererProps, ResourceCreateViewRenderer, type ResourceCreateViewRendererProps, type ResourceDescriptor, type ResourceLink, type ResourceSearchView, ResourceSearchViewModalRenderer, type ResourceSearchViewModalRendererProps, ResourceSearchViewRenderer, type ResourceSearchViewRendererProps, type ResourceViewView, ResourceViewViewModalRenderer, type ResourceViewViewModalRendererProps, ResourceViewViewRenderer, type ResourceViewViewRendererProps, RowComponent as Row, type RowHeightArgs, type RowsChangeData, SELECT_COLUMN_KEY, SchemaForm, type SchemaFormConfiguration, type SchemaFormProps,
|
|
3515
|
+
export { ACTION_COLUMN_KEY, type Action, ActionBar, ActionBarContainer, type ActionBarContainerProps, type ActionBarProps, ActionCellFormatter, ActionCellRendererCell, ActionCellRendererGroup, ActionDropdownMenu, type ActionDropdownMenuProps, type ActionKeybinding, type ActionLayout, type ActionOrSeparator, ActivityIndicator, type ActivityIndicatorProps, type AuthenticatedUser, type AuthenticationController, type AuthenticationState, type AuthenticationStateListener, type BaseAction, type BaseModalFrameProps, type BaseWidgetDescriptor, Breadcrumb, BreadcrumbBar, type BreadcrumbBarProps, BreadcrumbEllipsis, type BreadcrumbEllipsisProps, BreadcrumbItem, type BreadcrumbItemProps, BreadcrumbLink, type BreadcrumbLinkProps, BreadcrumbList, type BreadcrumbListProps, BreadcrumbPage, type BreadcrumbPageProps, type BreadcrumbProps, BreadcrumbSeparator, type BreadcrumbSeparatorProps, Button, ButtonBar, type ButtonBarProps, type ButtonProps, type CalculatedColumn, type CalculatedColumnOrColumnGroup, type CalculatedColumnParent, Callout, type CalloutProps, Card, CardAction, type CardActionProps, CardContent, type CardContentProps, CardDescription, type CardDescriptionProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, CellComponent as Cell, type CellCopyArgs, type CellKeyDownArgs, type CellKeyboardEvent, type CellMouseArgs, type CellMouseEvent, type CellPasteArgs, type CellRendererProps, type CellSelectArgs, type ChartConfig, ChartContainer, ChartLegend, ChartLegendContent, ChartStyle, ChartTooltip, ChartTooltipContent, Checkbox, type CheckboxProps, ClientNetworkError, type ColSpanArgs, type Column, type ColumnGroup, type ColumnOrColumnGroup, type ColumnWidth, type ColumnWidths, type CommandAction, type CommandRegistry, ConnectedWidget, type ConnectedWidgetProps, ControllableSearchableTree, type ControllableSearchableTreeProps, Dashboard, type DashboardDescriptor, type DashboardDragConfig, type DashboardGridConfig, type DashboardProps, DashboardRenderer, type DashboardRendererProps, type DashboardResizeConfig, DashboardWidget, type DashboardWidgetProps, DataGrid, DataGridDefaultRenderersContext, type DataGridHandle, type DataGridProps, DataState, type DataStateProps, type DefaultColumnOptions, Dialog, type DialogProps, Dock, type DockProps, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, EnhancedPagination, type EnhancedPaginationProps, type ErrorListener, type FillEvent, type FlatItem, type FlatMenuItem, FormControl, type FormControlProps, FormFieldRenderer, type FormFieldRendererProps, FormValidationErrors, type FormValidationErrorsProps, type GlobalActionsConfig, type HandlerAction, HttpClient, type HttpRequestConfig, type HttpResponse, type IconComponent, type InlineCreateViewConfig, type InlineResourceActionConfig, type InlineSearchViewConfig, type InlineViewConfig, type InlineViewViewConfig, type KeySequence, type Keybinding, type KeybindingState, type KpiWidgetDescriptor, Label, type LabelProps, EnhancedPagination as LegacyPagination, ListNavigator, type ListNavigatorItem, type ListNavigatorProps, type LoginCompleteCredentials, type LoginCredentials, type LoginStartResponse, MainNav, type MainNavProps, type MarkdownCommand, MarkdownTextArea, type MarkdownTextAreaHandle, type MarkdownTextAreaProps, type MenuItem, MenuItemComponent, type MenuItemOrSeparator, Modal, type ModalAlignment, type ModalConfig, ModalFrame, type ModalFrameProps, ModalFrameSchemaForm, type ModalFrameSchemaFormProps, ModalFrameStructured, type ModalFrameStructuredProps, type ModalInstance, type ModalProps, ModalProvider, type ModalSize, ModalViewRenderer, type ModalViewRendererProps, type NavItem, NavItems, NetworkError, type NetworkErrorOptions, NubaseApp, type NubaseAppProps, type NubaseContextData, type NubaseFrontendConfig, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, type EnhancedPaginationProps as PaginationProps, type ParseErrorDetail, type ParsedKeybinding, type PromiseResult, type PromiseToastCallback, type PromiseToastConfig, type PromiseToastOptions, type ProportionalChartVariant, type ProportionalWidgetDescriptor, type RenderCellProps, type RenderCheckboxProps, type RenderEditCellProps, type RenderGroupCellProps, type RenderHeaderCellProps, type RenderRowProps, type RenderSortIconProps, type RenderSortPriorityProps, type RenderSortStatusProps, type RenderSummaryCellProps, type Renderers, type ResolvedMenuItem, type ResourceAction, type ResourceActionExecutionContext, type ResourceCreateView, ResourceCreateViewModalRenderer, type ResourceCreateViewModalRendererProps, ResourceCreateViewRenderer, type ResourceCreateViewRendererProps, type ResourceDescriptor, type ResourceLink, type ResourceSearchView, ResourceSearchViewModalRenderer, type ResourceSearchViewModalRendererProps, ResourceSearchViewRenderer, type ResourceSearchViewRendererProps, type ResourceViewView, ResourceViewViewModalRenderer, type ResourceViewViewModalRendererProps, ResourceViewViewRenderer, type ResourceViewViewRendererProps, RowComponent as Row, type RowHeightArgs, type RowsChangeData, SELECT_COLUMN_KEY, SchemaForm, SchemaFormBody, type SchemaFormBodyProps, SchemaFormButtonBar, type SchemaFormButtonBarProps, type SchemaFormConfiguration, type SchemaFormProps, SchemaFormValidationErrors, type SchemaFormValidationErrorsProps, SearchBar, type SearchBarProps, SearchTextInput, type SearchTextInputProps, SearchableTreeNavigator, type SearchableTreeNavigatorProps, Select, SelectCellFormatter, type SelectCellOptions, SelectColumn, type SelectHeaderRowEvent, type SelectOption, type SelectProps, type SelectRowEvent, type SelectionRange, type SeriesChartVariant, type SeriesWidgetDescriptor, ServerNetworkError, type SignupCredentials, type SortColumn, type SortDirection, type StandardViews, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, type TableWidgetDescriptor, Tabs, TabsContent, type TabsContentProps, TabsList, type TabsListProps, type TabsProps, TabsTrigger, type TabsTriggerProps, type TextController, TextInput, type TextInputProps, type TextState, ThemeToggle, type ThemeToggleProps, Toast, ToastContainer, type ToastData, type ToastOptions, type ToastPosition, ToastProvider, type ToastType, ToggleGroup, TopBar, type TopBarProps, TreeDataGrid, type TreeDataGridProps, TreeNavigator, type TreeNavigatorItem, type TreeNavigatorProps, TypedApiClient, type TypedApiClientFromEndpoints, type TypedCommandDefinition, type UseDialogResult, type UseModalResult, type UseNubaseMutationOptions, type UseNubaseQueryOptions, type UseSchemaFormOptions, UserAvatar, type UserAvatarProps, UserMenu, type UserMenuProps, type View, type ViewBase, type ViewType, Widget, type WidgetDescriptor, type WidgetLayoutConfig, type WidgetProps, type WorkspaceContext, type WorkspaceInfo, boldCommand, checkListCommand, cleanupKeybindings, codeBlockCommand, codeCommand, commandRegistry, index as commands, createActionColumn, createCommand, createCommandAction, createCreateView, createDashboard, createHandlerAction, createResource, createResourceAction, createTypedApiClient, createViewFactory, createViewView, defaultKeybindings, defineCreateView, defineViewView, filterNavItems, flattenNavItems, getInitials, getLayout, getNetworkErrorMessage, getResourceLinkSearch, getWorkspaceFromRouter, groupActionsBySeparators, headingCommand, imageCommand, isClientNetworkError, isCommandAction, isHandlerAction, isNetworkError, isResourceLink, isServerNetworkError, italicCommand, keybindingManager, linkCommand, matchesKeySequence, normalizeEventKey, orderedListCommand, parseKeySequence, parseKeybinding, quoteCommand, registerKeybindings, renderCheckbox, renderHeaderCell, renderSortIcon, renderSortPriority, renderToggleGroup, renderValue, resolveMenuItem, resolveMenuItems, resolveResourceLink, resourceLink, showPromiseToast, showToast, strikethroughCommand, textEditor, unorderedListCommand, updateKeybindings, useActionExecutor, useChart, useComputedMetadata, useDialog, useHeaderRowSelection, useLayout, useModal, useNubaseMutation, useNubaseQuery, useResourceCreateMutation, useResourceDeleteMutation, useResourceInvalidation, useResourceSearchQuery, useResourceUpdateMutation, useResourceViewQuery, useRowSelection, useSchemaForm, useToast, useWorkspace, useWorkspaceOptional, workbenchOpenResourceOperation, workbenchOpenResourceOperationInModal, workbenchRunCommand, workbenchSetTheme, workbenchViewHistory };
|