@canopy-iiif/app 1.10.8 → 1.10.10
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/lib/build/mdx.js +18 -0
- package/package.json +1 -1
package/lib/build/mdx.js
CHANGED
|
@@ -1197,6 +1197,12 @@ function createReactShimPlugin() {
|
|
|
1197
1197
|
export const useContext = React.useContext;
|
|
1198
1198
|
export const useReducer = React.useReducer;
|
|
1199
1199
|
export const useId = React.useId;
|
|
1200
|
+
export const useImperativeHandle = React.useImperativeHandle;
|
|
1201
|
+
export const useTransition = React.useTransition;
|
|
1202
|
+
export const useDeferredValue = React.useDeferredValue;
|
|
1203
|
+
export const useDebugValue = React.useDebugValue;
|
|
1204
|
+
export const useSyncExternalStore = React.useSyncExternalStore;
|
|
1205
|
+
export const useInsertionEffect = React.useInsertionEffect;
|
|
1200
1206
|
`;
|
|
1201
1207
|
const rdomShim = `
|
|
1202
1208
|
const ReactDOM = (typeof window !== 'undefined' && window.ReactDOM) || {};
|
|
@@ -1751,6 +1757,12 @@ async function ensureTimelineRuntime() {
|
|
|
1751
1757
|
export const useContext = React.useContext;
|
|
1752
1758
|
export const useReducer = React.useReducer;
|
|
1753
1759
|
export const useId = React.useId;
|
|
1760
|
+
export const useImperativeHandle = React.useImperativeHandle;
|
|
1761
|
+
export const useTransition = React.useTransition;
|
|
1762
|
+
export const useDeferredValue = React.useDeferredValue;
|
|
1763
|
+
export const useDebugValue = React.useDebugValue;
|
|
1764
|
+
export const useSyncExternalStore = React.useSyncExternalStore;
|
|
1765
|
+
export const useInsertionEffect = React.useInsertionEffect;
|
|
1754
1766
|
`;
|
|
1755
1767
|
const rdomShim = `
|
|
1756
1768
|
const ReactDOM = (typeof window !== 'undefined' && window.ReactDOM) || {};
|
|
@@ -1868,6 +1880,12 @@ async function ensureMapRuntime() {
|
|
|
1868
1880
|
export const useContext = React.useContext;
|
|
1869
1881
|
export const useReducer = React.useReducer;
|
|
1870
1882
|
export const useId = React.useId;
|
|
1883
|
+
export const useImperativeHandle = React.useImperativeHandle;
|
|
1884
|
+
export const useTransition = React.useTransition;
|
|
1885
|
+
export const useDeferredValue = React.useDeferredValue;
|
|
1886
|
+
export const useDebugValue = React.useDebugValue;
|
|
1887
|
+
export const useSyncExternalStore = React.useSyncExternalStore;
|
|
1888
|
+
export const useInsertionEffect = React.useInsertionEffect;
|
|
1871
1889
|
`;
|
|
1872
1890
|
const rdomShim = `
|
|
1873
1891
|
const ReactDOM = (typeof window !== 'undefined' && window.ReactDOM) || {};
|