@aircall/blocks 0.13.0 → 0.15.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 +235 -126
- package/dist/index.js +192 -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
|
@@ -2,7 +2,7 @@ import { Badge, Button, CounterBadge, Empty, EmptyContent, EmptyDescription, Emp
|
|
|
2
2
|
import * as React$1 from "react";
|
|
3
3
|
import * as react_jsx_runtime0 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";
|
|
@@ -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
|
|
@@ -616,6 +626,68 @@ declare namespace RoleBadge {
|
|
|
616
626
|
type Props = RoleBadgeProps;
|
|
617
627
|
}
|
|
618
628
|
//#endregion
|
|
629
|
+
//#region src/components/score-badge.d.ts
|
|
630
|
+
/**
|
|
631
|
+
* The fixed semantic score palette. Each tone maps to a DS `Badge` `color` +
|
|
632
|
+
* `tone` pair, so every ScoreBadge stays on the design-system palette (dark-mode
|
|
633
|
+
* + contrast handled by `Badge`). The colors are not consumer-customisable — only
|
|
634
|
+
* the band boundaries are (see {@link ScoreThresholds}).
|
|
635
|
+
*/
|
|
636
|
+
type ScoreTone = 'success' | 'success-alt' | 'warning' | 'destructive' | 'destructive-strong' | 'muted';
|
|
637
|
+
/** A single color band: a value at or above `from` (and below the next band) renders with `tone`. */
|
|
638
|
+
type ScoreThreshold = {
|
|
639
|
+
/** Inclusive lower bound of the band. */from: number; /** Which semantic {@link ScoreTone} the band paints. */
|
|
640
|
+
tone: ScoreTone;
|
|
641
|
+
};
|
|
642
|
+
/** An ordered set of color bands mapping a numeric score to a {@link ScoreTone}. */
|
|
643
|
+
type ScoreThresholds = ScoreThreshold[];
|
|
644
|
+
/** How a {@link ScoreBadge} formats its number: a bare number or a percentage. */
|
|
645
|
+
type ScoreKind = 'number' | 'percent';
|
|
646
|
+
/**
|
|
647
|
+
* The default color bands, from the Figma ScoreBadge spec (0–100 scale):
|
|
648
|
+
* `≥85` excellent, `70–84` good, `50–69` fair, `20–49` poor, `<20` very poor.
|
|
649
|
+
*/
|
|
650
|
+
declare const PERCENTAGE_THRESHOLDS: ScoreThresholds;
|
|
651
|
+
type ScoreBadgeProps = Omit<React$1.ComponentProps<typeof Badge>, 'color' | 'tone' | 'children'> & {
|
|
652
|
+
/**
|
|
653
|
+
* The numeric score. Drives both the pill color (via `thresholds`) and the
|
|
654
|
+
* displayed number. `null`/`undefined` or a non-finite value (`NaN`/`±Infinity`)
|
|
655
|
+
* renders a muted `"--"`. Finite out-of-range values render as-is (not clamped).
|
|
656
|
+
*/
|
|
657
|
+
value?: number | null;
|
|
658
|
+
/**
|
|
659
|
+
* How the value is formatted — a bare number, or a `%` percentage (0–100 scale).
|
|
660
|
+
* @default 'number'
|
|
661
|
+
*/
|
|
662
|
+
kind?: ScoreKind;
|
|
663
|
+
/**
|
|
664
|
+
* Color bands mapping the value to a tone.
|
|
665
|
+
* @default PERCENTAGE_THRESHOLDS
|
|
666
|
+
*/
|
|
667
|
+
thresholds?: ScoreThresholds;
|
|
668
|
+
/**
|
|
669
|
+
* Extra `Intl.NumberFormat` options merged over the per-kind defaults — e.g.
|
|
670
|
+
* `{ maximumFractionDigits: 0 }` for no decimals, `{ signDisplay: 'always' }`.
|
|
671
|
+
* For `kind='percent'` the value is scaled to a 0–1 fraction, so don't override `style`.
|
|
672
|
+
*/
|
|
673
|
+
formatOptions?: Intl.NumberFormatOptions;
|
|
674
|
+
};
|
|
675
|
+
declare namespace ScoreBadge {
|
|
676
|
+
type Props = ScoreBadgeProps;
|
|
677
|
+
}
|
|
678
|
+
/**
|
|
679
|
+
* A score pill. Composes DS `Badge`: derives its color from `value` against
|
|
680
|
+
* `thresholds` and renders the value, locale-formatted per `kind`.
|
|
681
|
+
*
|
|
682
|
+
* @example
|
|
683
|
+
* ```tsx
|
|
684
|
+
* <ScoreBadge value={90.66666} /> // "90.7"
|
|
685
|
+
* <ScoreBadge value={90.66666} kind="percent" /> // "90.7%"
|
|
686
|
+
* <ScoreBadge value={4} thresholds={CSAT} formatOptions={{ maximumFractionDigits: 0 }} /> // "4"
|
|
687
|
+
* ```
|
|
688
|
+
*/
|
|
689
|
+
declare const ScoreBadge: React$1.ForwardRefExoticComponent<Omit<ScoreBadgeProps, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
690
|
+
//#endregion
|
|
619
691
|
//#region src/components/chatbot-panel-trigger.d.ts
|
|
620
692
|
type ChatbotPanelTriggerProps = Omit<React$1.ComponentProps<typeof Button>, 'variant' | 'size' | 'disabled'> & {
|
|
621
693
|
/** The copy revealed when the trigger expands (hover / focus / pressed). */children?: React$1.ReactNode; /** Leading icon. Defaults to the Aircall logo mark. */
|
|
@@ -820,18 +892,18 @@ declare function SubmitButton({
|
|
|
820
892
|
* const form = useForm({ defaultValues: { name: '' }, onSubmit: async ({ value }) => save(value) })
|
|
821
893
|
*/
|
|
822
894
|
declare const CommonForm: {
|
|
823
|
-
useAppForm: <TFormData, TOnMount extends
|
|
895
|
+
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
896
|
readonly SubmitButton: typeof SubmitButton;
|
|
825
897
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
826
898
|
}>;
|
|
827
|
-
withForm: <TFormData, TOnMount extends
|
|
899
|
+
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
900
|
render,
|
|
829
901
|
props
|
|
830
|
-
}:
|
|
902
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {}, {
|
|
831
903
|
readonly SubmitButton: typeof SubmitButton;
|
|
832
904
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
833
905
|
}, TRenderProps>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
|
|
834
|
-
form:
|
|
906
|
+
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
907
|
readonly SubmitButton: typeof SubmitButton;
|
|
836
908
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
837
909
|
}>;
|
|
@@ -840,20 +912,20 @@ declare const CommonForm: {
|
|
|
840
912
|
render,
|
|
841
913
|
props,
|
|
842
914
|
defaultValues
|
|
843
|
-
}:
|
|
915
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {}, {
|
|
844
916
|
readonly SubmitButton: typeof SubmitButton;
|
|
845
917
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
846
|
-
}, TSubmitMeta, TRenderProps>) => <TFormData, TFields extends
|
|
847
|
-
form:
|
|
918
|
+
}, 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> & {
|
|
919
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, unknown extends TSubmitMeta ? TFormSubmitMeta : TSubmitMeta, {}, {
|
|
848
920
|
readonly SubmitButton: typeof SubmitButton;
|
|
849
921
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
850
|
-
}> |
|
|
922
|
+
}> | _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
923
|
readonly SubmitButton: typeof SubmitButton;
|
|
852
924
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
853
925
|
}>;
|
|
854
926
|
fields: TFields;
|
|
855
927
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
856
|
-
useTypedAppFormContext: <TFormData, TOnMount extends
|
|
928
|
+
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
929
|
readonly SubmitButton: typeof SubmitButton;
|
|
858
930
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
859
931
|
}>;
|
|
@@ -864,18 +936,18 @@ declare const CommonForm: {
|
|
|
864
936
|
fieldComponents?: TNewField | undefined;
|
|
865
937
|
formComponents?: TNewForm | undefined;
|
|
866
938
|
}) => {
|
|
867
|
-
useAppForm: <TFormData, TOnMount extends
|
|
939
|
+
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
940
|
readonly SubmitButton: typeof SubmitButton;
|
|
869
941
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
870
942
|
} & TNewForm>;
|
|
871
|
-
withForm: <TFormData, TOnMount_1 extends
|
|
943
|
+
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
944
|
render,
|
|
873
945
|
props
|
|
874
|
-
}:
|
|
946
|
+
}: _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
947
|
readonly SubmitButton: typeof SubmitButton;
|
|
876
948
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
877
949
|
} & TNewForm, TRenderProps>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
|
|
878
|
-
form:
|
|
950
|
+
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
951
|
readonly SubmitButton: typeof SubmitButton;
|
|
880
952
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
881
953
|
} & TNewForm] ? any : {
|
|
@@ -887,20 +959,20 @@ declare const CommonForm: {
|
|
|
887
959
|
render,
|
|
888
960
|
props,
|
|
889
961
|
defaultValues
|
|
890
|
-
}:
|
|
962
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField, {
|
|
891
963
|
readonly SubmitButton: typeof SubmitButton;
|
|
892
964
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
893
|
-
} & TNewForm, TSubmitMeta_2, TRenderProps_1>) => <TFormData, TFields extends
|
|
894
|
-
form:
|
|
965
|
+
} & 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> & {
|
|
966
|
+
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
967
|
readonly SubmitButton: typeof SubmitButton;
|
|
896
968
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
897
|
-
} & TNewForm> |
|
|
969
|
+
} & 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
970
|
readonly SubmitButton: typeof SubmitButton;
|
|
899
971
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
900
972
|
} & TNewForm>;
|
|
901
973
|
fields: TFields;
|
|
902
974
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
903
|
-
useTypedAppFormContext: <TFormData, TOnMount_3 extends
|
|
975
|
+
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
976
|
readonly SubmitButton: typeof SubmitButton;
|
|
905
977
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
906
978
|
} & TNewForm>;
|
|
@@ -911,18 +983,18 @@ declare const CommonForm: {
|
|
|
911
983
|
fieldComponents?: TNewField_1 | undefined;
|
|
912
984
|
formComponents?: TNewForm_1 | undefined;
|
|
913
985
|
}) => {
|
|
914
|
-
useAppForm: <TFormData, TOnMount_4 extends
|
|
986
|
+
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
987
|
readonly SubmitButton: typeof SubmitButton;
|
|
916
988
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
917
989
|
} & TNewForm & TNewForm_1>;
|
|
918
|
-
withForm: <TFormData, TOnMount_1_1 extends
|
|
990
|
+
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
991
|
render,
|
|
920
992
|
props
|
|
921
|
-
}:
|
|
993
|
+
}: _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
994
|
readonly SubmitButton: typeof SubmitButton;
|
|
923
995
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
924
996
|
} & TNewForm & TNewForm_1, TRenderProps_2>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_2] ? any : TRenderProps_2> & {
|
|
925
|
-
form:
|
|
997
|
+
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
998
|
readonly SubmitButton: typeof SubmitButton;
|
|
927
999
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
928
1000
|
} & TNewForm & TNewForm_1] ? any : {
|
|
@@ -934,20 +1006,20 @@ declare const CommonForm: {
|
|
|
934
1006
|
render,
|
|
935
1007
|
props,
|
|
936
1008
|
defaultValues
|
|
937
|
-
}:
|
|
1009
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1, {
|
|
938
1010
|
readonly SubmitButton: typeof SubmitButton;
|
|
939
1011
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
940
|
-
} & TNewForm & TNewForm_1, TSubmitMeta_2_1, TRenderProps_1_1>) => <TFormData, TFields_1 extends
|
|
941
|
-
form:
|
|
1012
|
+
} & 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> & {
|
|
1013
|
+
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
1014
|
readonly SubmitButton: typeof SubmitButton;
|
|
943
1015
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
944
|
-
} & TNewForm & TNewForm_1> |
|
|
1016
|
+
} & 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
1017
|
readonly SubmitButton: typeof SubmitButton;
|
|
946
1018
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
947
1019
|
} & TNewForm & TNewForm_1>;
|
|
948
1020
|
fields: TFields_1;
|
|
949
1021
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
950
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_1 extends
|
|
1022
|
+
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
1023
|
readonly SubmitButton: typeof SubmitButton;
|
|
952
1024
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
953
1025
|
} & TNewForm & TNewForm_1>;
|
|
@@ -958,18 +1030,18 @@ declare const CommonForm: {
|
|
|
958
1030
|
fieldComponents?: TNewField_2 | undefined;
|
|
959
1031
|
formComponents?: TNewForm_2 | undefined;
|
|
960
1032
|
}) => {
|
|
961
|
-
useAppForm: <TFormData, TOnMount_5 extends
|
|
1033
|
+
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
1034
|
readonly SubmitButton: typeof SubmitButton;
|
|
963
1035
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
964
1036
|
} & TNewForm & TNewForm_1 & TNewForm_2>;
|
|
965
|
-
withForm: <TFormData, TOnMount_1_2 extends
|
|
1037
|
+
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
1038
|
render,
|
|
967
1039
|
props
|
|
968
|
-
}:
|
|
1040
|
+
}: _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
1041
|
readonly SubmitButton: typeof SubmitButton;
|
|
970
1042
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
971
1043
|
} & TNewForm & TNewForm_1 & TNewForm_2, TRenderProps_3>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps_3] ? any : TRenderProps_3> & {
|
|
972
|
-
form:
|
|
1044
|
+
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
1045
|
readonly SubmitButton: typeof SubmitButton;
|
|
974
1046
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
975
1047
|
} & TNewForm & TNewForm_1 & TNewForm_2] ? any : {
|
|
@@ -981,20 +1053,20 @@ declare const CommonForm: {
|
|
|
981
1053
|
render,
|
|
982
1054
|
props,
|
|
983
1055
|
defaultValues
|
|
984
|
-
}:
|
|
1056
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2, {
|
|
985
1057
|
readonly SubmitButton: typeof SubmitButton;
|
|
986
1058
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
987
|
-
} & TNewForm & TNewForm_1 & TNewForm_2, TSubmitMeta_2_2, TRenderProps_1_2>) => <TFormData, TFields_2 extends
|
|
988
|
-
form:
|
|
1059
|
+
} & 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> & {
|
|
1060
|
+
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
1061
|
readonly SubmitButton: typeof SubmitButton;
|
|
990
1062
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
991
|
-
} & TNewForm & TNewForm_1 & TNewForm_2> |
|
|
1063
|
+
} & 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
1064
|
readonly SubmitButton: typeof SubmitButton;
|
|
993
1065
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
994
1066
|
} & TNewForm & TNewForm_1 & TNewForm_2>;
|
|
995
1067
|
fields: TFields_2;
|
|
996
1068
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
997
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_2 extends
|
|
1069
|
+
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
1070
|
readonly SubmitButton: typeof SubmitButton;
|
|
999
1071
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1000
1072
|
} & TNewForm & TNewForm_1 & TNewForm_2>;
|
|
@@ -1005,18 +1077,18 @@ declare const CommonForm: {
|
|
|
1005
1077
|
fieldComponents?: TNewField_3 | undefined;
|
|
1006
1078
|
formComponents?: TNewForm_3 | undefined;
|
|
1007
1079
|
}) => {
|
|
1008
|
-
useAppForm: <TFormData, TOnMount_6 extends
|
|
1080
|
+
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
1081
|
readonly SubmitButton: typeof SubmitButton;
|
|
1010
1082
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1011
1083
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3>;
|
|
1012
|
-
withForm: <TFormData, TOnMount_1_3 extends
|
|
1084
|
+
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
1085
|
render,
|
|
1014
1086
|
props
|
|
1015
|
-
}:
|
|
1087
|
+
}: _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
1088
|
readonly SubmitButton: typeof SubmitButton;
|
|
1017
1089
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1018
1090
|
} & 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:
|
|
1091
|
+
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
1092
|
readonly SubmitButton: typeof SubmitButton;
|
|
1021
1093
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1022
1094
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3] ? any : {
|
|
@@ -1028,20 +1100,20 @@ declare const CommonForm: {
|
|
|
1028
1100
|
render,
|
|
1029
1101
|
props,
|
|
1030
1102
|
defaultValues
|
|
1031
|
-
}:
|
|
1103
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3, {
|
|
1032
1104
|
readonly SubmitButton: typeof SubmitButton;
|
|
1033
1105
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1034
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3, TSubmitMeta_2_3, TRenderProps_1_3>) => <TFormData, TFields_3 extends
|
|
1035
|
-
form:
|
|
1106
|
+
} & 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> & {
|
|
1107
|
+
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
1108
|
readonly SubmitButton: typeof SubmitButton;
|
|
1037
1109
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1038
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3> |
|
|
1110
|
+
} & 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
1111
|
readonly SubmitButton: typeof SubmitButton;
|
|
1040
1112
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1041
1113
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3>;
|
|
1042
1114
|
fields: TFields_3;
|
|
1043
1115
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1044
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_3 extends
|
|
1116
|
+
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
1117
|
readonly SubmitButton: typeof SubmitButton;
|
|
1046
1118
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1047
1119
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3>;
|
|
@@ -1052,18 +1124,18 @@ declare const CommonForm: {
|
|
|
1052
1124
|
fieldComponents?: TNewField_4 | undefined;
|
|
1053
1125
|
formComponents?: TNewForm_4 | undefined;
|
|
1054
1126
|
}) => {
|
|
1055
|
-
useAppForm: <TFormData, TOnMount_7 extends
|
|
1127
|
+
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
1128
|
readonly SubmitButton: typeof SubmitButton;
|
|
1057
1129
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1058
1130
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4>;
|
|
1059
|
-
withForm: <TFormData, TOnMount_1_4 extends
|
|
1131
|
+
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
1132
|
render,
|
|
1061
1133
|
props
|
|
1062
|
-
}:
|
|
1134
|
+
}: _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
1135
|
readonly SubmitButton: typeof SubmitButton;
|
|
1064
1136
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1065
1137
|
} & 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:
|
|
1138
|
+
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
1139
|
readonly SubmitButton: typeof SubmitButton;
|
|
1068
1140
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1069
1141
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4] ? any : {
|
|
@@ -1075,20 +1147,20 @@ declare const CommonForm: {
|
|
|
1075
1147
|
render,
|
|
1076
1148
|
props,
|
|
1077
1149
|
defaultValues
|
|
1078
|
-
}:
|
|
1150
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4, {
|
|
1079
1151
|
readonly SubmitButton: typeof SubmitButton;
|
|
1080
1152
|
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:
|
|
1153
|
+
} & 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> & {
|
|
1154
|
+
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
1155
|
readonly SubmitButton: typeof SubmitButton;
|
|
1084
1156
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1085
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4> |
|
|
1157
|
+
} & 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
1158
|
readonly SubmitButton: typeof SubmitButton;
|
|
1087
1159
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1088
1160
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4>;
|
|
1089
1161
|
fields: TFields_4;
|
|
1090
1162
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1091
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_4 extends
|
|
1163
|
+
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
1164
|
readonly SubmitButton: typeof SubmitButton;
|
|
1093
1165
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1094
1166
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4>;
|
|
@@ -1099,18 +1171,18 @@ declare const CommonForm: {
|
|
|
1099
1171
|
fieldComponents?: TNewField_5 | undefined;
|
|
1100
1172
|
formComponents?: TNewForm_5 | undefined;
|
|
1101
1173
|
}) => {
|
|
1102
|
-
useAppForm: <TFormData, TOnMount_8 extends
|
|
1174
|
+
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
1175
|
readonly SubmitButton: typeof SubmitButton;
|
|
1104
1176
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1105
1177
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5>;
|
|
1106
|
-
withForm: <TFormData, TOnMount_1_5 extends
|
|
1178
|
+
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
1179
|
render,
|
|
1108
1180
|
props
|
|
1109
|
-
}:
|
|
1181
|
+
}: _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
1182
|
readonly SubmitButton: typeof SubmitButton;
|
|
1111
1183
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1112
1184
|
} & 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:
|
|
1185
|
+
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
1186
|
readonly SubmitButton: typeof SubmitButton;
|
|
1115
1187
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1116
1188
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5] ? any : {
|
|
@@ -1122,20 +1194,20 @@ declare const CommonForm: {
|
|
|
1122
1194
|
render,
|
|
1123
1195
|
props,
|
|
1124
1196
|
defaultValues
|
|
1125
|
-
}:
|
|
1197
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5, {
|
|
1126
1198
|
readonly SubmitButton: typeof SubmitButton;
|
|
1127
1199
|
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:
|
|
1200
|
+
} & 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> & {
|
|
1201
|
+
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
1202
|
readonly SubmitButton: typeof SubmitButton;
|
|
1131
1203
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1132
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5> |
|
|
1204
|
+
} & 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
1205
|
readonly SubmitButton: typeof SubmitButton;
|
|
1134
1206
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1135
1207
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5>;
|
|
1136
1208
|
fields: TFields_5;
|
|
1137
1209
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1138
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_5 extends
|
|
1210
|
+
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
1211
|
readonly SubmitButton: typeof SubmitButton;
|
|
1140
1212
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1141
1213
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5>;
|
|
@@ -1146,18 +1218,18 @@ declare const CommonForm: {
|
|
|
1146
1218
|
fieldComponents?: TNewField_6 | undefined;
|
|
1147
1219
|
formComponents?: TNewForm_6 | undefined;
|
|
1148
1220
|
}) => {
|
|
1149
|
-
useAppForm: <TFormData, TOnMount_9 extends
|
|
1221
|
+
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
1222
|
readonly SubmitButton: typeof SubmitButton;
|
|
1151
1223
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1152
1224
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6>;
|
|
1153
|
-
withForm: <TFormData, TOnMount_1_6 extends
|
|
1225
|
+
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
1226
|
render,
|
|
1155
1227
|
props
|
|
1156
|
-
}:
|
|
1228
|
+
}: _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
1229
|
readonly SubmitButton: typeof SubmitButton;
|
|
1158
1230
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1159
1231
|
} & 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:
|
|
1232
|
+
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
1233
|
readonly SubmitButton: typeof SubmitButton;
|
|
1162
1234
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1163
1235
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6] ? any : {
|
|
@@ -1169,20 +1241,20 @@ declare const CommonForm: {
|
|
|
1169
1241
|
render,
|
|
1170
1242
|
props,
|
|
1171
1243
|
defaultValues
|
|
1172
|
-
}:
|
|
1244
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6, {
|
|
1173
1245
|
readonly SubmitButton: typeof SubmitButton;
|
|
1174
1246
|
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:
|
|
1247
|
+
} & 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> & {
|
|
1248
|
+
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
1249
|
readonly SubmitButton: typeof SubmitButton;
|
|
1178
1250
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1179
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6> |
|
|
1251
|
+
} & 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
1252
|
readonly SubmitButton: typeof SubmitButton;
|
|
1181
1253
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1182
1254
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6>;
|
|
1183
1255
|
fields: TFields_6;
|
|
1184
1256
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1185
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_6 extends
|
|
1257
|
+
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
1258
|
readonly SubmitButton: typeof SubmitButton;
|
|
1187
1259
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1188
1260
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6>;
|
|
@@ -1193,18 +1265,18 @@ declare const CommonForm: {
|
|
|
1193
1265
|
fieldComponents?: TNewField_7 | undefined;
|
|
1194
1266
|
formComponents?: TNewForm_7 | undefined;
|
|
1195
1267
|
}) => {
|
|
1196
|
-
useAppForm: <TFormData, TOnMount_10 extends
|
|
1268
|
+
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
1269
|
readonly SubmitButton: typeof SubmitButton;
|
|
1198
1270
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1199
1271
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7>;
|
|
1200
|
-
withForm: <TFormData, TOnMount_1_7 extends
|
|
1272
|
+
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
1273
|
render,
|
|
1202
1274
|
props
|
|
1203
|
-
}:
|
|
1275
|
+
}: _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
1276
|
readonly SubmitButton: typeof SubmitButton;
|
|
1205
1277
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1206
1278
|
} & 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:
|
|
1279
|
+
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
1280
|
readonly SubmitButton: typeof SubmitButton;
|
|
1209
1281
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1210
1282
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7] ? any : {
|
|
@@ -1216,20 +1288,20 @@ declare const CommonForm: {
|
|
|
1216
1288
|
render,
|
|
1217
1289
|
props,
|
|
1218
1290
|
defaultValues
|
|
1219
|
-
}:
|
|
1291
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7, {
|
|
1220
1292
|
readonly SubmitButton: typeof SubmitButton;
|
|
1221
1293
|
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:
|
|
1294
|
+
} & 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> & {
|
|
1295
|
+
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
1296
|
readonly SubmitButton: typeof SubmitButton;
|
|
1225
1297
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1226
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7> |
|
|
1298
|
+
} & 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
1299
|
readonly SubmitButton: typeof SubmitButton;
|
|
1228
1300
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1229
1301
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7>;
|
|
1230
1302
|
fields: TFields_7;
|
|
1231
1303
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1232
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_7 extends
|
|
1304
|
+
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
1305
|
readonly SubmitButton: typeof SubmitButton;
|
|
1234
1306
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1235
1307
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7>;
|
|
@@ -1240,18 +1312,18 @@ declare const CommonForm: {
|
|
|
1240
1312
|
fieldComponents?: TNewField_8 | undefined;
|
|
1241
1313
|
formComponents?: TNewForm_8 | undefined;
|
|
1242
1314
|
}) => {
|
|
1243
|
-
useAppForm: <TFormData, TOnMount_11 extends
|
|
1315
|
+
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
1316
|
readonly SubmitButton: typeof SubmitButton;
|
|
1245
1317
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1246
1318
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8>;
|
|
1247
|
-
withForm: <TFormData, TOnMount_1_8 extends
|
|
1319
|
+
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
1320
|
render,
|
|
1249
1321
|
props
|
|
1250
|
-
}:
|
|
1322
|
+
}: _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
1323
|
readonly SubmitButton: typeof SubmitButton;
|
|
1252
1324
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1253
1325
|
} & 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:
|
|
1326
|
+
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
1327
|
readonly SubmitButton: typeof SubmitButton;
|
|
1256
1328
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1257
1329
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8] ? any : {
|
|
@@ -1263,20 +1335,20 @@ declare const CommonForm: {
|
|
|
1263
1335
|
render,
|
|
1264
1336
|
props,
|
|
1265
1337
|
defaultValues
|
|
1266
|
-
}:
|
|
1338
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {} & TNewField & TNewField_1 & TNewField_2 & TNewField_3 & TNewField_4 & TNewField_5 & TNewField_6 & TNewField_7 & TNewField_8, {
|
|
1267
1339
|
readonly SubmitButton: typeof SubmitButton;
|
|
1268
1340
|
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:
|
|
1341
|
+
} & 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> & {
|
|
1342
|
+
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
1343
|
readonly SubmitButton: typeof SubmitButton;
|
|
1272
1344
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1273
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8> |
|
|
1345
|
+
} & 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
1346
|
readonly SubmitButton: typeof SubmitButton;
|
|
1275
1347
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1276
1348
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8>;
|
|
1277
1349
|
fields: TFields_8;
|
|
1278
1350
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1279
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_8 extends
|
|
1351
|
+
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
1352
|
readonly SubmitButton: typeof SubmitButton;
|
|
1281
1353
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1282
1354
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8>;
|
|
@@ -1287,18 +1359,18 @@ declare const CommonForm: {
|
|
|
1287
1359
|
fieldComponents?: TNewField_9 | undefined;
|
|
1288
1360
|
formComponents?: TNewForm_9 | undefined;
|
|
1289
1361
|
}) => {
|
|
1290
|
-
useAppForm: <TFormData, TOnMount_12 extends
|
|
1362
|
+
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
1363
|
readonly SubmitButton: typeof SubmitButton;
|
|
1292
1364
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1293
1365
|
} & 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
|
|
1366
|
+
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
1367
|
render,
|
|
1296
1368
|
props
|
|
1297
|
-
}:
|
|
1369
|
+
}: _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
1370
|
readonly SubmitButton: typeof SubmitButton;
|
|
1299
1371
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1300
1372
|
} & 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:
|
|
1373
|
+
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
1374
|
readonly SubmitButton: typeof SubmitButton;
|
|
1303
1375
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1304
1376
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9] ? any : {
|
|
@@ -1310,20 +1382,20 @@ declare const CommonForm: {
|
|
|
1310
1382
|
render,
|
|
1311
1383
|
props,
|
|
1312
1384
|
defaultValues
|
|
1313
|
-
}:
|
|
1385
|
+
}: _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
1386
|
readonly SubmitButton: typeof SubmitButton;
|
|
1315
1387
|
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:
|
|
1388
|
+
} & 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> & {
|
|
1389
|
+
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
1390
|
readonly SubmitButton: typeof SubmitButton;
|
|
1319
1391
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1320
|
-
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9> |
|
|
1392
|
+
} & 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
1393
|
readonly SubmitButton: typeof SubmitButton;
|
|
1322
1394
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1323
1395
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9>;
|
|
1324
1396
|
fields: TFields_9;
|
|
1325
1397
|
}>) => ReturnType<React$1.FunctionComponent>;
|
|
1326
|
-
useTypedAppFormContext: <TFormData, TOnMount_3_9 extends
|
|
1398
|
+
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
1399
|
readonly SubmitButton: typeof SubmitButton;
|
|
1328
1400
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1329
1401
|
} & TNewForm & TNewForm_1 & TNewForm_2 & TNewForm_3 & TNewForm_4 & TNewForm_5 & TNewForm_6 & TNewForm_7 & TNewForm_8 & TNewForm_9>;
|
|
@@ -1345,18 +1417,18 @@ declare const CommonForm: {
|
|
|
1345
1417
|
};
|
|
1346
1418
|
};
|
|
1347
1419
|
};
|
|
1348
|
-
declare const useForm: <TFormData, TOnMount extends
|
|
1420
|
+
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
1421
|
readonly SubmitButton: typeof SubmitButton;
|
|
1350
1422
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1351
1423
|
}>;
|
|
1352
|
-
declare const withForm: <TFormData, TOnMount extends
|
|
1424
|
+
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
1425
|
render,
|
|
1354
1426
|
props
|
|
1355
|
-
}:
|
|
1427
|
+
}: _tanstack_react_form0.WithFormProps<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, TSubmitMeta, {}, {
|
|
1356
1428
|
readonly SubmitButton: typeof SubmitButton;
|
|
1357
1429
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1358
1430
|
}, TRenderProps>) => React$1.FunctionComponent<React$1.PropsWithChildren<NoInfer<[unknown] extends [TRenderProps] ? any : TRenderProps> & {
|
|
1359
|
-
form:
|
|
1431
|
+
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
1432
|
readonly SubmitButton: typeof SubmitButton;
|
|
1361
1433
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1362
1434
|
}>;
|
|
@@ -1364,14 +1436,14 @@ declare const withForm: <TFormData, TOnMount extends _tanstack_react_form3.FormV
|
|
|
1364
1436
|
render,
|
|
1365
1437
|
props,
|
|
1366
1438
|
defaultValues
|
|
1367
|
-
}:
|
|
1439
|
+
}: _tanstack_react_form0.WithFieldGroupProps<TFieldGroupData, {}, {
|
|
1368
1440
|
readonly SubmitButton: typeof SubmitButton;
|
|
1369
1441
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1370
|
-
}, TSubmitMeta, TRenderProps>) => <TFormData, TFields extends
|
|
1371
|
-
form:
|
|
1442
|
+
}, 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> & {
|
|
1443
|
+
form: _tanstack_react_form0.AppFieldExtendedReactFormApi<TFormData, TOnMount, TOnChange, TOnChangeAsync, TOnBlur, TOnBlurAsync, TOnSubmit, TOnSubmitAsync, TOnDynamic, TOnDynamicAsync, TOnServer, unknown extends TSubmitMeta ? TFormSubmitMeta : TSubmitMeta, {}, {
|
|
1372
1444
|
readonly SubmitButton: typeof SubmitButton;
|
|
1373
1445
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1374
|
-
}> |
|
|
1446
|
+
}> | _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
1447
|
readonly SubmitButton: typeof SubmitButton;
|
|
1376
1448
|
readonly CardSaveBar: typeof CardSaveBar;
|
|
1377
1449
|
}>;
|
|
@@ -1390,7 +1462,7 @@ declare const withForm: <TFormData, TOnMount extends _tanstack_react_form3.FormV
|
|
|
1390
1462
|
* // Extending useForm with a custom SwitchField
|
|
1391
1463
|
* const { useAppForm } = createFormHook({ fieldContext, formContext, fieldComponents: { SwitchField }, formComponents: {} })
|
|
1392
1464
|
*/
|
|
1393
|
-
declare const fieldContext: React$1.Context<
|
|
1465
|
+
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
1466
|
//#endregion
|
|
1395
1467
|
//#region src/components/form-field.d.ts
|
|
1396
1468
|
/**
|
|
@@ -1413,6 +1485,31 @@ type DescriptionProp = string | {
|
|
|
1413
1485
|
content: React$1.ReactNode;
|
|
1414
1486
|
variant?: 'instructional' | 'contextual';
|
|
1415
1487
|
};
|
|
1488
|
+
/**
|
|
1489
|
+
* Layout props shared by every wrapper. Both default to the vertical layout (label stacked above
|
|
1490
|
+
* the control), so existing fields are unchanged.
|
|
1491
|
+
*
|
|
1492
|
+
* - `orientation`: `'vertical'` (default) stacks label → control. `'horizontal'` places the
|
|
1493
|
+
* label/description beside the control. `'responsive'` is vertical on narrow screens and
|
|
1494
|
+
* horizontal at the `@md` container width — it requires a `FieldGroup` ancestor (which provides
|
|
1495
|
+
* `@container/field-group`), matching the shadcn Field responsive pattern.
|
|
1496
|
+
* - `controlPosition`: in horizontal/responsive layouts, which side the control sits on. Defaults
|
|
1497
|
+
* per control — `FormSwitchField` → `'start'` (switch left of its label), text/select/etc. →
|
|
1498
|
+
* `'end'` (control right of its label).
|
|
1499
|
+
*/
|
|
1500
|
+
type LayoutProps = {
|
|
1501
|
+
orientation?: 'vertical' | 'horizontal' | 'responsive';
|
|
1502
|
+
controlPosition?: 'start' | 'end';
|
|
1503
|
+
};
|
|
1504
|
+
/**
|
|
1505
|
+
* How the control fills its side of a horizontal/responsive row. Internal — set by each wrapper,
|
|
1506
|
+
* not exposed to consumers.
|
|
1507
|
+
* - `'fill'` (default): the control takes a full flex column next to the label column, with the
|
|
1508
|
+
* error/contextual description stacked under it (text inputs, selects, textareas, …).
|
|
1509
|
+
* - `'inline'`: the control is a bare, natural-width element (a switch); the label, descriptions
|
|
1510
|
+
* and error share one growing column on the opposite side.
|
|
1511
|
+
*/
|
|
1512
|
+
type ControlVariant = 'inline' | 'fill';
|
|
1416
1513
|
type FormFieldShellProps = {
|
|
1417
1514
|
label?: LabelProp;
|
|
1418
1515
|
description?: DescriptionProp;
|
|
@@ -1425,13 +1522,19 @@ type FormFieldShellProps = {
|
|
|
1425
1522
|
*/
|
|
1426
1523
|
id: string;
|
|
1427
1524
|
children: React$1.ReactNode;
|
|
1525
|
+
orientation?: LayoutProps['orientation'];
|
|
1526
|
+
controlPosition?: LayoutProps['controlPosition'];
|
|
1527
|
+
controlVariant?: ControlVariant;
|
|
1428
1528
|
};
|
|
1429
1529
|
declare function FormFieldShell({
|
|
1430
1530
|
label,
|
|
1431
1531
|
description,
|
|
1432
1532
|
necessityIndicator,
|
|
1433
1533
|
id,
|
|
1434
|
-
children
|
|
1534
|
+
children,
|
|
1535
|
+
orientation,
|
|
1536
|
+
controlPosition,
|
|
1537
|
+
controlVariant
|
|
1435
1538
|
}: FormFieldShellProps): react_jsx_runtime0.JSX.Element;
|
|
1436
1539
|
/**
|
|
1437
1540
|
* Precisely-typed view of the bound field handed to a wrapper's `children`.
|
|
@@ -1539,6 +1642,9 @@ type FormFieldBaseProps<TData, TControl> = {
|
|
|
1539
1642
|
label?: LabelProp;
|
|
1540
1643
|
description?: DescriptionProp;
|
|
1541
1644
|
necessityIndicator?: 'required' | 'optional';
|
|
1645
|
+
orientation?: LayoutProps['orientation'];
|
|
1646
|
+
controlPosition?: LayoutProps['controlPosition']; /** Internal — set by the wrapper (switch → 'inline', others → 'fill'). Not a consumer prop. */
|
|
1647
|
+
controlVariant?: ControlVariant;
|
|
1542
1648
|
/**
|
|
1543
1649
|
* Builds the primitive-specific wiring bundle handed to `children`. `id` is `name` (see
|
|
1544
1650
|
* `FormFieldBase`) — attach it to the control's actual DOM element so the shell's `FieldLabel`
|
|
@@ -1580,7 +1686,7 @@ type FormSelectFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1580
1686
|
label?: LabelProp;
|
|
1581
1687
|
description?: DescriptionProp; /** Compose the Select yourself; spread the bundles. Trigger/content stay fully customizable. */
|
|
1582
1688
|
children: (field: TypedField<string>, control: SelectControl) => React$1.ReactNode;
|
|
1583
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1689
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1584
1690
|
/**
|
|
1585
1691
|
* Select field wrapper. Owns the binding + shared `Field/Label/Error` shell, and hands the
|
|
1586
1692
|
* consumer pre-wired `selectProps` / `selectTriggerProps` to spread onto `@aircall/ds` Select
|
|
@@ -1622,7 +1728,7 @@ type FormInputFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<T
|
|
|
1622
1728
|
label?: LabelProp;
|
|
1623
1729
|
description?: DescriptionProp;
|
|
1624
1730
|
children: (field: TypedField<string>, control: InputControl) => React$1.ReactNode;
|
|
1625
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1731
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1626
1732
|
/**
|
|
1627
1733
|
* Text-input field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1628
1734
|
* with an `inputProps` bundle. Compose the input yourself (add adornments, counters, prefixes).
|
|
@@ -1660,7 +1766,7 @@ type FormComboboxFieldProps<TForm extends BoundForm, TName extends DeepKeysOfTyp
|
|
|
1660
1766
|
label?: LabelProp;
|
|
1661
1767
|
description?: DescriptionProp;
|
|
1662
1768
|
children: (field: TypedField<string>, control: ComboboxControl) => React$1.ReactNode;
|
|
1663
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1769
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1664
1770
|
/**
|
|
1665
1771
|
* Combobox (searchable single-select) field wrapper for **string-valued** fields. Same threaded-
|
|
1666
1772
|
* `form` typing and shared shell as the other wrappers; the render-prop hands you `comboboxProps`
|
|
@@ -1706,7 +1812,7 @@ type FormMultiComboboxFieldProps<TForm extends BoundForm, TName extends DeepKeys
|
|
|
1706
1812
|
label?: LabelProp;
|
|
1707
1813
|
description?: DescriptionProp;
|
|
1708
1814
|
children: (field: TypedField<string[]>, control: MultiComboboxControl) => React$1.ReactNode;
|
|
1709
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1815
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1710
1816
|
/**
|
|
1711
1817
|
* Multi-select combobox field wrapper — same threaded-`form` typing and shared shell as
|
|
1712
1818
|
* `FormSelectField`, with `comboboxProps` / `comboboxInputProps` bundles. `name` is restricted
|
|
@@ -1818,7 +1924,7 @@ type FormTextareaFieldProps<TForm extends BoundForm, TName extends DeepKeysOfTyp
|
|
|
1818
1924
|
label?: LabelProp;
|
|
1819
1925
|
description?: DescriptionProp;
|
|
1820
1926
|
children: (field: TypedField<string>, control: TextareaControl) => React$1.ReactNode;
|
|
1821
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1927
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1822
1928
|
/**
|
|
1823
1929
|
* Multiline text-input field wrapper — same threaded-`form` typing and shared shell as
|
|
1824
1930
|
* `FormSelectField`, with a `textareaProps` bundle. Compose the textarea yourself (rows,
|
|
@@ -1855,7 +1961,7 @@ type FormRadioGroupFieldProps<TForm extends BoundForm, TName extends DeepKeysOfT
|
|
|
1855
1961
|
label?: LabelProp;
|
|
1856
1962
|
description?: DescriptionProp;
|
|
1857
1963
|
children: (field: TypedField<string>, control: RadioGroupControl) => React$1.ReactNode;
|
|
1858
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
1964
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1859
1965
|
/**
|
|
1860
1966
|
* Radio-group field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1861
1967
|
* with a `radioGroupProps` bundle. Compose the items yourself. `name` is restricted to the
|
|
@@ -1894,7 +2000,7 @@ type FormOTPFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<TFo
|
|
|
1894
2000
|
label?: LabelProp;
|
|
1895
2001
|
description?: DescriptionProp;
|
|
1896
2002
|
children: (field: TypedField<string>, control: OTPControl) => React$1.ReactNode;
|
|
1897
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
2003
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1898
2004
|
/**
|
|
1899
2005
|
* One-time-code field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1900
2006
|
* with an `otpProps` bundle. Compose the slots yourself. `name` is restricted to the form's
|
|
@@ -1928,12 +2034,15 @@ type FormSwitchFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
1928
2034
|
label?: LabelProp;
|
|
1929
2035
|
description?: DescriptionProp;
|
|
1930
2036
|
children: (field: TypedField<boolean>, control: SwitchControl) => React$1.ReactNode;
|
|
1931
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
2037
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1932
2038
|
/**
|
|
1933
2039
|
* Toggle field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1934
2040
|
* with a `switchProps` bundle. `name` is restricted to the form's **boolean** fields — a
|
|
1935
2041
|
* string/number `name` is a type error.
|
|
1936
2042
|
*
|
|
2043
|
+
* In a horizontal/responsive layout the switch is a bare, natural-width control beside its label
|
|
2044
|
+
* (`controlPosition` picks the side — defaults to `'start'`, i.e. switch on the left).
|
|
2045
|
+
*
|
|
1937
2046
|
* @example
|
|
1938
2047
|
* <FormSwitchField form={form} name="enabled" label="Enabled" validators={{ onChange }}>
|
|
1939
2048
|
* {(field, { switchProps }) => <Switch {...switchProps} />}
|
|
@@ -1962,7 +2071,7 @@ type FormNumericFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType
|
|
|
1962
2071
|
label?: LabelProp;
|
|
1963
2072
|
description?: DescriptionProp;
|
|
1964
2073
|
children: (field: TypedField<number>, control: NumericControl) => React$1.ReactNode;
|
|
1965
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
2074
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
1966
2075
|
/**
|
|
1967
2076
|
* Numeric field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
1968
2077
|
* with a `numericProps` bundle for the DS `NumericInput` (prefer it over `Input type="number"`).
|
|
@@ -2002,7 +2111,7 @@ type FormSliderFieldProps<TForm extends BoundForm, TName extends DeepKeysOfType<
|
|
|
2002
2111
|
label?: LabelProp;
|
|
2003
2112
|
description?: DescriptionProp;
|
|
2004
2113
|
children: (field: TypedField<number>, control: SliderControl) => React$1.ReactNode;
|
|
2005
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
2114
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
2006
2115
|
/**
|
|
2007
2116
|
* Slider field wrapper — same threaded-`form` typing and shared shell as `FormSelectField`,
|
|
2008
2117
|
* with a `sliderProps` bundle. `name` is restricted to the form's **number** fields; the bundle
|
|
@@ -2038,7 +2147,7 @@ type FormToggleGroupFieldProps<TForm extends BoundForm, TName extends DeepKeysOf
|
|
|
2038
2147
|
label?: LabelProp;
|
|
2039
2148
|
description?: DescriptionProp;
|
|
2040
2149
|
children: (field: TypedField<string | null>, control: ToggleGroupControl) => React$1.ReactNode;
|
|
2041
|
-
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps;
|
|
2150
|
+
} & FieldBindingProps<TForm['state']['values'], TName> & NecessityProps & LayoutProps;
|
|
2042
2151
|
/**
|
|
2043
2152
|
* Single-select toggle-group field wrapper — same threaded-`form` typing and shared shell as
|
|
2044
2153
|
* `FormSelectField`, with a `toggleGroupProps` bundle. `name` is restricted to the form's
|
|
@@ -2286,4 +2395,4 @@ declare namespace DashboardSidebarSubmenuSeparator {
|
|
|
2286
2395
|
type Props = DashboardSidebarSubmenuSeparatorProps;
|
|
2287
2396
|
}
|
|
2288
2397
|
//#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 };
|
|
2398
|
+
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, PERCENTAGE_THRESHOLDS, ProfessionalBadge, type RadioGroupControl, RestrictedAccessDescription, RestrictedAccessEmptyState, RestrictedAccessMedia, RestrictedAccessTitle, RoleBadge, type RoleBadgeRole, SaveBar, type SaveBarProps, ScoreBadge, type ScoreKind, type ScoreThreshold, type ScoreThresholds, type ScoreTone, 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 };
|