first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

5
node_modules/expo/build/dom/base.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
/**
* Get the base URL for the DOM Components HTML
*/
export declare function getBaseURL(): string;
//# sourceMappingURL=base.d.ts.map

1
node_modules/expo/build/dom/base.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"base.d.ts","sourceRoot":"","sources":["../../src/dom/base.ts"],"names":[],"mappings":"AAEA;;GAEG;AACH,wBAAgB,UAAU,IAAI,MAAM,CAkCnC"}

3
node_modules/expo/build/dom/dom-entry.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
import '@expo/metro-runtime';
export declare function registerDOMComponent(AppModule: any): void;
//# sourceMappingURL=dom-entry.d.ts.map

1
node_modules/expo/build/dom/dom-entry.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"dom-entry.d.ts","sourceRoot":"","sources":["../../src/dom/dom-entry.tsx"],"names":[],"mappings":"AACA,OAAO,qBAAqB,CAAC;AAiE7B,wBAAgB,oBAAoB,CAAC,SAAS,EAAE,GAAG,QAoElD"}

8
node_modules/expo/build/dom/dom-hooks.d.ts generated vendored Normal file
View File

@@ -0,0 +1,8 @@
import { type DependencyList, type Ref } from 'react';
import type { DOMImperativeFactory } from './dom.types';
/**
* A React `useImperativeHandle` like hook for DOM components.
*
*/
export declare function useDOMImperativeHandle<T extends DOMImperativeFactory>(ref: Ref<T>, init: () => T, deps?: DependencyList): void;
//# sourceMappingURL=dom-hooks.d.ts.map

1
node_modules/expo/build/dom/dom-hooks.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"dom-hooks.d.ts","sourceRoot":"","sources":["../../src/dom/dom-hooks.ts"],"names":[],"mappings":"AAAA,OAAO,EAA+C,KAAK,cAAc,EAAE,KAAK,GAAG,EAAE,MAAM,OAAO,CAAC;AAEnG,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAOxD;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,CAAC,SAAS,oBAAoB,EACnE,GAAG,EAAE,GAAG,CAAC,CAAC,CAAC,EACX,IAAI,EAAE,MAAM,CAAC,EACb,IAAI,CAAC,EAAE,cAAc,QAgCtB"}

11
node_modules/expo/build/dom/dom-internal.types.d.ts generated vendored Normal file
View File

@@ -0,0 +1,11 @@
import type { DOMProps } from './dom.types';
export interface DOMPropsInternal extends DOMProps {
/**
* Allows dynamically redirecting a component to a different source, for example prebuilt version.
* @internal
*/
sourceOverride?: {
uri: string;
};
}
//# sourceMappingURL=dom-internal.types.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"dom-internal.types.d.ts","sourceRoot":"","sources":["../../src/dom/dom-internal.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,aAAa,CAAC;AAE5C,MAAM,WAAW,gBAAiB,SAAQ,QAAQ;IAChD;;;OAGG;IACH,cAAc,CAAC,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;CAClC"}

5
node_modules/expo/build/dom/dom.d.ts generated vendored Normal file
View File

@@ -0,0 +1,5 @@
export * from './dom-hooks';
export type { DOMProps, DOMImperativeFactory } from './dom.types';
/** @returns `true` when the current JS running in a DOM Component environment. */
export declare const IS_DOM = false;
//# sourceMappingURL=dom.d.ts.map

1
node_modules/expo/build/dom/dom.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"dom.d.ts","sourceRoot":"","sources":["../../src/dom/dom.ts"],"names":[],"mappings":"AAEA,cAAc,aAAa,CAAC;AAC5B,YAAY,EAAE,QAAQ,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC;AAGlE,kFAAkF;AAClF,eAAO,MAAM,MAAM,QAAQ,CAAC"}

39
node_modules/expo/build/dom/dom.types.d.ts generated vendored Normal file
View File

