@gem-sdk/core 19.0.0-staging.10 → 19.0.0-staging.14
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/types/index.d.ts +4 -4
- package/package.json +2 -2
package/dist/types/index.d.ts
CHANGED
|
@@ -42771,9 +42771,9 @@ type AddonProviderProps = Pick<AddonContextProps, 'components'> & {
|
|
|
42771
42771
|
|
|
42772
42772
|
declare const AddonProvider: React.FC<AddonProviderProps>;
|
|
42773
42773
|
declare const useAddons: () => Record<string, React.ComponentType<any>>;
|
|
42774
|
-
declare const useAddon: (id?: string) => React.FC<BaseProps & {
|
|
42774
|
+
declare const useAddon: (id?: string) => React.ComponentType<any> | React.FC<BaseProps & {
|
|
42775
42775
|
children?: React.ReactNode;
|
|
42776
|
-
}
|
|
42776
|
+
}>;
|
|
42777
42777
|
|
|
42778
42778
|
type BuilderComponentProps = {
|
|
42779
42779
|
components: Record<string, React.ComponentType<any>>;
|
|
@@ -42785,9 +42785,9 @@ type BuilderComponentProviderProps = Pick<BuilderComponentProps, 'components'> &
|
|
|
42785
42785
|
};
|
|
42786
42786
|
|
|
42787
42787
|
declare const BuilderComponentProvider: React.FC<BuilderComponentProviderProps>;
|
|
42788
|
-
declare const useBuilderComponent: (id?: string) => React.
|
|
42788
|
+
declare const useBuilderComponent: (id?: string) => React.FC<BaseProps & {
|
|
42789
42789
|
children?: React.ReactNode;
|
|
42790
|
-
}>;
|
|
42790
|
+
}> | React.ComponentType<BaseProps>;
|
|
42791
42791
|
|
|
42792
42792
|
type BuilderContextProps = {
|
|
42793
42793
|
state: BuilderState | SectionData;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gem-sdk/core",
|
|
3
|
-
"version": "19.0.0-staging.
|
|
3
|
+
"version": "19.0.0-staging.14",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"main": "dist/cjs/index.js",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@gem-sdk/adapter-shopify": "19.0.0-staging.8",
|
|
32
|
-
"@gem-sdk/styles": "19.0.0-staging.
|
|
32
|
+
"@gem-sdk/styles": "19.0.0-staging.14",
|
|
33
33
|
"@types/classnames": "^2.3.1"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|