@alepha/ui 0.12.1 → 0.13.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.
- package/dist/admin/index.d.cts +70 -70
- package/dist/admin/index.d.ts +70 -70
- package/dist/auth/index.d.cts +408 -408
- package/dist/auth/index.d.ts +408 -408
- package/dist/core/index.d.cts +22 -22
- package/dist/core/index.d.ts +92 -92
- package/package.json +3 -3
package/dist/core/index.d.cts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as alepha66 from "alepha";
|
|
2
2
|
import { Alepha, AlephaError, Async, Descriptor, FileLike, InstantiableClass, LogLevel, LoggerInterface, Page, PageMetadata, Static, StreamLike, TArray, TFile, TObject, TProperties, TRecord, TSchema, TStream, TString, TVoid } from "alepha";
|
|
3
3
|
import { ComponentType, FC, InputHTMLAttributes, ReactElement, ReactNode } from "react";
|
|
4
|
-
import * as
|
|
4
|
+
import * as react_jsx_runtime13 from "react/jsx-runtime";
|
|
5
5
|
import { AnchorProps, AppShellFooterProps, AppShellHeaderProps, AppShellMainProps, AppShellNavbarProps, AppShellProps, AutocompleteProps, BurgerProps, ButtonProps, ColorInputProps, ColorSchemeScriptProps, FileInputProps, Flex, FlexProps, MantineBreakpoint, MantineProviderProps, MantineSize, MenuProps, MenuTargetProps, ModalProps, MultiSelectProps, NumberInputProps, PasswordInputProps, SegmentedControlProps, SelectProps, SliderProps, SwitchProps, TableProps, TableTrProps, TagsInputProps, Text, TextInputProps, TextareaProps, ThemeIconProps, TooltipProps } from "@mantine/core";
|
|
6
6
|
import { DateInputProps, DateTimePickerProps, TimeInputProps } from "@mantine/dates";
|
|
7
7
|
import dayjsDuration from "dayjs/plugin/duration.js";
|
|
@@ -406,7 +406,7 @@ interface ControlSelectProps extends GenericControlProps {
|
|
|
406
406
|
*
|
|
407
407
|
* Automatically detects enum values and array types from schema.
|
|
408
408
|
*/
|
|
409
|
-
declare const ControlSelect: (props: ControlSelectProps) =>
|
|
409
|
+
declare const ControlSelect: (props: ControlSelectProps) => react_jsx_runtime13.JSX.Element | null;
|
|
410
410
|
//#endregion
|
|
411
411
|
//#region src/core/components/form/Control.d.ts
|
|
412
412
|
interface ControlProps extends GenericControlProps {
|
|
@@ -446,7 +446,7 @@ interface ControlProps extends GenericControlProps {
|
|
|
446
446
|
*
|
|
447
447
|
* Automatically handles labels, descriptions, error messages, required state, and default icons.
|
|
448
448
|
*/
|
|
449
|
-
declare const Control: (_props: ControlProps) =>
|
|
449
|
+
declare const Control: (_props: ControlProps) => react_jsx_runtime13.JSX.Element | null;
|
|
450
450
|
type CustomControlProps = {
|
|
451
451
|
defaultValue: any;
|
|
452
452
|
onChange: (value: any) => void;
|
|
@@ -2074,7 +2074,7 @@ interface ActionCommonProps extends ButtonProps {
|
|
|
2074
2074
|
themeIconProps?: ThemeIconProps;
|
|
2075
2075
|
}
|
|
2076
2076
|
type ActionProps = ActionCommonProps & (ActionNavigationButtonProps | ActionClickButtonProps | ActionSubmitButtonProps | ActionHookButtonProps | {});
|
|
2077
|
-
declare const ActionButton: (_props: ActionProps) =>
|
|
2077
|
+
declare const ActionButton: (_props: ActionProps) => react_jsx_runtime13.JSX.Element;
|
|
2078
2078
|
interface ActionSubmitButtonProps extends ButtonProps {
|
|
2079
2079
|
form: FormModel<any>;
|
|
2080
2080
|
type?: "submit" | "reset";
|
|
@@ -2097,7 +2097,7 @@ interface ActionNavigationButtonProps extends ButtonProps {
|
|
|
2097
2097
|
//#endregion
|
|
2098
2098
|
//#region src/core/components/buttons/BurgerButton.d.ts
|
|
2099
2099
|
interface BurgerButtonProps extends BurgerProps {}
|
|
2100
|
-
declare const BurgerButton: (props: BurgerButtonProps) =>
|
|
2100
|
+
declare const BurgerButton: (props: BurgerButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2101
2101
|
//#endregion
|
|
2102
2102
|
//#region src/core/components/buttons/ClipboardButton.d.ts
|
|
2103
2103
|
interface ClipboardButtonProps extends Omit<ActionCommonProps, "onClick" | "icon"> {
|
|
@@ -2118,7 +2118,7 @@ interface ClipboardButtonProps extends Omit<ActionCommonProps, "onClick" | "icon
|
|
|
2118
2118
|
*/
|
|
2119
2119
|
copiedLabel?: string;
|
|
2120
2120
|
}
|
|
2121
|
-
declare const ClipboardButton: (props: ClipboardButtonProps) =>
|
|
2121
|
+
declare const ClipboardButton: (props: ClipboardButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2122
2122
|
//#endregion
|
|
2123
2123
|
//#region src/core/components/buttons/DarkModeButton.d.ts
|
|
2124
2124
|
interface DarkModeButtonProps {
|
|
@@ -2129,21 +2129,21 @@ interface DarkModeButtonProps {
|
|
|
2129
2129
|
segmentedProps?: Partial<SegmentedControlProps>;
|
|
2130
2130
|
actionProps?: Partial<ActionProps>;
|
|
2131
2131
|
}
|
|
2132
|
-
declare const DarkModeButton: (props: DarkModeButtonProps) =>
|
|
2132
|
+
declare const DarkModeButton: (props: DarkModeButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2133
2133
|
//#endregion
|
|
2134
2134
|
//#region src/core/components/buttons/LanguageButton.d.ts
|
|
2135
2135
|
interface LanguageButtonProps {
|
|
2136
2136
|
languages?: string[];
|
|
2137
2137
|
actionProps?: ActionProps;
|
|
2138
2138
|
}
|
|
2139
|
-
declare const LanguageButton: (props: LanguageButtonProps) =>
|
|
2139
|
+
declare const LanguageButton: (props: LanguageButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2140
2140
|
//#endregion
|
|
2141
2141
|
//#region src/core/components/buttons/OmnibarButton.d.ts
|
|
2142
2142
|
interface OmnibarButtonProps {
|
|
2143
2143
|
actionProps?: ActionProps;
|
|
2144
2144
|
collapsed?: boolean;
|
|
2145
2145
|
}
|
|
2146
|
-
declare const OmnibarButton: (props: OmnibarButtonProps) =>
|
|
2146
|
+
declare const OmnibarButton: (props: OmnibarButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2147
2147
|
//#endregion
|
|
2148
2148
|
//#region src/core/components/data/JsonViewer.d.ts
|
|
2149
2149
|
interface JsonViewerProps {
|
|
@@ -2159,7 +2159,7 @@ declare const JsonViewer: ({
|
|
|
2159
2159
|
maxDepth,
|
|
2160
2160
|
copyable,
|
|
2161
2161
|
size
|
|
2162
|
-
}: JsonViewerProps) =>
|
|
2162
|
+
}: JsonViewerProps) => react_jsx_runtime13.JSX.Element;
|
|
2163
2163
|
//#endregion
|
|
2164
2164
|
//#region src/core/services/DialogService.d.ts
|
|
2165
2165
|
interface BaseDialogOptions extends Partial<ModalProps> {
|
|
@@ -2244,19 +2244,19 @@ declare class DialogService {
|
|
|
2244
2244
|
declare const AlertDialog: ({
|
|
2245
2245
|
options,
|
|
2246
2246
|
onClose
|
|
2247
|
-
}: AlertDialogProps) =>
|
|
2247
|
+
}: AlertDialogProps) => react_jsx_runtime13.JSX.Element;
|
|
2248
2248
|
//#endregion
|
|
2249
2249
|
//#region src/core/components/dialogs/ConfirmDialog.d.ts
|
|
2250
2250
|
declare const ConfirmDialog: ({
|
|
2251
2251
|
options,
|
|
2252
2252
|
onConfirm
|
|
2253
|
-
}: ConfirmDialogProps) =>
|
|
2253
|
+
}: ConfirmDialogProps) => react_jsx_runtime13.JSX.Element;
|
|
2254
2254
|
//#endregion
|
|
2255
2255
|
//#region src/core/components/dialogs/PromptDialog.d.ts
|
|
2256
2256
|
declare const PromptDialog: ({
|
|
2257
2257
|
options,
|
|
2258
2258
|
onSubmit
|
|
2259
|
-
}: PromptDialogProps) =>
|
|
2259
|
+
}: PromptDialogProps) => react_jsx_runtime13.JSX.Element;
|
|
2260
2260
|
//#endregion
|
|
2261
2261
|
//#region src/core/components/form/ControlDate.d.ts
|
|
2262
2262
|
interface ControlDateProps extends GenericControlProps {
|
|
@@ -2274,7 +2274,7 @@ interface ControlDateProps extends GenericControlProps {
|
|
|
2274
2274
|
*
|
|
2275
2275
|
* Automatically detects date formats from schema and renders appropriate picker.
|
|
2276
2276
|
*/
|
|
2277
|
-
declare const ControlDate: (props: ControlDateProps) =>
|
|
2277
|
+
declare const ControlDate: (props: ControlDateProps) => react_jsx_runtime13.JSX.Element | null;
|
|
2278
2278
|
//#endregion
|
|
2279
2279
|
//#region src/core/components/form/ControlQueryBuilder.d.ts
|
|
2280
2280
|
interface ControlQueryBuilderProps extends Omit<TextInputProps, "value" | "onChange"> {
|
|
@@ -2293,7 +2293,7 @@ declare const ControlQueryBuilder: ({
|
|
|
2293
2293
|
onChange,
|
|
2294
2294
|
placeholder,
|
|
2295
2295
|
...textInputProps
|
|
2296
|
-
}: ControlQueryBuilderProps) =>
|
|
2296
|
+
}: ControlQueryBuilderProps) => react_jsx_runtime13.JSX.Element;
|
|
2297
2297
|
//#endregion
|
|
2298
2298
|
//#region src/core/components/form/TypeForm.d.ts
|
|
2299
2299
|
interface TypeFormProps<T$1 extends TObject> {
|
|
@@ -2339,7 +2339,7 @@ interface TypeFormProps<T$1 extends TObject> {
|
|
|
2339
2339
|
* return <TypeForm form={form} columns={2} />;
|
|
2340
2340
|
* ```
|
|
2341
2341
|
*/
|
|
2342
|
-
declare const TypeForm: <T$1 extends TObject>(props: TypeFormProps<T$1>) =>
|
|
2342
|
+
declare const TypeForm: <T$1 extends TObject>(props: TypeFormProps<T$1>) => react_jsx_runtime13.JSX.Element | null;
|
|
2343
2343
|
//#endregion
|
|
2344
2344
|
//#region src/core/components/layout/AppBar.d.ts
|
|
2345
2345
|
type AppBarItem = AppBarElement | AppBarBurger | AppBarDark | AppBarSearch | AppBarLang | AppBarSpacer | AppBarDivider;
|
|
@@ -2378,7 +2378,7 @@ interface AppBarProps {
|
|
|
2378
2378
|
flexProps?: FlexProps;
|
|
2379
2379
|
items?: AppBarItem[];
|
|
2380
2380
|
}
|
|
2381
|
-
declare const AppBar: (props: AppBarProps) =>
|
|
2381
|
+
declare const AppBar: (props: AppBarProps) => react_jsx_runtime13.JSX.Element;
|
|
2382
2382
|
//#endregion
|
|
2383
2383
|
//#region src/core/components/layout/Sidebar.d.ts
|
|
2384
2384
|
interface SidebarProps {
|
|
@@ -2395,7 +2395,7 @@ interface SidebarProps {
|
|
|
2395
2395
|
paths?: string[];
|
|
2396
2396
|
};
|
|
2397
2397
|
}
|
|
2398
|
-
declare const Sidebar: (props: SidebarProps) =>
|
|
2398
|
+
declare const Sidebar: (props: SidebarProps) => react_jsx_runtime13.JSX.Element;
|
|
2399
2399
|
interface SidebarItemProps {
|
|
2400
2400
|
item: SidebarMenuItem;
|
|
2401
2401
|
level: number;
|
|
@@ -2482,7 +2482,7 @@ declare module "alepha" {
|
|
|
2482
2482
|
"alepha.ui.sidebar.collapsed"?: boolean;
|
|
2483
2483
|
}
|
|
2484
2484
|
}
|
|
2485
|
-
declare const AdminShell: (props: AdminShellProps) =>
|
|
2485
|
+
declare const AdminShell: (props: AdminShellProps) => react_jsx_runtime13.JSX.Element;
|
|
2486
2486
|
//#endregion
|
|
2487
2487
|
//#region src/core/components/layout/Omnibar.d.ts
|
|
2488
2488
|
interface OmnibarProps {
|
|
@@ -2490,7 +2490,7 @@ interface OmnibarProps {
|
|
|
2490
2490
|
searchPlaceholder?: string;
|
|
2491
2491
|
nothingFound?: ReactNode;
|
|
2492
2492
|
}
|
|
2493
|
-
declare const Omnibar: (props: OmnibarProps) =>
|
|
2493
|
+
declare const Omnibar: (props: OmnibarProps) => react_jsx_runtime13.JSX.Element;
|
|
2494
2494
|
//#endregion
|
|
2495
2495
|
//#region src/core/components/layout/AlephaMantineProvider.d.ts
|
|
2496
2496
|
interface AlephaMantineProviderProps {
|
|
@@ -2502,7 +2502,7 @@ interface AlephaMantineProviderProps {
|
|
|
2502
2502
|
modals?: ModalsProviderProps;
|
|
2503
2503
|
omnibar?: OmnibarProps;
|
|
2504
2504
|
}
|
|
2505
|
-
declare const AlephaMantineProvider: (props: AlephaMantineProviderProps) =>
|
|
2505
|
+
declare const AlephaMantineProvider: (props: AlephaMantineProviderProps) => react_jsx_runtime13.JSX.Element;
|
|
2506
2506
|
//#endregion
|
|
2507
2507
|
//#region src/core/components/table/DataTable.d.ts
|
|
2508
2508
|
interface DataTableColumnContext<Filters extends TObject> {
|
|
@@ -2564,7 +2564,7 @@ interface DataTableProps<T$1 extends object, Filters extends TObject> {
|
|
|
2564
2564
|
*/
|
|
2565
2565
|
tableTrProps?: (item: T$1) => TableTrProps;
|
|
2566
2566
|
}
|
|
2567
|
-
declare const DataTable: <T$1 extends object, Filters extends TObject>(props: DataTableProps<T$1, Filters>) =>
|
|
2567
|
+
declare const DataTable: <T$1 extends object, Filters extends TObject>(props: DataTableProps<T$1, Filters>) => react_jsx_runtime13.JSX.Element;
|
|
2568
2568
|
//#endregion
|
|
2569
2569
|
//#region src/core/constants/ui.d.ts
|
|
2570
2570
|
declare const ui: {
|
package/dist/core/index.d.ts
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as alepha86 from "alepha";
|
|
2
2
|
import { Alepha, AlephaError, Async, Descriptor, FileLike, InstantiableClass, LogLevel, LoggerInterface, Page, PageMetadata, Static, StreamLike, TArray, TFile, TObject, TProperties, TRecord, TSchema, TStream, TString, TVoid, TypeBoxError } from "alepha";
|
|
3
3
|
import { AnchorProps, AppShellFooterProps, AppShellHeaderProps, AppShellMainProps, AppShellNavbarProps, AppShellProps, AutocompleteProps, BurgerProps, ButtonProps, ColorInputProps, ColorSchemeScriptProps, FileInputProps, Flex, FlexProps, MantineBreakpoint, MantineProviderProps, MantineSize, MenuProps, MenuTargetProps, ModalProps, MultiSelectProps, NumberInputProps, PasswordInputProps, SegmentedControlProps, SelectProps, SliderProps, SwitchProps, TableProps, TableTrProps, TagsInputProps, Text, TextInputProps, TextareaProps, ThemeIconProps, TooltipProps } from "@mantine/core";
|
|
4
4
|
import { ModalsProviderProps } from "@mantine/modals";
|
|
5
5
|
import * as _mantine_notifications0 from "@mantine/notifications";
|
|
6
6
|
import { NotificationData, NotificationsProps } from "@mantine/notifications";
|
|
7
7
|
import { NavigationProgressProps } from "@mantine/nprogress";
|
|
8
|
-
import * as
|
|
8
|
+
import * as react_jsx_runtime13 from "react/jsx-runtime";
|
|
9
9
|
import { ComponentType, FC, InputHTMLAttributes, ReactElement, ReactNode } from "react";
|
|
10
10
|
import { DateInputProps, DateTimePickerProps, TimeInputProps } from "@mantine/dates";
|
|
11
11
|
import "dayjs/plugin/relativeTime.js";
|
|
@@ -21,15 +21,15 @@ import { Readable } from "node:stream";
|
|
|
21
21
|
import { ReadableStream } from "node:stream/web";
|
|
22
22
|
|
|
23
23
|
//#region ../alepha/src/logger/schemas/logEntrySchema.d.ts
|
|
24
|
-
declare const logEntrySchema:
|
|
25
|
-
level:
|
|
26
|
-
message:
|
|
27
|
-
service:
|
|
28
|
-
module:
|
|
29
|
-
context:
|
|
30
|
-
app:
|
|
31
|
-
data:
|
|
32
|
-
timestamp:
|
|
24
|
+
declare const logEntrySchema: alepha86.TObject<{
|
|
25
|
+
level: alepha86.TUnsafe<"SILENT" | "TRACE" | "DEBUG" | "INFO" | "WARN" | "ERROR">;
|
|
26
|
+
message: alepha86.TString;
|
|
27
|
+
service: alepha86.TString;
|
|
28
|
+
module: alepha86.TString;
|
|
29
|
+
context: alepha86.TOptional<alepha86.TString>;
|
|
30
|
+
app: alepha86.TOptional<alepha86.TString>;
|
|
31
|
+
data: alepha86.TOptional<alepha86.TAny>;
|
|
32
|
+
timestamp: alepha86.TNumber;
|
|
33
33
|
}>;
|
|
34
34
|
type LogEntry = Static<typeof logEntrySchema>;
|
|
35
35
|
//#endregion
|
|
@@ -44,8 +44,8 @@ declare class DateTimeProvider {
|
|
|
44
44
|
protected readonly timeouts: Timeout[];
|
|
45
45
|
protected readonly intervals: Interval[];
|
|
46
46
|
constructor();
|
|
47
|
-
protected readonly onStart:
|
|
48
|
-
protected readonly onStop:
|
|
47
|
+
protected readonly onStart: alepha86.HookDescriptor<"start">;
|
|
48
|
+
protected readonly onStop: alepha86.HookDescriptor<"stop">;
|
|
49
49
|
setLocale(locale: string): void;
|
|
50
50
|
isDateTime(value: unknown): value is DateTime;
|
|
51
51
|
/**
|
|
@@ -177,7 +177,7 @@ declare class Logger implements LoggerInterface {
|
|
|
177
177
|
}
|
|
178
178
|
//#endregion
|
|
179
179
|
//#region ../alepha/src/logger/index.d.ts
|
|
180
|
-
declare const envSchema$6:
|
|
180
|
+
declare const envSchema$6: alepha86.TObject<{
|
|
181
181
|
/**
|
|
182
182
|
* Default log level for the application.
|
|
183
183
|
*
|
|
@@ -194,14 +194,14 @@ declare const envSchema$6: alepha79.TObject<{
|
|
|
194
194
|
* LOG_LEVEL=my.module.name:debug,info # Set debug level for my.module.name and info for all other modules
|
|
195
195
|
* LOG_LEVEL=alepha:trace, info # Set trace level for all alepha modules and info for all other modules
|
|
196
196
|
*/
|
|
197
|
-
LOG_LEVEL:
|
|
197
|
+
LOG_LEVEL: alepha86.TOptional<alepha86.TString>;
|
|
198
198
|
/**
|
|
199
199
|
* Built-in log formats.
|
|
200
200
|
* - "json" - JSON format, useful for structured logging and log aggregation. {@link JsonFormatterProvider}
|
|
201
201
|
* - "pretty" - Simple text format, human-readable, with colors. {@link SimpleFormatterProvider}
|
|
202
202
|
* - "raw" - Raw format, no formatting, just the message. {@link RawFormatterProvider}
|
|
203
203
|
*/
|
|
204
|
-
LOG_FORMAT:
|
|
204
|
+
LOG_FORMAT: alepha86.TOptional<alepha86.TUnsafe<"json" | "pretty" | "raw">>;
|
|
205
205
|
}>;
|
|
206
206
|
declare module "alepha" {
|
|
207
207
|
interface Env extends Partial<Static<typeof envSchema$6>> {}
|
|
@@ -412,7 +412,7 @@ interface ControlSelectProps extends GenericControlProps {
|
|
|
412
412
|
*
|
|
413
413
|
* Automatically detects enum values and array types from schema.
|
|
414
414
|
*/
|
|
415
|
-
declare const ControlSelect: (props: ControlSelectProps) =>
|
|
415
|
+
declare const ControlSelect: (props: ControlSelectProps) => react_jsx_runtime13.JSX.Element | null;
|
|
416
416
|
//#endregion
|
|
417
417
|
//#region src/core/components/form/Control.d.ts
|
|
418
418
|
interface ControlProps extends GenericControlProps {
|
|
@@ -452,7 +452,7 @@ interface ControlProps extends GenericControlProps {
|
|
|
452
452
|
*
|
|
453
453
|
* Automatically handles labels, descriptions, error messages, required state, and default icons.
|
|
454
454
|
*/
|
|
455
|
-
declare const Control: (_props: ControlProps) =>
|
|
455
|
+
declare const Control: (_props: ControlProps) => react_jsx_runtime13.JSX.Element | null;
|
|
456
456
|
type CustomControlProps = {
|
|
457
457
|
defaultValue: any;
|
|
458
458
|
onChange: (value: any) => void;
|
|
@@ -691,8 +691,8 @@ declare class ServerTimingProvider {
|
|
|
691
691
|
prefix: string;
|
|
692
692
|
disabled: boolean;
|
|
693
693
|
};
|
|
694
|
-
readonly onRequest:
|
|
695
|
-
readonly onResponse:
|
|
694
|
+
readonly onRequest: alepha86.HookDescriptor<"server:onRequest">;
|
|
695
|
+
readonly onResponse: alepha86.HookDescriptor<"server:onResponse">;
|
|
696
696
|
protected get handlerName(): string;
|
|
697
697
|
beginTiming(name: string): void;
|
|
698
698
|
endTiming(name: string): void;
|
|
@@ -756,11 +756,11 @@ declare class ServerProvider {
|
|
|
756
756
|
/**
|
|
757
757
|
* When a Node.js HTTP request is received from outside. (Vercel, AWS Lambda, etc.)
|
|
758
758
|
*/
|
|
759
|
-
protected readonly onNodeRequest:
|
|
759
|
+
protected readonly onNodeRequest: alepha86.HookDescriptor<"node:request">;
|
|
760
760
|
/**
|
|
761
761
|
* When a Web (Fetch API) request is received from outside. (Netlify, Cloudflare Workers, etc.)
|
|
762
762
|
*/
|
|
763
|
-
protected readonly onWebRequest:
|
|
763
|
+
protected readonly onWebRequest: alepha86.HookDescriptor<"web:request">;
|
|
764
764
|
/**
|
|
765
765
|
* Handle Node.js HTTP request event.
|
|
766
766
|
*
|
|
@@ -1095,15 +1095,15 @@ type ServerActionHandler<TConfig extends RequestConfigSchema = RequestConfigSche
|
|
|
1095
1095
|
interface ServerActionRequest<TConfig extends RequestConfigSchema> extends ServerRequest<TConfig> {}
|
|
1096
1096
|
//#endregion
|
|
1097
1097
|
//#region ../alepha/src/server/schemas/errorSchema.d.ts
|
|
1098
|
-
declare const errorSchema:
|
|
1099
|
-
error:
|
|
1100
|
-
status:
|
|
1101
|
-
message:
|
|
1102
|
-
details:
|
|
1103
|
-
requestId:
|
|
1104
|
-
cause:
|
|
1105
|
-
name:
|
|
1106
|
-
message:
|
|
1098
|
+
declare const errorSchema: alepha86.TObject<{
|
|
1099
|
+
error: alepha86.TString;
|
|
1100
|
+
status: alepha86.TInteger;
|
|
1101
|
+
message: alepha86.TString;
|
|
1102
|
+
details: alepha86.TOptional<alepha86.TString>;
|
|
1103
|
+
requestId: alepha86.TOptional<alepha86.TString>;
|
|
1104
|
+
cause: alepha86.TOptional<alepha86.TObject<{
|
|
1105
|
+
name: alepha86.TString;
|
|
1106
|
+
message: alepha86.TString;
|
|
1107
1107
|
}>>;
|
|
1108
1108
|
}>;
|
|
1109
1109
|
type ErrorSchema = Static<typeof errorSchema>;
|
|
@@ -1128,18 +1128,18 @@ interface HttpErrorLike extends Error {
|
|
|
1128
1128
|
}
|
|
1129
1129
|
//#endregion
|
|
1130
1130
|
//#region ../alepha/src/server/providers/BunHttpServerProvider.d.ts
|
|
1131
|
-
declare const envSchema$5:
|
|
1132
|
-
SERVER_PORT:
|
|
1133
|
-
SERVER_HOST:
|
|
1131
|
+
declare const envSchema$5: alepha86.TObject<{
|
|
1132
|
+
SERVER_PORT: alepha86.TInteger;
|
|
1133
|
+
SERVER_HOST: alepha86.TString;
|
|
1134
1134
|
}>;
|
|
1135
1135
|
declare module "alepha" {
|
|
1136
1136
|
interface Env extends Partial<Static<typeof envSchema$5>> {}
|
|
1137
1137
|
}
|
|
1138
1138
|
//#endregion
|
|
1139
1139
|
//#region ../alepha/src/server/providers/NodeHttpServerProvider.d.ts
|
|
1140
|
-
declare const envSchema$4:
|
|
1141
|
-
SERVER_PORT:
|
|
1142
|
-
SERVER_HOST:
|
|
1140
|
+
declare const envSchema$4: alepha86.TObject<{
|
|
1141
|
+
SERVER_PORT: alepha86.TInteger;
|
|
1142
|
+
SERVER_HOST: alepha86.TString;
|
|
1143
1143
|
}>;
|
|
1144
1144
|
declare module "alepha" {
|
|
1145
1145
|
interface Env extends Partial<Static<typeof envSchema$4>> {}
|
|
@@ -1316,8 +1316,8 @@ declare class Redirection extends Error {
|
|
|
1316
1316
|
}
|
|
1317
1317
|
//#endregion
|
|
1318
1318
|
//#region ../react/src/core/providers/ReactPageProvider.d.ts
|
|
1319
|
-
declare const envSchema$3:
|
|
1320
|
-
REACT_STRICT_MODE:
|
|
1319
|
+
declare const envSchema$3: alepha86.TObject<{
|
|
1320
|
+
REACT_STRICT_MODE: alepha86.TBoolean;
|
|
1321
1321
|
}>;
|
|
1322
1322
|
declare module "alepha" {
|
|
1323
1323
|
interface Env extends Partial<Static<typeof envSchema$3>> {}
|
|
@@ -1617,15 +1617,15 @@ type CssAnimation = {
|
|
|
1617
1617
|
};
|
|
1618
1618
|
//#endregion
|
|
1619
1619
|
//#region ../alepha/src/security/schemas/userAccountInfoSchema.d.ts
|
|
1620
|
-
declare const userAccountInfoSchema:
|
|
1621
|
-
id:
|
|
1622
|
-
name:
|
|
1623
|
-
email:
|
|
1624
|
-
username:
|
|
1625
|
-
picture:
|
|
1626
|
-
sessionId:
|
|
1627
|
-
organizations:
|
|
1628
|
-
roles:
|
|
1620
|
+
declare const userAccountInfoSchema: alepha86.TObject<{
|
|
1621
|
+
id: alepha86.TString;
|
|
1622
|
+
name: alepha86.TOptional<alepha86.TString>;
|
|
1623
|
+
email: alepha86.TOptional<alepha86.TString>;
|
|
1624
|
+
username: alepha86.TOptional<alepha86.TString>;
|
|
1625
|
+
picture: alepha86.TOptional<alepha86.TString>;
|
|
1626
|
+
sessionId: alepha86.TOptional<alepha86.TString>;
|
|
1627
|
+
organizations: alepha86.TOptional<alepha86.TArray<alepha86.TString>>;
|
|
1628
|
+
roles: alepha86.TOptional<alepha86.TArray<alepha86.TString>>;
|
|
1629
1629
|
}>;
|
|
1630
1630
|
type UserAccount = Static<typeof userAccountInfoSchema>;
|
|
1631
1631
|
//#endregion
|
|
@@ -1651,8 +1651,8 @@ interface UserAccountToken extends UserAccount {
|
|
|
1651
1651
|
}
|
|
1652
1652
|
//#endregion
|
|
1653
1653
|
//#region ../alepha/src/security/providers/SecurityProvider.d.ts
|
|
1654
|
-
declare const envSchema$2:
|
|
1655
|
-
APP_SECRET:
|
|
1654
|
+
declare const envSchema$2: alepha86.TObject<{
|
|
1655
|
+
APP_SECRET: alepha86.TString;
|
|
1656
1656
|
}>;
|
|
1657
1657
|
declare module "alepha" {
|
|
1658
1658
|
interface Env extends Partial<Static<typeof envSchema$2>> {}
|
|
@@ -1745,15 +1745,15 @@ declare module "alepha/server" {
|
|
|
1745
1745
|
*/
|
|
1746
1746
|
//#endregion
|
|
1747
1747
|
//#region ../alepha/src/server-links/schemas/apiLinksResponseSchema.d.ts
|
|
1748
|
-
declare const apiLinksResponseSchema:
|
|
1749
|
-
prefix:
|
|
1750
|
-
links:
|
|
1751
|
-
name:
|
|
1752
|
-
group:
|
|
1753
|
-
path:
|
|
1754
|
-
method:
|
|
1755
|
-
requestBodyType:
|
|
1756
|
-
service:
|
|
1748
|
+
declare const apiLinksResponseSchema: alepha86.TObject<{
|
|
1749
|
+
prefix: alepha86.TOptional<alepha86.TString>;
|
|
1750
|
+
links: alepha86.TArray<alepha86.TObject<{
|
|
1751
|
+
name: alepha86.TString;
|
|
1752
|
+
group: alepha86.TOptional<alepha86.TString>;
|
|
1753
|
+
path: alepha86.TString;
|
|
1754
|
+
method: alepha86.TOptional<alepha86.TString>;
|
|
1755
|
+
requestBodyType: alepha86.TOptional<alepha86.TString>;
|
|
1756
|
+
service: alepha86.TOptional<alepha86.TString>;
|
|
1757
1757
|
}>>;
|
|
1758
1758
|
}>;
|
|
1759
1759
|
type ApiLinksResponse = Static<typeof apiLinksResponseSchema>;
|
|
@@ -1783,8 +1783,8 @@ declare module "alepha" {
|
|
|
1783
1783
|
*/
|
|
1784
1784
|
//#endregion
|
|
1785
1785
|
//#region ../react/src/core/providers/ReactBrowserProvider.d.ts
|
|
1786
|
-
declare const envSchema$1:
|
|
1787
|
-
REACT_ROOT_ID:
|
|
1786
|
+
declare const envSchema$1: alepha86.TObject<{
|
|
1787
|
+
REACT_ROOT_ID: alepha86.TString;
|
|
1788
1788
|
}>;
|
|
1789
1789
|
declare module "alepha" {
|
|
1790
1790
|
interface Env extends Partial<Static<typeof envSchema$1>> {}
|
|
@@ -1792,8 +1792,8 @@ declare module "alepha" {
|
|
|
1792
1792
|
/**
|
|
1793
1793
|
* React browser renderer configuration atom
|
|
1794
1794
|
*/
|
|
1795
|
-
declare const reactBrowserOptions:
|
|
1796
|
-
scrollRestoration:
|
|
1795
|
+
declare const reactBrowserOptions: alepha86.Atom<alepha86.TObject<{
|
|
1796
|
+
scrollRestoration: alepha86.TUnsafe<"top" | "manual">;
|
|
1797
1797
|
}>, "alepha.react.browser.options">;
|
|
1798
1798
|
type ReactBrowserRendererOptions = Static<typeof reactBrowserOptions.schema>;
|
|
1799
1799
|
declare module "alepha" {
|
|
@@ -1860,10 +1860,10 @@ interface UseActiveOptions {
|
|
|
1860
1860
|
}
|
|
1861
1861
|
//#endregion
|
|
1862
1862
|
//#region ../react/src/core/providers/ReactServerProvider.d.ts
|
|
1863
|
-
declare const envSchema:
|
|
1864
|
-
REACT_SSR_ENABLED:
|
|
1865
|
-
REACT_ROOT_ID:
|
|
1866
|
-
REACT_SERVER_TEMPLATE:
|
|
1863
|
+
declare const envSchema: alepha86.TObject<{
|
|
1864
|
+
REACT_SSR_ENABLED: alepha86.TOptional<alepha86.TBoolean>;
|
|
1865
|
+
REACT_ROOT_ID: alepha86.TString;
|
|
1866
|
+
REACT_SERVER_TEMPLATE: alepha86.TOptional<alepha86.TString>;
|
|
1867
1867
|
}>;
|
|
1868
1868
|
declare module "alepha" {
|
|
1869
1869
|
interface Env extends Partial<Static<typeof envSchema>> {}
|
|
@@ -1874,11 +1874,11 @@ declare module "alepha" {
|
|
|
1874
1874
|
/**
|
|
1875
1875
|
* React server provider configuration atom
|
|
1876
1876
|
*/
|
|
1877
|
-
declare const reactServerOptions:
|
|
1878
|
-
publicDir:
|
|
1879
|
-
staticServer:
|
|
1880
|
-
disabled:
|
|
1881
|
-
path:
|
|
1877
|
+
declare const reactServerOptions: alepha86.Atom<alepha86.TObject<{
|
|
1878
|
+
publicDir: alepha86.TString;
|
|
1879
|
+
staticServer: alepha86.TObject<{
|
|
1880
|
+
disabled: alepha86.TBoolean;
|
|
1881
|
+
path: alepha86.TString;
|
|
1882
1882
|
}>;
|
|
1883
1883
|
}>, "alepha.react.server.options">;
|
|
1884
1884
|
type ReactServerProviderOptions = Static<typeof reactServerOptions.schema>;
|
|
@@ -2080,7 +2080,7 @@ interface ActionCommonProps extends ButtonProps {
|
|
|
2080
2080
|
themeIconProps?: ThemeIconProps;
|
|
2081
2081
|
}
|
|
2082
2082
|
type ActionProps = ActionCommonProps & (ActionNavigationButtonProps | ActionClickButtonProps | ActionSubmitButtonProps | ActionHookButtonProps | {});
|
|
2083
|
-
declare const ActionButton: (_props: ActionProps) =>
|
|
2083
|
+
declare const ActionButton: (_props: ActionProps) => react_jsx_runtime13.JSX.Element;
|
|
2084
2084
|
interface ActionSubmitButtonProps extends ButtonProps {
|
|
2085
2085
|
form: FormModel<any>;
|
|
2086
2086
|
type?: "submit" | "reset";
|
|
@@ -2103,7 +2103,7 @@ interface ActionNavigationButtonProps extends ButtonProps {
|
|
|
2103
2103
|
//#endregion
|
|
2104
2104
|
//#region src/core/components/buttons/BurgerButton.d.ts
|
|
2105
2105
|
interface BurgerButtonProps extends BurgerProps {}
|
|
2106
|
-
declare const BurgerButton: (props: BurgerButtonProps) =>
|
|
2106
|
+
declare const BurgerButton: (props: BurgerButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2107
2107
|
//#endregion
|
|
2108
2108
|
//#region src/core/components/buttons/ClipboardButton.d.ts
|
|
2109
2109
|
interface ClipboardButtonProps extends Omit<ActionCommonProps, "onClick" | "icon"> {
|
|
@@ -2124,7 +2124,7 @@ interface ClipboardButtonProps extends Omit<ActionCommonProps, "onClick" | "icon
|
|
|
2124
2124
|
*/
|
|
2125
2125
|
copiedLabel?: string;
|
|
2126
2126
|
}
|
|
2127
|
-
declare const ClipboardButton: (props: ClipboardButtonProps) =>
|
|
2127
|
+
declare const ClipboardButton: (props: ClipboardButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2128
2128
|
//#endregion
|
|
2129
2129
|
//#region src/core/components/buttons/DarkModeButton.d.ts
|
|
2130
2130
|
interface DarkModeButtonProps {
|
|
@@ -2135,21 +2135,21 @@ interface DarkModeButtonProps {
|
|
|
2135
2135
|
segmentedProps?: Partial<SegmentedControlProps>;
|
|
2136
2136
|
actionProps?: Partial<ActionProps>;
|
|
2137
2137
|
}
|
|
2138
|
-
declare const DarkModeButton: (props: DarkModeButtonProps) =>
|
|
2138
|
+
declare const DarkModeButton: (props: DarkModeButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2139
2139
|
//#endregion
|
|
2140
2140
|
//#region src/core/components/buttons/LanguageButton.d.ts
|
|
2141
2141
|
interface LanguageButtonProps {
|
|
2142
2142
|
languages?: string[];
|
|
2143
2143
|
actionProps?: ActionProps;
|
|
2144
2144
|
}
|
|
2145
|
-
declare const LanguageButton: (props: LanguageButtonProps) =>
|
|
2145
|
+
declare const LanguageButton: (props: LanguageButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2146
2146
|
//#endregion
|
|
2147
2147
|
//#region src/core/components/buttons/OmnibarButton.d.ts
|
|
2148
2148
|
interface OmnibarButtonProps {
|
|
2149
2149
|
actionProps?: ActionProps;
|
|
2150
2150
|
collapsed?: boolean;
|
|
2151
2151
|
}
|
|
2152
|
-
declare const OmnibarButton: (props: OmnibarButtonProps) =>
|
|
2152
|
+
declare const OmnibarButton: (props: OmnibarButtonProps) => react_jsx_runtime13.JSX.Element;
|
|
2153
2153
|
//#endregion
|
|
2154
2154
|
//#region src/core/components/data/JsonViewer.d.ts
|
|
2155
2155
|
interface JsonViewerProps {
|
|
@@ -2165,7 +2165,7 @@ declare const JsonViewer: ({
|
|
|
2165
2165
|
maxDepth,
|
|
2166
2166
|
copyable,
|
|
2167
2167
|
size
|
|
2168
|
-
}: JsonViewerProps) =>
|
|
2168
|
+
}: JsonViewerProps) => react_jsx_runtime13.JSX.Element;
|
|
2169
2169
|
//#endregion
|
|
2170
2170
|
//#region src/core/services/DialogService.d.ts
|
|
2171
2171
|
interface BaseDialogOptions extends Partial<ModalProps> {
|
|
@@ -2250,19 +2250,19 @@ declare class DialogService {
|
|
|
2250
2250
|
declare const AlertDialog: ({
|
|
2251
2251
|
options,
|
|
2252
2252
|
onClose
|
|
2253
|
-
}: AlertDialogProps) =>
|
|
2253
|
+
}: AlertDialogProps) => react_jsx_runtime13.JSX.Element;
|
|
2254
2254
|
//#endregion
|
|
2255
2255
|
//#region src/core/components/dialogs/ConfirmDialog.d.ts
|
|
2256
2256
|
declare const ConfirmDialog: ({
|
|
2257
2257
|
options,
|
|
2258
2258
|
onConfirm
|
|
2259
|
-
}: ConfirmDialogProps) =>
|
|
2259
|
+
}: ConfirmDialogProps) => react_jsx_runtime13.JSX.Element;
|
|
2260
2260
|
//#endregion
|
|
2261
2261
|
//#region src/core/components/dialogs/PromptDialog.d.ts
|
|
2262
2262
|
declare const PromptDialog: ({
|
|
2263
2263
|
options,
|
|
2264
2264
|
onSubmit
|
|
2265
|
-
}: PromptDialogProps) =>
|
|
2265
|
+
}: PromptDialogProps) => react_jsx_runtime13.JSX.Element;
|
|
2266
2266
|
//#endregion
|
|
2267
2267
|
//#region src/core/components/form/ControlDate.d.ts
|
|
2268
2268
|
interface ControlDateProps extends GenericControlProps {
|
|
@@ -2280,7 +2280,7 @@ interface ControlDateProps extends GenericControlProps {
|
|
|
2280
2280
|
*
|
|
2281
2281
|
* Automatically detects date formats from schema and renders appropriate picker.
|
|
2282
2282
|
*/
|
|
2283
|
-
declare const ControlDate: (props: ControlDateProps) =>
|
|
2283
|
+
declare const ControlDate: (props: ControlDateProps) => react_jsx_runtime13.JSX.Element | null;
|
|
2284
2284
|
//#endregion
|
|
2285
2285
|
//#region src/core/components/form/ControlQueryBuilder.d.ts
|
|
2286
2286
|
interface ControlQueryBuilderProps extends Omit<TextInputProps, "value" | "onChange"> {
|
|
@@ -2299,7 +2299,7 @@ declare const ControlQueryBuilder: ({
|
|
|
2299
2299
|
onChange,
|
|
2300
2300
|
placeholder,
|
|
2301
2301
|
...textInputProps
|
|
2302
|
-
}: ControlQueryBuilderProps) =>
|
|
2302
|
+
}: ControlQueryBuilderProps) => react_jsx_runtime13.JSX.Element;
|
|
2303
2303
|
//#endregion
|
|
2304
2304
|
//#region src/core/components/form/TypeForm.d.ts
|
|
2305
2305
|
interface TypeFormProps<T$1 extends TObject> {
|
|
@@ -2345,7 +2345,7 @@ interface TypeFormProps<T$1 extends TObject> {
|
|
|
2345
2345
|
* return <TypeForm form={form} columns={2} />;
|
|
2346
2346
|
* ```
|
|
2347
2347
|
*/
|
|
2348
|
-
declare const TypeForm: <T$1 extends TObject>(props: TypeFormProps<T$1>) =>
|
|
2348
|
+
declare const TypeForm: <T$1 extends TObject>(props: TypeFormProps<T$1>) => react_jsx_runtime13.JSX.Element | null;
|
|
2349
2349
|
//#endregion
|
|
2350
2350
|
//#region src/core/components/layout/AppBar.d.ts
|
|
2351
2351
|
type AppBarItem = AppBarElement | AppBarBurger | AppBarDark | AppBarSearch | AppBarLang | AppBarSpacer | AppBarDivider;
|
|
@@ -2384,7 +2384,7 @@ interface AppBarProps {
|
|
|
2384
2384
|
flexProps?: FlexProps;
|
|
2385
2385
|
items?: AppBarItem[];
|
|
2386
2386
|
}
|
|
2387
|
-
declare const AppBar: (props: AppBarProps) =>
|
|
2387
|
+
declare const AppBar: (props: AppBarProps) => react_jsx_runtime13.JSX.Element;
|
|
2388
2388
|
//#endregion
|
|
2389
2389
|
//#region src/core/components/layout/Sidebar.d.ts
|
|
2390
2390
|
interface SidebarProps {
|
|
@@ -2401,7 +2401,7 @@ interface SidebarProps {
|
|
|
2401
2401
|
paths?: string[];
|
|
2402
2402
|
};
|
|
2403
2403
|
}
|
|
2404
|
-
declare const Sidebar: (props: SidebarProps) =>
|
|
2404
|
+
declare const Sidebar: (props: SidebarProps) => react_jsx_runtime13.JSX.Element;
|
|
2405
2405
|
interface SidebarItemProps {
|
|
2406
2406
|
item: SidebarMenuItem;
|
|
2407
2407
|
level: number;
|
|
@@ -2488,7 +2488,7 @@ declare module "alepha" {
|
|
|
2488
2488
|
"alepha.ui.sidebar.collapsed"?: boolean;
|
|
2489
2489
|
}
|
|
2490
2490
|
}
|
|
2491
|
-
declare const AdminShell: (props: AdminShellProps) =>
|
|
2491
|
+
declare const AdminShell: (props: AdminShellProps) => react_jsx_runtime13.JSX.Element;
|
|
2492
2492
|
//#endregion
|
|
2493
2493
|
//#region src/core/components/layout/Omnibar.d.ts
|
|
2494
2494
|
interface OmnibarProps {
|
|
@@ -2496,7 +2496,7 @@ interface OmnibarProps {
|
|
|
2496
2496
|
searchPlaceholder?: string;
|
|
2497
2497
|
nothingFound?: ReactNode;
|
|
2498
2498
|
}
|
|
2499
|
-
declare const Omnibar: (props: OmnibarProps) =>
|
|
2499
|
+
declare const Omnibar: (props: OmnibarProps) => react_jsx_runtime13.JSX.Element;
|
|
2500
2500
|
//#endregion
|
|
2501
2501
|
//#region src/core/components/layout/AlephaMantineProvider.d.ts
|
|
2502
2502
|
interface AlephaMantineProviderProps {
|
|
@@ -2508,7 +2508,7 @@ interface AlephaMantineProviderProps {
|
|
|
2508
2508
|
modals?: ModalsProviderProps;
|
|
2509
2509
|
omnibar?: OmnibarProps;
|
|
2510
2510
|
}
|
|
2511
|
-
declare const AlephaMantineProvider: (props: AlephaMantineProviderProps) =>
|
|
2511
|
+
declare const AlephaMantineProvider: (props: AlephaMantineProviderProps) => react_jsx_runtime13.JSX.Element;
|
|
2512
2512
|
//#endregion
|
|
2513
2513
|
//#region src/core/components/table/DataTable.d.ts
|
|
2514
2514
|
interface DataTableColumnContext<Filters extends TObject> {
|
|
@@ -2570,7 +2570,7 @@ interface DataTableProps<T$1 extends object, Filters extends TObject> {
|
|
|
2570
2570
|
*/
|
|
2571
2571
|
tableTrProps?: (item: T$1) => TableTrProps;
|
|
2572
2572
|
}
|
|
2573
|
-
declare const DataTable: <T$1 extends object, Filters extends TObject>(props: DataTableProps<T$1, Filters>) =>
|
|
2573
|
+
declare const DataTable: <T$1 extends object, Filters extends TObject>(props: DataTableProps<T$1, Filters>) => react_jsx_runtime13.JSX.Element;
|
|
2574
2574
|
//#endregion
|
|
2575
2575
|
//#region src/core/constants/ui.d.ts
|
|
2576
2576
|
declare const ui: {
|
|
@@ -2737,7 +2737,7 @@ declare module "@alepha/react" {
|
|
|
2737
2737
|
*
|
|
2738
2738
|
* @module alepha.ui
|
|
2739
2739
|
*/
|
|
2740
|
-
declare const AlephaUI:
|
|
2740
|
+
declare const AlephaUI: alepha86.Service<alepha86.Module>;
|
|
2741
2741
|
//#endregion
|
|
2742
2742
|
export { ActionButton, type ActionClickButtonProps, type ActionCommonProps, type ActionMenuConfig, type ActionMenuItem, type ActionNavigationButtonProps, type ActionProps, type ActionSubmitButtonProps, AdminShell, type AdminShellProps, AlephaMantineProvider, AlephaUI, AlertDialog, type AlertDialogOptions, type AlertDialogProps, AppBar, type AppBarBurger, type AppBarDark, type AppBarDivider, type AppBarElement, type AppBarItem, type AppBarLang, type AppBarProps, type AppBarSearch, type AppBarSpacer, type BaseDialogOptions, BurgerButton, ClipboardButton, type ClipboardButtonProps, ConfirmDialog, type ConfirmDialogOptions, type ConfirmDialogProps, Control, ControlDate, ControlQueryBuilder, ControlSelect, DarkModeButton, DataTable, type DataTableColumn, type DataTableProps, DialogService, Flex, IconSize, JsonViewer, LanguageButton, OPERATOR_INFO, Omnibar, OmnibarButton, PromptDialog, type PromptDialogOptions, type PromptDialogProps, RootRouter, SchemaField, Sidebar, type SidebarAbstractItem, type SidebarButtonTheme, type SidebarDivider, type SidebarElement, type SidebarItemProps, type SidebarMenuItem, type SidebarNode, type SidebarProps, type SidebarSearch, type SidebarSection, type SidebarSpacer, type SidebarTheme, Text, ToastService, TypeForm, capitalize, extractSchemaFields, getDefaultIcon, getOperatorsForField, prettyName, ui, useDialog, useToast };
|
|
2743
2743
|
//# sourceMappingURL=index.d.ts.map
|