@alepha/ui 0.11.5 → 0.11.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2025 Feunard
3
+ Copyright (c) 2025 Nicolas Foures
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
@@ -0,0 +1,3 @@
1
+ import { t as AlephaMantineProvider_default } from "./AlephaMantineProvider-CzMrw7V3.js";
2
+
3
+ export { AlephaMantineProvider_default as default };
@@ -1,10 +1,10 @@
1
1
  import { NestedView, useEvents, useInject, useRouter } from "@alepha/react";
2
- import { ModalsProvider } from "@mantine/modals";
3
2
  import { ColorSchemeScript, MantineProvider } from "@mantine/core";
4
- import { Fragment, jsx, jsxs } from "react/jsx-runtime";
3
+ import { ModalsProvider } from "@mantine/modals";
4
+ import { IconAlertTriangle, IconCheck, IconInfoCircle, IconSearch, IconX } from "@tabler/icons-react";
5
5
  import { useMemo } from "react";
6
+ import { Fragment, jsx, jsxs } from "react/jsx-runtime";
6
7
  import { Notifications, notifications } from "@mantine/notifications";
7
- import { IconAlertTriangle, IconCheck, IconInfoCircle, IconSearch, IconX } from "@tabler/icons-react";
8
8
  import { Spotlight } from "@mantine/spotlight";
9
9
  import { NavigationProgress, nprogress } from "@mantine/nprogress";
10
10
 
@@ -147,4 +147,4 @@ var AlephaMantineProvider_default = AlephaMantineProvider;
147
147
 
148
148
  //#endregion
149
149
  export { ToastService as i, Omnibar_default as n, useToast as r, AlephaMantineProvider_default as t };