@@ -0,0 +1,39 @@
import type { RNWebView, RNWebViewProps } from './webview/RNWebView';
export type JSONValue = boolean | number | string | null | JSONArray | JSONObject;
export interface JSONArray extends Array<JSONValue> {
}
export interface JSONObject {
[key: string]: JSONValue | undefined;
}
export type BridgeMessage<TData extends JSONValue> = {
type: string;
data: TData;
};
/**
* The return type of the init function for `useDOMImperativeHandle`.
*/
export interface DOMImperativeFactory {
[key: string]: (...args: JSONValue[]) => void;
}
type RNWebViewRef = RNWebView;
export type WebViewRef = RNWebViewRef;
export type WebViewProps = RNWebViewProps;
export interface DOMProps extends Omit<RNWebViewProps, 'source'> {
/**
* Whether to resize the native WebView size based on the DOM content size.
* @default false
*/
matchContents?: boolean;
/**
* Whether to use the `@expo/dom-webview` as the underlying WebView implementation.
* @default false
*/
useExpoDOMWebView?: boolean;
/**
* Allows dynamically redirecting a component to a different source, for example a prebuilt version.
* @internal
*/
overrideUri?: string;
}
export {};
//# sourceMappingURL=dom.types.d.ts.map

1
node_modules/expo/build/dom/dom.types.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"dom.types.d.ts","sourceRoot":"","sources":["../../src/dom/dom.types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,cAAc,EAAE,MAAM,qBAAqB,CAAC;AAErE,MAAM,MAAM,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,MAAM,GAAG,IAAI,GAAG,SAAS,GAAG,UAAU,CAAC;AAElF,MAAM,WAAW,SAAU,SAAQ,KAAK,CAAC,SAAS,CAAC;CAAG;AAEtD,MAAM,WAAW,UAAU;IACzB,CAAC,GAAG,EAAE,MAAM,GAAG,SAAS,GAAG,SAAS,CAAC;CACtC;AAED,MAAM,MAAM,aAAa,CAAC,KAAK,SAAS,SAAS,IAAI;IACnD,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,KAAK,CAAC;CACb,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,CAAC,GAAG,EAAE,MAAM,GAAG,CAAC,GAAG,IAAI,EAAE,SAAS,EAAE,KAAK,IAAI,CAAC;CAC/C;AAED,KAAK,YAAY,GAAG,SAAS,CAAC;AAC9B,MAAM,MAAM,UAAU,GAAG,YAAY,CAAC;AACtC,MAAM,MAAM,YAAY,GAAG,cAAc,CAAC;AAE1C,MAAM,WAAW,QAAS,SAAQ,IAAI,CAAC,cAAc,EAAE,QAAQ,CAAC;IAC9D;;;OAGG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IAExB;;;OAGG;IACH,iBAAiB,CAAC,EAAE,OAAO,CAAC;IAE5B;;;OAGG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB"}

3
node_modules/expo/build/dom/dom.web.d.ts generated vendored Normal file
View File

@@ -0,0 +1,3 @@
export * from './dom-hooks';
export declare const IS_DOM: boolean;
//# sourceMappingURL=dom.web.d.ts.map

1
node_modules/expo/build/dom/dom.web.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"dom.web.d.ts","sourceRoot":"","sources":["../../src/dom/dom.web.ts"],"names":[],"mappings":"AAAA,cAAc,aAAa,CAAC;AAG5B,eAAO,MAAM,MAAM,SAE0B,CAAC"}

4
node_modules/expo/build/dom/global-events.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import { BridgeMessage, JSONValue } from './dom.types';
export declare function _emitGlobalEvent<TData extends JSONValue>(message: BridgeMessage<TData>): void;
export declare const addGlobalDomEventListener: <TData extends JSONValue>(onSubscribe: (message: BridgeMessage<TData>) => void) => (() => void);
//# sourceMappingURL=global-events.d.ts.map

1
node_modules/expo/build/dom/global-events.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"global-events.d.ts","sourceRoot":"","sources":["../../src/dom/global-events.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAIvD,wBAAgB,gBAAgB,CAAC,KAAK,SAAS,SAAS,EAAE,OAAO,EAAE,aAAa,CAAC,KAAK,CAAC,QAEtF;AAED,eAAO,MAAM,yBAAyB,GAAI,KAAK,SAAS,SAAS,EAC/D,aAAa,CAAC,OAAO,EAAE,aAAa,CAAC,KAAK,CAAC,KAAK,IAAI,KACnD,CAAC,MAAM,IAAI,CAKb,CAAC"}

9
node_modules/expo/build/dom/injection.d.ts generated vendored Normal file
View File

@@ -0,0 +1,9 @@
import type { BridgeMessage } from './dom.types';
export declare const NATIVE_ACTION = "$$native_action";
export declare const NATIVE_ACTION_RESULT = "$$native_action_result";
export declare const DOM_EVENT = "$$dom_event";
export declare const MATCH_CONTENTS_EVENT = "$$match_contents_event";
export declare const REGISTER_DOM_IMPERATIVE_HANDLE_PROPS = "$$register_dom_imperative_handle_props";
export declare const getInjectEventScript: <T extends BridgeMessage<any>>(detail: T) => string;
export declare function getInjectBodySizeObserverScript(): string;
//# sourceMappingURL=injection.d.ts.map

