@gaddario98/react-core 2.0.4 → 2.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/auth/index.d.ts +13 -3
- package/dist/auth/index.js +1 -1
- package/dist/auth/index.js.map +1 -1
- package/dist/auth/index.mjs +1 -1
- package/dist/auth/index.mjs.map +1 -1
- package/dist/form/index.js +155 -143
- package/dist/form/index.js.map +1 -1
- package/dist/form/index.mjs +153 -141
- package/dist/form/index.mjs.map +1 -1
- package/dist/index.d.ts +61 -39
- package/dist/index.js +898 -1544
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +889 -1535
- package/dist/index.mjs.map +1 -1
- package/dist/pages/index.d.ts +31 -32
- package/dist/pages/index.js +148 -143
- package/dist/pages/index.js.map +1 -1
- package/dist/pages/index.mjs +148 -143
- package/dist/pages/index.mjs.map +1 -1
- package/dist/providers/index.d.ts +1 -1
- package/dist/queries/index.d.ts +1 -1
- package/dist/queries/index.js +371 -314
- package/dist/queries/index.js.map +1 -1
- package/dist/queries/index.mjs +371 -314
- package/dist/queries/index.mjs.map +1 -1
- package/dist/state/index.js +183 -151
- package/dist/state/index.js.map +1 -1
- package/dist/state/index.mjs +183 -151
- package/dist/state/index.mjs.map +1 -1
- package/dist/utiles/index.js +230 -151
- package/dist/utiles/index.js.map +1 -1
- package/dist/utiles/index.mjs +230 -151
- package/dist/utiles/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,28 +1,39 @@
|
|
|
1
1
|
import * as _gaddario98_react_state from '@gaddario98/react-state';
|
|
2
2
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
3
3
|
import * as _gaddario98_react_form from '@gaddario98/react-form';
|
|
4
|
-
import { FieldValues as FieldValues$1, FormManagerConfig as FormManagerConfig$1, Submit as Submit$1, SetValueFunction as SetValueFunction$1, FormManager as FormManager$1, SubmitKeysArg as SubmitKeysArg$1, FormElements as FormElements$1 } from '@gaddario98/react-form';
|
|
5
|
-
import { QueriesArray as QueriesArray$1, MultipleQueryResponse as MultipleQueryResponse$1, AllMutation as AllMutation$1, QueryDefinition as QueryDefinition$1, MutationConfig as MutationConfig$1, QueryProps as QueryProps$1, QueryAtIndex as QueryAtIndex$1, ExtractQuery as ExtractQuery$1 } from '@gaddario98/react-queries';
|
|
4
|
+
import { FieldValues as FieldValues$1, FormManagerConfig as FormManagerConfig$1, Submit as Submit$1, SetValueFunction as SetValueFunction$1, FormManager as FormManager$1, SubmitKeysArg as SubmitKeysArg$1, FormElements as FormElements$1, FormConfigProps as FormConfigProps$1 } from '@gaddario98/react-form';
|
|
5
|
+
import { QueriesArray as QueriesArray$1, MultipleQueryResponse as MultipleQueryResponse$1, AllMutation as AllMutation$1, QueryDefinition as QueryDefinition$1, MutationConfig as MutationConfig$1, QueryProps as QueryProps$1, QueryAtIndex as QueryAtIndex$1, ExtractQuery as ExtractQuery$1, ApiConfig as ApiConfig$1 } from '@gaddario98/react-queries';
|
|
6
6
|
import * as _tanstack_react_form from '@tanstack/react-form';
|
|
7
7
|
import { DeepKeys, DeepValue, FormOptions, FieldApi, FieldState, ReactFormExtendedApi } from '@tanstack/react-form';
|
|
8
8
|
import * as React$1 from 'react';
|
|
9
9
|
import React__default, { ComponentProps, PropsWithChildren, JSX as JSX$1, ReactNode } from 'react';
|
|
10
|
-
import { AuthState } from '@gaddario98/react-auth';
|
|
10
|
+
import { AuthState as AuthState$1 } from '@gaddario98/react-auth';
|
|
11
11
|
import * as jotai_family from 'jotai-family';
|
|
12
12
|
import * as jotai from 'jotai';
|
|
13
13
|
import { PrimitiveAtom } from 'jotai';
|
|
14
14
|
export { PrimitiveAtom } from 'jotai';
|
|
15
15
|
import * as jotai_utils from 'jotai/utils';
|
|
16
16
|
import * as _tanstack_react_query from '@tanstack/react-query';
|
|
17
|
-
import {
|
|
17
|
+
import { useMutation, MutateOptions, UseMutationOptions, UseQueryOptions, useQuery, UseMutationResult, QueryClient } from '@tanstack/react-query';
|
|
18
18
|
import { NotificationConfig } from '@gaddario98/react-notifications';
|
|
19
19
|
import { AxiosRequestConfig } from 'axios';
|
|
20
20
|
import { PersistQueryClientOptions } from '@tanstack/react-query-persist-client';
|
|
21
21
|
import { ClassValue } from 'clsx';
|
|
22
|
+
import { LocalizationConfigProps as LocalizationConfigProps$1 } from '@gaddario98/react-localization';
|
|
23
|
+
import { PageConfigProps as PageConfigProps$1 } from '@gaddario98/react-pages';
|
|
22
24
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
25
|
+
type AuthState = {
|
|
26
|
+
id: string;
|
|
27
|
+
accountVerified?: boolean;
|
|
28
|
+
isLogged?: boolean;
|
|
29
|
+
token?: string;
|
|
30
|
+
phoneNumber?: string;
|
|
31
|
+
email?: string;
|
|
32
|
+
};
|
|
33
|
+
|
|
34
|
+
declare const authAtom: _gaddario98_react_state.PrimitiveAtom<AuthState | null>;
|
|
35
|
+
declare const useAuthValue: () => AuthState | null;
|
|
36
|
+
declare const useAuthState: () => [AuthState | null, (value: AuthState | null) => void];
|
|
26
37
|
|
|
27
38
|
/**
|
|
28
39
|
* Metadata Configuration Types
|
|
@@ -533,7 +544,7 @@ interface PageConfigProps {
|
|
|
533
544
|
BodyContainer: <F extends FieldValues$1 = FieldValues$1, Q extends QueriesArray$1 = QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>>(props: DefaultContainerProps<F, Q, V>) => React.ReactNode;
|
|
534
545
|
authPageImage: string;
|
|
535
546
|
authPageProps: PageProps;
|
|
536
|
-
isLogged: (val: AuthState | null) => boolean;
|
|
547
|
+
isLogged: (val: AuthState$1 | null) => boolean;
|
|
537
548
|
ItemsContainer: (props: {
|
|
538
549
|
children: React.ReactNode;
|
|
539
550
|
}) => React.ReactNode;
|
|
@@ -581,24 +592,24 @@ type MutationCompositeKey$1<Q extends QueriesArray$1> = {
|
|
|
581
592
|
}[MutationTopKey$1<Q>];
|
|
582
593
|
type MutationValue$1<Q extends QueriesArray$1, K extends MutationCompositeKey$1<Q>> = K extends `${infer Top}.${infer Sub}` ? Top extends MutationTopKey$1<Q> ? Sub extends MutationSubKey$1<Q, Top> ? AllMutation$1<Q>[Top][Sub] : never : never : K extends MutationTopKey$1<Q> ? AllMutation$1<Q>[K] : never;
|
|
583
594
|
type GetFunction<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = {
|
|
584
|
-
<K extends QueryTopKey$1<Q>>(type:
|
|
585
|
-
<K extends QueryCompositeKey$1<Q>>(type:
|
|
586
|
-
<K extends QueryCompositeKey$1<Q>>(type:
|
|
587
|
-
<K extends QueryTopKey$1<Q>>(type:
|
|
588
|
-
<K extends QueryCompositeKey$1<Q>>(type:
|
|
589
|
-
<K extends MutationTopKey$1<Q>>(type:
|
|
590
|
-
<K extends MutationCompositeKey$1<Q>>(type:
|
|
591
|
-
<K extends MutationCompositeKey$1<Q>>(type:
|
|
592
|
-
<K extends MutationTopKey$1<Q>>(type:
|
|
593
|
-
<K extends MutationCompositeKey$1<Q>>(type:
|
|
594
|
-
<K extends VariableTopKey<V>>(type:
|
|
595
|
-
<K extends VariableTopKey<V>>(type:
|
|
596
|
-
<TField extends DeepKeys<F>>(type:
|
|
597
|
-
<TField extends DeepKeys<F>>(type:
|
|
595
|
+
<K extends QueryTopKey$1<Q>>(type: "query", key: K): MultipleQueryResponse$1<Q>[K];
|
|
596
|
+
<K extends QueryCompositeKey$1<Q>>(type: "query", key: K): QueryValue$1<Q, K>;
|
|
597
|
+
<K extends QueryCompositeKey$1<Q>>(type: "query", key: K, defaultValue: unknown): NonNullable<QueryValue$1<Q, K>>;
|
|
598
|
+
<K extends QueryTopKey$1<Q>>(type: "query", key: K, defaultValue: MultipleQueryResponse$1<Q>[K]["data"]): MultipleQueryResponse$1<Q>[K]["data"];
|
|
599
|
+
<K extends QueryCompositeKey$1<Q>>(type: "query", key: K, defaultValue: QueryValue$1<Q, K>): NonNullable<QueryValue$1<Q, K>>;
|
|
600
|
+
<K extends MutationTopKey$1<Q>>(type: "mutation", key: K): AllMutation$1<Q>[K];
|
|
601
|
+
<K extends MutationCompositeKey$1<Q>>(type: "mutation", key: K): MutationValue$1<Q, K>;
|
|
602
|
+
<K extends MutationCompositeKey$1<Q>>(type: "mutation", key: K, defaultValue: unknown): NonNullable<MutationValue$1<Q, K>>;
|
|
603
|
+
<K extends MutationTopKey$1<Q>>(type: "mutation", key: K, defaultValue: AllMutation$1<Q>[K]["data"]): AllMutation$1<Q>[K]["data"];
|
|
604
|
+
<K extends MutationCompositeKey$1<Q>>(type: "mutation", key: K, defaultValue: MutationValue$1<Q, K>): NonNullable<MutationValue$1<Q, K>>;
|
|
605
|
+
<K extends VariableTopKey<V>>(type: "state", key: K): VariableValue<V, K>;
|
|
606
|
+
<K extends VariableTopKey<V>>(type: "state", key: K, defaultValue: VariableValue<V, K>): NonNullable<VariableValue<V, K>>;
|
|
607
|
+
<TField extends DeepKeys<F>>(type: "form", key: TField): DeepValue<F, TField> | undefined;
|
|
608
|
+
<TField extends DeepKeys<F>>(type: "form", key: TField, defaultValue: DeepValue<F, TField>): NonNullable<DeepValue<F, TField>>;
|
|
598
609
|
};
|
|
599
610
|
type SetFunction<F extends FieldValues$1, V extends Record<string, unknown> = Record<string, unknown>> = {
|
|
600
|
-
(type:
|
|
601
|
-
(type:
|
|
611
|
+
(type: "form"): SetValueFunction$1<F>;
|
|
612
|
+
(type: "state"): <K extends VariableTopKey<V>>(key: K, value: VariableValue<V, K>) => void;
|
|
602
613
|
};
|
|
603
614
|
type FunctionProps<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = {
|
|
604
615
|
/**
|
|
@@ -624,7 +635,7 @@ type LifecycleContext<F extends FieldValues$1 = FieldValues$1, Q extends Queries
|
|
|
624
635
|
pageConfig?: PageProps<F, Q, V>;
|
|
625
636
|
};
|
|
626
637
|
type Items<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = {
|
|
627
|
-
type:
|
|
638
|
+
type: "custom";
|
|
628
639
|
component: React.JSX.Element | ((props: FunctionProps<F, Q, V>) => React.JSX.Element);
|
|
629
640
|
index?: number;
|
|
630
641
|
usedBoxes?: number;
|
|
@@ -635,12 +646,12 @@ type Items<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<s
|
|
|
635
646
|
isInDraggableView?: boolean;
|
|
636
647
|
key?: string;
|
|
637
648
|
lazy?: boolean;
|
|
638
|
-
lazyTrigger?:
|
|
649
|
+
lazyTrigger?: "viewport" | "interaction" | "conditional";
|
|
639
650
|
lazyCondition?: MappedItemsFunction<F, Q, boolean, V>;
|
|
640
651
|
};
|
|
641
652
|
type ContainerItem<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = {
|
|
642
|
-
type:
|
|
643
|
-
component?: PageConfigProps[
|
|
653
|
+
type: "container";
|
|
654
|
+
component?: PageConfigProps["ItemsContainer"];
|
|
644
655
|
items: ContentItemsType<F, Q, V>;
|
|
645
656
|
index?: number;
|
|
646
657
|
usedBoxes?: number;
|
|
@@ -651,28 +662,28 @@ type ContainerItem<F extends FieldValues$1, Q extends QueriesArray$1, V extends
|
|
|
651
662
|
isInDraggableView?: boolean;
|
|
652
663
|
key?: string;
|
|
653
664
|
lazy?: boolean;
|
|
654
|
-
lazyTrigger?:
|
|
665
|
+
lazyTrigger?: "viewport" | "interaction" | "conditional";
|
|
655
666
|
lazyCondition?: MappedItemsFunction<F, Q, boolean, V>;
|
|
656
667
|
};
|
|
657
668
|
type ContentItem<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = Items<F, Q, V> | ContainerItem<F, Q, V>;
|
|
658
669
|
type MappedContents<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = MappedItemsFunction<F, Q, Array<ContentItem<F, Q, V>>, V>;
|
|
659
670
|
type ContentItemsType<F extends FieldValues$1, Q extends QueriesArray$1 = QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = Array<ContentItem<F, Q, V>> | MappedContents<F, Q, V>;
|
|
660
|
-
type FormPageProps<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = Omit<ComponentProps<typeof FormManager$1<F>>,
|
|
671
|
+
type FormPageProps<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = Omit<ComponentProps<typeof FormManager$1<F>>, "updateFormValues" | "submit" | "data"> & {
|
|
661
672
|
defaultValueQueryKey?: Array<string>;
|
|
662
|
-
defaultValueQueryMap?: (props: ExtractQuery$1<Q>[
|
|
673
|
+
defaultValueQueryMap?: (props: ExtractQuery$1<Q>["response"]) => F;
|
|
663
674
|
submit?: Array<Submit$1<F>> | MappedItemsFunction<F, Q, Array<Submit$1<F>>, V>;
|
|
664
675
|
index?: number;
|
|
665
676
|
data?: Array<FormManagerConfig$1<F> | MappedItemsFunction<F, Q, FormManagerConfig$1<F>, V>>;
|
|
666
677
|
debounceDelay?: number;
|
|
667
678
|
hidden?: boolean | MappedItemsFunction<F, Q, boolean, V>;
|
|
668
679
|
};
|
|
669
|
-
type SingleQueryConfig$1<F extends FieldValues$1, Q extends QueryDefinition$1<any, any, any, any, any>, V extends Record<string, unknown> = Record<string, unknown>> = Q extends QueryDefinition$1<infer K, infer T, infer P, infer R, infer C> ? T extends
|
|
670
|
-
type:
|
|
680
|
+
type SingleQueryConfig$1<F extends FieldValues$1, Q extends QueryDefinition$1<any, any, any, any, any>, V extends Record<string, unknown> = Record<string, unknown>> = Q extends QueryDefinition$1<infer K, infer T, infer P, infer R, infer C> ? T extends "mutation" ? {
|
|
681
|
+
type: "mutation";
|
|
671
682
|
mutationConfig: (<Qa extends QueriesArray$1>(props: FunctionProps<F, Qa, V>) => MutationConfig$1<P, R, C>) | MutationConfig$1<P, R, C>;
|
|
672
683
|
key: K;
|
|
673
684
|
} : {
|
|
674
|
-
type:
|
|
675
|
-
queryConfig?: (<Qa extends QueriesArray$1>(props: FunctionProps<F, Qa, V>) => Omit<QueryProps$1<K, R>,
|
|
685
|
+
type: "query";
|
|
686
|
+
queryConfig?: (<Qa extends QueriesArray$1>(props: FunctionProps<F, Qa, V>) => Omit<QueryProps$1<K, R>, "keyToMap">) | Omit<QueryProps$1<K, R>, "keyToMap">;
|
|
676
687
|
key: K;
|
|
677
688
|
} : never;
|
|
678
689
|
type QueryPageConfigArray<F extends FieldValues$1, Q extends QueriesArray$1, V extends Record<string, unknown> = Record<string, unknown>> = {
|
|
@@ -725,9 +736,9 @@ type ViewSettings = {
|
|
|
725
736
|
} & Record<string, unknown>>;
|
|
726
737
|
pageContainerProps?: Record<string, unknown>;
|
|
727
738
|
/** @deprecated Use layoutComponent instead */
|
|
728
|
-
customLayoutComponent?: PageConfigProps[
|
|
739
|
+
customLayoutComponent?: PageConfigProps["BodyContainer"];
|
|
729
740
|
/** @deprecated Use pageContainerComponent instead */
|
|
730
|
-
customPageContainer?: PageConfigProps[
|
|
741
|
+
customPageContainer?: PageConfigProps["PageContainer"];
|
|
731
742
|
};
|
|
732
743
|
/**
|
|
733
744
|
* Dependency Graph Node
|
|
@@ -2152,5 +2163,16 @@ type PropsAreEqual<P> = (prevProps: Readonly<P>, nextProps: Readonly<P>) => bool
|
|
|
2152
2163
|
*/
|
|
2153
2164
|
declare function withMemo<T extends React.ComponentType<any>>(Component: T, propsAreEqual?: PropsAreEqual<React.ComponentProps<T>>): T;
|
|
2154
2165
|
|
|
2155
|
-
|
|
2156
|
-
|
|
2166
|
+
/**
|
|
2167
|
+
* Interfaccia che raccoglie tutte le configurazioni dei plugin di core
|
|
2168
|
+
*/
|
|
2169
|
+
interface CoreConfig {
|
|
2170
|
+
form?: Partial<FormConfigProps$1>;
|
|
2171
|
+
localization?: LocalizationConfigProps$1;
|
|
2172
|
+
pages?: Partial<PageConfigProps$1>;
|
|
2173
|
+
apiConfig?: Partial<ApiConfig$1>;
|
|
2174
|
+
}
|
|
2175
|
+
declare const useCoreConfig: ({ form, localization, pages, apiConfig, }: CoreConfig) => void;
|
|
2176
|
+
|
|
2177
|
+
export { AppProviders, DEFAULT_FORM_ENTRY, DEFAULT_MUTATION_ENTRY, DEFAULT_QUERY_ENTRY, DefaultContainer, DefaultFormContainer, FormField, FormManager, MemoizationCache, MetadataStoreProvider, PageGenerator, QueriesProvider, RenderComponents, ab2str, algorithm, apiConfigAtom, apiRequest, applyMetadataToDom, atomStateGenerator, authAtom, buildArticleJsonLd, buildBreadcrumbListJsonLd, buildFAQPageJsonLd, buildOrganizationJsonLd, buildProductJsonLd, buildWebSiteJsonLd, clearMetadataLog, cn, collectMetadataToHtml, createExtractor, createFormSelector, createMetadataStore, createMutationSelector, createQuerySelector, createScopeFormsAtom, createScopeMutationsAtom, createScopePageVariablesAtom, createScopeQueriesAtom, createServerTranslator, decryptData, deepEqual, encryptData, fetchRequest, formAtom, formConfigAtom, generateLlmsFullTxt, generateLlmsTxt, generateRobotsTxt, generateSitemapEntries, generateSitemapXml, getCompositeKey, getFormCompositeKey, getMetadata, getMetadataLog, getPageConfig, getPageVariablesCompositeKey, importKey, isStableValue, localizationConfigAtom, logMetadata, memoPropsComparator, memoize, mutationsAtom, optimizeDeps, pageConfigAtom, pageToMarkdown, pageVariablesAtom, pageVariablesAtomFamily, queriesAtom, resetMetadata, resolveMetadata, resolveTranslation, setCustomStorage, setDefaultFormContainer, setMetadata, setMetadataLogging, shallowEqual, storage, str2ab, toNextHeadTags, toNextMetadata, useApi, useApiConfigReset, useApiConfigState, useApiConfigValue, useApiValues, useApplyMetadata, useAuthState, useAuthValue, useCoreConfig, useFormConfigReset, useFormConfigState, useFormConfigValue, useFormData, useFormManager, useFormState, useFormValue, useFormValues, useGenerateContent, useGenerateContentRender, useInvalidateQueries, useJotaiForm, useJotaiMutations, useJotaiQueries, useLocalizationActions, useLocalizationConfigReset, useLocalizationConfigState, useLocalizationConfigValue, useMetadata, useMetadataStore, useMultipleMutation, useMultipleQuery, useMultipleWebSocket, useMutateApi, usePageConfig, usePageConfigReset, usePageConfigState, usePageConfigValue, useQueryApi, useSetFormState, useTranslatedText, useTranslation, useViewSettings, useWebSocket, withMemo };
|
|
2178
|
+
export type { AIHintsConfig, AllMutation, AlternatesConfig, ApiConfig, ApiConverter, ApiMethod, ApiNotificationMessage, ApiRequestFnProps, AppProvidersProps, ArticleJsonLdInput, AtomGeneratorOptions, AtomState, AuthState, BreadcrumbItem, ContainerItem, ContentItem, ContentItemsType, ContentProps, ContextValue, CoreConfig, CustomMutation, CustomMutationOptions, CustomQueryOptions, DefaultContainerProps, DefaultFormContainerProps, DependencyGraph, DependencyNode, Elements, EncryptionConfig, Endpoint, ErrorComponentProps, ExtractMutation, ExtractMutationByKey, ExtractQuery, ExtractQueryByKey, ExtractQueryResponse, ExtractWebSocket, ExtractorCache, FAQItem, FieldComponentProps, FieldValues, FormConfigProps, FormContainerProps, FormElements, FormFieldConfig, FormFieldProps, FormFunctionProps, FormManagerConfig, FormManagerProps, FormNotificationMessage, FormPageProps, FormStoreEntry, FormTranslationOptions, FormatOptions, FunctionProps, GenerateContentProps, GenerateContentRenderProps, GenericFieldApi, GenericFieldState, GenericFormApi, GetApiValuesFunction, GetFormValuesFunction, GetFunction, HeadTag, I18nConfig, IconConfig, IconsConfig, ItemContainerProps, Items, LazyLoadingConfig, LlmsTxtConfig, LlmsTxtEntry, Locale, LocalizationConfigProps, MappedContents, MappedFormItemsFunction, MappedItemsFunction, MemoizationCacheStats, MetaTag, MetadataConfig, MetadataProvider, MetadataStore, MultipleQueryResponse, MultipleWebSocketResponse, MutationActionInternal, MutationConfig, MutationItem, MutationStateInternal, MutationStoreEntry, NextMetadata, OpenGraphArticle, OpenGraphConfig, OpenGraphImage, OrganizationJsonLdInput, PageAuthState, PageConfigProps, MetadataConfig as PageMetadataProps, PageProps, PageTranslationOptions, PlatformOverrides, ProductJsonLdInput, Props, ProviderConfig, QueriesArray, QueriesProps, QueryAtIndex, QueryConfig, QueryConfigArray, QueryDefinition, QueryItem, QueryPageConfigArray, QueryProps, QueryResult, QueryStoreEntry, RenderComponentsProps, ResolvedMetadata, RobotsConfig, RobotsTxtConfig, Rules, SetFunction, SetValueFunction, SingleQueryConfig, SitemapEntry, StructuredDataConfig, Submit, SubmitKeysArg, SubmitPayload, SyncStorage, TranslateFunction, TranslationFunction, TranslationOptions, TranslationResources, TwitterCardConfig, UseApiOptions, UseCustomFormOptions, UseFormManagerProps, UseFormValuesProps, UseMetadataProps, ViewSettings, ViewSettingsContainerProps, WebSiteJsonLdInput, WebSocketDefinition, WebSocketResult, WebSocketsArray };
|