150
- //# sourceMappingURL=AlephaMantineProvider-Be0DAazb.js.map
150
+ //# sourceMappingURL=AlephaMantineProvider-CzMrw7V3.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"AlephaMantineProvider-Be0DAazb.js","names":["Omnibar"],"sources":["../src/services/ToastService.tsx","../src/hooks/useToast.ts","../src/components/layout/Omnibar.tsx","../src/components/layout/AlephaMantineProvider.tsx"],"sourcesContent":["import type { NotificationData } from \"@mantine/notifications\";\nimport { notifications } from \"@mantine/notifications\";\nimport {\n IconAlertTriangle,\n IconCheck,\n IconInfoCircle,\n IconX,\n} from \"@tabler/icons-react\";\n\nexport interface ToastServiceOptions {\n default?: Partial<NotificationData>;\n}\n\nexport class ToastService {\n protected readonly raw = notifications;\n\n public readonly options: ToastServiceOptions = {\n default: {\n autoClose: 5000,\n withCloseButton: true,\n position: \"top-center\",\n },\n };\n\n public show(options: NotificationData) {\n notifications.show({\n ...this.options.default,\n ...options,\n });\n }\n\n public info(options: Partial<NotificationData> | string) {\n if (typeof options === \"string\") {\n options = { message: options };\n }\n this.show({\n color: \"blue\",\n icon: <IconInfoCircle size={20} />,\n title: \"Info\",\n message: \"Information notification\",\n ...options,\n });\n }\n\n public success(options: Partial<NotificationData> | string) {\n if (typeof options === \"string\") {\n options = { message: options };\n }\n this.show({\n color: \"green\",\n icon: <IconCheck size={16} />,\n title: \"Success\",\n message: \"Operation completed successfully\",\n ...options,\n });\n }\n\n public warning(options: Partial<NotificationData> | string) {\n if (typeof options === \"string\") {\n options = { message: options };\n }\n this.show({\n color: \"yellow\",\n icon: <IconAlertTriangle size={20} />,\n title: \"Warning\",\n message: \"Please review this warning\",\n ...options,\n });\n }\n\n public danger(options: Partial<NotificationData> | string) {\n if (typeof options === \"string\") {\n options = { message: options };\n }\n this.show({\n color: \"red\",\n icon: <IconX size={20} />,\n title: \"Error\",\n message: \"An error occurred\",\n ...options,\n });\n }\n}\n","import { useInject } from \"@alepha/react\";\nimport { ToastService } from \"../services/ToastService.tsx\";\n\n/**\n * Use this hook to access the Toast Service for showing notifications.\n *\n * @example\n * const toast = useToast();\n * toast.success({ message: \"Operation completed successfully!\" });\n * toast.error({ title: \"Error\", message: \"Something went wrong\" });\n */\nexport const useToast = (): ToastService => {\n return useInject(ToastService);\n};\n","import { useRouter } from \"@alepha/react\";\nimport { Spotlight, type SpotlightActionData } from \"@mantine/spotlight\";\nimport { IconSearch } from \"@tabler/icons-react\";\nimport { type ReactNode, useMemo } from \"react\";\n\nexport interface OmnibarProps {\n shortcut?: string | string[];\n searchPlaceholder?: string;\n nothingFound?: ReactNode;\n}\n\nconst Omnibar = (props: OmnibarProps) => {\n const shortcut = props.shortcut ?? \"mod+K\";\n const searchPlaceholder = props.searchPlaceholder ?? \"Search...\";\n const nothingFound = props.nothingFound ?? \"Nothing found...\";\n const router = useRouter();\n const actions: SpotlightActionData[] = useMemo(\n () =>\n router.concretePages.map((page) => ({\n id: page.name,\n label: page.label ?? page.name,\n description: page.description,\n onClick: () => router.go(page.path ?? page.name),\n leftSection: page.icon,\n })),\n [],\n );\n\n return (\n <Spotlight\n actions={actions}\n shortcut={shortcut}\n limit={10}\n searchProps={{\n leftSection: <IconSearch size={20} />,\n placeholder: searchPlaceholder,\n }}\n nothingFound={nothingFound}\n />\n );\n};\n\nexport default Omnibar;\n","import { NestedView, useEvents } from \"@alepha/react\";\nimport type {\n ColorSchemeScriptProps,\n MantineProviderProps,\n} from \"@mantine/core\";\nimport { ColorSchemeScript, MantineProvider } from \"@mantine/core\";\nimport { ModalsProvider, type ModalsProviderProps } from \"@mantine/modals\";\nimport { Notifications, type NotificationsProps } from \"@mantine/notifications\";\nimport type { NavigationProgressProps } from \"@mantine/nprogress\";\nimport { NavigationProgress, nprogress } from \"@mantine/nprogress\";\nimport type { ReactNode } from \"react\";\nimport { useToast } from \"../../hooks/useToast.ts\";\nimport Omnibar, { type OmnibarProps } from \"./Omnibar.tsx\";\n\nexport interface AlephaMantineProviderProps {\n children?: ReactNode;\n mantine?: MantineProviderProps;\n colorSchemeScript?: ColorSchemeScriptProps;\n navigationProgress?: NavigationProgressProps;\n notifications?: NotificationsProps;\n modals?: ModalsProviderProps;\n omnibar?: OmnibarProps;\n}\n\nconst AlephaMantineProvider = (props: AlephaMantineProviderProps) => {\n const toast = useToast();\n\n useEvents(\n {\n \"react:transition:begin\": () => {\n nprogress.start();\n },\n \"react:transition:end\": () => {\n nprogress.complete();\n },\n \"react:action:error\": () => {\n toast.danger(\"An error occurred while processing your action.\");\n },\n },\n [],\n );\n\n return (\n <>\n <ColorSchemeScript\n defaultColorScheme={props.mantine?.defaultColorScheme}\n {...props.colorSchemeScript}\n />\n <MantineProvider\n {...props.mantine}\n theme={{\n primaryColor: \"gray\",\n primaryShade: {\n light: 9,\n dark: 8,\n },\n cursorType: \"pointer\",\n ...props.mantine?.theme,\n }}\n >\n <Notifications {...props.notifications} />\n <NavigationProgress {...props.navigationProgress} />\n <ModalsProvider {...props.modals}>\n <Omnibar {...props.omnibar} />\n {props.children ?? <NestedView />}\n </ModalsProvider>\n </MantineProvider>\n </>\n );\n};\n\nexport default AlephaMantineProvider;\n"],"mappings":";;;;;;;;;;;AAaA,IAAa,eAAb,MAA0B;CACxB,AAAmB,MAAM;CAEzB,AAAgB,UAA+B,EAC7C,SAAS;EACP,WAAW;EACX,iBAAiB;EACjB,UAAU;EACX,EACF;CAED,AAAO,KAAK,SAA2B;AACrC,gBAAc,KAAK;GACjB,GAAG,KAAK,QAAQ;GAChB,GAAG;GACJ,CAAC;;CAGJ,AAAO,KAAK,SAA6C;AACvD,MAAI,OAAO,YAAY,SACrB,WAAU,EAAE,SAAS,SAAS;AAEhC,OAAK,KAAK;GACR,OAAO;GACP,MAAM,oBAAC,kBAAe,MAAM,KAAM;GAClC,OAAO;GACP,SAAS;GACT,GAAG;GACJ,CAAC;;CAGJ,AAAO,QAAQ,SAA6C;AAC1D,MAAI,OAAO,YAAY,SACrB,WAAU,EAAE,SAAS,SAAS;AAEhC,OAAK,KAAK;GACR,OAAO;GACP,MAAM,oBAAC,aAAU,MAAM,KAAM;GAC7B,OAAO;GACP,SAAS;GACT,GAAG;GACJ,CAAC;;CAGJ,AAAO,QAAQ,SAA6C;AAC1D,MAAI,OAAO,YAAY,SACrB,WAAU,EAAE,SAAS,SAAS;AAEhC,OAAK,KAAK;GACR,OAAO;GACP,MAAM,oBAAC,qBAAkB,MAAM,KAAM;GACrC,OAAO;GACP,SAAS;GACT,GAAG;GACJ,CAAC;;CAGJ,AAAO,OAAO,SAA6C;AACzD,MAAI,OAAO,YAAY,SACrB,WAAU,EAAE,SAAS,SAAS;AAEhC,OAAK,KAAK;GACR,OAAO;GACP,MAAM,oBAAC,SAAM,MAAM,KAAM;GACzB,OAAO;GACP,SAAS;GACT,GAAG;GACJ,CAAC;;;;;;;;;;;;;;ACrEN,MAAa,iBAA+B;AAC1C,QAAO,UAAU,aAAa;;;;;ACDhC,MAAM,WAAW,UAAwB;CACvC,MAAM,WAAW,MAAM,YAAY;CACnC,MAAM,oBAAoB,MAAM,qBAAqB;CACrD,MAAM,eAAe,MAAM,gBAAgB;CAC3C,MAAM,SAAS,WAAW;AAa1B,QACE,oBAAC;EACC,SAdmC,cAEnC,OAAO,cAAc,KAAK,UAAU;GAClC,IAAI,KAAK;GACT,OAAO,KAAK,SAAS,KAAK;GAC1B,aAAa,KAAK;GAClB,eAAe,OAAO,GAAG,KAAK,QAAQ,KAAK,KAAK;GAChD,aAAa,KAAK;GACnB,EAAE,EACL,EAAE,CACH;EAKa;EACV,OAAO;EACP,aAAa;GACX,aAAa,oBAAC,cAAW,MAAM,KAAM;GACrC,aAAa;GACd;EACa;GACd;;AAIN,sBAAe;;;;AClBf,MAAM,yBAAyB,UAAsC;CACnE,MAAM,QAAQ,UAAU;AAExB,WACE;EACE,gCAAgC;AAC9B,aAAU,OAAO;;EAEnB,8BAA8B;AAC5B,aAAU,UAAU;;EAEtB,4BAA4B;AAC1B,SAAM,OAAO,kDAAkD;;EAElE,EACD,EAAE,CACH;AAED,QACE,4CACE,oBAAC;EACC,oBAAoB,MAAM,SAAS;EACnC,GAAI,MAAM;GACV,EACF,qBAAC;EACC,GAAI,MAAM;EACV,OAAO;GACL,cAAc;GACd,cAAc;IACZ,OAAO;IACP,MAAM;IACP;GACD,YAAY;GACZ,GAAG,MAAM,SAAS;GACnB;;GAED,oBAAC,iBAAc,GAAI,MAAM,gBAAiB;GAC1C,oBAAC,sBAAmB,GAAI,MAAM,qBAAsB;GACpD,qBAAC;IAAe,GAAI,MAAM;eACxB,oBAACA,mBAAQ,GAAI,MAAM,UAAW,EAC7B,MAAM,YAAY,oBAAC,eAAa;KAClB;;GACD,IACjB;;AAIP,oCAAe"}
1
+ {"version":3,"file":"AlephaMantineProvider-CzMrw7V3.js","names":["Omnibar"],"sources":["../src/services/ToastService.tsx","../src/hooks/useToast.ts","../src/components/layout/Omnibar.tsx","../src/components/layout/AlephaMantineProvider.tsx"],"sourcesContent":["import type { NotificationData } from \"@mantine/notifications\";\nimport { notifications } from \"@mantine/notifications\";\nimport {\n IconAlertTriangle,\n IconCheck,\n IconInfoCircle,\n IconX,\n} from \"@tabler/icons-react\";\n\nexport interface ToastServiceOptions {\n default?: Partial<NotificationData>;\n}\n\nexport class ToastService {\n protected readonly raw = notifications;\n\n public readonly options: ToastServiceOptions = {\n default: {\n autoClose: 5000,\n withCloseButton: true,\n position: \"top-center\",\n },\n };\n\n public show(options: NotificationData) {\n notifications.show({\n ...this.options.default,\n ...options,\n });\n }\n\n public info(options: Partial<NotificationData> | string) {\n if (typeof options === \"string\") {\n options = { message: options };\n }\n this.show({\n color: \"blue\",\n icon: <IconInfoCircle size={20} />,\n title: \"Info\",\n message: \"Information notification\",\n ...options,\n });\n }\n\n public success(options: Partial<NotificationData> | string) {\n if (typeof options === \"string\") {\n options = { message: options };\n }\n this.show({\n color: \"green\",\n icon: <IconCheck size={16} />,\n title: \"Success\",\n message: \"Operation completed successfully\",\n ...options,\n });\n }\n\n public warning(options: Partial<NotificationData> | string) {\n if (typeof options === \"string\") {\n options = { message: options };\n }\n this.show({\n color: \"yellow\",\n icon: <IconAlertTriangle size={20} />,\n title: \"Warning\",\n message: \"Please review this warning\",\n ...options,\n });\n }\n\n public danger(options: Partial<NotificationData> | string) {\n if (typeof options === \"string\") {\n options = { message: options };\n }\n this.show({\n color: \"red\",\n icon: <IconX size={20} />,\n title: \"Error\",\n message: \"An error occurred\",\n ...options,\n });\n }\n}\n","import { useInject } from \"@alepha/react\";\nimport { ToastService } from \"../services/ToastService.tsx\";\n\n/**\n * Use this hook to access the Toast Service for showing notifications.\n *\n * @example\n * const toast = useToast();\n * toast.success({ message: \"Operation completed successfully!\" });\n * toast.error({ title: \"Error\", message: \"Something went wrong\" });\n */\nexport const useToast = (): ToastService => {\n return useInject(ToastService);\n};\n","import { useRouter } from \"@alepha/react\";\nimport { Spotlight, type SpotlightActionData } from \"@mantine/spotlight\";\nimport { IconSearch } from \"@tabler/icons-react\";\nimport { type ReactNode, useMemo } from \"react\";\n\nexport interface OmnibarProps {\n shortcut?: string | string[];\n searchPlaceholder?: string;\n nothingFound?: ReactNode;\n}\n\nconst Omnibar = (props: OmnibarProps) => {\n const shortcut = props.shortcut ?? \"mod+K\";\n const searchPlaceholder = props.searchPlaceholder ?? \"Search...\";\n const nothingFound = props.nothingFound ?? \"Nothing found...\";\n const router = useRouter();\n const actions: SpotlightActionData[] = useMemo(\n () =>\n router.concretePages.map((page) => ({\n id: page.name,\n label: page.label ?? page.name,\n description: page.description,\n onClick: () => router.go(page.path ?? page.name),\n leftSection: page.icon,\n })),\n [],\n );\n\n return (\n <Spotlight\n actions={actions}\n shortcut={shortcut}\n limit={10}\n searchProps={{\n leftSection: <IconSearch size={20} />,\n placeholder: searchPlaceholder,\n }}\n nothingFound={nothingFound}\n />\n );\n};\n\nexport default Omnibar;\n","import { NestedView, useEvents } from \"@alepha/react\";\nimport type {\n ColorSchemeScriptProps,\n MantineProviderProps,\n} from \"@mantine/core\";\nimport { ColorSchemeScript, MantineProvider } from \"@mantine/core\";\nimport { ModalsProvider, type ModalsProviderProps } from \"@mantine/modals\";\nimport { Notifications, type NotificationsProps } from \"@mantine/notifications\";\nimport type { NavigationProgressProps } from \"@mantine/nprogress\";\nimport { NavigationProgress, nprogress } from \"@mantine/nprogress\";\nimport type { ReactNode } from \"react\";\nimport { useToast } from \"../../hooks/useToast.ts\";\nimport Omnibar, { type OmnibarProps } from \"./Omnibar.tsx\";\n\nexport interface AlephaMantineProviderProps {\n children?: ReactNode;\n mantine?: MantineProviderProps;\n colorSchemeScript?: ColorSchemeScriptProps;\n navigationProgress?: NavigationProgressProps;\n notifications?: NotificationsProps;\n modals?: ModalsProviderProps;\n omnibar?: OmnibarProps;\n}\n\nconst AlephaMantineProvider = (props: AlephaMantineProviderProps) => {\n const toast = useToast();\n\n useEvents(\n {\n \"react:transition:begin\": () => {\n nprogress.start();\n },\n \"react:transition:end\": () => {\n nprogress.complete();\n },\n \"react:action:error\": () => {\n toast.danger(\"An error occurred while processing your action.\");\n },\n },\n [],\n );\n\n return (\n <>\n <ColorSchemeScript\n defaultColorScheme={props.mantine?.defaultColorScheme}\n {...props.colorSchemeScript}\n />\n <MantineProvider\n {...props.mantine}\n theme={{\n primaryColor: \"gray\",\n primaryShade: {\n light: 9,\n dark: 8,\n },\n cursorType: \"pointer\",\n ...props.mantine?.theme,\n }}\n >\n <Notifications {...props.notifications} />\n <NavigationProgress {...props.navigationProgress} />\n <ModalsProvider {...props.modals}>\n <Omnibar {...props.omnibar} />\n {props.children ?? <NestedView />}\n </ModalsProvider>\n </MantineProvider>\n </>\n );\n};\n\nexport default AlephaMantineProvider;\n"],"mappings":";;;;;;;;;;;AAaA,IAAa,eAAb,MAA0B;CACxB,AAAmB,MAAM;CAEzB,AAAgB,UAA+B,EAC7C,SAAS;EACP,WAAW;EACX,iBAAiB;EACjB,UAAU;EACX,EACF;CAED,AAAO,KAAK,SAA2B;AACrC,gBAAc,KAAK;GACjB,GAAG,KAAK,QAAQ;GAChB,GAAG;GACJ,CAAC;;CAGJ,AAAO,KAAK,SAA6C;AACvD,MAAI,OAAO,YAAY,SACrB,WAAU,EAAE,SAAS,SAAS;AAEhC,OAAK,KAAK;GACR,OAAO;GACP,MAAM,oBAAC,kBAAe,MAAM,KAAM;GAClC,OAAO;GACP,SAAS;GACT,GAAG;GACJ,CAAC;;CAGJ,AAAO,QAAQ,SAA6C;AAC1D,MAAI,OAAO,YAAY,SACrB,WAAU,EAAE,SAAS,SAAS;AAEhC,OAAK,KAAK;GACR,OAAO;GACP,MAAM,oBAAC,aAAU,MAAM,KAAM;GAC7B,OAAO;GACP,SAAS;GACT,GAAG;GACJ,CAAC;;CAGJ,AAAO,QAAQ,SAA6C;AAC1D,MAAI,OAAO,YAAY,SACrB,WAAU,EAAE,SAAS,SAAS;AAEhC,OAAK,KAAK;GACR,OAAO;GACP,MAAM,oBAAC,qBAAkB,MAAM,KAAM;GACrC,OAAO;GACP,SAAS;GACT,GAAG;GACJ,CAAC;;CAGJ,AAAO,OAAO,SAA6C;AACzD,MAAI,OAAO,YAAY,SACrB,WAAU,EAAE,SAAS,SAAS;AAEhC,OAAK,KAAK;GACR,OAAO;GACP,MAAM,oBAAC,SAAM,MAAM,KAAM;GACzB,OAAO;GACP,SAAS;GACT,GAAG;GACJ,CAAC;;;;;;;;;;;;;;ACrEN,MAAa,iBAA+B;AAC1C,QAAO,UAAU,aAAa;;;;;ACDhC,MAAM,WAAW,UAAwB;CACvC,MAAM,WAAW,MAAM,YAAY;CACnC,MAAM,oBAAoB,MAAM,qBAAqB;CACrD,MAAM,eAAe,MAAM,gBAAgB;CAC3C,MAAM,SAAS,WAAW;AAa1B,QACE,oBAAC;EACC,SAdmC,cAEnC,OAAO,cAAc,KAAK,UAAU;GAClC,IAAI,KAAK;GACT,OAAO,KAAK,SAAS,KAAK;GAC1B,aAAa,KAAK;GAClB,eAAe,OAAO,GAAG,KAAK,QAAQ,KAAK,KAAK;GAChD,aAAa,KAAK;GACnB,EAAE,EACL,EAAE,CACH;EAKa;EACV,OAAO;EACP,aAAa;GACX,aAAa,oBAAC,cAAW,MAAM,KAAM;GACrC,aAAa;GACd;EACa;GACd;;AAIN,sBAAe;;;;AClBf,MAAM,yBAAyB,UAAsC;CACnE,MAAM,QAAQ,UAAU;AAExB,WACE;EACE,gCAAgC;AAC9B,aAAU,OAAO;;EAEnB,8BAA8B;AAC5B,aAAU,UAAU;;EAEtB,4BAA4B;AAC1B,SAAM,OAAO,kDAAkD;;EAElE,EACD,EAAE,CACH;AAED,QACE,4CACE,oBAAC;EACC,oBAAoB,MAAM,SAAS;EACnC,GAAI,MAAM;GACV,EACF,qBAAC;EACC,GAAI,MAAM;EACV,OAAO;GACL,cAAc;GACd,cAAc;IACZ,OAAO;IACP,MAAM;IACP;GACD,YAAY;GACZ,GAAG,MAAM,SAAS;GACnB;;GAED,oBAAC,iBAAc,GAAI,MAAM,gBAAiB;GAC1C,oBAAC,sBAAmB,GAAI,MAAM,qBAAsB;GACpD,qBAAC;IAAe,GAAI,MAAM;eACxB,oBAACA,mBAAQ,GAAI,MAAM,UAAW,EAC7B,MAAM,YAAY,oBAAC,eAAa;KAClB;;GACD,IACjB;;AAIP,oCAAe"}
package/dist/index.d.ts CHANGED
@@ -1,16 +1,17 @@
1
1
  import * as _alepha_core0 from "@alepha/core";
