@aircall/blocks 0.13.0 → 0.14.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/globals.css +1 -1
- package/dist/index.d.ts +200 -153
- package/dist/index.js +75 -17
- package/package.json +2 -2
- package/skills/aircall-blocks/migrate-dashboard/SKILL.md +2 -1
- package/skills/aircall-blocks/migrate-dashboard/dashboard-page/SKILL.md +41 -14
- package/skills/aircall-blocks/migrate-dashboard/form-wizard/SKILL.md +113 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { Badge, Button, CounterBadge, Empty, EmptyContent, EmptyDescription, EmptyHeader, EmptyMedia, EmptyTitle, SidebarProvider, TabsList, useSidebar } from "@aircall/ds";
|
|
2
2
|
import * as React$1 from "react";
|
|
3
|
-
import * as
|
|
3
|
+
import * as react_jsx_runtime4 from "react/jsx-runtime";
|
|
4
4
|
import { VariantProps } from "class-variance-authority";
|
|
5
|
-
import * as
|
|
5
|
+
import * as _tanstack_react_form0 from "@tanstack/react-form";
|
|
6
6
|
import { DeepKeys, DeepKeysOfType, DeepValue, FieldAsyncValidateOrFn, FieldListeners, FieldValidateOrFn, FieldValidators } from "@tanstack/react-form";
|
|
7
7
|
import { useRender } from "@base-ui/react/use-render";
|
|
8
8
|
import * as class_variance_authority_types0 from "class-variance-authority/types";
|
|
@@ -119,7 +119,7 @@ declare function ChatbotResponseBlock({
|
|
|
119
119
|
sources,
|
|
120
120
|
onFeedback,
|
|
121
121
|
className
|
|
122
|
-
}: ChatbotResponseBlockProps):
|
|
122
|
+
}: ChatbotResponseBlockProps): react_jsx_runtime4.JSX.Element;
|
|
123
123
|
//#endregion
|
|
124
124
|
//#region src/components/chatbot-response-loading.d.ts
|
|
125
125
|
interface ChatbotResponseLoadingProps {
|
|
@@ -146,7 +146,7 @@ interface ChatbotResponseLoadingProps {
|
|
|
146
146
|
declare function ChatbotResponseLoading({
|
|
147
147
|
text,
|
|
148
148
|
className
|
|
149
|
-
}: ChatbotResponseLoadingProps):
|
|
149
|
+
}: ChatbotResponseLoadingProps): react_jsx_runtime4.JSX.Element;
|
|
150
150
|
//#endregion
|
|
151
151
|
//#region src/components/chatbot-page.d.ts
|
|
152
152
|
declare const ChatbotPage: React$1.ForwardRefExoticComponent<ChatbotPageProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -322,7 +322,7 @@ declare function ChatbotPanelHeader({
|
|
|
322
322
|
onClose,
|
|
323
323
|
className,
|
|
324
324
|
...props
|
|
325
|
-
}: ChatbotPanelHeaderProps):
|
|
325
|
+
}: ChatbotPanelHeaderProps): react_jsx_runtime4.JSX.Element;
|
|
326
326
|
//#endregion
|
|
327
327
|
//#region src/components/chatbot-sidebar.d.ts
|
|
328
328
|
interface ChatbotSidebarConversation {
|
|
@@ -425,7 +425,7 @@ declare function ChatbotInput({
|
|
|
425
425
|
activeConversationId,
|
|
426
426
|
onSelectConversation,
|
|
427
427
|
...textareaProps
|
|
428
|
-
}: ChatbotInputProps):
|
|
428
|
+
}: ChatbotInputProps): react_jsx_runtime4.JSX.Element;
|
|
429
429
|
//#endregion
|
|
430
430
|
//#region src/components/copy-button.d.ts
|
|
431
431
|
declare const CopyButton: React$1.ForwardRefExoticComponent<Omit<CopyButtonProps, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
@@ -461,7 +461,7 @@ type ChatbotPanelSuggestionProps = Omit<React.ComponentProps<typeof Button>, 'va
|
|
|
461
461
|
declare function ChatbotPanelSuggestion({
|
|
462
462
|
className,
|
|
463
463
|
...props
|
|
464
|
-
}: ChatbotPanelSuggestionProps):
|
|
464
|
+
}: ChatbotPanelSuggestionProps): react_jsx_runtime4.JSX.Element;
|
|
465
465
|
//#endregion
|
|
466
466
|
//#region src/components/chatbot-user-message.d.ts
|
|
467
467
|
type ChatbotUserMessageProps = React.ComponentProps<'div'>;
|
|
@@ -469,7 +469,7 @@ declare function ChatbotUserMessage({
|
|
|
469
469
|
className,
|
|
470
470
|
children,
|
|
471
471
|
...props
|
|
472
|
-
}: ChatbotUserMessageProps):
|
|
472
|
+
}: ChatbotUserMessageProps): react_jsx_runtime4.JSX.Element;
|
|
473
473
|
//#endregion
|
|
474
474
|
//#region src/components/dashboard-standalone-page.d.ts
|
|
475
475
|
declare const DashboardStandalonePage: React$1.ForwardRefExoticComponent<Omit<DashboardStandalonePageProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -477,6 +477,11 @@ interface DashboardStandalonePageProps extends React$1.ComponentProps<'div'> {}
|
|
|
477
477
|
declare namespace DashboardStandalonePage {
|
|
478
478
|
type Props = DashboardStandalonePageProps;
|
|
479
479
|
}
|
|
480
|
+
declare const DashboardStandalonePageContent: React$1.ForwardRefExoticComponent<Omit<DashboardStandalonePageContentProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
481
|
+
interface DashboardStandalonePageContentProps extends React$1.ComponentProps<'div'> {}
|
|
482
|
+
declare namespace DashboardStandalonePageContent {
|
|
483
|
+
type Props = DashboardStandalonePageContentProps;
|
|
484
|
+
}
|
|
480
485
|
declare const DashboardStandalonePageHeader: React$1.ForwardRefExoticComponent<Omit<DashboardStandalonePageHeaderProps, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
481
486
|
interface DashboardStandalonePageHeaderProps extends React$1.ComponentProps<'header'> {}
|
|
482
487
|
declare namespace DashboardStandalonePageHeader {
|
|
@@ -487,6 +492,11 @@ interface DashboardStandalonePageTitleProps extends React$1.ComponentProps<'h1'>
|
|
|
487
492
|
declare namespace DashboardStandalonePageTitle {
|
|
488
493
|
type Props = DashboardStandalonePageTitleProps;
|
|
489
494
|
}
|
|
495
|
+
declare const DashboardStandalonePageDescription: React$1.ForwardRefExoticComponent<Omit<DashboardStandalonePageDescriptionProps, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
496
|
+
interface DashboardStandalonePageDescriptionProps extends React$1.ComponentProps<'p'> {}
|
|
497
|
+
declare namespace DashboardStandalonePageDescription {
|
|
498
|
+
type Props = DashboardStandalonePageDescriptionProps;
|
|
499
|
+
}
|
|
490
500
|
declare const DashboardStandalonePageActions: React$1.ForwardRefExoticComponent<Omit<DashboardStandalonePageActionsProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
491
501
|
interface DashboardStandalonePageActionsProps extends React$1.ComponentProps<'div'> {
|
|
492
502
|
side?: 'start' | 'end';
|
|
@@ -499,10 +509,10 @@ interface DashboardStandalonePageActionProps extends React$1.ComponentProps<type
|
|
|
499
509
|
declare namespace DashboardStandalonePageAction {
|
|
500
510
|
type Props = DashboardStandalonePageActionProps;
|
|
501
511
|
}
|
|
502
|
-
declare const
|
|
503
|
-
interface
|
|
504
|
-
declare namespace
|
|
505
|
-
type Props =
|
|
512
|
+
declare const DashboardStandalonePageMain: React$1.ForwardRefExoticComponent<Omit<DashboardStandalonePageMainProps, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
513
|
+
interface DashboardStandalonePageMainProps extends React$1.ComponentProps<'main'> {}
|
|
514
|
+
declare namespace DashboardStandalonePageMain {
|
|
515
|
+
type Props = DashboardStandalonePageMainProps;
|
|
506
516
|
}
|
|
507
517
|
//#endregion
|
|
508
518
|
//#region src/components/dashboard-page.d.ts
|
|
@@ -634,7 +644,7 @@ declare function ChatbotPanelTrigger({
|
|
|
634
644
|
icon,
|
|
635
645
|
className,
|
|
636
646
|
...buttonProps
|
|
637
|
-
}: ChatbotPanelTriggerProps):
|
|
647
|
+
}: ChatbotPanelTriggerProps): react_jsx_runtime4.JSX.Element;
|
|
638
648
|
//#endregion
|
|
639
649
|
//#region src/components/chatbot-expand-suggestion.d.ts
|
|
640
650
|
interface ChatbotExpandSuggestionCategory {
|
|
@@ -740,7 +750,7 @@ declare function ChatbotPanel({
|
|
|
740
750
|
style,
|
|
741
751
|
children,
|
|
742
752
|
...props
|
|
743
|
-
}: ChatbotPanelProps):
|
|
753
|
+
}: ChatbotPanelProps): react_jsx_runtime4.JSX.Element;
|
|
744
754
|
//#endregion
|
|
745
755
|
//#region src/hooks/use-copy-to-clipboard.d.ts
|
|
746
756
|
interface UseCopyToClipboardOptions {
|
|
@@ -777,7 +787,7 @@ declare function CardSaveBar({
|
|
|
777
787
|
submitLabel,
|
|
778
788
|
savingLabel,
|
|
779
789
|
resetLabel
|
|
780
|
-
}: CardSaveBarProps):
|
|
790
|
+
}: CardSaveBarProps): react_jsx_runtime4.JSX.Element;
|
|
781
791
|
//#endregion
|
|
782
792
|
//#region src/components/submit-button.d.ts
|
|
783
793
|
/**
|
|
@@ -801,7 +811,7 @@ declare function SubmitButton({
|
|
|
801
811
|
loadingLabel,
|
|
802
812
|
className,
|
|
803
813
|
...buttonProps
|
|
804
|
-
}: SubmitButtonProps):
|
|
814
|
+
}: SubmitButtonProps): react_jsx_runtime4.JSX.Element;
|
|
805
815
|
//#endregion
|
|
806
816
|
//#region src/form/use-form.d.ts
|
|
807
817
|
/**
|
|
@@ -820,18 +830,18 @@ declare function SubmitButton({
|
|
|
820
830
|
* const form = useForm({ defaultValues: { name: '' }, onSubmit: async ({ value }) => save(value) })
|
|
821
831
|
*/
|
|
822
832
|
declare const CommonForm: {
|
|
823
|
-
useAppForm: <TFormData, TOnMount extends
|
|
833
|
+
useAppForm: <TFormData, TOnMount extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {}, {
|
|
824
834
|
readonly SubmitButton: typeof SubmitButton;
|
|
825
835
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
826
836
|
}>;
|
|
827
|
-
withForm: <TFormData, TOnMount extends
|
|
837
|
+
withForm: <TFormData, TOnMount extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta, TRenderProps extends object = {}>({
|
|
828
838
|
render,
|
|
829
839
|
props
|
|
830
|
-
}:
|
|
840
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {}, {
|
|
831
841
|
readonly SubmitButton: typeof SubmitButton;
|
|
832
842
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
833
843
|
}, TRenderProps>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
|
|
834
|
-
form:
|
|
844
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount] ? [TOnMount] extends [TOnMount & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount : TOnMount, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange] ? [TOnChange] extends [TOnChange & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange : TOnChange, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync] ? [TOnChangeAsync] extends [TOnChangeAsync & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync : TOnChangeAsync, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur] ? [TOnBlur] extends [TOnBlur & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur : TOnBlur, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync] ? [TOnBlurAsync] extends [TOnBlurAsync & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync : TOnBlurAsync, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit] ? [TOnSubmit] extends [TOnSubmit & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit : TOnSubmit, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync] ? [TOnSubmitAsync] extends [TOnSubmitAsync & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync : TOnSubmitAsync, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic] ? [TOnDynamic] extends [TOnDynamic & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic : TOnDynamic, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync] ? [TOnDynamicAsync] extends [TOnDynamicAsync & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync : TOnDynamicAsync, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer] ? [TOnServer] extends [TOnServer & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer : TOnServer, [unknown] extends [TSubmitMeta] ? any : TSubmitMeta, {}, {
|
|
835
845
|
readonly SubmitButton: typeof SubmitButton;
|
|
836
846
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
837
847
|
}>;
|
|
@@ -840,20 +850,20 @@ declare const CommonForm: {
|
|
|
840
850
|
render,
|
|
841
851
|
props,
|
|
842
852
|
defaultValues
|
|
843
|
-
}:
|
|
853
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {}, {
|
|
844
854
|
readonly SubmitButton: typeof SubmitButton;
|
|
845
855
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
846
|
-
}, TSubmitMeta, TRenderProps>) => <TFormData, TFields extends
|
|
847
|
-
form:
|
|
856
|
+
}, TSubmitMeta, TRenderProps>) => <TFormData, TFields extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta>(params: React$1.PropsWithChildren<NoInfer<TRenderProps> & {
|
|
857
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, unknown extends TSubmitMeta ? TFormSubmitMeta : TSubmitMeta, {}, {
|
|
848
858
|
readonly SubmitButton: typeof SubmitButton;
|
|
849
859
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
850
|
-
}> |
|
|
860
|
+
}> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta ? TFormSubmitMeta : TSubmitMeta, {}, {
|
|
851
861
|
readonly SubmitButton: typeof SubmitButton;
|
|
852
862
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
853
863
|
}>;
|
|
854
864
|
fields: TFields;
|
|
855
865
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
856
|
-
useTypedAppFormContext: <TFormData, TOnMount extends
|
|
866
|
+
useTypedAppFormContext: <TFormData, TOnMount extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {}, {
|
|
857
867
|
readonly SubmitButton: typeof SubmitButton;
|
|
858
868
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
859
869
|
}>;
|
|
@@ -864,18 +874,18 @@ declare const CommonForm: {
|
|
|
864
874
|
fieldComponents?: TNewField | undefined;
|
|
865
875
|
formComponents?: TNewForm | undefined;
|
|
866
876
|
}) => {
|
|
867
|
-
useAppForm: <TFormData, TOnMount extends
|
|
877
|
+
useAppForm: <TFormData, TOnMount extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {} & TNewField, {
|
|
868
878
|
readonly SubmitButton: typeof SubmitButton;
|
|
869
879
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
870
880
|
} & TNewForm>;
|
|
871
|
-
withForm: <TFormData, TOnMount_1 extends
|
|
881
|
+
withForm: <TFormData, TOnMount_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1, TRenderProps extends object = {}>({
|
|
872
882
|
render,
|
|
873
883
|
props
|
|
874
|
-
}:
|
|
884
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1, TOnChange_1, TOnChangeAsync_1, TOnBlur_1, TOnBlurAsync_1, TOnSubmit_1, TOnSubmitAsync_1, TOnDynamic_1, TOnDynamicAsync_1, TOnServer_1, TSubmitMeta_1, {} & TNewField, {
|
|
875
885
|
readonly SubmitButton: typeof SubmitButton;
|
|
876
886
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
877
887
|
} & TNewForm, TRenderProps>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
|
|
878
|
-
form:
|
|
888
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1] ? [TOnMount_1] extends [TOnMount_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1 : TOnMount_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1] ? [TOnChange_1] extends [TOnChange_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1 : TOnChange_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1] ? [TOnChangeAsync_1] extends [TOnChangeAsync_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1 : TOnChangeAsync_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1] ? [TOnBlur_1] extends [TOnBlur_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1 : TOnBlur_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1] ? [TOnBlurAsync_1] extends [TOnBlurAsync_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1 : TOnBlurAsync_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1] ? [TOnSubmit_1] extends [TOnSubmit_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1 : TOnSubmit_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1] ? [TOnSubmitAsync_1] extends [TOnSubmitAsync_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1 : TOnSubmitAsync_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1] ? [TOnDynamic_1] extends [TOnDynamic_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1 : TOnDynamic_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1] ? [TOnDynamicAsync_1] extends [TOnDynamicAsync_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1 : TOnDynamicAsync_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1] ? [TOnServer_1] extends [TOnServer_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1 : TOnServer_1, [unknown] extends [TSubmitMeta_1] ? any : TSubmitMeta_1, [unknown] extends [{} & TNewField] ? any : {} & TNewField, [unknown] extends [{
|
|
879
889
|
readonly SubmitButton: typeof SubmitButton;
|
|
880
890
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
881
891
|
} & TNewForm] ? any : {
|
|
@@ -887,20 +897,20 @@ declare const CommonForm: {
|
|
|
887
897
|
render,
|
|
888
898
|
props,
|
|
889
899
|
defaultValues
|
|
890
|
-
}:
|
|
900
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField, {
|
|
891
901
|
readonly SubmitButton: typeof SubmitButton;
|
|
892
902
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
893
|
-
} & TNewForm, TSubmitMeta_2, TRenderProps_1>) => <TFormData, TFields extends
|
|
894
|
-
form:
|
|
903
|
+
} & TNewForm, TSubmitMeta_2, TRenderProps_1>) => <TFormData, TFields extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1> & {
|
|
904
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2, TOnChange_2, TOnChangeAsync_2, TOnBlur_2, TOnBlurAsync_2, TOnSubmit_2, TOnSubmitAsync_2, TOnDynamic_2, TOnDynamicAsync_2, TOnServer_2, unknown extends TSubmitMeta_2 ? TFormSubmitMeta : TSubmitMeta_2, {} & TNewField, {
|
|
895
905
|
readonly SubmitButton: typeof SubmitButton;
|
|
896
906
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
897
|
-
} & TNewForm> |
|
|
907
|
+
} & TNewForm> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2 ? TFormSubmitMeta : TSubmitMeta_2, {} & TNewField, {
|
|
898
908
|
readonly SubmitButton: typeof SubmitButton;
|
|
899
909
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
900
910
|
} & TNewForm>;
|
|
901
911
|
fields: TFields;
|
|
902
912
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
903
|
-
useTypedAppFormContext: <TFormData, TOnMount_3 extends
|
|
913
|
+
useTypedAppFormContext: <TFormData, TOnMount_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3, TOnChange_3, TOnChangeAsync_3, TOnBlur_3, TOnBlurAsync_3, TOnSubmit_3, TOnSubmitAsync_3, TOnDynamic_3, TOnDynamicAsync_3, TOnServer_3, TSubmitMeta_3>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3, TOnChange_3, TOnChangeAsync_3, TOnBlur_3, TOnBlurAsync_3, TOnSubmit_3, TOnSubmitAsync_3, TOnDynamic_3, TOnDynamicAsync_3, TOnServer_3, TSubmitMeta_3, {} & TNewField, {
|
|
904
914
|
readonly SubmitButton: typeof SubmitButton;
|
|
905
915
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
906
916
|
} & TNewForm>;
|
|
@@ -911,18 +921,18 @@ declare const CommonForm: {
|
|
|
911
921
|
fieldComponents?: TNewField_1 | undefined;
|
|
912
922
|
formComponents?: TNewForm_1 | undefined;
|
|
913
923
|
}) => {
|
|
914
|
-
useAppForm: <TFormData, TOnMount_4 extends
|
|
924
|
+
useAppForm: <TFormData, TOnMount_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_4>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_4, TOnChange_4, TOnChangeAsync_4, TOnBlur_4, TOnBlurAsync_4, TOnSubmit_4, TOnSubmitAsync_4, TOnDynamic_4, TOnDynamicAsync_4, TOnServer_4, TSubmitMeta_4>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_4, TOnChange_4, TOnChangeAsync_4, TOnBlur_4, TOnBlurAsync_4, TOnSubmit_4, TOnSubmitAsync_4, TOnDynamic_4, TOnDynamicAsync_4, TOnServer_4, TSubmitMeta_4, {} & TNewField & TNewField_1, {
|
|
915
925
|
readonly SubmitButton: typeof SubmitButton;
|
|
916
926
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
917
927
|
} & TNewForm & TNewForm_1>;
|
|
918
|
-
withForm: <TFormData, TOnMount_1_1 extends
|
|
928
|
+
withForm: <TFormData, TOnMount_1_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_1, TRenderProps_2 extends object = {}>({
|
|
919
929
|
render,
|
|
920
930
|
props
|
|
921
|
-
}:
|
|
931
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_1, TOnChange_1_1, TOnChangeAsync_1_1, TOnBlur_1_1, TOnBlurAsync_1_1, TOnSubmit_1_1, TOnSubmitAsync_1_1, TOnDynamic_1_1, TOnDynamicAsync_1_1, TOnServer_1_1, TSubmitMeta_1_1, {} & TNewField & TNewField_1, {
|
|
922
932
|
readonly SubmitButton: typeof SubmitButton;
|
|
923
933
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
924
934
|
} & TNewForm & TNewForm_1, TRenderProps_2>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_2] ? any : TRenderProps_2> & {
|
|
925
|
-
form:
|
|
935
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_1] ? [TOnMount_1_1] extends [TOnMount_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_1 : TOnMount_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_1] ? [TOnChange_1_1] extends [TOnChange_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_1 : TOnChange_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_1] ? [TOnChangeAsync_1_1] extends [TOnChangeAsync_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_1 : TOnChangeAsync_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_1] ? [TOnBlur_1_1] extends [TOnBlur_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_1 : TOnBlur_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_1] ? [TOnBlurAsync_1_1] extends [TOnBlurAsync_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_1 : TOnBlurAsync_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_1] ? [TOnSubmit_1_1] extends [TOnSubmit_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_1 : TOnSubmit_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_1] ? [TOnSubmitAsync_1_1] extends [TOnSubmitAsync_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_1 : TOnSubmitAsync_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_1] ? [TOnDynamic_1_1] extends [TOnDynamic_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_1 : TOnDynamic_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_1] ? [TOnDynamicAsync_1_1] extends [TOnDynamicAsync_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_1 : TOnDynamicAsync_1_1, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_1] ? [TOnServer_1_1] extends [TOnServer_1_1 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_1 : TOnServer_1_1, [unknown] extends [TSubmitMeta_1_1] ? any : TSubmitMeta_1_1, [unknown] extends [{} & TNewField & TNewField_1] ? any : {} & TNewField & TNewField_1, [unknown] extends [{
|
|
926
936
|
readonly SubmitButton: typeof SubmitButton;
|
|
927
937
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
928
938
|
} & TNewForm & TNewForm_1] ? any : {
|
|
@@ -934,20 +944,20 @@ declare const CommonForm: {
|
|
|
934
944
|
render,
|
|
935
945
|
props,
|
|
936
946
|
defaultValues
|
|
937
|
-
}:
|
|
947
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1, {
|
|
938
948
|
readonly SubmitButton: typeof SubmitButton;
|
|
939
949
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
940
|
-
} & TNewForm & TNewForm_1, TSubmitMeta_2_1, TRenderProps_1_1>) => <TFormData, TFields_1 extends
|
|
941
|
-
form:
|
|
950
|
+
} & TNewForm & TNewForm_1, TSubmitMeta_2_1, TRenderProps_1_1>) => <TFormData, TFields_1 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_1>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_1> & {
|
|
951
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_1, TOnChange_2_1, TOnChangeAsync_2_1, TOnBlur_2_1, TOnBlurAsync_2_1, TOnSubmit_2_1, TOnSubmitAsync_2_1, TOnDynamic_2_1, TOnDynamicAsync_2_1, TOnServer_2_1, unknown extends TSubmitMeta_2_1 ? TFormSubmitMeta_1 : TSubmitMeta_2_1, {} & TNewField & TNewField_1, {
|
|
942
952
|
readonly SubmitButton: typeof SubmitButton;
|
|
943
953
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
944
|
-
} & TNewForm & TNewForm_1> |
|
|
954
|
+
} & TNewForm & TNewForm_1> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_1 ? TFormSubmitMeta_1 : TSubmitMeta_2_1, {} & TNewField & TNewField_1, {
|
|
945
955
|
readonly SubmitButton: typeof SubmitButton;
|
|
946
956
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
947
957
|
} & TNewForm & TNewForm_1>;
|
|
948
958
|
fields: TFields_1;
|
|
949
959
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
950
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_1 extends
|
|
960
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_1 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_1 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_1>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_1, TOnChange_3_1, TOnChangeAsync_3_1, TOnBlur_3_1, TOnBlurAsync_3_1, TOnSubmit_3_1, TOnSubmitAsync_3_1, TOnDynamic_3_1, TOnDynamicAsync_3_1, TOnServer_3_1, TSubmitMeta_3_1>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_1, TOnChange_3_1, TOnChangeAsync_3_1, TOnBlur_3_1, TOnBlurAsync_3_1, TOnSubmit_3_1, TOnSubmitAsync_3_1, TOnDynamic_3_1, TOnDynamicAsync_3_1, TOnServer_3_1, TSubmitMeta_3_1, {} & TNewField & TNewField_1, {
|
|
951
961
|
readonly SubmitButton: typeof SubmitButton;
|
|
952
962
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
953
963
|
} & TNewForm & TNewForm_1>;
|
|
@@ -958,18 +968,18 @@ declare const CommonForm: {
|
|
|
958
968
|
fieldComponents?: TNewField_2 | undefined;
|
|
959
969
|
formComponents?: TNewForm_2 | undefined;
|
|
960
970
|
}) => {
|
|
961
|
-
useAppForm: <TFormData, TOnMount_5 extends
|
|
971
|
+
useAppForm: <TFormData, TOnMount_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_5>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_5, TOnChange_5, TOnChangeAsync_5, TOnBlur_5, TOnBlurAsync_5, TOnSubmit_5, TOnSubmitAsync_5, TOnDynamic_5, TOnDynamicAsync_5, TOnServer_5, TSubmitMeta_5>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_5, TOnChange_5, TOnChangeAsync_5, TOnBlur_5, TOnBlurAsync_5, TOnSubmit_5, TOnSubmitAsync_5, TOnDynamic_5, TOnDynamicAsync_5, TOnServer_5, TSubmitMeta_5, {} & TNewField & TNewField_1 & TNewField_2, {
|
|
962
972
|
readonly SubmitButton: typeof SubmitButton;
|
|
963
973
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
964
974
|
} & TNewForm & TNewForm_1 & TNewForm_2>;
|
|
965
|
-
withForm: <TFormData, TOnMount_1_2 extends
|
|
975
|
+
withForm: <TFormData, TOnMount_1_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_2, TRenderProps_3 extends object = {}>({
|
|
966
976
|
render,
|
|
967
977
|
props
|
|
968
|
-
}:
|
|
978
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_2, TOnChange_1_2, TOnChangeAsync_1_2, TOnBlur_1_2, TOnBlurAsync_1_2, TOnSubmit_1_2, TOnSubmitAsync_1_2, TOnDynamic_1_2, TOnDynamicAsync_1_2, TOnServer_1_2, TSubmitMeta_1_2, {} & TNewField & TNewField_1 & TNewField_2, {
|
|
969
979
|
readonly SubmitButton: typeof SubmitButton;
|
|
970
980
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
971
981
|
} & TNewForm & TNewForm_1 & TNewForm_2, TRenderProps_3>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_3] ? any : TRenderProps_3> & {
|
|
972
|
-
form:
|
|
982
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_2] ? [TOnMount_1_2] extends [TOnMount_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_2 : TOnMount_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_2] ? [TOnChange_1_2] extends [TOnChange_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_2 : TOnChange_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_2] ? [TOnChangeAsync_1_2] extends [TOnChangeAsync_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_2 : TOnChangeAsync_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_2] ? [TOnBlur_1_2] extends [TOnBlur_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_2 : TOnBlur_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_2] ? [TOnBlurAsync_1_2] extends [TOnBlurAsync_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_2 : TOnBlurAsync_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_2] ? [TOnSubmit_1_2] extends [TOnSubmit_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_2 : TOnSubmit_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_2] ? [TOnSubmitAsync_1_2] extends [TOnSubmitAsync_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_2 : TOnSubmitAsync_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_2] ? [TOnDynamic_1_2] extends [TOnDynamic_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_2 : TOnDynamic_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_2] ? [TOnDynamicAsync_1_2] extends [TOnDynamicAsync_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_2 : TOnDynamicAsync_1_2, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_2] ? [TOnServer_1_2] extends [TOnServer_1_2 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_2 : TOnServer_1_2, [unknown] extends [TSubmitMeta_1_2] ? any : TSubmitMeta_1_2, [unknown] extends [{} & TNewField & TNewField_1 & TNewField_2] ? any : {} & TNewField & TNewField_1 & TNewField_2, [unknown] extends [{
|
|
973
983
|
readonly SubmitButton: typeof SubmitButton;
|
|
974
984
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
975
985
|
} & TNewForm & TNewForm_1 & TNewForm_2] ? any : {
|
|
@@ -981,20 +991,20 @@ declare const CommonForm: {
|
|
|
981
991
|
render,
|
|
982
992
|
props,
|
|
983
993
|
defaultValues
|
|
984
|
-
}:
|
|
994
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2, {
|
|
985
995
|
readonly SubmitButton: typeof SubmitButton;
|
|
986
996
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
987
|
-
} & TNewForm & TNewForm_1 & TNewForm_2, TSubmitMeta_2_2, TRenderProps_1_2>) => <TFormData, TFields_2 extends
|
|
988
|
-
form:
|
|
997
|
+
} & TNewForm & TNewForm_1 & TNewForm_2, TSubmitMeta_2_2, TRenderProps_1_2>) => <TFormData, TFields_2 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_2>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_2> & {
|
|
998
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_2, TOnChange_2_2, TOnChangeAsync_2_2, TOnBlur_2_2, TOnBlurAsync_2_2, TOnSubmit_2_2, TOnSubmitAsync_2_2, TOnDynamic_2_2, TOnDynamicAsync_2_2, TOnServer_2_2, unknown extends TSubmitMeta_2_2 ? TFormSubmitMeta_2 : TSubmitMeta_2_2, {} & TNewField & TNewField_1 & TNewField_2, {
|
|
989
999
|
readonly SubmitButton: typeof SubmitButton;
|
|
990
1000
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
991
|
-
} & TNewForm & TNewForm_1 & TNewForm_2> |
|
|
1001
|
+
} & TNewForm & TNewForm_1 & TNewForm_2> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_2 ? TFormSubmitMeta_2 : TSubmitMeta_2_2, {} & TNewField & TNewField_1 & TNewField_2, {
|
|
992
1002
|
readonly SubmitButton: typeof SubmitButton;
|
|
993
1003
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
994
1004
|
} & TNewForm & TNewForm_1 & TNewForm_2>;
|
|
995
1005
|
fields: TFields_2;
|
|
996
1006
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
997
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_2 extends
|
|
1007
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_2 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_2 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_2>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_2, TOnChange_3_2, TOnChangeAsync_3_2, TOnBlur_3_2, TOnBlurAsync_3_2, TOnSubmit_3_2, TOnSubmitAsync_3_2, TOnDynamic_3_2, TOnDynamicAsync_3_2, TOnServer_3_2, TSubmitMeta_3_2>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_2, TOnChange_3_2, TOnChangeAsync_3_2, TOnBlur_3_2, TOnBlurAsync_3_2, TOnSubmit_3_2, TOnSubmitAsync_3_2, TOnDynamic_3_2, TOnDynamicAsync_3_2, TOnServer_3_2, TSubmitMeta_3_2, {} & TNewField & TNewField_1 & TNewField_2, {
|
|
998
1008
|
readonly SubmitButton: typeof SubmitButton;
|
|
999
1009
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1000
1010
|
} & TNewForm & TNewForm_1 & TNewForm_2>;
|
|
@@ -1005,18 +1015,18 @@ declare const CommonForm: {
|
|
|
1005
1015
|
fieldComponents?: TNewField_3 | undefined;
|
|
1006
1016
|
formComponents?: TNewForm_3 | undefined;
|
|
1007
1017
|
}) => {
|
|
1008
|
-
useAppForm: <TFormData, TOnMount_6 extends
|
|
1018
|
+
useAppForm: <TFormData, TOnMount_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_6>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_6, TOnChange_6, TOnChangeAsync_6, TOnBlur_6, TOnBlurAsync_6, TOnSubmit_6, TOnSubmitAsync_6, TOnDynamic_6, TOnDynamicAsync_6, TOnServer_6, TSubmitMeta_6>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_6, TOnChange_6, TOnChangeAsync_6, TOnBlur_6, TOnBlurAsync_6, TOnSubmit_6, TOnSubmitAsync_6, TOnDynamic_6, TOnDynamicAsync_6, TOnServer_6, TSubmitMeta_6, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3, {
|
|
1009
1019
|
readonly SubmitButton: typeof SubmitButton;
|
|
1010
1020
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1011
1021
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3>;
|
|
1012
|
-
withForm: <TFormData, TOnMount_1_3 extends
|
|
1022
|
+
withForm: <TFormData, TOnMount_1_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_3, TRenderProps_4 extends object = {}>({
|
|
1013
1023
|
render,
|
|
1014
1024
|
props
|
|
1015
|
-
}:
|
|
1025
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_3, TOnChange_1_3, TOnChangeAsync_1_3, TOnBlur_1_3, TOnBlurAsync_1_3, TOnSubmit_1_3, TOnSubmitAsync_1_3, TOnDynamic_1_3, TOnDynamicAsync_1_3, TOnServer_1_3, TSubmitMeta_1_3, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3, {
|
|
1016
1026
|
readonly SubmitButton: typeof SubmitButton;
|
|
1017
1027
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1018
1028
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3, TRenderProps_4>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_4] ? any : TRenderProps_4> & {
|
|
1019
|
-
form:
|
|
1029
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_3] ? [TOnMount_1_3] extends [TOnMount_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_3 : TOnMount_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_3] ? [TOnChange_1_3] extends [TOnChange_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_3 : TOnChange_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_3] ? [TOnChangeAsync_1_3] extends [TOnChangeAsync_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_3 : TOnChangeAsync_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_3] ? [TOnBlur_1_3] extends [TOnBlur_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_3 : TOnBlur_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_3] ? [TOnBlurAsync_1_3] extends [TOnBlurAsync_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_3 : TOnBlurAsync_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_3] ? [TOnSubmit_1_3] extends [TOnSubmit_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_3 : TOnSubmit_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_3] ? [TOnSubmitAsync_1_3] extends [TOnSubmitAsync_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_3 : TOnSubmitAsync_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_3] ? [TOnDynamic_1_3] extends [TOnDynamic_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_3 : TOnDynamic_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_3] ? [TOnDynamicAsync_1_3] extends [TOnDynamicAsync_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_3 : TOnDynamicAsync_1_3, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_3] ? [TOnServer_1_3] extends [TOnServer_1_3 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_3 : TOnServer_1_3, [unknown] extends [TSubmitMeta_1_3] ? any : TSubmitMeta_1_3, [unknown] extends [{} & TNewField & TNewField_1 & TNewField_2 & TNewField_3] ? any : {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3, [unknown] extends [{
|
|
1020
1030
|
readonly SubmitButton: typeof SubmitButton;
|
|
1021
1031
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1022
1032
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3] ? any : {
|
|
@@ -1028,20 +1038,20 @@ declare const CommonForm: {
|
|
|
1028
1038
|
render,
|
|
1029
1039
|
props,
|
|
1030
1040
|
defaultValues
|
|
1031
|
-
}:
|
|
1041
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3, {
|
|
1032
1042
|
readonly SubmitButton: typeof SubmitButton;
|
|
1033
1043
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1034
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3, TSubmitMeta_2_3, TRenderProps_1_3>) => <TFormData, TFields_3 extends
|
|
1035
|
-
form:
|
|
1044
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3, TSubmitMeta_2_3, TRenderProps_1_3>) => <TFormData, TFields_3 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_3>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_3> & {
|
|
1045
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_3, TOnChange_2_3, TOnChangeAsync_2_3, TOnBlur_2_3, TOnBlurAsync_2_3, TOnSubmit_2_3, TOnSubmitAsync_2_3, TOnDynamic_2_3, TOnDynamicAsync_2_3, TOnServer_2_3, unknown extends TSubmitMeta_2_3 ? TFormSubmitMeta_3 : TSubmitMeta_2_3, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3, {
|
|
1036
1046
|
readonly SubmitButton: typeof SubmitButton;
|
|
1037
1047
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1038
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3> |
|
|
1048
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_3 ? TFormSubmitMeta_3 : TSubmitMeta_2_3, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3, {
|
|
1039
1049
|
readonly SubmitButton: typeof SubmitButton;
|
|
1040
1050
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1041
1051
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3>;
|
|
1042
1052
|
fields: TFields_3;
|
|
1043
1053
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1044
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_3 extends
|
|
1054
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_3 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_3 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_3>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_3, TOnChange_3_3, TOnChangeAsync_3_3, TOnBlur_3_3, TOnBlurAsync_3_3, TOnSubmit_3_3, TOnSubmitAsync_3_3, TOnDynamic_3_3, TOnDynamicAsync_3_3, TOnServer_3_3, TSubmitMeta_3_3>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_3, TOnChange_3_3, TOnChangeAsync_3_3, TOnBlur_3_3, TOnBlurAsync_3_3, TOnSubmit_3_3, TOnSubmitAsync_3_3, TOnDynamic_3_3, TOnDynamicAsync_3_3, TOnServer_3_3, TSubmitMeta_3_3, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3, {
|
|
1045
1055
|
readonly SubmitButton: typeof SubmitButton;
|
|
1046
1056
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1047
1057
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3>;
|
|
@@ -1052,18 +1062,18 @@ declare const CommonForm: {
|
|
|
1052
1062
|
fieldComponents?: TNewField_4 | undefined;
|
|
1053
1063
|
formComponents?: TNewForm_4 | undefined;
|
|
1054
1064
|
}) => {
|
|
1055
|
-
useAppForm: <TFormData, TOnMount_7 extends
|
|
1065
|
+
useAppForm: <TFormData, TOnMount_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_7>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_7, TOnChange_7, TOnChangeAsync_7, TOnBlur_7, TOnBlurAsync_7, TOnSubmit_7, TOnSubmitAsync_7, TOnDynamic_7, TOnDynamicAsync_7, TOnServer_7, TSubmitMeta_7>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_7, TOnChange_7, TOnChangeAsync_7, TOnBlur_7, TOnBlurAsync_7, TOnSubmit_7, TOnSubmitAsync_7, TOnDynamic_7, TOnDynamicAsync_7, TOnServer_7, TSubmitMeta_7, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4, {
|
|
1056
1066
|
readonly SubmitButton: typeof SubmitButton;
|
|
1057
1067
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1058
1068
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4>;
|
|
1059
|
-
withForm: <TFormData, TOnMount_1_4 extends
|
|
1069
|
+
withForm: <TFormData, TOnMount_1_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_4, TRenderProps_5 extends object = {}>({
|
|
1060
1070
|
render,
|
|
1061
1071
|
props
|
|
1062
|
-
}:
|
|
1072
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_4, TOnChange_1_4, TOnChangeAsync_1_4, TOnBlur_1_4, TOnBlurAsync_1_4, TOnSubmit_1_4, TOnSubmitAsync_1_4, TOnDynamic_1_4, TOnDynamicAsync_1_4, TOnServer_1_4, TSubmitMeta_1_4, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4, {
|
|
1063
1073
|
readonly SubmitButton: typeof SubmitButton;
|
|
1064
1074
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1065
1075
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4, TRenderProps_5>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_5] ? any : TRenderProps_5> & {
|
|
1066
|
-
form:
|
|
1076
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_4] ? [TOnMount_1_4] extends [TOnMount_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_4 : TOnMount_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_4] ? [TOnChange_1_4] extends [TOnChange_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_4 : TOnChange_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_4] ? [TOnChangeAsync_1_4] extends [TOnChangeAsync_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_4 : TOnChangeAsync_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_4] ? [TOnBlur_1_4] extends [TOnBlur_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_4 : TOnBlur_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_4] ? [TOnBlurAsync_1_4] extends [TOnBlurAsync_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_4 : TOnBlurAsync_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_4] ? [TOnSubmit_1_4] extends [TOnSubmit_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_4 : TOnSubmit_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_4] ? [TOnSubmitAsync_1_4] extends [TOnSubmitAsync_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_4 : TOnSubmitAsync_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_4] ? [TOnDynamic_1_4] extends [TOnDynamic_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_4 : TOnDynamic_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_4] ? [TOnDynamicAsync_1_4] extends [TOnDynamicAsync_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_4 : TOnDynamicAsync_1_4, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_4] ? [TOnServer_1_4] extends [TOnServer_1_4 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_4 : TOnServer_1_4, [unknown] extends [TSubmitMeta_1_4] ? any : TSubmitMeta_1_4, [unknown] extends [{} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4] ? any : {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4, [unknown] extends [{
|
|
1067
1077
|
readonly SubmitButton: typeof SubmitButton;
|
|
1068
1078
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1069
1079
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4] ? any : {
|
|
@@ -1075,20 +1085,20 @@ declare const CommonForm: {
|
|
|
1075
1085
|
render,
|
|
1076
1086
|
props,
|
|
1077
1087
|
defaultValues
|
|
1078
|
-
}:
|
|
1088
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4, {
|
|
1079
1089
|
readonly SubmitButton: typeof SubmitButton;
|
|
1080
1090
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1081
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4, TSubmitMeta_2_4, TRenderProps_1_4>) => <TFormData, TFields_4 extends
|
|
1082
|
-
form:
|
|
1091
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4, TSubmitMeta_2_4, TRenderProps_1_4>) => <TFormData, TFields_4 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_4>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_4> & {
|
|
1092
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_4, TOnChange_2_4, TOnChangeAsync_2_4, TOnBlur_2_4, TOnBlurAsync_2_4, TOnSubmit_2_4, TOnSubmitAsync_2_4, TOnDynamic_2_4, TOnDynamicAsync_2_4, TOnServer_2_4, unknown extends TSubmitMeta_2_4 ? TFormSubmitMeta_4 : TSubmitMeta_2_4, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4, {
|
|
1083
1093
|
readonly SubmitButton: typeof SubmitButton;
|
|
1084
1094
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1085
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4> |
|
|
1095
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_4 ? TFormSubmitMeta_4 : TSubmitMeta_2_4, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4, {
|
|
1086
1096
|
readonly SubmitButton: typeof SubmitButton;
|
|
1087
1097
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1088
1098
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4>;
|
|
1089
1099
|
fields: TFields_4;
|
|
1090
1100
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1091
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_4 extends
|
|
1101
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_4 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_4 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_4>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_4, TOnChange_3_4, TOnChangeAsync_3_4, TOnBlur_3_4, TOnBlurAsync_3_4, TOnSubmit_3_4, TOnSubmitAsync_3_4, TOnDynamic_3_4, TOnDynamicAsync_3_4, TOnServer_3_4, TSubmitMeta_3_4>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_4, TOnChange_3_4, TOnChangeAsync_3_4, TOnBlur_3_4, TOnBlurAsync_3_4, TOnSubmit_3_4, TOnSubmitAsync_3_4, TOnDynamic_3_4, TOnDynamicAsync_3_4, TOnServer_3_4, TSubmitMeta_3_4, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4, {
|
|
1092
1102
|
readonly SubmitButton: typeof SubmitButton;
|
|
1093
1103
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1094
1104
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4>;
|
|
@@ -1099,18 +1109,18 @@ declare const CommonForm: {
|
|
|
1099
1109
|
fieldComponents?: TNewField_5 | undefined;
|
|
1100
1110
|
formComponents?: TNewForm_5 | undefined;
|
|
1101
1111
|
}) => {
|
|
1102
|
-
useAppForm: <TFormData, TOnMount_8 extends
|
|
1112
|
+
useAppForm: <TFormData, TOnMount_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_8>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_8, TOnChange_8, TOnChangeAsync_8, TOnBlur_8, TOnBlurAsync_8, TOnSubmit_8, TOnSubmitAsync_8, TOnDynamic_8, TOnDynamicAsync_8, TOnServer_8, TSubmitMeta_8>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_8, TOnChange_8, TOnChangeAsync_8, TOnBlur_8, TOnBlurAsync_8, TOnSubmit_8, TOnSubmitAsync_8, TOnDynamic_8, TOnDynamicAsync_8, TOnServer_8, TSubmitMeta_8, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5, {
|
|
1103
1113
|
readonly SubmitButton: typeof SubmitButton;
|
|
1104
1114
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1105
1115
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5>;
|
|
1106
|
-
withForm: <TFormData, TOnMount_1_5 extends
|
|
1116
|
+
withForm: <TFormData, TOnMount_1_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_5, TRenderProps_6 extends object = {}>({
|
|
1107
1117
|
render,
|
|
1108
1118
|
props
|
|
1109
|
-
}:
|
|
1119
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_5, TOnChange_1_5, TOnChangeAsync_1_5, TOnBlur_1_5, TOnBlurAsync_1_5, TOnSubmit_1_5, TOnSubmitAsync_1_5, TOnDynamic_1_5, TOnDynamicAsync_1_5, TOnServer_1_5, TSubmitMeta_1_5, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5, {
|
|
1110
1120
|
readonly SubmitButton: typeof SubmitButton;
|
|
1111
1121
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1112
1122
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5, TRenderProps_6>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_6] ? any : TRenderProps_6> & {
|
|
1113
|
-
form:
|
|
1123
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_5] ? [TOnMount_1_5] extends [TOnMount_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_5 : TOnMount_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_5] ? [TOnChange_1_5] extends [TOnChange_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_5 : TOnChange_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_5] ? [TOnChangeAsync_1_5] extends [TOnChangeAsync_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_5 : TOnChangeAsync_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_5] ? [TOnBlur_1_5] extends [TOnBlur_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_5 : TOnBlur_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_5] ? [TOnBlurAsync_1_5] extends [TOnBlurAsync_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_5 : TOnBlurAsync_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_5] ? [TOnSubmit_1_5] extends [TOnSubmit_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_5 : TOnSubmit_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_5] ? [TOnSubmitAsync_1_5] extends [TOnSubmitAsync_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_5 : TOnSubmitAsync_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_5] ? [TOnDynamic_1_5] extends [TOnDynamic_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_5 : TOnDynamic_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_5] ? [TOnDynamicAsync_1_5] extends [TOnDynamicAsync_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_5 : TOnDynamicAsync_1_5, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_5] ? [TOnServer_1_5] extends [TOnServer_1_5 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_5 : TOnServer_1_5, [unknown] extends [TSubmitMeta_1_5] ? any : TSubmitMeta_1_5, [unknown] extends [{} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5] ? any : {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5, [unknown] extends [{
|
|
1114
1124
|
readonly SubmitButton: typeof SubmitButton;
|
|
1115
1125
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1116
1126
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5] ? any : {
|
|
@@ -1122,20 +1132,20 @@ declare const CommonForm: {
|
|
|
1122
1132
|
render,
|
|
1123
1133
|
props,
|
|
1124
1134
|
defaultValues
|
|
1125
|
-
}:
|
|
1135
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5, {
|
|
1126
1136
|
readonly SubmitButton: typeof SubmitButton;
|
|
1127
1137
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1128
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5, TSubmitMeta_2_5, TRenderProps_1_5>) => <TFormData, TFields_5 extends
|
|
1129
|
-
form:
|
|
1138
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5, TSubmitMeta_2_5, TRenderProps_1_5>) => <TFormData, TFields_5 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_5>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_5> & {
|
|
1139
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_5, TOnChange_2_5, TOnChangeAsync_2_5, TOnBlur_2_5, TOnBlurAsync_2_5, TOnSubmit_2_5, TOnSubmitAsync_2_5, TOnDynamic_2_5, TOnDynamicAsync_2_5, TOnServer_2_5, unknown extends TSubmitMeta_2_5 ? TFormSubmitMeta_5 : TSubmitMeta_2_5, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5, {
|
|
1130
1140
|
readonly SubmitButton: typeof SubmitButton;
|
|
1131
1141
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1132
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5> |
|
|
1142
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_5 ? TFormSubmitMeta_5 : TSubmitMeta_2_5, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5, {
|
|
1133
1143
|
readonly SubmitButton: typeof SubmitButton;
|
|
1134
1144
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1135
1145
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5>;
|
|
1136
1146
|
fields: TFields_5;
|
|
1137
1147
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1138
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_5 extends
|
|
1148
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_5 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_5 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_5>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_5, TOnChange_3_5, TOnChangeAsync_3_5, TOnBlur_3_5, TOnBlurAsync_3_5, TOnSubmit_3_5, TOnSubmitAsync_3_5, TOnDynamic_3_5, TOnDynamicAsync_3_5, TOnServer_3_5, TSubmitMeta_3_5>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_5, TOnChange_3_5, TOnChangeAsync_3_5, TOnBlur_3_5, TOnBlurAsync_3_5, TOnSubmit_3_5, TOnSubmitAsync_3_5, TOnDynamic_3_5, TOnDynamicAsync_3_5, TOnServer_3_5, TSubmitMeta_3_5, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5, {
|
|
1139
1149
|
readonly SubmitButton: typeof SubmitButton;
|
|
1140
1150
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1141
1151
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5>;
|
|
@@ -1146,18 +1156,18 @@ declare const CommonForm: {
|
|
|
1146
1156
|
fieldComponents?: TNewField_6 | undefined;
|
|
1147
1157
|
formComponents?: TNewForm_6 | undefined;
|
|
1148
1158
|
}) => {
|
|
1149
|
-
useAppForm: <TFormData, TOnMount_9 extends
|
|
1159
|
+
useAppForm: <TFormData, TOnMount_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_9>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_9, TOnChange_9, TOnChangeAsync_9, TOnBlur_9, TOnBlurAsync_9, TOnSubmit_9, TOnSubmitAsync_9, TOnDynamic_9, TOnDynamicAsync_9, TOnServer_9, TSubmitMeta_9>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_9, TOnChange_9, TOnChangeAsync_9, TOnBlur_9, TOnBlurAsync_9, TOnSubmit_9, TOnSubmitAsync_9, TOnDynamic_9, TOnDynamicAsync_9, TOnServer_9, TSubmitMeta_9, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6, {
|
|
1150
1160
|
readonly SubmitButton: typeof SubmitButton;
|
|
1151
1161
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1152
1162
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6>;
|
|
1153
|
-
withForm: <TFormData, TOnMount_1_6 extends
|
|
1163
|
+
withForm: <TFormData, TOnMount_1_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_6, TRenderProps_7 extends object = {}>({
|
|
1154
1164
|
render,
|
|
1155
1165
|
props
|
|
1156
|
-
}:
|
|
1166
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_6, TOnChange_1_6, TOnChangeAsync_1_6, TOnBlur_1_6, TOnBlurAsync_1_6, TOnSubmit_1_6, TOnSubmitAsync_1_6, TOnDynamic_1_6, TOnDynamicAsync_1_6, TOnServer_1_6, TSubmitMeta_1_6, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6, {
|
|
1157
1167
|
readonly SubmitButton: typeof SubmitButton;
|
|
1158
1168
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1159
1169
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6, TRenderProps_7>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_7] ? any : TRenderProps_7> & {
|
|
1160
|
-
form:
|
|
1170
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_6] ? [TOnMount_1_6] extends [TOnMount_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_6 : TOnMount_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_6] ? [TOnChange_1_6] extends [TOnChange_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_6 : TOnChange_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_6] ? [TOnChangeAsync_1_6] extends [TOnChangeAsync_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_6 : TOnChangeAsync_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_6] ? [TOnBlur_1_6] extends [TOnBlur_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_6 : TOnBlur_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_6] ? [TOnBlurAsync_1_6] extends [TOnBlurAsync_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_6 : TOnBlurAsync_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_6] ? [TOnSubmit_1_6] extends [TOnSubmit_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_6 : TOnSubmit_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_6] ? [TOnSubmitAsync_1_6] extends [TOnSubmitAsync_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_6 : TOnSubmitAsync_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_6] ? [TOnDynamic_1_6] extends [TOnDynamic_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_6 : TOnDynamic_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_6] ? [TOnDynamicAsync_1_6] extends [TOnDynamicAsync_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_6 : TOnDynamicAsync_1_6, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_6] ? [TOnServer_1_6] extends [TOnServer_1_6 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_6 : TOnServer_1_6, [unknown] extends [TSubmitMeta_1_6] ? any : TSubmitMeta_1_6, [unknown] extends [{} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6] ? any : {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6, [unknown] extends [{
|
|
1161
1171
|
readonly SubmitButton: typeof SubmitButton;
|
|
1162
1172
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1163
1173
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6] ? any : {
|
|
@@ -1169,20 +1179,20 @@ declare const CommonForm: {
|
|
|
1169
1179
|
render,
|
|
1170
1180
|
props,
|
|
1171
1181
|
defaultValues
|
|
1172
|
-
}:
|
|
1182
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6, {
|
|
1173
1183
|
readonly SubmitButton: typeof SubmitButton;
|
|
1174
1184
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1175
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6, TSubmitMeta_2_6, TRenderProps_1_6>) => <TFormData, TFields_6 extends
|
|
1176
|
-
form:
|
|
1185
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6, TSubmitMeta_2_6, TRenderProps_1_6>) => <TFormData, TFields_6 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_6>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_6> & {
|
|
1186
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_6, TOnChange_2_6, TOnChangeAsync_2_6, TOnBlur_2_6, TOnBlurAsync_2_6, TOnSubmit_2_6, TOnSubmitAsync_2_6, TOnDynamic_2_6, TOnDynamicAsync_2_6, TOnServer_2_6, unknown extends TSubmitMeta_2_6 ? TFormSubmitMeta_6 : TSubmitMeta_2_6, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6, {
|
|
1177
1187
|
readonly SubmitButton: typeof SubmitButton;
|
|
1178
1188
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1179
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6> |
|
|
1189
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_6 ? TFormSubmitMeta_6 : TSubmitMeta_2_6, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6, {
|
|
1180
1190
|
readonly SubmitButton: typeof SubmitButton;
|
|
1181
1191
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1182
1192
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6>;
|
|
1183
1193
|
fields: TFields_6;
|
|
1184
1194
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1185
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_6 extends
|
|
1195
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_6 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_6 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_6>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_6, TOnChange_3_6, TOnChangeAsync_3_6, TOnBlur_3_6, TOnBlurAsync_3_6, TOnSubmit_3_6, TOnSubmitAsync_3_6, TOnDynamic_3_6, TOnDynamicAsync_3_6, TOnServer_3_6, TSubmitMeta_3_6>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_6, TOnChange_3_6, TOnChangeAsync_3_6, TOnBlur_3_6, TOnBlurAsync_3_6, TOnSubmit_3_6, TOnSubmitAsync_3_6, TOnDynamic_3_6, TOnDynamicAsync_3_6, TOnServer_3_6, TSubmitMeta_3_6, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6, {
|
|
1186
1196
|
readonly SubmitButton: typeof SubmitButton;
|
|
1187
1197
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1188
1198
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6>;
|
|
@@ -1193,18 +1203,18 @@ declare const CommonForm: {
|
|
|
1193
1203
|
fieldComponents?: TNewField_7 | undefined;
|
|
1194
1204
|
formComponents?: TNewForm_7 | undefined;
|
|
1195
1205
|
}) => {
|
|
1196
|
-
useAppForm: <TFormData, TOnMount_10 extends
|
|
1206
|
+
useAppForm: <TFormData, TOnMount_10 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_10 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_10 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_10 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_10 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_10 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_10 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_10 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_10 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_10 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_10>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_10, TOnChange_10, TOnChangeAsync_10, TOnBlur_10, TOnBlurAsync_10, TOnSubmit_10, TOnSubmitAsync_10, TOnDynamic_10, TOnDynamicAsync_10, TOnServer_10, TSubmitMeta_10>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_10, TOnChange_10, TOnChangeAsync_10, TOnBlur_10, TOnBlurAsync_10, TOnSubmit_10, TOnSubmitAsync_10, TOnDynamic_10, TOnDynamicAsync_10, TOnServer_10, TSubmitMeta_10, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7, {
|
|
1197
1207
|
readonly SubmitButton: typeof SubmitButton;
|
|
1198
1208
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1199
1209
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7>;
|
|
1200
|
-
withForm: <TFormData, TOnMount_1_7 extends
|
|
1210
|
+
withForm: <TFormData, TOnMount_1_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_7, TRenderProps_8 extends object = {}>({
|
|
1201
1211
|
render,
|
|
1202
1212
|
props
|
|
1203
|
-
}:
|
|
1213
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_7, TOnChange_1_7, TOnChangeAsync_1_7, TOnBlur_1_7, TOnBlurAsync_1_7, TOnSubmit_1_7, TOnSubmitAsync_1_7, TOnDynamic_1_7, TOnDynamicAsync_1_7, TOnServer_1_7, TSubmitMeta_1_7, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7, {
|
|
1204
1214
|
readonly SubmitButton: typeof SubmitButton;
|
|
1205
1215
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1206
1216
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7, TRenderProps_8>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_8] ? any : TRenderProps_8> & {
|
|
1207
|
-
form:
|
|
1217
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_7] ? [TOnMount_1_7] extends [TOnMount_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_7 : TOnMount_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_7] ? [TOnChange_1_7] extends [TOnChange_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_7 : TOnChange_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_7] ? [TOnChangeAsync_1_7] extends [TOnChangeAsync_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_7 : TOnChangeAsync_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_7] ? [TOnBlur_1_7] extends [TOnBlur_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_7 : TOnBlur_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_7] ? [TOnBlurAsync_1_7] extends [TOnBlurAsync_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_7 : TOnBlurAsync_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_7] ? [TOnSubmit_1_7] extends [TOnSubmit_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_7 : TOnSubmit_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_7] ? [TOnSubmitAsync_1_7] extends [TOnSubmitAsync_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_7 : TOnSubmitAsync_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_7] ? [TOnDynamic_1_7] extends [TOnDynamic_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_7 : TOnDynamic_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_7] ? [TOnDynamicAsync_1_7] extends [TOnDynamicAsync_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_7 : TOnDynamicAsync_1_7, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_7] ? [TOnServer_1_7] extends [TOnServer_1_7 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_7 : TOnServer_1_7, [unknown] extends [TSubmitMeta_1_7] ? any : TSubmitMeta_1_7, [unknown] extends [{} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7] ? any : {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7, [unknown] extends [{
|
|
1208
1218
|
readonly SubmitButton: typeof SubmitButton;
|
|
1209
1219
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1210
1220
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7] ? any : {
|
|
@@ -1216,20 +1226,20 @@ declare const CommonForm: {
|
|
|
1216
1226
|
render,
|
|
1217
1227
|
props,
|
|
1218
1228
|
defaultValues
|
|
1219
|
-
}:
|
|
1229
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7, {
|
|
1220
1230
|
readonly SubmitButton: typeof SubmitButton;
|
|
1221
1231
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1222
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7, TSubmitMeta_2_7, TRenderProps_1_7>) => <TFormData, TFields_7 extends
|
|
1223
|
-
form:
|
|
1232
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7, TSubmitMeta_2_7, TRenderProps_1_7>) => <TFormData, TFields_7 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_7>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_7> & {
|
|
1233
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_7, TOnChange_2_7, TOnChangeAsync_2_7, TOnBlur_2_7, TOnBlurAsync_2_7, TOnSubmit_2_7, TOnSubmitAsync_2_7, TOnDynamic_2_7, TOnDynamicAsync_2_7, TOnServer_2_7, unknown extends TSubmitMeta_2_7 ? TFormSubmitMeta_7 : TSubmitMeta_2_7, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7, {
|
|
1224
1234
|
readonly SubmitButton: typeof SubmitButton;
|
|
1225
1235
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1226
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7> |
|
|
1236
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_7 ? TFormSubmitMeta_7 : TSubmitMeta_2_7, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7, {
|
|
1227
1237
|
readonly SubmitButton: typeof SubmitButton;
|
|
1228
1238
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1229
1239
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7>;
|
|
1230
1240
|
fields: TFields_7;
|
|
1231
1241
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1232
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_7 extends
|
|
1242
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_7 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_7 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_7>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_7, TOnChange_3_7, TOnChangeAsync_3_7, TOnBlur_3_7, TOnBlurAsync_3_7, TOnSubmit_3_7, TOnSubmitAsync_3_7, TOnDynamic_3_7, TOnDynamicAsync_3_7, TOnServer_3_7, TSubmitMeta_3_7>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_7, TOnChange_3_7, TOnChangeAsync_3_7, TOnBlur_3_7, TOnBlurAsync_3_7, TOnSubmit_3_7, TOnSubmitAsync_3_7, TOnDynamic_3_7, TOnDynamicAsync_3_7, TOnServer_3_7, TSubmitMeta_3_7, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7, {
|
|
1233
1243
|
readonly SubmitButton: typeof SubmitButton;
|
|
1234
1244
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1235
1245
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7>;
|
|
@@ -1240,18 +1250,18 @@ declare const CommonForm: {
|
|
|
1240
1250
|
fieldComponents?: TNewField_8 | undefined;
|
|
1241
1251
|
formComponents?: TNewForm_8 | undefined;
|
|
1242
1252
|
}) => {
|
|
1243
|
-
useAppForm: <TFormData, TOnMount_11 extends
|
|
1253
|
+
useAppForm: <TFormData, TOnMount_11 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_11 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_11 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_11 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_11 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_11 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_11 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_11 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_11 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_11 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_11>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_11, TOnChange_11, TOnChangeAsync_11, TOnBlur_11, TOnBlurAsync_11, TOnSubmit_11, TOnSubmitAsync_11, TOnDynamic_11, TOnDynamicAsync_11, TOnServer_11, TSubmitMeta_11>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_11, TOnChange_11, TOnChangeAsync_11, TOnBlur_11, TOnBlurAsync_11, TOnSubmit_11, TOnSubmitAsync_11, TOnDynamic_11, TOnDynamicAsync_11, TOnServer_11, TSubmitMeta_11, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8, {
|
|
1244
1254
|
readonly SubmitButton: typeof SubmitButton;
|
|
1245
1255
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1246
1256
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8>;
|
|
1247
|
-
withForm: <TFormData, TOnMount_1_8 extends
|
|
1257
|
+
withForm: <TFormData, TOnMount_1_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_8, TRenderProps_9 extends object = {}>({
|
|
1248
1258
|
render,
|
|
1249
1259
|
props
|
|
1250
|
-
}:
|
|
1260
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_8, TOnChange_1_8, TOnChangeAsync_1_8, TOnBlur_1_8, TOnBlurAsync_1_8, TOnSubmit_1_8, TOnSubmitAsync_1_8, TOnDynamic_1_8, TOnDynamicAsync_1_8, TOnServer_1_8, TSubmitMeta_1_8, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8, {
|
|
1251
1261
|
readonly SubmitButton: typeof SubmitButton;
|
|
1252
1262
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1253
1263
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8, TRenderProps_9>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_9] ? any : TRenderProps_9> & {
|
|
1254
|
-
form:
|
|
1264
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_8] ? [TOnMount_1_8] extends [TOnMount_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_8 : TOnMount_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_8] ? [TOnChange_1_8] extends [TOnChange_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_8 : TOnChange_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_8] ? [TOnChangeAsync_1_8] extends [TOnChangeAsync_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_8 : TOnChangeAsync_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_8] ? [TOnBlur_1_8] extends [TOnBlur_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_8 : TOnBlur_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_8] ? [TOnBlurAsync_1_8] extends [TOnBlurAsync_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_8 : TOnBlurAsync_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_8] ? [TOnSubmit_1_8] extends [TOnSubmit_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_8 : TOnSubmit_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_8] ? [TOnSubmitAsync_1_8] extends [TOnSubmitAsync_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_8 : TOnSubmitAsync_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_8] ? [TOnDynamic_1_8] extends [TOnDynamic_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_8 : TOnDynamic_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_8] ? [TOnDynamicAsync_1_8] extends [TOnDynamicAsync_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_8 : TOnDynamicAsync_1_8, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_8] ? [TOnServer_1_8] extends [TOnServer_1_8 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_8 : TOnServer_1_8, [unknown] extends [TSubmitMeta_1_8] ? any : TSubmitMeta_1_8, [unknown] extends [{} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8] ? any : {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8, [unknown] extends [{
|
|
1255
1265
|
readonly SubmitButton: typeof SubmitButton;
|
|
1256
1266
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1257
1267
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8] ? any : {
|
|
@@ -1263,20 +1273,20 @@ declare const CommonForm: {
|
|
|
1263
1273
|
render,
|
|
1264
1274
|
props,
|
|
1265
1275
|
defaultValues
|
|
1266
|
-
}:
|
|
1276
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8, {
|
|
1267
1277
|
readonly SubmitButton: typeof SubmitButton;
|
|
1268
1278
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1269
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8, TSubmitMeta_2_8, TRenderProps_1_8>) => <TFormData, TFields_8 extends
|
|
1270
|
-
form:
|
|
1279
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8, TSubmitMeta_2_8, TRenderProps_1_8>) => <TFormData, TFields_8 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_8>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_8> & {
|
|
1280
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_8, TOnChange_2_8, TOnChangeAsync_2_8, TOnBlur_2_8, TOnBlurAsync_2_8, TOnSubmit_2_8, TOnSubmitAsync_2_8, TOnDynamic_2_8, TOnDynamicAsync_2_8, TOnServer_2_8, unknown extends TSubmitMeta_2_8 ? TFormSubmitMeta_8 : TSubmitMeta_2_8, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8, {
|
|
1271
1281
|
readonly SubmitButton: typeof SubmitButton;
|
|
1272
1282
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1273
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8> |
|
|
1283
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_8 ? TFormSubmitMeta_8 : TSubmitMeta_2_8, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8, {
|
|
1274
1284
|
readonly SubmitButton: typeof SubmitButton;
|
|
1275
1285
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1276
1286
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8>;
|
|
1277
1287
|
fields: TFields_8;
|
|
1278
1288
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1279
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_8 extends
|
|
1289
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_8 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_8 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_8>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_8, TOnChange_3_8, TOnChangeAsync_3_8, TOnBlur_3_8, TOnBlurAsync_3_8, TOnSubmit_3_8, TOnSubmitAsync_3_8, TOnDynamic_3_8, TOnDynamicAsync_3_8, TOnServer_3_8, TSubmitMeta_3_8>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_8, TOnChange_3_8, TOnChangeAsync_3_8, TOnBlur_3_8, TOnBlurAsync_3_8, TOnSubmit_3_8, TOnSubmitAsync_3_8, TOnDynamic_3_8, TOnDynamicAsync_3_8, TOnServer_3_8, TSubmitMeta_3_8, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8, {
|
|
1280
1290
|
readonly SubmitButton: typeof SubmitButton;
|
|
1281
1291
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1282
1292
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8>;
|
|
@@ -1287,18 +1297,18 @@ declare const CommonForm: {
|
|
|
1287
1297
|
fieldComponents?: TNewField_9 | undefined;
|
|
1288
1298
|
formComponents?: TNewForm_9 | undefined;
|
|
1289
1299
|
}) => {
|
|
1290
|
-
useAppForm: <TFormData, TOnMount_12 extends
|
|
1300
|
+
useAppForm: <TFormData, TOnMount_12 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_12 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_12 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_12 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_12 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_12 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_12 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_12 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_12 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_12 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_12>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_12, TOnChange_12, TOnChangeAsync_12, TOnBlur_12, TOnBlurAsync_12, TOnSubmit_12, TOnSubmitAsync_12, TOnDynamic_12, TOnDynamicAsync_12, TOnServer_12, TSubmitMeta_12>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_12, TOnChange_12, TOnChangeAsync_12, TOnBlur_12, TOnBlurAsync_12, TOnSubmit_12, TOnSubmitAsync_12, TOnDynamic_12, TOnDynamicAsync_12, TOnServer_12, TSubmitMeta_12, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8 & TNewField_9, {
|
|
1291
1301
|
readonly SubmitButton: typeof SubmitButton;
|
|
1292
1302
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1293
1303
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9>;
|
|
1294
|
-
withForm: <TFormData, TOnMount_1_9 extends
|
|
1304
|
+
withForm: <TFormData, TOnMount_1_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_1_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_1_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_1_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_1_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_1_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_1_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_1_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_1_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_1_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_1_9, TRenderProps_10 extends object = {}>({
|
|
1295
1305
|
render,
|
|
1296
1306
|
props
|
|
1297
|
-
}:
|
|
1307
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount_1_9, TOnChange_1_9, TOnChangeAsync_1_9, TOnBlur_1_9, TOnBlurAsync_1_9, TOnSubmit_1_9, TOnSubmitAsync_1_9, TOnDynamic_1_9, TOnDynamicAsync_1_9, TOnServer_1_9, TSubmitMeta_1_9, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8 & TNewField_9, {
|
|
1298
1308
|
readonly SubmitButton: typeof SubmitButton;
|
|
1299
1309
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1300
1310
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9, TRenderProps_10>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_10] ? any : TRenderProps_10> & {
|
|
1301
|
-
form:
|
|
1311
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount_1_9] ? [TOnMount_1_9] extends [TOnMount_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount_1_9 : TOnMount_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange_1_9] ? [TOnChange_1_9] extends [TOnChange_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange_1_9 : TOnChange_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync_1_9] ? [TOnChangeAsync_1_9] extends [TOnChangeAsync_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync_1_9 : TOnChangeAsync_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur_1_9] ? [TOnBlur_1_9] extends [TOnBlur_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur_1_9 : TOnBlur_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync_1_9] ? [TOnBlurAsync_1_9] extends [TOnBlurAsync_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync_1_9 : TOnBlurAsync_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit_1_9] ? [TOnSubmit_1_9] extends [TOnSubmit_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit_1_9 : TOnSubmit_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync_1_9] ? [TOnSubmitAsync_1_9] extends [TOnSubmitAsync_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync_1_9 : TOnSubmitAsync_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic_1_9] ? [TOnDynamic_1_9] extends [TOnDynamic_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic_1_9 : TOnDynamic_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync_1_9] ? [TOnDynamicAsync_1_9] extends [TOnDynamicAsync_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync_1_9 : TOnDynamicAsync_1_9, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer_1_9] ? [TOnServer_1_9] extends [TOnServer_1_9 & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer_1_9 : TOnServer_1_9, [unknown] extends [TSubmitMeta_1_9] ? any : TSubmitMeta_1_9, [unknown] extends [{} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8 & TNewField_9] ? any : {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8 & TNewField_9, [unknown] extends [{
|
|
1302
1312
|
readonly SubmitButton: typeof SubmitButton;
|
|
1303
1313
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1304
1314
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9] ? any : {
|
|
@@ -1310,20 +1320,20 @@ declare const CommonForm: {
|
|
|
1310
1320
|
render,
|
|
1311
1321
|
props,
|
|
1312
1322
|
defaultValues
|
|
1313
|
-
}:
|
|
1323
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8 & TNewField_9, {
|
|
1314
1324
|
readonly SubmitButton: typeof SubmitButton;
|
|
1315
1325
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1316
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9, TSubmitMeta_2_9, TRenderProps_1_9>) => <TFormData, TFields_9 extends
|
|
1317
|
-
form:
|
|
1326
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9, TSubmitMeta_2_9, TRenderProps_1_9>) => <TFormData, TFields_9 extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount_2_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_2_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_2_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_2_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_2_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_2_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_2_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_2_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_2_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_2_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta_9>(params: React$1.PropsWithChildren<NoInfer<TRenderProps_1_9> & {
|
|
1327
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_2_9, TOnChange_2_9, TOnChangeAsync_2_9, TOnBlur_2_9, TOnBlurAsync_2_9, TOnSubmit_2_9, TOnSubmitAsync_2_9, TOnDynamic_2_9, TOnDynamicAsync_2_9, TOnServer_2_9, unknown extends TSubmitMeta_2_9 ? TFormSubmitMeta_9 : TSubmitMeta_2_9, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8 & TNewField_9, {
|
|
1318
1328
|
readonly SubmitButton: typeof SubmitButton;
|
|
1319
1329
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1320
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9> |
|
|
1330
|
+
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta_2_9 ? TFormSubmitMeta_9 : TSubmitMeta_2_9, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8 & TNewField_9, {
|
|
1321
1331
|
readonly SubmitButton: typeof SubmitButton;
|
|
1322
1332
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1323
1333
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9>;
|
|
1324
1334
|
fields: TFields_9;
|
|
1325
1335
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1326
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_9 extends
|
|
1336
|
+
useTypedAppFormContext: <TFormData, TOnMount_3_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange_3_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync_3_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur_3_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync_3_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit_3_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync_3_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic_3_9 extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync_3_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer_3_9 extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta_3_9>(_props: _tanstack_react_form0.FormOptions<TFormData, TOnMount_3_9, TOnChange_3_9, TOnChangeAsync_3_9, TOnBlur_3_9, TOnBlurAsync_3_9, TOnSubmit_3_9, TOnSubmitAsync_3_9, TOnDynamic_3_9, TOnDynamicAsync_3_9, TOnServer_3_9, TSubmitMeta_3_9>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount_3_9, TOnChange_3_9, TOnChangeAsync_3_9, TOnBlur_3_9, TOnBlurAsync_3_9, TOnSubmit_3_9, TOnSubmitAsync_3_9, TOnDynamic_3_9, TOnDynamicAsync_3_9, TOnServer_3_9, TSubmitMeta_3_9, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8 & TNewField_9, {
|
|
1327
1337
|
readonly SubmitButton: typeof SubmitButton;
|
|
1328
1338
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1329
1339
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9>;
|
|
@@ -1345,18 +1355,18 @@ declare const CommonForm: {
|
|
|
1345
1355
|
};
|
|
1346
1356
|
};
|
|
1347
1357
|
};
|
|
1348
|
-
declare const useForm: <TFormData, TOnMount extends
|
|
1358
|
+
declare const useForm: <TFormData, TOnMount extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta>(props: _tanstack_react_form0.FormOptions<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta>) => _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {}, {
|
|
1349
1359
|
readonly SubmitButton: typeof SubmitButton;
|
|
1350
1360
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1351
1361
|
}>;
|
|
1352
|
-
declare const withForm: <TFormData, TOnMount extends
|
|
1362
|
+
declare const withForm: <TFormData, TOnMount extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TSubmitMeta, TRenderProps extends object = {}>({
|
|
1353
1363
|
render,
|
|
1354
1364
|
props
|
|
1355
|
-
}:
|
|
1365
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {}, {
|
|
1356
1366
|
readonly SubmitButton: typeof SubmitButton;
|
|
1357
1367
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1358
1368
|
}, TRenderProps>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
|
|
1359
|
-
form:
|
|
1369
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<[unknown] extends [TFormData] ? any : TFormData, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnMount] ? [TOnMount] extends [TOnMount & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnMount : TOnMount, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChange] ? [TOnChange] extends [TOnChange & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChange : TOnChange, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnChangeAsync] ? [TOnChangeAsync] extends [TOnChangeAsync & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnChangeAsync : TOnChangeAsync, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlur] ? [TOnBlur] extends [TOnBlur & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlur : TOnBlur, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnBlurAsync] ? [TOnBlurAsync] extends [TOnBlurAsync & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnBlurAsync : TOnBlurAsync, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmit] ? [TOnSubmit] extends [TOnSubmit & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmit : TOnSubmit, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnSubmitAsync] ? [TOnSubmitAsync] extends [TOnSubmitAsync & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnSubmitAsync : TOnSubmitAsync, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamic] ? [TOnDynamic] extends [TOnDynamic & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamic : TOnDynamic, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnDynamicAsync] ? [TOnDynamicAsync] extends [TOnDynamicAsync & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnDynamicAsync : TOnDynamicAsync, [_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined] extends [TOnServer] ? [TOnServer] extends [TOnServer & (_tanstack_react_form0.FormValidateOrFn<TFormData> | undefined)] ? any : TOnServer : TOnServer, [unknown] extends [TSubmitMeta] ? any : TSubmitMeta, {}, {
|
|
1360
1370
|
readonly SubmitButton: typeof SubmitButton;
|
|
1361
1371
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1362
1372
|
}>;
|
|
@@ -1364,14 +1374,14 @@ declare const withForm: <TFormData, TOnMount extends _tanstack_react_form3.FormV
|
|
|
1364
1374
|
render,
|
|
1365
1375
|
props,
|
|
1366
1376
|
defaultValues
|
|
1367
|
-
}:
|
|
1377
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {}, {
|
|
1368
1378
|
readonly SubmitButton: typeof SubmitButton;
|
|
1369
1379
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1370
|
-
}, TSubmitMeta, TRenderProps>) => <TFormData, TFields extends
|
|
1371
|
-
form:
|
|
1380
|
+
}, TSubmitMeta, TRenderProps>) => <TFormData, TFields extends _tanstack_react_form0.DeepKeysOfType<TFormData, TFieldGroupData | null | undefined> | _tanstack_react_form0.FieldsMap<TFormData, TFieldGroupData>, TOnMount extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChange extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnChangeAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnBlur extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnBlurAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnSubmit extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnSubmitAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnDynamic extends _tanstack_react_form0.FormValidateOrFn<TFormData> | undefined, TOnDynamicAsync extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TOnServer extends _tanstack_react_form0.FormAsyncValidateOrFn<TFormData> | undefined, TFormSubmitMeta>(params: React$1.PropsWithChildren<NoInfer<TRenderProps> & {
|
|
1381
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, unknown extends TSubmitMeta ? TFormSubmitMeta : TSubmitMeta, {}, {
|
|
1372
1382
|
readonly SubmitButton: typeof SubmitButton;
|
|
1373
1383
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1374
|
-
}> |
|
|
1384
|
+
}> | _tanstack_react_form0.AppFieldExtendedReactFieldGroupApi<unknown, TFormData, string | _tanstack_react_form0.FieldsMap<unknown, TFormData>, any, any, any, any, any, any, any, any, any, any, unknown extends TSubmitMeta ? TFormSubmitMeta : TSubmitMeta, {}, {
|
|
1375
1385
|
readonly SubmitButton: typeof SubmitButton;
|
|
1376
1386
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1377
1387
|
}>;
|
|
@@ -1390,7 +1400,7 @@ declare const withForm: <TFormData, TOnMount extends _tanstack_react_form3.FormV
|
|
|
1390
1400
|
* // Extending useForm with a custom SwitchField
|
|
1391
1401
|
* const { useAppForm } = createFormHook({ fieldContext, formContext, fieldComponents: { SwitchField }, formComponents: {} })
|
|
1392
1402
|
*/
|
|
1393
|
-
declare const fieldContext: React$1.Context<
|
|
1403
|
+
declare const fieldContext: React$1.Context<_tanstack_react_form0.AnyFieldApi>, formContext: React$1.Context<_tanstack_react_form0.AnyFormApi>, useFieldContext: <TData>() => _tanstack_react_form0.FieldApi<any, string, TData, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any, any>, useFormContext: () => _tanstack_react_form0.ReactFormExtendedApi<Record<string, never>, any, any, any, any, any, any, any, any, any, any, any>;
|
|
1394
1404
|
//#endregion
|
|
1395
1405
|
//#region src/components/form-field.d.ts
|
|
1396
1406
|
/**
|
|
@@ -1413,6 +1423,31 @@ type DescriptionProp = string | {
|
|
|
1413
1423
|
content: React$1.ReactNode;
|
|
1414
1424
|
variant?: 'instructional' | 'contextual';
|
|
1415
1425
|
};
|
|
1426
|
+
/**
|
|
1427
|
+
* Layout props shared by every wrapper. Both default to the vertical layout (label stacked above
|
|
1428
|
+
* the control), so existing fields are unchanged.
|
|
1429
|
+
*
|
|
1430
|
+
* - `orientation`: `'vertical'` (default) stacks label → control. `'horizontal'` places the
|
|
1431
|
+
* label/description beside the control. `'responsive'` is vertical on narrow screens and
|
|
1432
|
+
* horizontal at the `@md` container width — it requires a `FieldGroup` ancestor (which provides
|
|
1433
|
+
* `@container/field-group`), matching the shadcn Field responsive pattern.
|
|
1434
|
+
* - `controlPosition`: in horizontal/responsive layouts, which side the control sits on. Defaults
|
|
1435
|
+
* per control — `FormSwitchField` → `'start'` (switch left of its label), text/select/etc. →
|
|
1436
|
+
* `'end'` (control right of its label).
|
|
1437
|
+
*/
|
|
1438
|
+
type LayoutProps = {
|
|
1439
|
+
orientation?: 'vertical' | 'horizontal' | 'responsive';
|
|
1440
|
+
controlPosition?: 'start' | 'end';
|
|
1441
|
+
};
|
|
1442
|
+
/**
|
|
1443
|
+
* How the control fills its side of a horizontal/responsive row. Internal — set by each wrapper,
|
|
1444
|
+
* not exposed to consumers.
|
|
1445
|
+
* - `'fill'` (default): the control takes a full flex column next to the label column, with the
|
|
1446
|
+
* error/contextual description stacked under it (text inputs, selects, textareas, …).
|
|
1447
|
+
* - `'inline'`: the control is a bare, natural-width element (a switch); the label, descriptions
|
|
1448
|
+
* and error share one growing column on the opposite side.
|
|
1449
|
+
*/
|
|
1450
|
+
type ControlVariant = 'inline' | 'fill';
|
|
1416
1451
|
type FormFieldShellProps = {
|
|
1417
1452
|
label?: LabelProp;
|
|
1418
1453
|
description?: DescriptionProp;
|
|
@@ -1425,14 +1460,20 @@ type FormFieldShellProps = {
|
|
|
1425
1460
|
*/
|
|
1426
1461
|
id: string;
|
|
1427
1462
|
children: React$1.ReactNode;
|
|
1463
|
+
orientation?: LayoutProps['orientation'];
|
|
1464
|
+
controlPosition?: LayoutProps['controlPosition'];
|
|
1465
|
+
controlVariant?: ControlVariant;
|
|
1428
1466
|
};
|
|
1429
1467
|
declare function FormFieldShell({
|
|
1430
1468
|
label,
|
|
1431
1469
|
description,
|
|
1432
1470
|
necessityIndicator,
|
|
1433
1471
|
id,
|
|
1434
|
-
children
|
|
1435
|
-
|
|
1472
|
+
children,
|
|
1473
|
+
orientation,
|
|
1474
|
+
controlPosition,
|
|
1475
|
+
controlVariant
|
|
1476
|
+
}: FormFieldShellProps): react_jsx_runtime4.JSX.Element;
|
|
1436
1477
|
/**
|
|
1437
1478
|
* Precisely-typed view of the bound field handed to a wrapper's `children`.
|
|
1438
1479
|
* `TData` is `DeepValue<TFormData, TName>` — so `value` and `handleChange` are the field's
|
|
@@ -1539,6 +1580,9 @@ type FormFieldBaseProps<TData, TControl> = {
|
|
|
1539
1580
|
label?: LabelProp;
|
|
1540
1581
|
description?: DescriptionProp;
|
|
1541
1582
|
necessityIndicator?: 'required' | 'optional';
|
|
1583
|
+
orientation?: LayoutProps['orientation'];
|
|
1584
|
+
controlPosition?: LayoutProps['controlPosition']; /** Internal — set by the wrapper (switch → 'inline', others → 'fill'). Not a consumer prop. */
|
|
1585
|
+
controlVariant?: ControlVariant;
|
|
1542
1586
|
/**
|
|
1543
1587
|
* Builds the primitive-specific wiring bundle handed to `children`. `id` is `name` (see
|
|
1544
1588
|
* `FormFieldBase`) — attach it to the control's actual DOM element so the shell's `FieldLabel`
|
|
@@ -1553,7 +1597,7 @@ type FormFieldBaseProps<TData, TControl> = {
|
|
|
1553
1597
|
* Field-name/value/validator typing is enforced at each wrapper's boundary; this just renders
|
|
1554
1598
|
* the AppField + shared shell. `TData`/`TControl` carry the precise field + bundle shapes through.
|
|
1555
1599
|
*/
|
|
1556
|
-
declare function FormFieldBase<TData, TControl>(props: FormFieldBaseProps<TData, TControl>):
|
|
1600
|
+
declare function FormFieldBase<TData, TControl>(props: FormFieldBaseProps<TData, TControl>): react_jsx_runtime4.JSX.Element;
|
|
1557
1601
|
//#endregion
|
|
1558
1602
|
//#region src/components/form-select-field.d.ts
|
|
1559
1603
|
/**
|
|
@@ -1580,7 +1624,7 @@ type FormSelectFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1580
1624
|
label?: LabelProp;
|
|
1581
1625
|
description?: DescriptionProp; /** Compose the Select yourself; spread the bundles. Trigger/content stay fully customizable. */
|
|
1582
1626
|
children: (field: TypedField<string>, control: SelectControl) => React$1.ReactNode;
|
|
1583
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1627
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1584
1628
|
/**
|
|
1585
1629
|
* Select field wrapper. Owns the binding + shared `Field/Label/Error` shell, and hands the
|
|
1586
1630
|
* consumer pre-wired `selectProps` / `selectTriggerProps` to spread onto `@aircall/ds` Select
|
|
@@ -1599,7 +1643,7 @@ type FormSelectFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1599
1643
|
* )}
|
|
1600
1644
|
* </FormSelectField>
|
|
1601
1645
|
*/
|
|
1602
|
-
declare function FormSelectField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormSelectFieldProps<TForm, TName>):
|
|
1646
|
+
declare function FormSelectField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormSelectFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1603
1647
|
//#endregion
|
|
1604
1648
|
//#region src/components/form-input-field.d.ts
|
|
1605
1649
|
/**
|
|
@@ -1622,7 +1666,7 @@ type FormInputFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<T
|
|
|
1622
1666
|
label?: LabelProp;
|
|
1623
1667
|
description?: DescriptionProp;
|
|
1624
1668
|
children: (field: TypedField<string>, control: InputControl) => React$1.ReactNode;
|
|
1625
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1669
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1626
1670
|
/**
|
|
1627
1671
|
* Text-input field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1628
1672
|
* with an `inputProps` bundle. Compose the input yourself (add adornments, counters, prefixes).
|
|
@@ -1633,7 +1677,7 @@ type FormInputFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<T
|
|
|
1633
1677
|
* {(field, { inputProps }) => <Input {...inputProps} type="email" placeholder="you@co.com" />}
|
|
1634
1678
|
* </FormInputField>
|
|
1635
1679
|
*/
|
|
1636
|
-
declare function FormInputField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormInputFieldProps<TForm, TName>):
|
|
1680
|
+
declare function FormInputField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormInputFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1637
1681
|
//#endregion
|
|
1638
1682
|
//#region src/components/form-combobox-field.d.ts
|
|
1639
1683
|
/**
|
|
@@ -1660,7 +1704,7 @@ type FormComboboxFieldProps<TForm extends BoundForm, TName extends DeepKeysOfTyp
|
|
|
1660
1704
|
label?: LabelProp;
|
|
1661
1705
|
description?: DescriptionProp;
|
|
1662
1706
|
children: (field: TypedField<string>, control: ComboboxControl) => React$1.ReactNode;
|
|
1663
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1707
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1664
1708
|
/**
|
|
1665
1709
|
* Combobox (searchable single-select) field wrapper for **string-valued** fields. Same threaded-
|
|
1666
1710
|
* `form` typing and shared shell as the other wrappers; the render-prop hands you `comboboxProps`
|
|
@@ -1680,7 +1724,7 @@ type FormComboboxFieldProps<TForm extends BoundForm, TName extends DeepKeysOfTyp
|
|
|
1680
1724
|
* )}
|
|
1681
1725
|
* </FormComboboxField>
|
|
1682
1726
|
*/
|
|
1683
|
-
declare function FormComboboxField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormComboboxFieldProps<TForm, TName>):
|
|
1727
|
+
declare function FormComboboxField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormComboboxFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1684
1728
|
//#endregion
|
|
1685
1729
|
//#region src/components/form-multi-combobox-field.d.ts
|
|
1686
1730
|
/**
|
|
@@ -1706,7 +1750,7 @@ type FormMultiComboboxFieldProps<TForm extends BoundForm, TName extends DeepKeys
|
|
|
1706
1750
|
label?: LabelProp;
|
|
1707
1751
|
description?: DescriptionProp;
|
|
1708
1752
|
children: (field: TypedField<string[]>, control: MultiComboboxControl) => React$1.ReactNode;
|
|
1709
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1753
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1710
1754
|
/**
|
|
1711
1755
|
* Multi-select combobox field wrapper — same threaded-`form` typing and shared shell as
|
|
1712
1756
|
* `FormSelectField`, with `comboboxProps` / `comboboxInputProps` bundles. `name` is restricted
|
|
@@ -1721,7 +1765,7 @@ type FormMultiComboboxFieldProps<TForm extends BoundForm, TName extends DeepKeys
|
|
|
1721
1765
|
* )}
|
|
1722
1766
|
* </FormMultiComboboxField>
|
|
1723
1767
|
*/
|
|
1724
|
-
declare function FormMultiComboboxField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string[]>>(props: FormMultiComboboxFieldProps<TForm, TName>):
|
|
1768
|
+
declare function FormMultiComboboxField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string[]>>(props: FormMultiComboboxFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1725
1769
|
//#endregion
|
|
1726
1770
|
//#region src/components/form-array-field.d.ts
|
|
1727
1771
|
/**
|
|
@@ -1795,7 +1839,7 @@ type FormArrayFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<T
|
|
|
1795
1839
|
* )}
|
|
1796
1840
|
* </FormArrayField>
|
|
1797
1841
|
*/
|
|
1798
|
-
declare function FormArrayField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], unknown[]>>(props: FormArrayFieldProps<TForm, TName>):
|
|
1842
|
+
declare function FormArrayField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], unknown[]>>(props: FormArrayFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1799
1843
|
//#endregion
|
|
1800
1844
|
//#region src/components/form-textarea-field.d.ts
|
|
1801
1845
|
/**
|
|
@@ -1818,7 +1862,7 @@ type FormTextareaFieldProps<TForm extends BoundForm, TName extends DeepKeysOfTyp
|
|
|
1818
1862
|
label?: LabelProp;
|
|
1819
1863
|
description?: DescriptionProp;
|
|
1820
1864
|
children: (field: TypedField<string>, control: TextareaControl) => React$1.ReactNode;
|
|
1821
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1865
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1822
1866
|
/**
|
|
1823
1867
|
* Multiline text-input field wrapper — same threaded-`form` typing and shared shell as
|
|
1824
1868
|
* `FormSelectField`, with a `textareaProps` bundle. Compose the textarea yourself (rows,
|
|
@@ -1829,7 +1873,7 @@ type FormTextareaFieldProps<TForm extends BoundForm, TName extends DeepKeysOfTyp
|
|
|
1829
1873
|
* {(field, { textareaProps }) => <Textarea {...textareaProps} rows={4} />}
|
|
1830
1874
|
* </FormTextareaField>
|
|
1831
1875
|
*/
|
|
1832
|
-
declare function FormTextareaField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormTextareaFieldProps<TForm, TName>):
|
|
1876
|
+
declare function FormTextareaField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormTextareaFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1833
1877
|
//#endregion
|
|
1834
1878
|
//#region src/components/form-radio-group-field.d.ts
|
|
1835
1879
|
/**
|
|
@@ -1855,7 +1899,7 @@ type FormRadioGroupFieldProps<TForm extends BoundForm, TName extends DeepKeysOfT
|
|
|
1855
1899
|
label?: LabelProp;
|
|
1856
1900
|
description?: DescriptionProp;
|
|
1857
1901
|
children: (field: TypedField<string>, control: RadioGroupControl) => React$1.ReactNode;
|
|
1858
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1902
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1859
1903
|
/**
|
|
1860
1904
|
* Radio-group field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1861
1905
|
* with a `radioGroupProps` bundle. Compose the items yourself. `name` is restricted to the
|
|
@@ -1870,7 +1914,7 @@ type FormRadioGroupFieldProps<TForm extends BoundForm, TName extends DeepKeysOfT
|
|
|
1870
1914
|
* )}
|
|
1871
1915
|
* </FormRadioGroupField>
|
|
1872
1916
|
*/
|
|
1873
|
-
declare function FormRadioGroupField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormRadioGroupFieldProps<TForm, TName>):
|
|
1917
|
+
declare function FormRadioGroupField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormRadioGroupFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1874
1918
|
//#endregion
|
|
1875
1919
|
//#region src/components/form-otp-field.d.ts
|
|
1876
1920
|
/**
|
|
@@ -1894,7 +1938,7 @@ type FormOTPFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<TFo
|
|
|
1894
1938
|
label?: LabelProp;
|
|
1895
1939
|
description?: DescriptionProp;
|
|
1896
1940
|
children: (field: TypedField<string>, control: OTPControl) => React$1.ReactNode;
|
|
1897
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1941
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1898
1942
|
/**
|
|
1899
1943
|
* One-time-code field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1900
1944
|
* with an `otpProps` bundle. Compose the slots yourself. `name` is restricted to the form's
|
|
@@ -1905,7 +1949,7 @@ type FormOTPFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<TFo
|
|
|
1905
1949
|
* {(field, { otpProps }) => <InputOTP maxLength={6} {...otpProps}>{slots}</InputOTP>}
|
|
1906
1950
|
* </FormOTPField>
|
|
1907
1951
|
*/
|
|
1908
|
-
declare function FormOTPField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormOTPFieldProps<TForm, TName>):
|
|
1952
|
+
declare function FormOTPField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string>>(props: FormOTPFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1909
1953
|
//#endregion
|
|
1910
1954
|
//#region src/components/form-switch-field.d.ts
|
|
1911
1955
|
/**
|
|
@@ -1928,18 +1972,21 @@ type FormSwitchFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1928
1972
|
label?: LabelProp;
|
|
1929
1973
|
description?: DescriptionProp;
|
|
1930
1974
|
children: (field: TypedField<boolean>, control: SwitchControl) => React$1.ReactNode;
|
|
1931
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1975
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1932
1976
|
/**
|
|
1933
1977
|
* Toggle field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1934
1978
|
* with a `switchProps` bundle. `name` is restricted to the form's **boolean** fields — a
|
|
1935
1979
|
* string/number `name` is a type error.
|
|
1936
1980
|
*
|
|
1981
|
+
* In a horizontal/responsive layout the switch is a bare, natural-width control beside its label
|
|
1982
|
+
* (`controlPosition` picks the side — defaults to `'start'`, i.e. switch on the left).
|
|
1983
|
+
*
|
|
1937
1984
|
* @example
|
|
1938
1985
|
* <FormSwitchField form={form} name="enabled" label="Enabled" validators={{ onChange }}>
|
|
1939
1986
|
* {(field, { switchProps }) => <Switch {...switchProps} />}
|
|
1940
1987
|
* </FormSwitchField>
|
|
1941
1988
|
*/
|
|
1942
|
-
declare function FormSwitchField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], boolean>>(props: FormSwitchFieldProps<TForm, TName>):
|
|
1989
|
+
declare function FormSwitchField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], boolean>>(props: FormSwitchFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1943
1990
|
//#endregion
|
|
1944
1991
|
//#region src/components/form-numeric-field.d.ts
|
|
1945
1992
|
/**
|
|
@@ -1962,7 +2009,7 @@ type FormNumericFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType
|
|
|
1962
2009
|
label?: LabelProp;
|
|
1963
2010
|
description?: DescriptionProp;
|
|
1964
2011
|
children: (field: TypedField<number>, control: NumericControl) => React$1.ReactNode;
|
|
1965
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
2012
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1966
2013
|
/**
|
|
1967
2014
|
* Numeric field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1968
2015
|
* with a `numericProps` bundle for the DS `NumericInput` (prefer it over `Input type="number"`).
|
|
@@ -1973,7 +2020,7 @@ type FormNumericFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType
|
|
|
1973
2020
|
* {(field, { numericProps }) => <NumericInput {...numericProps} />}
|
|
1974
2021
|
* </FormNumericField>
|
|
1975
2022
|
*/
|
|
1976
|
-
declare function FormNumericField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], number>>(props: FormNumericFieldProps<TForm, TName>):
|
|
2023
|
+
declare function FormNumericField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], number>>(props: FormNumericFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
1977
2024
|
//#endregion
|
|
1978
2025
|
//#region src/components/form-slider-field.d.ts
|
|
1979
2026
|
/**
|
|
@@ -2002,7 +2049,7 @@ type FormSliderFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
2002
2049
|
label?: LabelProp;
|
|
2003
2050
|
description?: DescriptionProp;
|
|
2004
2051
|
children: (field: TypedField<number>, control: SliderControl) => React$1.ReactNode;
|
|
2005
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
2052
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
2006
2053
|
/**
|
|
2007
2054
|
* Slider field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
2008
2055
|
* with a `sliderProps` bundle. `name` is restricted to the form's **number** fields; the bundle
|
|
@@ -2013,7 +2060,7 @@ type FormSliderFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
2013
2060
|
* {(field, { sliderProps }) => <Slider min={0} max={100} step={1} {...sliderProps} />}
|
|
2014
2061
|
* </FormSliderField>
|
|
2015
2062
|
*/
|
|
2016
|
-
declare function FormSliderField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], number>>(props: FormSliderFieldProps<TForm, TName>):
|
|
2063
|
+
declare function FormSliderField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], number>>(props: FormSliderFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
2017
2064
|
//#endregion
|
|
2018
2065
|
//#region src/components/form-toggle-group-field.d.ts
|
|
2019
2066
|
/**
|
|
@@ -2038,7 +2085,7 @@ type FormToggleGroupFieldProps<TForm extends BoundForm, TName extends DeepKeysOf
|
|
|
2038
2085
|
label?: LabelProp;
|
|
2039
2086
|
description?: DescriptionProp;
|
|
2040
2087
|
children: (field: TypedField<string | null>, control: ToggleGroupControl) => React$1.ReactNode;
|
|
2041
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
2088
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
2042
2089
|
/**
|
|
2043
2090
|
* Single-select toggle-group field wrapper — same threaded-`form` typing and shared shell as
|
|
2044
2091
|
* `FormSelectField`, with a `toggleGroupProps` bundle. `name` is restricted to the form's
|
|
@@ -2054,7 +2101,7 @@ type FormToggleGroupFieldProps<TForm extends BoundForm, TName extends DeepKeysOf
|
|
|
2054
2101
|
* )}
|
|
2055
2102
|
* </FormToggleGroupField>
|
|
2056
2103
|
*/
|
|
2057
|
-
declare function FormToggleGroupField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string | null>>(props: FormToggleGroupFieldProps<TForm, TName>):
|
|
2104
|
+
declare function FormToggleGroupField<TForm extends BoundForm, TName extends DeepKeysOfType<TForm['state']['values'], string | null>>(props: FormToggleGroupFieldProps<TForm, TName>): react_jsx_runtime4.JSX.Element;
|
|
2058
2105
|
//#endregion
|
|
2059
2106
|
//#region src/form/field-errors.d.ts
|
|
2060
2107
|
/**
|
|
@@ -2102,7 +2149,7 @@ declare function SaveBar({
|
|
|
2102
2149
|
savingLabel,
|
|
2103
2150
|
resetLabel,
|
|
2104
2151
|
className
|
|
2105
|
-
}: SaveBarProps):
|
|
2152
|
+
}: SaveBarProps): react_jsx_runtime4.JSX.Element;
|
|
2106
2153
|
//#endregion
|
|
2107
2154
|
//#region src/components/dashboard-sidebar-nav.d.ts
|
|
2108
2155
|
type DashboardSidebarNavSubmenuSeparator = {
|
|
@@ -2186,7 +2233,7 @@ type DashboardSidebarNavProps = {
|
|
|
2186
2233
|
declare function DashboardSidebarNav({
|
|
2187
2234
|
groups,
|
|
2188
2235
|
renderLink
|
|
2189
|
-
}: DashboardSidebarNavProps):
|
|
2236
|
+
}: DashboardSidebarNavProps): react_jsx_runtime4.JSX.Element;
|
|
2190
2237
|
//#endregion
|
|
2191
2238
|
//#region src/components/dashboard-sidebar.d.ts
|
|
2192
2239
|
declare const DashboardSidebarProvider: React$1.ForwardRefExoticComponent<Omit<DashboardSidebarProviderProps, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
@@ -2286,4 +2333,4 @@ declare namespace DashboardSidebarSubmenuSeparator {
|
|
|
2286
2333
|
type Props = DashboardSidebarSubmenuSeparatorProps;
|
|
2287
2334
|
}
|
|
2288
2335
|
//#endregion
|
|
2289
|
-
export { type ArrayField, type ArrayItem, BetaBadge, type BoundForm, CardSaveBar, type CardSaveBarProps, ChatbotExpandSuggestion, type ChatbotExpandSuggestionProps, ChatbotInput, type ChatbotInputProps, type ChatbotInputSuggestion, ChatbotPage, ChatbotPageBody, type ChatbotPageBodyProps, ChatbotPageContent, type ChatbotPageContentProps, ChatbotPageConversation, type ChatbotPageConversationProps, ChatbotPageFooter, type ChatbotPageFooterProps, ChatbotPageHeading, type ChatbotPageHeadingProps, ChatbotPageInputBar, type ChatbotPageInputBarProps, type ChatbotPageProps, ChatbotPanel, ChatbotPanelHeader, type ChatbotPanelHeaderProps, type ChatbotPanelProps, ChatbotPanelSuggestion, type ChatbotPanelSuggestionItem, type ChatbotPanelSuggestionProps, ChatbotPanelTrigger, type ChatbotPanelTriggerProps, ChatbotResponseBlock, type ChatbotResponseBlockFeedback, type ChatbotResponseBlockProps, ChatbotResponseLoading, type ChatbotResponseLoadingProps, ChatbotSidebar, type ChatbotSidebarConversation, ChatbotUserMessage, type ChatbotUserMessageProps, type ComboboxControl, ComingSoonDescription, ComingSoonEmptyState, ComingSoonMedia, ComingSoonTitle, CommonForm, CopyButton, CopyButtonIcon, CopyButtonLabel, DashboardPage, DashboardPageBanner, DashboardPageContent, DashboardPageHeader, DashboardPageHeaderAction, DashboardPageHeaderActions, DashboardPageHeaderDescription, DashboardPageHeaderNav, DashboardPageHeaderNavBack, DashboardPageHeaderPrefix, DashboardPageHeaderSubtitle, DashboardPageHeaderTitle, DashboardPageHeaderTitleGroup, DashboardPageMain, DashboardPageTabs, DashboardSidebar, DashboardSidebarContent, DashboardSidebarFooter, DashboardSidebarGroup, DashboardSidebarGroupLabel, DashboardSidebarHeader, DashboardSidebarMenu, DashboardSidebarMenuBadge, DashboardSidebarMenuButton, DashboardSidebarMenuItem, DashboardSidebarNav, type DashboardSidebarNavGroup, type DashboardSidebarNavItem, type DashboardSidebarNavItemAction, type DashboardSidebarNavItemLink, type DashboardSidebarNavItemSubmenu, type DashboardSidebarNavSubmenuItem, DashboardSidebarProvider, DashboardSidebarSubmenu, DashboardSidebarSubmenuItem, DashboardSidebarSubmenuSeparator, DashboardSidebarTrigger, DashboardStandalonePage, DashboardStandalonePageAction, DashboardStandalonePageActions, DashboardStandalonePageContent, DashboardStandalonePageHeader, DashboardStandalonePageTitle, DeprecatedBadge, EmptyState, EmptyStateActions, EmptyStateButton, EmptyStateDescription, EmptyStateExternalLink, EmptyStateHeader, EmptyStateMedia, EmptyStateTitle, type FieldBindingProps, FormArrayField, type FormArrayFieldProps, FormComboboxField, type FormComboboxFieldProps, FormFieldBase, FormFieldShell, type FormFieldShellProps, type FormFieldValidators, FormInputField, type FormInputFieldProps, FormMultiComboboxField, type FormMultiComboboxFieldProps, FormNumericField, type FormNumericFieldProps, FormOTPField, type FormOTPFieldProps, FormRadioGroupField, type FormRadioGroupFieldProps, FormSelectField, type FormSelectFieldProps, FormSliderField, type FormSliderFieldProps, FormSwitchField, type FormSwitchFieldProps, FormTextareaField, type FormTextareaFieldProps, FormToggleGroupField, type FormToggleGroupFieldProps, type InputControl, type MultiComboboxControl, type NecessityProps, NewBadge, NoDataDescription, NoDataEmptyState, NoDataMedia, NoDataTitle, NoSupportDescription, NoSupportEmptyState, NoSupportMedia, NoSupportTitle, NotFoundDescription, NotFoundEmptyState, NotFoundMedia, NotFoundTitle, type NumericControl, type OTPControl, ProfessionalBadge, type RadioGroupControl, RestrictedAccessDescription, RestrictedAccessEmptyState, RestrictedAccessMedia, RestrictedAccessTitle, RoleBadge, type RoleBadgeRole, SaveBar, type SaveBarProps, type SelectControl, type SliderControl, SubmitButton, type SubmitButtonProps, type SwitchControl, type TextareaControl, type ToggleGroupControl, TrialBadge, type TypedField, UnknownErrorDescription, UnknownErrorEmptyState, UnknownErrorMedia, UnknownErrorTitle, fieldContext, formContext, toFieldErrors, useCopyToClipboard, useSidebar as useDashboardSidebar, useFieldContext, useForm, useFormContext, withFieldGroup, withForm };
|
|
2336
|
+
export { type ArrayField, type ArrayItem, BetaBadge, type BoundForm, CardSaveBar, type CardSaveBarProps, ChatbotExpandSuggestion, type ChatbotExpandSuggestionProps, ChatbotInput, type ChatbotInputProps, type ChatbotInputSuggestion, ChatbotPage, ChatbotPageBody, type ChatbotPageBodyProps, ChatbotPageContent, type ChatbotPageContentProps, ChatbotPageConversation, type ChatbotPageConversationProps, ChatbotPageFooter, type ChatbotPageFooterProps, ChatbotPageHeading, type ChatbotPageHeadingProps, ChatbotPageInputBar, type ChatbotPageInputBarProps, type ChatbotPageProps, ChatbotPanel, ChatbotPanelHeader, type ChatbotPanelHeaderProps, type ChatbotPanelProps, ChatbotPanelSuggestion, type ChatbotPanelSuggestionItem, type ChatbotPanelSuggestionProps, ChatbotPanelTrigger, type ChatbotPanelTriggerProps, ChatbotResponseBlock, type ChatbotResponseBlockFeedback, type ChatbotResponseBlockProps, ChatbotResponseLoading, type ChatbotResponseLoadingProps, ChatbotSidebar, type ChatbotSidebarConversation, ChatbotUserMessage, type ChatbotUserMessageProps, type ComboboxControl, ComingSoonDescription, ComingSoonEmptyState, ComingSoonMedia, ComingSoonTitle, CommonForm, CopyButton, CopyButtonIcon, CopyButtonLabel, DashboardPage, DashboardPageBanner, DashboardPageContent, DashboardPageHeader, DashboardPageHeaderAction, DashboardPageHeaderActions, DashboardPageHeaderDescription, DashboardPageHeaderNav, DashboardPageHeaderNavBack, DashboardPageHeaderPrefix, DashboardPageHeaderSubtitle, DashboardPageHeaderTitle, DashboardPageHeaderTitleGroup, DashboardPageMain, DashboardPageTabs, DashboardSidebar, DashboardSidebarContent, DashboardSidebarFooter, DashboardSidebarGroup, DashboardSidebarGroupLabel, DashboardSidebarHeader, DashboardSidebarMenu, DashboardSidebarMenuBadge, DashboardSidebarMenuButton, DashboardSidebarMenuItem, DashboardSidebarNav, type DashboardSidebarNavGroup, type DashboardSidebarNavItem, type DashboardSidebarNavItemAction, type DashboardSidebarNavItemLink, type DashboardSidebarNavItemSubmenu, type DashboardSidebarNavSubmenuItem, DashboardSidebarProvider, DashboardSidebarSubmenu, DashboardSidebarSubmenuItem, DashboardSidebarSubmenuSeparator, DashboardSidebarTrigger, DashboardStandalonePage, DashboardStandalonePageAction, DashboardStandalonePageActions, DashboardStandalonePageContent, DashboardStandalonePageDescription, DashboardStandalonePageHeader, DashboardStandalonePageMain, DashboardStandalonePageTitle, DeprecatedBadge, EmptyState, EmptyStateActions, EmptyStateButton, EmptyStateDescription, EmptyStateExternalLink, EmptyStateHeader, EmptyStateMedia, EmptyStateTitle, type FieldBindingProps, FormArrayField, type FormArrayFieldProps, FormComboboxField, type FormComboboxFieldProps, FormFieldBase, FormFieldShell, type FormFieldShellProps, type FormFieldValidators, FormInputField, type FormInputFieldProps, FormMultiComboboxField, type FormMultiComboboxFieldProps, FormNumericField, type FormNumericFieldProps, FormOTPField, type FormOTPFieldProps, FormRadioGroupField, type FormRadioGroupFieldProps, FormSelectField, type FormSelectFieldProps, FormSliderField, type FormSliderFieldProps, FormSwitchField, type FormSwitchFieldProps, FormTextareaField, type FormTextareaFieldProps, FormToggleGroupField, type FormToggleGroupFieldProps, type InputControl, type MultiComboboxControl, type NecessityProps, NewBadge, NoDataDescription, NoDataEmptyState, NoDataMedia, NoDataTitle, NoSupportDescription, NoSupportEmptyState, NoSupportMedia, NoSupportTitle, NotFoundDescription, NotFoundEmptyState, NotFoundMedia, NotFoundTitle, type NumericControl, type OTPControl, ProfessionalBadge, type RadioGroupControl, RestrictedAccessDescription, RestrictedAccessEmptyState, RestrictedAccessMedia, RestrictedAccessTitle, RoleBadge, type RoleBadgeRole, SaveBar, type SaveBarProps, type SelectControl, type SliderControl, SubmitButton, type SubmitButtonProps, type SwitchControl, type TextareaControl, type ToggleGroupControl, TrialBadge, type TypedField, UnknownErrorDescription, UnknownErrorEmptyState, UnknownErrorMedia, UnknownErrorTitle, fieldContext, formContext, toFieldErrors, useCopyToClipboard, useSidebar as useDashboardSidebar, useFieldContext, useForm, useFormContext, withFieldGroup, withForm };
|