@plasmicpkgs/plasmic-graphcms 0.0.133 → 0.0.135
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/graphcms.d.ts +3 -3
- package/dist/plasmic-graphcms.cjs.development.js +332 -691
- package/dist/plasmic-graphcms.cjs.development.js.map +1 -1
- package/dist/plasmic-graphcms.cjs.production.min.js +1 -1
- package/dist/plasmic-graphcms.cjs.production.min.js.map +1 -1
- package/dist/plasmic-graphcms.esm.js +332 -691
- package/dist/plasmic-graphcms.esm.js.map +1 -1
- package/package.json +3 -3
package/dist/graphcms.d.ts
CHANGED
|
@@ -6,7 +6,7 @@ interface GraphCMSCredentialsProviderProps {
|
|
|
6
6
|
authToken: string;
|
|
7
7
|
}
|
|
8
8
|
export declare const GraphCMSCredentialsProviderMeta: GlobalContextMeta<GraphCMSCredentialsProviderProps>;
|
|
9
|
-
export declare function GraphCMSCredentialsProvider({ apiUrl, authToken, children, }: React.PropsWithChildren<GraphCMSCredentialsProviderProps>): JSX.Element;
|
|
9
|
+
export declare function GraphCMSCredentialsProvider({ apiUrl, authToken, children, }: React.PropsWithChildren<GraphCMSCredentialsProviderProps>): React.JSX.Element;
|
|
10
10
|
interface GraphCMSFetcherProps {
|
|
11
11
|
children?: ReactNode;
|
|
12
12
|
className?: string;
|
|
@@ -23,7 +23,7 @@ interface GraphCMSFetcherProps {
|
|
|
23
23
|
}) => void;
|
|
24
24
|
}
|
|
25
25
|
export declare const GraphCMSFetcherMeta: ComponentMeta<GraphCMSFetcherProps>;
|
|
26
|
-
export declare function GraphCMSFetcher({ query, children, className, noLayout, noAutoRepeat, varOverrides, setControlContextData, }: GraphCMSFetcherProps): JSX.Element | null;
|
|
26
|
+
export declare function GraphCMSFetcher({ query, children, className, noLayout, noAutoRepeat, varOverrides, setControlContextData, }: GraphCMSFetcherProps): React.JSX.Element | null;
|
|
27
27
|
interface GraphCMSFieldProps {
|
|
28
28
|
className?: string;
|
|
29
29
|
path?: string;
|
|
@@ -33,5 +33,5 @@ interface GraphCMSFieldProps {
|
|
|
33
33
|
themeClassName?: string;
|
|
34
34
|
}
|
|
35
35
|
export declare const GraphCMSFieldMeta: ComponentMeta<GraphCMSFieldProps>;
|
|
36
|
-
export declare function GraphCMSField({ className, path, themeClassName, setControlContextData, }: GraphCMSFieldProps): JSX.Element;
|
|
36
|
+
export declare function GraphCMSField({ className, path, themeClassName, setControlContextData, }: GraphCMSFieldProps): React.JSX.Element;
|
|
37
37
|
export {};
|