@uniformdev/mesh-sdk-react 17.2.1-alpha.201 → 17.2.1-alpha.224
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/index.d.ts +4 -1
- package/dist/index.esm.js +102 -102
- package/dist/index.js +114 -114
- package/dist/index.mjs +102 -102
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -66,12 +66,13 @@ declare function useMeshLocation<TLocationType extends MeshLocation['type'], TLo
|
|
|
66
66
|
type: TLocationType;
|
|
67
67
|
}>;
|
|
68
68
|
|
|
69
|
+
/** @deprecated */
|
|
69
70
|
interface UniformMeshLocationContextValue<TLocationValue = unknown, TLocationSetValue = TLocationValue> {
|
|
70
71
|
location: MeshLocation<TLocationValue, TLocationSetValue>;
|
|
71
72
|
}
|
|
72
73
|
/** @deprecated not intended for public usage */
|
|
73
74
|
declare const UniformMeshLocationContext: React__default.Context<UniformMeshLocationContextValue<unknown, unknown> | undefined>;
|
|
74
|
-
/** @deprecated
|
|
75
|
+
/** @deprecated not intended for public usage. Use <MeshApp /> instead. */
|
|
75
76
|
declare const UniformMeshLocationContextProvider: React__default.FC<React__default.PropsWithChildren<unknown>>;
|
|
76
77
|
/**
|
|
77
78
|
* Provides access to the current UniformMeshLocationContext value.
|
|
@@ -82,7 +83,9 @@ declare const useUniformMeshLocationContext: <TLocationValue = unknown, TLocatio
|
|
|
82
83
|
interface UniformMeshSdkContextValue {
|
|
83
84
|
sdk: UniformMeshSDK;
|
|
84
85
|
}
|
|
86
|
+
/** @deprecated not intended for public usage */
|
|
85
87
|
declare const UniformMeshSdkContext: React__default.Context<UniformMeshSdkContextValue | undefined>;
|
|
88
|
+
/** @deprecated not intended for public usage; use <MeshApp /> instead */
|
|
86
89
|
declare const UniformMeshSdkContextProvider: React__default.FC<React__default.PropsWithChildren<unknown>>;
|
|
87
90
|
/**
|
|
88
91
|
* Provides access to the current (initialized) Uniform Mesh SDK context value.
|