1
node_modules/expo/build/dom/injection.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"injection.d.ts","sourceRoot":"","sources":["../../src/dom/injection.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAEjD,eAAO,MAAM,aAAa,oBAAoB,CAAC;AAC/C,eAAO,MAAM,oBAAoB,2BAA2B,CAAC;AAC7D,eAAO,MAAM,SAAS,gBAAgB,CAAC;AACvC,eAAO,MAAM,oBAAoB,2BAA2B,CAAC;AAC7D,eAAO,MAAM,oCAAoC,2CAA2C,CAAC;AAE7F,eAAO,MAAM,oBAAoB,GAAI,CAAC,SAAS,aAAa,CAAC,GAAG,CAAC,EAAE,QAAQ,CAAC,WAO3E,CAAC;AAEF,wBAAgB,+BAA+B,WAwB9C"}

4
node_modules/expo/build/dom/internal.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
export { default as WebView } from './webview-wrapper';
export * from './dom-internal.types';
export declare const registerDOMComponent: undefined | typeof import('./dom-entry').registerDOMComponent;
//# sourceMappingURL=internal.d.ts.map

1
node_modules/expo/build/dom/internal.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"internal.d.ts","sourceRoot":"","sources":["../../src/dom/internal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,OAAO,EAAE,MAAM,mBAAmB,CAAC;AAEvD,cAAc,sBAAsB,CAAC;AAGrC,eAAO,MAAM,oBAAoB,EAAE,SAAS,GAAG,cAAc,aAAa,EAAE,oBACjE,CAAC"}

2
node_modules/expo/build/dom/internal.web.d.ts generated vendored Normal file
View File

@@ -0,0 +1,2 @@
export { registerDOMComponent } from './dom-entry';
//# sourceMappingURL=internal.web.d.ts.map

1
node_modules/expo/build/dom/internal.web.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"internal.web.d.ts","sourceRoot":"","sources":["../../src/dom/internal.web.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,aAAa,CAAC"}

4
node_modules/expo/build/dom/marshal.d.ts generated vendored Normal file
View File

@@ -0,0 +1,4 @@
import { BridgeMessage, JSONValue } from './dom.types';
export declare const addEventListener: <TData extends JSONValue>(onSubscribe: (message: BridgeMessage<TData>) => void) => (() => void);
export declare function getActionsObject(): Record<string, (...args: any[]) => void | Promise<any>>;
//# sourceMappingURL=marshal.d.ts.map

1
node_modules/expo/build/dom/marshal.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"marshal.d.ts","sourceRoot":"","sources":["../../src/dom/marshal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAiBvD,eAAO,MAAM,gBAAgB,GAAI,KAAK,SAAS,SAAS,EACtD,aAAa,CAAC,OAAO,EAAE,aAAa,CAAC,KAAK,CAAC,KAAK,IAAI,KACnD,CAAC,MAAM,IAAI,CAab,CAAC;AAsCF,wBAAgB,gBAAgB,IAAI,MAAM,CAAC,MAAM,EAAE,CAAC,GAAG,IAAI,EAAE,GAAG,EAAE,KAAK,IAAI,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAuC1F"}

16
node_modules/expo/build/dom/webview-wrapper.d.ts generated vendored Normal file
View File

@@ -0,0 +1,16 @@
import React from 'react';
import { DOMPropsInternal } from './dom-internal.types';
import ExpoDomWebView from './webview/ExpoDOMWebView';
import RNWebView from './webview/RNWebView';
type RawWebViewProps = React.ComponentProps<Exclude<typeof ExpoDomWebView, undefined>> & React.ComponentProps<Exclude<typeof RNWebView, undefined>>;
interface Props {
children?: any;
dom?: DOMPropsInternal;
filePath: string;
ref: React.Ref<object>;
[propName: string]: unknown;
}
declare const RawWebView: React.ForwardRefExoticComponent<Omit<Props, "ref"> & React.RefAttributes<object>>;
export declare function resolveWebView(useExpoDOMWebView: boolean): React.ForwardRefExoticComponent<RawWebViewProps>;
export default RawWebView;
//# sourceMappingURL=webview-wrapper.d.ts.map