2
- import { Async, TObject } from "@alepha/core";
2
+ import { Alepha, Async, Page, PageMetadata, Static, TObject, TProperties } from "@alepha/core";
3
3
  import { FormModel, InputField } from "@alepha/react-form";
4
4
  import * as _alepha_react0 from "@alepha/react";
5
5
  import { RouterGoOptions, UseActionReturn, UseActiveOptions } from "@alepha/react";
6
+ import { AppShellFooterProps, AppShellHeaderProps, AppShellMainProps, AppShellNavbarProps, AppShellProps, AutocompleteProps, 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
7
  import { ModalsProviderProps } from "@mantine/modals";
7
- import { AppShellFooterProps, AppShellHeaderProps, AppShellMainProps, AppShellNavbarProps, AppShellProps, AutocompleteProps, ButtonProps, ColorInputProps, ColorSchemeScriptProps, FileInputProps, Flex, FlexProps, MantineBreakpoint, MantineProviderProps, MenuProps, MenuTargetProps, ModalProps, MultiSelectProps, NumberInputProps, PasswordInputProps, SegmentedControlProps, SelectProps, SwitchProps, TableProps, TableTrProps, TagsInputProps, Text, TextInputProps, TextareaProps, ThemeIconProps, TooltipProps } from "@mantine/core";
8
- import * as react_jsx_runtime9 from "react/jsx-runtime";
9
8
  import { ComponentType, ReactNode } from "react";
9
+ import * as react_jsx_runtime9 from "react/jsx-runtime";
10
10
  import * as _mantine_notifications0 from "@mantine/notifications";
11
11
  import { NotificationData, NotificationsProps } from "@mantine/notifications";
12
12
  import { DateInputProps, DateTimePickerProps, TimeInputProps } from "@mantine/dates";
13
13
  import { NavigationProgressProps } from "@mantine/nprogress";
14
+ import { DurationLike } from "@alepha/datetime";
14
15
 
15
16
  //#region src/utils/parseInput.d.ts
16
17
  interface GenericControlProps {
@@ -20,6 +21,12 @@ interface GenericControlProps {
20
21
  icon?: ReactNode;
21
22
  }
22
23
  //#endregion
24
+ //#region src/components/form/ControlNumber.d.ts
25
+ interface ControlNumberProps extends GenericControlProps {
26
+ numberInputProps?: Partial<NumberInputProps>;
27
+ sliderProps?: Partial<SliderProps>;
28
+ }
29
+ //#endregion
23
30
  //#region src/components/form/ControlSelect.d.ts
24
31
  type SelectValueLabel = string | {
25
32
  value: string;
@@ -56,12 +63,13 @@ interface ControlProps extends GenericControlProps {
56
63
  select?: boolean | Partial<ControlSelectProps>;
57
64
  password?: boolean | PasswordInputProps;
58
65
  switch?: boolean | SwitchProps;
59
- number?: boolean | NumberInputProps;
66
+ number?: boolean | Partial<ControlNumberProps>;
60
67
  file?: boolean | FileInputProps;
61
68
  color?: boolean | ColorInputProps;
62
69
  date?: boolean | DateInputProps;
63
70
  datetime?: boolean | DateTimePickerProps;
64
71
  time?: boolean | TimeInputProps;
72
+ query?: any;
65
73
  custom?: ComponentType<CustomControlProps>;
66
74
  }
67
75
  /**
@@ -81,6 +89,7 @@ interface ControlProps extends GenericControlProps {
81
89
  * - DateInput (for date format)
82
90
  * - DateTimePicker (for date-time format)
83
91
  * - TimeInput (for time format)
92
+ * - QueryBuilder (for building type-safe queries with autocomplete)
84
93
  * - Custom component
85
94
  *
86
95
  * Automatically handles labels, descriptions, error messages, required state, and default icons.
@@ -183,6 +192,7 @@ type ActionProps = ActionCommonProps & (ActionNavigationButtonProps | ActionClic
183
192
  declare const ActionButton: (_props: ActionProps) => react_jsx_runtime9.JSX.Element;
184
193
  interface ActionSubmitButtonProps extends ButtonProps {
185
194
  form: FormModel<any>;
195
+ type?: "submit" | "reset";
186
196
  }
187
197
  interface ActionHookButtonProps extends ButtonProps {
188
198
  action: UseActionReturn<any[], any>;
@@ -217,6 +227,22 @@ interface OmnibarButtonProps {
217
227
  }
218
228
  declare const OmnibarButton: (props: OmnibarButtonProps) => react_jsx_runtime9.JSX.Element;
219
229
  //#endregion
230
+ //#region src/components/data/JsonViewer.d.ts
231
+ interface JsonViewerProps {
232
+ data: any;
233
+ defaultExpanded?: boolean;
234
+ maxDepth?: number;
235
+ copyable?: boolean;
236
+ size?: MantineSize;
237
+ }
238
+ declare const JsonViewer: ({
239
+ data,
240
+ defaultExpanded,
241
+ maxDepth,
242
+ copyable,
243
+ size
244
+ }: JsonViewerProps) => react_jsx_runtime9.JSX.Element;
245
+ //#endregion
220
246
  //#region src/services/DialogService.d.ts
221
247
  interface BaseDialogOptions extends Partial<ModalProps> {
222
248
  title?: ReactNode;
@@ -332,6 +358,25 @@ interface ControlDateProps extends GenericControlProps {
332
358
  */
333
359
  declare const ControlDate: (props: ControlDateProps) => react_jsx_runtime9.JSX.Element | null;
334
360
  //#endregion
361
+ //#region src/components/form/ControlQueryBuilder.d.ts
362
+ interface ControlQueryBuilderProps extends Omit<TextInputProps, "value" | "onChange"> {
363
+ schema?: TObject;
364
+ value?: string;
365
+ onChange?: (value: string) => void;
366
+ placeholder?: string;
367
+ }
368
+ /**
369
+ * Query builder with text input and help popover.
370
+ * Generates query strings for parseQueryString syntax.
371
+ */
372
+ declare const ControlQueryBuilder: ({
373
+ schema,
374
+ value,
375
+ onChange,
376
+ placeholder,
377
+ ...textInputProps
378
+ }: ControlQueryBuilderProps) => react_jsx_runtime9.JSX.Element;
379
+ //#endregion
335
380
  //#region src/components/form/TypeForm.d.ts
336
381
  interface TypeFormProps<T extends TObject> {
337
382
  form: FormModel<T>;
@@ -343,6 +388,7 @@ interface TypeFormProps<T extends TObject> {
343
388
  lg?: number;
344
389
  xl?: number;
345
390
  };
391
+ schema?: TObject;
346
392
  children?: (input: FormModel<T>["input"]) => ReactNode;
347
393
  controlProps?: Partial<Omit<ControlProps, "input">>;
348
394
  skipFormElement?: boolean;
@@ -466,12 +512,14 @@ interface SidebarSearch extends SidebarAbstractItem {
466
512
  interface SidebarSection extends SidebarAbstractItem {
467
513
  type: "section";
468
514
  label: string;
515
+ icon?: ReactNode;
469
516
  }
470
517
  interface SidebarMenuItem extends SidebarAbstractItem {
471
518
  label: string | ReactNode;
472
519
  description?: string;
473
520
  icon?: ReactNode;
474
521
  href?: string;
522
+ target?: "_blank" | "_self" | "_parent" | "_top";
475
523
  activeStartsWith?: boolean;
476
524
  onClick?: () => void;
477
525
  children?: SidebarMenuItem[];
@@ -503,7 +551,13 @@ interface AdminShellProps {
503
551
  }
504
552
  declare module "@alepha/core" {
505
553
  interface State {
554
+ /**
555
+ * Whether the sidebar is opened or closed.
556
+ */
506
557
  "alepha.ui.sidebar.opened"?: boolean;
558
+ /**
559
+ * Whether the sidebar is collapsed (narrow) or expanded (wide).
560
+ */
507
561
  "alepha.ui.sidebar.collapsed"?: boolean;
508
562
  }
509
563
  }
@@ -530,19 +584,66 @@ interface AlephaMantineProviderProps {
530
584
  declare const AlephaMantineProvider: (props: AlephaMantineProviderProps) => react_jsx_runtime9.JSX.Element;
531
585
  //#endregion
532
586
  //#region src/components/table/DataTable.d.ts
533
- interface DataTableColumn<T extends object> {
587
+ interface DataTableColumnContext<Filters extends TObject> {
588
+ index: number;
589
+ form: FormModel<Filters>;
590
+ alepha: Alepha;
591
+ }
592
+ interface DataTableColumn<T extends object, Filters extends TObject> {
534
593
  label: string;
535
- value: (item: T) => ReactNode;
594
+ value: (item: T, ctx: DataTableColumnContext<Filters>) => ReactNode;
595
+ fit?: boolean;
536
596
  }
537
- interface DataTableProps<T extends object> {
538
- items: T[] | (() => Async<T[]>);
597
+ type MaybePage<T> = Omit<Page<T>, "page"> & {
598
+ page?: Partial<PageMetadata>;
599
+ };
600
+ interface DataTableSubmitContext<T extends object> {
601
+ items: T[];
602
+ }
603
+ interface DataTableProps<T extends object, Filters extends TObject> {
604
+ /**
605
+ * The items to display in the table. Can be a static page of items or a function that returns a promise resolving to a page of items.
606
+ */
607
+ items: MaybePage<T> | ((filters: Static<Filters> & {
608
+ page: number;
609
+ size: number;
610
+ sort?: string;
611
+ }, ctx: DataTableSubmitContext<T>) => Async<MaybePage<T>>);
612
+ /**
613
+ * The columns to display in the table. Each column is defined by a key and a DataTableColumn object.
614
+ */
539
615
  columns: {
540
- [key: string]: DataTableColumn<T>;
616
+ [key: string]: DataTableColumn<T, Filters>;
541
617
  };
618
+ defaultSize?: number;
619
+ typeFormProps?: Partial<Omit<TypeFormProps<Filters>, "form">>;
620
+ onFilterChange?: (key: string, value: unknown, form: FormModel<Filters>) => void;
621
+ /**
622
+ * Optional filters to apply to the data.
623
+ */
624
+ filters?: TObject;
625
+ panel?: (item: T) => ReactNode;
626
+ canPanel?: (item: T) => boolean;
627
+ submitOnInit?: boolean;
628
+ submitEvery?: DurationLike;
629
+ withLineNumbers?: boolean;
630
+ withCheckbox?: boolean;
631
+ checkboxActions?: any[];
632
+ actions?: any[];
633
+ /**
634
+ * Enable infinity scroll mode. When true, pagination controls are hidden and new items are loaded automatically when scrolling to the bottom.
635
+ */
636
+ infinityScroll?: boolean;
637
+ /**
638
+ * Props to pass to the Mantine Table component.
639
+ */
542
640
  tableProps?: TableProps;
641
+ /**
642
+ * Function to generate props for each table row based on the item.
643
+ */
543
644
  tableTrProps?: (item: T) => TableTrProps;
544
645
  }
545
- declare const DataTable: <T extends object>(props: DataTableProps<T>) => react_jsx_runtime9.JSX.Element;
646
+ declare const DataTable: <T extends object, Filters extends TObject>(props: DataTableProps<T, Filters>) => react_jsx_runtime9.JSX.Element;
546
647
  //#endregion
547
648
  //#region src/constants/ui.d.ts
548
649
  declare const ui: {
@@ -551,6 +652,7 @@ declare const ui: {
551
652
  background: string;
552
653
  surface: string;
553
654
  elevated: string;
655
+ border: string;
554
656
  };
555
657
  };
556
658
  //#endregion
@@ -603,6 +705,34 @@ declare class RootRouter {
603
705
  readonly root: _alepha_react0.PageDescriptor<_alepha_react0.PageConfigSchema, any, _alepha_react0.TPropsParentDefault>;
604
706
  }
605
707
  //#endregion
708
+ //#region src/utils/extractSchemaFields.d.ts
709
+ interface SchemaField {
710
+ name: string;
711
+ path: string;
712
+ type: string;
713
+ enum?: readonly any[];
714
+ format?: string;
715
+ description?: string;
716
+ nested?: SchemaField[];
717
+ }
718
+ /**
719
+ * Extract field information from a TypeBox schema for query building.
720
+ * Supports nested objects and provides field metadata for autocomplete.
721
+ */
722
+ declare function extractSchemaFields(schema: TObject | TProperties, prefix?: string): SchemaField[];
723
+ /**
724
+ * Get suggested operators based on field type
725
+ */
726
+ declare function getOperatorsForField(field: SchemaField): string[];
727
+ /**
728
+ * Get operator symbol and description
729
+ */
730
+ declare const OPERATOR_INFO: Record<string, {
731
+ symbol: string;
732
+ label: string;
733
+ example: string;
734
+ }>;
735
+ //#endregion
606
736
  //#region src/utils/icons.d.ts
607
737
  /**
608
738
  * Icon size presets following Mantine's size conventions
@@ -677,7 +807,7 @@ declare module "@alepha/react" {
677
807
  *
678
808
  * @module alepha.ui
679
809
  */
680
- declare const AlephaUI: _alepha_core0.Service<_alepha_core0.Module<{}>>;
810
+ declare const AlephaUI: _alepha_core0.Service<_alepha_core0.Module>;
681
811
  //#endregion
682
- export { ActionButton, type ActionClickButtonProps, type ActionCommonProps, type ActionMenuConfig, type ActionMenuItem, type ActionNavigationButtonProps, type ActionProps, type ActionSubmitButtonProps, AdminShell, 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, ConfirmDialog, type ConfirmDialogOptions, type ConfirmDialogProps, Control, ControlDate, ControlSelect, DarkModeButton, DataTable, type DataTableColumn, type DataTableProps, DialogService, Flex, ICON_SIZES, IconSize, Omnibar, OmnibarButton, PromptDialog, type PromptDialogOptions, type PromptDialogProps, RootRouter, 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, getDefaultIcon, prettyName, ui, useDialog, useToast };
812
+ export { ActionButton, type ActionClickButtonProps, type ActionCommonProps, type ActionMenuConfig, type ActionMenuItem, type ActionNavigationButtonProps, type ActionProps, type ActionSubmitButtonProps, AdminShell, 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, ConfirmDialog, type ConfirmDialogOptions, type ConfirmDialogProps, Control, ControlDate, ControlQueryBuilder, ControlSelect, DarkModeButton, DataTable, type DataTableColumn, type DataTableProps, DialogService, Flex, ICON_SIZES, IconSize, JsonViewer, 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 };
683
813
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../src/utils/parseInput.ts","../src/components/form/ControlSelect.tsx","../src/components/form/Control.tsx","../src/components/buttons/ActionButton.tsx","../src/components/buttons/DarkModeButton.tsx","../src/components/buttons/OmnibarButton.tsx","../src/services/DialogService.tsx","../src/components/dialogs/AlertDialog.tsx","../src/components/dialogs/ConfirmDialog.tsx","../src/components/dialogs/PromptDialog.tsx","../src/components/form/ControlDate.tsx","../src/components/form/TypeForm.tsx","../src/components/buttons/LanguageButton.tsx","../src/components/layout/AppBar.tsx","../src/components/layout/Sidebar.tsx","../src/components/layout/AdminShell.tsx","../src/components/layout/Omnibar.tsx","../src/components/layout/AlephaMantineProvider.tsx","../src/components/table/DataTable.tsx","../src/constants/ui.ts","../src/hooks/useDialog.ts","../src/services/ToastService.tsx","../src/hooks/useToast.ts","../src/RootRouter.ts","../src/utils/icons.tsx","../src/utils/string.ts","../src/index.ts"],"sourcesContent":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","names":[],"sources":["../src/utils/parseInput.ts","../src/components/form/ControlNumber.tsx","../src/components/form/ControlSelect.tsx","../src/components/form/Control.tsx","../src/components/buttons/ActionButton.tsx","../src/components/buttons/DarkModeButton.tsx","../src/components/buttons/OmnibarButton.tsx","../src/components/data/JsonViewer.tsx","../src/services/DialogService.tsx","../src/components/dialogs/AlertDialog.tsx","../src/components/dialogs/ConfirmDialog.tsx","../src/components/dialogs/PromptDialog.tsx","../src/components/form/ControlDate.tsx","../src/components/form/ControlQueryBuilder.tsx","../src/components/form/TypeForm.tsx","../src/components/buttons/LanguageButton.tsx","../src/components/layout/AppBar.tsx","../src/components/layout/Sidebar.tsx","../src/components/layout/AdminShell.tsx","../src/components/layout/Omnibar.tsx","../src/components/layout/AlephaMantineProvider.tsx","../src/components/table/DataTable.tsx","../src/constants/ui.ts","../src/hooks/useDialog.ts","../src/services/ToastService.tsx","../src/hooks/useToast.ts","../src/RootRouter.ts","../src/utils/extractSchemaFields.ts","../src/utils/icons.tsx","../src/utils/string.ts","../src/index.ts"],"sourcesContent":[],"mappings":"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"}