1
node_modules/expo/build/dom/webview-wrapper.d.ts.map generated vendored Normal file
View File

@@ -0,0 +1 @@
{"version":3,"file":"webview-wrapper.d.ts","sourceRoot":"","sources":["../../src/dom/webview-wrapper.tsx"],"names":[],"mappings":"AAKA,OAAO,KAAK,MAAM,OAAO,CAAC;AAI1B,OAAO,EAAE,gBAAgB,EAAE,MAAM,sBAAsB,CAAC;AAWxD,OAAO,cAAc,MAAM,0BAA0B,CAAC;AACtD,OAAO,SAAS,MAAM,qBAAqB,CAAC;AAG5C,KAAK,eAAe,GAAG,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,OAAO,cAAc,EAAE,SAAS,CAAC,CAAC,GACpF,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,OAAO,SAAS,EAAE,SAAS,CAAC,CAAC,CAAC;AAE7D,UAAU,KAAK;IACb,QAAQ,CAAC,EAAE,GAAG,CAAC;IACf,GAAG,CAAC,EAAE,gBAAgB,CAAC;IACvB,QAAQ,EAAE,MAAM,CAAC;IACjB,GAAG,EAAE,KAAK,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACvB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAAC;CAC7B;AAED,QAAA,MAAM,UAAU,mFAmMd,CAAC;AAiBH,wBAAgB,cAAc,CAC5B,iBAAiB,EAAE,OAAO,GACzB,KAAK,CAAC,yBAAyB,CAAC,eAAe,CAAC,CASlD;AAED,eAAe,UAAU,CAAC"}

View File

@@ -0,0 +1,6 @@
/**
* A re-export of `@expo/dom-webview` that supports optional dependency.
*/
declare let module: undefined | typeof import('@expo/dom-webview').WebView;
export default module;
//# sourceMappingURL=ExpoDOMWebView.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"ExpoDOMWebView.d.ts","sourceRoot":"","sources":["../../../src/dom/webview/ExpoDOMWebView.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,QAAA,IAAI,MAAM,EAAE,SAAS,GAAG,cAAc,mBAAmB,EAAE,OAAO,CAAC;AAKnE,eAAe,MAAM,CAAC"}

7
node_modules/expo/build/dom/webview/RNWebView.d.ts generated vendored Normal file
View File

@@ -0,0 +1,7 @@
/**
* A re-export of `react-native-webview` that supports optional dependency.
*/
declare let module: undefined | typeof import('react-native-webview').WebView;
export default module;
export type { WebView as RNWebView, WebViewProps as RNWebViewProps } from 'react-native-webview';
//# sourceMappingURL=RNWebView.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"RNWebView.d.ts","sourceRoot":"","sources":["../../../src/dom/webview/RNWebView.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,QAAA,IAAI,MAAM,EAAE,SAAS,GAAG,cAAc,sBAAsB,EAAE,OAAO,CAAC;AAKtE,eAAe,MAAM,CAAC;AAEtB,YAAY,EAAE,OAAO,IAAI,SAAS,EAAE,YAAY,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC"}

View File

@@ -0,0 +1,12 @@
import { type ViewProps } from 'react-native';
import { type DOMProps, type WebViewProps } from '../dom.types';
type UseDebugZeroHeightType = (dom?: DOMProps) => {
debugZeroHeightStyle: WebViewProps['containerStyle'] | undefined;
debugOnLayout: ViewProps['onLayout'];
};
/**
* Debug only hook to help identify zero height issues in the DOM component.
*/
export declare const useDebugZeroHeight: UseDebugZeroHeightType;
export {};
//# sourceMappingURL=useDebugZeroHeight.d.ts.map

View File

@@ -0,0 +1 @@
{"version":3,"file":"useDebugZeroHeight.d.ts","sourceRoot":"","sources":["../../../src/dom/webview/useDebugZeroHeight.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAE9C,OAAO,EAAE,KAAK,QAAQ,EAAE,KAAK,YAAY,EAAE,MAAM,cAAc,CAAC;AAEhE,KAAK,sBAAsB,GAAG,CAAC,GAAG,CAAC,EAAE,QAAQ,KAAK;IAChD,oBAAoB,EAAE,YAAY,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC;IACjE,aAAa,EAAE,SAAS,CAAC,UAAU,CAAC,CAAC;CACtC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,kBAAkB,EAAE,sBAgD3B,CAAC"}