react-native-screen-transitions 3.9.0-alpha.3 → 3.9.0-beta.0
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/commonjs/shared/components/boundary/portal/components/portal-boundary-host.js +31 -1
- package/lib/commonjs/shared/components/boundary/portal/components/portal-boundary-host.js.map +1 -1
- package/lib/commonjs/shared/components/boundary/portal/components/portal.js +7 -43
- package/lib/commonjs/shared/components/boundary/portal/components/portal.js.map +1 -1
- package/lib/commonjs/shared/components/boundary/portal/hooks/use-placeholder-styles.js +57 -0
- package/lib/commonjs/shared/components/boundary/portal/hooks/use-placeholder-styles.js.map +1 -0
- package/lib/commonjs/shared/components/boundary/portal/utils/offset-style.js +4 -3
- package/lib/commonjs/shared/components/boundary/portal/utils/offset-style.js.map +1 -1
- package/lib/commonjs/shared/components/masked-view.js +5 -0
- package/lib/commonjs/shared/components/masked-view.js.map +1 -1
- package/lib/commonjs/shared/components/screen-container/layers/backdrop.js +18 -8
- package/lib/commonjs/shared/components/screen-container/layers/backdrop.js.map +1 -1
- package/lib/commonjs/shared/components/screen-container/layers/content.js +34 -16
- package/lib/commonjs/shared/components/screen-container/layers/content.js.map +1 -1
- package/lib/commonjs/shared/components/screen-container/layers/render-component.js +10 -0
- package/lib/commonjs/shared/components/screen-container/layers/render-component.js.map +1 -0
- package/lib/commonjs/shared/components/screen-container/layers/surface-container.js +5 -3
- package/lib/commonjs/shared/components/screen-container/layers/surface-container.js.map +1 -1
- package/lib/commonjs/shared/index.js +4 -0
- package/lib/commonjs/shared/index.js.map +1 -1
- package/lib/commonjs/shared/providers/register-bounds.provider.js +6 -0
- package/lib/commonjs/shared/providers/register-bounds.provider.js.map +1 -1
- package/lib/module/shared/components/boundary/portal/components/portal-boundary-host.js +31 -1
- package/lib/module/shared/components/boundary/portal/components/portal-boundary-host.js.map +1 -1
- package/lib/module/shared/components/boundary/portal/components/portal.js +8 -44
- package/lib/module/shared/components/boundary/portal/components/portal.js.map +1 -1
- package/lib/module/shared/components/boundary/portal/hooks/use-placeholder-styles.js +52 -0
- package/lib/module/shared/components/boundary/portal/hooks/use-placeholder-styles.js.map +1 -0
- package/lib/module/shared/components/boundary/portal/utils/offset-style.js +4 -3
- package/lib/module/shared/components/boundary/portal/utils/offset-style.js.map +1 -1
- package/lib/module/shared/components/masked-view.js +5 -0
- package/lib/module/shared/components/masked-view.js.map +1 -1
- package/lib/module/shared/components/screen-container/layers/backdrop.js +19 -9
- package/lib/module/shared/components/screen-container/layers/backdrop.js.map +1 -1
- package/lib/module/shared/components/screen-container/layers/content.js +35 -17
- package/lib/module/shared/components/screen-container/layers/content.js.map +1 -1
- package/lib/module/shared/components/screen-container/layers/render-component.js +6 -0
- package/lib/module/shared/components/screen-container/layers/render-component.js.map +1 -0
- package/lib/module/shared/components/screen-container/layers/surface-container.js +5 -3
- package/lib/module/shared/components/screen-container/layers/surface-container.js.map +1 -1
- package/lib/module/shared/index.js +4 -0
- package/lib/module/shared/index.js.map +1 -1
- package/lib/module/shared/providers/register-bounds.provider.js +6 -0
- package/lib/module/shared/providers/register-bounds.provider.js.map +1 -1
- package/lib/typescript/component-stack/types.d.ts +26 -0
- package/lib/typescript/component-stack/types.d.ts.map +1 -1
- package/lib/typescript/shared/components/boundary/portal/components/portal-boundary-host.d.ts.map +1 -1
- package/lib/typescript/shared/components/boundary/portal/components/portal.d.ts.map +1 -1
- package/lib/typescript/shared/components/boundary/portal/hooks/use-placeholder-styles.d.ts +17 -0
- package/lib/typescript/shared/components/boundary/portal/hooks/use-placeholder-styles.d.ts.map +1 -0
- package/lib/typescript/shared/components/boundary/portal/utils/offset-style.d.ts +10 -1
- package/lib/typescript/shared/components/boundary/portal/utils/offset-style.d.ts.map +1 -1
- package/lib/typescript/shared/components/masked-view.d.ts +4 -0
- package/lib/typescript/shared/components/masked-view.d.ts.map +1 -1
- package/lib/typescript/shared/components/screen-container/layers/backdrop.d.ts.map +1 -1
- package/lib/typescript/shared/components/screen-container/layers/content.d.ts.map +1 -1
- package/lib/typescript/shared/components/screen-container/layers/render-component.d.ts +3 -0
- package/lib/typescript/shared/components/screen-container/layers/render-component.d.ts.map +1 -0
- package/lib/typescript/shared/components/screen-container/layers/surface-container.d.ts.map +1 -1
- package/lib/typescript/shared/index.d.ts +37 -33
- package/lib/typescript/shared/index.d.ts.map +1 -1
- package/lib/typescript/shared/providers/register-bounds.provider.d.ts.map +1 -1
- package/lib/typescript/shared/providers/screen/styles/hooks/use-maybe-block-visibility.d.ts +1 -1
- package/lib/typescript/shared/types/index.d.ts +1 -1
- package/lib/typescript/shared/types/index.d.ts.map +1 -1
- package/lib/typescript/shared/types/screen.types.d.ts +99 -4
- package/lib/typescript/shared/types/screen.types.d.ts.map +1 -1
- package/lib/typescript/shared/utils/bounds/types/options.d.ts +2 -0
- package/lib/typescript/shared/utils/bounds/types/options.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/component-stack/types.ts +26 -0
- package/src/shared/components/boundary/portal/components/portal-boundary-host.tsx +51 -0
- package/src/shared/components/boundary/portal/components/portal.tsx +7 -39
- package/src/shared/components/boundary/portal/hooks/use-placeholder-styles.ts +55 -0
- package/src/shared/components/boundary/portal/utils/offset-style.ts +9 -2
- package/src/shared/components/masked-view.tsx +4 -0
- package/src/shared/components/screen-container/layers/backdrop.tsx +31 -10
- package/src/shared/components/screen-container/layers/content.tsx +61 -22
- package/src/shared/components/screen-container/layers/render-component.ts +9 -0
- package/src/shared/components/screen-container/layers/surface-container.tsx +5 -4
- package/src/shared/index.ts +9 -0
- package/src/shared/providers/register-bounds.provider.tsx +5 -0
- package/src/shared/types/index.ts +5 -0
- package/src/shared/types/screen.types.ts +111 -4
- package/src/shared/utils/bounds/types/options.ts +2 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["usesLayerRenderProps","component","prototype","isReactComponent"],"sourceRoot":"../../../../../../src","sources":["shared/components/screen-container/layers/render-component.ts"],"mappings":";;AAEA,OAAO,SAASA,oBAAoBA,CACnCC,SAA6B,EACyB;EACtD,OACC,OAAOA,SAAS,KAAK,UAAU,IAAI,CAACA,SAAS,CAACC,SAAS,EAAEC,gBAAgB;AAE3E","ignoreList":[]}
|
|
@@ -13,10 +13,12 @@ export const SurfaceContainer = /*#__PURE__*/memo(({
|
|
|
13
13
|
const {
|
|
14
14
|
current
|
|
15
15
|
} = useDescriptors();
|
|
16
|
-
|
|
16
|
+
|
|
17
|
+
/** @deprecated Use `contentComponent` instead. */
|
|
18
|
+
const DeprecatedSurfaceComponent = current.options.surfaceComponent;
|
|
17
19
|
const AnimatedSurfaceComponent = useMemo(() => {
|
|
18
|
-
return
|
|
19
|
-
}, [
|
|
20
|
+
return DeprecatedSurfaceComponent ? Animated.createAnimatedComponent(DeprecatedSurfaceComponent) : null;
|
|
21
|
+
}, [DeprecatedSurfaceComponent]);
|
|
20
22
|
if (!AnimatedSurfaceComponent) return children;
|
|
21
23
|
return /*#__PURE__*/_jsx(AnimatedSurface, {
|
|
22
24
|
SurfaceComponent: AnimatedSurfaceComponent,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["memo","useMemo","StyleSheet","Animated","useDescriptors","useSlotProps","useSlotStyles","jsx","_jsx","SurfaceContainer","children","pointerEvents","current","
|
|
1
|
+
{"version":3,"names":["memo","useMemo","StyleSheet","Animated","useDescriptors","useSlotProps","useSlotStyles","jsx","_jsx","SurfaceContainer","children","pointerEvents","current","DeprecatedSurfaceComponent","options","surfaceComponent","AnimatedSurfaceComponent","createAnimatedComponent","AnimatedSurface","SurfaceComponent","animatedSurfaceStyle","animatedSurfaceProps","style","styles","surface","animatedProps","create","flex"],"sourceRoot":"../../../../../../src","sources":["shared/components/screen-container/layers/surface-container.tsx"],"mappings":";;AAAA,SAA6BA,IAAI,EAAEC,OAAO,QAAQ,OAAO;AACzD,SAASC,UAAU,QAAwB,cAAc;AACzD,OAAOC,QAAQ,MAAM,yBAAyB;AAC9C,SAASC,cAAc,QAAQ,uCAAuC;AACtE,SAASC,YAAY,EAAEC,aAAa,QAAQ,kCAAkC;AAAC,SAAAC,GAAA,IAAAC,IAAA;AAO/E,OAAO,MAAMC,gBAAgB,gBAAGT,IAAI,CAAC,CAAC;EAAEU,QAAQ;EAAEC;AAAqB,CAAC,KAAK;EAC5E,MAAM;IAAEC;EAAQ,CAAC,GAAGR,cAAc,CAAC,CAAC;;EAEpC;EACA,MAAMS,0BAA0B,GAAGD,OAAO,CAACE,OAAO,CAACC,gBAAgB;EAEnE,MAAMC,wBAAwB,GAAGf,OAAO,CAA4B,MAAM;IACzE,OAAOY,0BAA0B,GAC9BV,QAAQ,CAACc,uBAAuB,CAACJ,0BAA0B,CAAC,GAC5D,IAAI;EACR,CAAC,EAAE,CAACA,0BAA0B,CAAC,CAAC;EAEhC,IAAI,CAACG,wBAAwB,EAAE,OAAON,QAAQ;EAE9C,oBACCF,IAAA,CAACU,eAAe;IACfC,gBAAgB,EAAEH,wBAAyB;IAC3CL,aAAa,EAAEA,aAAc;IAAAD,QAAA,EAE5BA;EAAQ,CACO,CAAC;AAEpB,CAAC,CAAC;AAQF,MAAMQ,eAAe,gBAAGlB,IAAI,CAC3B,CAAC;EAAEU,QAAQ;EAAEC,aAAa;EAAEQ;AAAuC,CAAC,KAAK;EACxE,MAAMC,oBAAoB,GAAGd,aAAa,CAAC,SAAS,CAAC;EACrD,MAAMe,oBAAoB,GAAGhB,YAAY,CAAC,SAAS,CAAC;EAEpD,oBACCG,IAAA,CAACW,gBAAgB;IAChBG,KAAK,EAAE,CAACC,MAAM,CAACC,OAAO,EAAEJ,oBAAoB,CAAE;IAC9CK,aAAa,EAAEJ,oBAAqB;IACpCV,aAAa,EAAEA,aAAc;IAAAD,QAAA,EAE5BA;EAAQ,CACQ,CAAC;AAErB,CACD,CAAC;AAED,MAAMa,MAAM,GAAGrB,UAAU,CAACwB,MAAM,CAAC;EAChCF,OAAO,EAAE;IACRG,IAAI,EAAE;EACP;AACD,CAAC,CAAC","ignoreList":[]}
|
|
@@ -19,6 +19,10 @@ export default {
|
|
|
19
19
|
FlatList: createTransitionAwareComponent(FlatList, {
|
|
20
20
|
isScrollable: true
|
|
21
21
|
}),
|
|
22
|
+
/**
|
|
23
|
+
* @deprecated Use `navigationMaskEnabled` with the navigation mask style IDs
|
|
24
|
+
* instead.
|
|
25
|
+
*/
|
|
22
26
|
MaskedView: MaskedView,
|
|
23
27
|
Presets,
|
|
24
28
|
Specs
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["FlatList","Pressable","ScrollView","View","withScreenTransitions","Boundary","createBoundaryComponent","createTransitionAwareComponent","MaskedView","Presets","Specs","isScrollable","snapTo","NAVIGATION_MASK_CONTAINER_STYLE_ID","NAVIGATION_MASK_ELEMENT_STYLE_ID","TRANSFORM_RESET","useHistory","useScreenState","useScreenAnimation","useScreenGesture"],"sourceRoot":"../../../src","sources":["shared/index.ts"],"mappings":";;AAAA,SAASA,QAAQ,EAAEC,SAAS,EAAEC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AACpE,SAASC,qBAAqB,QAAQ,oCAAoC;AAC1E,SAASC,QAAQ,EAAEC,uBAAuB,QAAQ,uBAAuB;AACzE,SAASC,8BAA8B,QAAQ,gDAAgD;AAC/F,OAAOC,UAAU,MAAM,0BAA0B;AACjD,SAASC,OAAO,EAAEC,KAAK,QAAQ,WAAW;AAE1C,eAAe;EACdH,8BAA8B;EAC9BD,uBAAuB;EACvBF,qBAAqB;EACrBC,QAAQ;EACRF,IAAI,EAAEI,8BAA8B,CAACJ,IAAI,CAAC;EAC1CF,SAAS,EAAEM,8BAA8B,CAACN,SAAS,CAAC;EACpDC,UAAU,EAAEK,8BAA8B,CAACL,UAAU,EAAE;IACtDS,YAAY,EAAE;EACf,CAAC,CAAC;EACFX,QAAQ,EAAEO,8BAA8B,CAACP,QAAQ,EAAE;IAClDW,YAAY,EAAE;EACf,CAAC,CAAC;
|
|
1
|
+
{"version":3,"names":["FlatList","Pressable","ScrollView","View","withScreenTransitions","Boundary","createBoundaryComponent","createTransitionAwareComponent","MaskedView","Presets","Specs","isScrollable","snapTo","NAVIGATION_MASK_CONTAINER_STYLE_ID","NAVIGATION_MASK_ELEMENT_STYLE_ID","TRANSFORM_RESET","useHistory","useScreenState","useScreenAnimation","useScreenGesture"],"sourceRoot":"../../../src","sources":["shared/index.ts"],"mappings":";;AAAA,SAASA,QAAQ,EAAEC,SAAS,EAAEC,UAAU,EAAEC,IAAI,QAAQ,cAAc;AACpE,SAASC,qBAAqB,QAAQ,oCAAoC;AAC1E,SAASC,QAAQ,EAAEC,uBAAuB,QAAQ,uBAAuB;AACzE,SAASC,8BAA8B,QAAQ,gDAAgD;AAC/F,OAAOC,UAAU,MAAM,0BAA0B;AACjD,SAASC,OAAO,EAAEC,KAAK,QAAQ,WAAW;AAE1C,eAAe;EACdH,8BAA8B;EAC9BD,uBAAuB;EACvBF,qBAAqB;EACrBC,QAAQ;EACRF,IAAI,EAAEI,8BAA8B,CAACJ,IAAI,CAAC;EAC1CF,SAAS,EAAEM,8BAA8B,CAACN,SAAS,CAAC;EACpDC,UAAU,EAAEK,8BAA8B,CAACL,UAAU,EAAE;IACtDS,YAAY,EAAE;EACf,CAAC,CAAC;EACFX,QAAQ,EAAEO,8BAA8B,CAACP,QAAQ,EAAE;IAClDW,YAAY,EAAE;EACf,CAAC,CAAC;EACF;AACD;AACA;AACA;EACCH,UAAU,EAAEA,UAAU;EACtBC,OAAO;EACPC;AACD,CAAC;AAGD,SAASN,qBAAqB,QAAQ,oCAAoC;AAC1E,SAASQ,MAAM,QAAQ,qBAAqB;AAC5C,SACCC,kCAAkC,EAClCC,gCAAgC,EAChCC,eAAe,QACT,aAAa;AACpB,SAASC,UAAU,QAAQ,gCAAgC;AAC3D,SAECC,cAAc,QACR,qCAAqC;AAC5C,SAECC,kBAAkB,QACZ,8BAA8B;AACrC,SAECC,gBAAgB,QACV,sDAAsD","ignoreList":[]}
|
|
@@ -13,6 +13,12 @@ import { prepareStyleForBounds } from "../utils/bounds/helpers/styles/styles";
|
|
|
13
13
|
import createProvider from "../utils/create-provider";
|
|
14
14
|
import { applyMeasuredBoundsWrites } from "./helpers/measured-bounds-writes";
|
|
15
15
|
import { useDescriptorDerivations, useDescriptors } from "./screen/descriptors";
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated Internal legacy provider for the old shared-bound-tag registration
|
|
19
|
+
* path. Do not build new boundary behavior here; use the Transition.Boundary
|
|
20
|
+
* measurement pipeline instead.
|
|
21
|
+
*/
|
|
16
22
|
import { Fragment as _Fragment, jsx as _jsx } from "react/jsx-runtime";
|
|
17
23
|
const getRouteParamId = route => {
|
|
18
24
|
const params = route?.params;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["useFocusEffect","useCallback","useMemo","useRef","measure","runOnJS","runOnUI","useAnimatedReaction","useSharedValue","useStableCallback","useStableCallbackValue","AnimationStore","createPendingPairKey","createScreenPairKey","getEntry","getDestination","getSource","prepareStyleForBounds","createProvider","applyMeasuredBoundsWrites","useDescriptorDerivations","useDescriptors","Fragment","_Fragment","jsx","_jsx","getRouteParamId","route","params","rawId","id","matchesSelectionTag","tag","selectedId","endsWith","useInitialLayoutHandler","sharedBoundTag","currentScreenKey","ancestorKeys","maybeMeasureAndStore","isAnimating","getValue","ancestorAnimations","map","key","hasMeasuredOnLayout","get","isAnyAnimating","i","length","shouldSetSource","shouldSetDestination","set","useBlurMeasurement","current","enabled","selectedRouteId","hasCapturedSource","ancestorClosing","maybeMeasureOnBlur","closing","markSourceCaptured","useParentSyncReaction","parentContext","updateSignal","value","undefined","useRegisterBoundsContext","registerBoundsBundle","guarded","style","onPress","animatedRef","children","next","previousScreenKey","selectedNextRouteId","ownSignal","preparedStyles","emitUpdate","isRoot","sourcePairKey","destinationPairKey","pendingSourcePairKey","existing","bounds","entryTag","linkId","measured","linkWrite","type","pairKey","hasPendingSource","hasSource","hasDestination","wantsSetSource","wantsSetDestination","wantsSnapshotOnly","canSetSource","canSetDestination","canSnapshotOnly","handleInitialLayout","captureActiveOnPress","RegisterBoundsProvider"],"sourceRoot":"../../../../src","sources":["shared/providers/register-bounds.provider.tsx"],"mappings":";;AAAA,SAASA,cAAc,QAAQ,0BAA0B;AACzD,SAAyBC,WAAW,EAAEC,OAAO,EAAEC,MAAM,QAAQ,OAAO;AAEpE,SAECC,OAAO,EACPC,OAAO,EACPC,OAAO,EAEPC,mBAAmB,EACnBC,cAAc,QACR,yBAAyB;AAEhC,OAAOC,iBAAiB,MAAM,8BAA8B;AAC5D,OAAOC,sBAAsB,MAAM,oCAAoC;AACvE,SAASC,cAAc,QAAQ,2BAA2B;AAC1D,SACCC,oBAAoB,EACpBC,mBAAmB,QACb,6CAA6C;AACpD,SAASC,QAAQ,QAAQ,oCAAoC;AAC7D,SAASC,cAAc,EAAEC,SAAS,QAAQ,kCAAkC;AAC5E,SAASC,qBAAqB,QAAQ,uCAAuC;AAC7E,OAAOC,cAAc,MAAM,0BAA0B;AACrD,SAASC,yBAAyB,QAAQ,kCAAkC;AAC5E,SAASC,wBAAwB,EAAEC,cAAc,QAAQ,sBAAsB;
|
|
1
|
+
{"version":3,"names":["useFocusEffect","useCallback","useMemo","useRef","measure","runOnJS","runOnUI","useAnimatedReaction","useSharedValue","useStableCallback","useStableCallbackValue","AnimationStore","createPendingPairKey","createScreenPairKey","getEntry","getDestination","getSource","prepareStyleForBounds","createProvider","applyMeasuredBoundsWrites","useDescriptorDerivations","useDescriptors","Fragment","_Fragment","jsx","_jsx","getRouteParamId","route","params","rawId","id","matchesSelectionTag","tag","selectedId","endsWith","useInitialLayoutHandler","sharedBoundTag","currentScreenKey","ancestorKeys","maybeMeasureAndStore","isAnimating","getValue","ancestorAnimations","map","key","hasMeasuredOnLayout","get","isAnyAnimating","i","length","shouldSetSource","shouldSetDestination","set","useBlurMeasurement","current","enabled","selectedRouteId","hasCapturedSource","ancestorClosing","maybeMeasureOnBlur","closing","markSourceCaptured","useParentSyncReaction","parentContext","updateSignal","value","undefined","useRegisterBoundsContext","registerBoundsBundle","guarded","style","onPress","animatedRef","children","next","previousScreenKey","selectedNextRouteId","ownSignal","preparedStyles","emitUpdate","isRoot","sourcePairKey","destinationPairKey","pendingSourcePairKey","existing","bounds","entryTag","linkId","measured","linkWrite","type","pairKey","hasPendingSource","hasSource","hasDestination","wantsSetSource","wantsSetDestination","wantsSnapshotOnly","canSetSource","canSetDestination","canSnapshotOnly","handleInitialLayout","captureActiveOnPress","RegisterBoundsProvider"],"sourceRoot":"../../../../src","sources":["shared/providers/register-bounds.provider.tsx"],"mappings":";;AAAA,SAASA,cAAc,QAAQ,0BAA0B;AACzD,SAAyBC,WAAW,EAAEC,OAAO,EAAEC,MAAM,QAAQ,OAAO;AAEpE,SAECC,OAAO,EACPC,OAAO,EACPC,OAAO,EAEPC,mBAAmB,EACnBC,cAAc,QACR,yBAAyB;AAEhC,OAAOC,iBAAiB,MAAM,8BAA8B;AAC5D,OAAOC,sBAAsB,MAAM,oCAAoC;AACvE,SAASC,cAAc,QAAQ,2BAA2B;AAC1D,SACCC,oBAAoB,EACpBC,mBAAmB,QACb,6CAA6C;AACpD,SAASC,QAAQ,QAAQ,oCAAoC;AAC7D,SAASC,cAAc,EAAEC,SAAS,QAAQ,kCAAkC;AAC5E,SAASC,qBAAqB,QAAQ,uCAAuC;AAC7E,OAAOC,cAAc,MAAM,0BAA0B;AACrD,SAASC,yBAAyB,QAAQ,kCAAkC;AAC5E,SAASC,wBAAwB,EAAEC,cAAc,QAAQ,sBAAsB;;AAE/E;AACA;AACA;AACA;AACA;AAJA,SAAAC,QAAA,IAAAC,SAAA,EAAAC,GAAA,IAAAC,IAAA;AA6BA,MAAMC,eAAe,GACpBC,KAAsC,IACnB;EACnB,MAAMC,MAAM,GAAGD,KAAK,EAAEC,MAA6C;EACnE,MAAMC,KAAK,GAAGD,MAAM,EAAEE,EAAE;EACxB,OAAO,OAAOD,KAAK,KAAK,QAAQ,GAAGA,KAAK,GAAG,IAAI;AAChD,CAAC;AAED,MAAME,mBAAmB,GAAGA,CAC3BC,GAAuB,EACvBC,UAAyB,KACZ;EACb,SAAS;;EACT,IAAI,CAACD,GAAG,IAAI,CAACC,UAAU,EAAE,OAAO,KAAK;EACrC,IAAID,GAAG,KAAKC,UAAU,EAAE,OAAO,IAAI;EACnC,IAAID,GAAG,CAACE,QAAQ,CAAC,IAAID,UAAU,EAAE,CAAC,EAAE,OAAO,IAAI;EAC/C,IAAID,GAAG,CAACE,QAAQ,CAAC,IAAID,UAAU,EAAE,CAAC,EAAE,OAAO,IAAI;EAC/C,OAAO,KAAK;AACb,CAAC;;AAED;AACA;AACA;AACA;AACA,MAAME,uBAAuB,GAAIP,MAKhC,IAAK;EACL,MAAM;IACLQ,cAAc;IACdC,gBAAgB;IAChBC,YAAY;IACZC;EACD,CAAC,GAAGX,MAAM;EAEV,MAAMY,WAAW,GAAG7B,cAAc,CAAC8B,QAAQ,CAC1CJ,gBAAgB,EAChB,mBACD,CAAC;;EAED;EACA,MAAMK,kBAAkB,GAAGJ,YAAY,CAACK,GAAG,CAAEC,GAAG,IAC/CjC,cAAc,CAAC8B,QAAQ,CAACG,GAAG,EAAE,mBAAmB,CACjD,CAAC;EAED,MAAMC,mBAAmB,GAAGrC,cAAc,CAAC,KAAK,CAAC;EAEjD,OAAOP,WAAW,CAAC,MAAM;IACxB,SAAS;;IACT,IAAI,CAACmC,cAAc,IAAIS,mBAAmB,CAACC,GAAG,CAAC,CAAC,EAAE;;IAElD;IACA,IAAIC,cAAc,GAAGP,WAAW,CAACM,GAAG,CAAC,CAAC;IACtC,KAAK,IAAIE,CAAC,GAAG,CAAC,EAAEA,CAAC,GAAGN,kBAAkB,CAACO,MAAM,EAAED,CAAC,EAAE,EAAE;MACnD,IAAIN,kBAAkB,CAACM,CAAC,CAAC,CAACF,GAAG,CAAC,CAAC,EAAE;QAChCC,cAAc,GAAG,CAAC;QAClB;MACD;IACD;IAEA,IAAI,CAACA,cAAc,EAAE;IAErBR,oBAAoB,CAAC;MACpBW,eAAe,EAAE,KAAK;MACtBC,oBAAoB,EAAE;IACvB,CAAC,CAAC;IAEFN,mBAAmB,CAACO,GAAG,CAAC,IAAI,CAAC;EAC9B,CAAC,EAAE,CACFhB,cAAc,EACdS,mBAAmB,EACnBL,WAAW,EACXE,kBAAkB,EAClBH,oBAAoB,CACpB,CAAC;AACH,CAAC;;AAED;AACA;AACA;AACA;AACA,MAAMc,kBAAkB,GAAIzB,MAM3B,IAAK;EACL,MAAM;IAAE0B;EAAQ,CAAC,GAAGjC,cAAc,CAAC,CAAC;EACpC,MAAM;IACLkC,OAAO;IACPnB,cAAc;IACdoB,eAAe;IACflB,YAAY;IACZC;EACD,CAAC,GAAGX,MAAM;EACV,MAAM6B,iBAAiB,GAAGtD,MAAM,CAAC,KAAK,CAAC;EAEvC,MAAMuD,eAAe,GAAG,CAACJ,OAAO,CAAC3B,KAAK,CAACiB,GAAG,EAAE,GAAGN,YAAY,CAAC,CAACK,GAAG,CAAEC,GAAG,IACpEjC,cAAc,CAAC8B,QAAQ,CAACG,GAAG,EAAE,SAAS,CACvC,CAAC;EAED,MAAMe,kBAAkB,GAAGjD,sBAAsB,CAAC,MAAM;IACvD,SAAS;;IACT,IAAI,CAAC6C,OAAO,EAAE;IACd,IAAI,CAACxB,mBAAmB,CAACK,cAAc,EAAEoB,eAAe,CAAC,EAAE;;IAE3D;IACA,KAAK,MAAMI,OAAO,IAAIF,eAAe,EAAE;MACtC,IAAIE,OAAO,CAACd,GAAG,CAAC,CAAC,EAAE;IACpB;IAEAP,oBAAoB,CAAC;MAAEW,eAAe,EAAE;IAAK,CAAC,CAAC;EAChD,CAAC,CAAC;EAEFlD,cAAc,CACbC,WAAW,CAAC,MAAM;IACjBwD,iBAAiB,CAACH,OAAO,GAAG,KAAK;IAEjC,IAAI,CAACC,OAAO,EAAE;MACb;IACD;IAEA,OAAO,MAAM;MACZ,IAAI,CAACnB,cAAc,IAAIqB,iBAAiB,CAACH,OAAO,EAAE;MAClDhD,OAAO,CAACqD,kBAAkB,CAAC,CAAC,CAAC;IAC9B,CAAC;EACF,CAAC,EAAE,CAACJ,OAAO,EAAEnB,cAAc,EAAEuB,kBAAkB,CAAC,CACjD,CAAC;EAED,OAAO;IACNE,kBAAkB,EAAEA,CAAA,KAAM;MACzBJ,iBAAiB,CAACH,OAAO,GAAG,IAAI;IACjC;EACD,CAAC;AACF,CAAC;;AAED;AACA;AACA;AACA,MAAMQ,qBAAqB,GAAIlC,MAG9B,IAAK;EACL,MAAM;IAAEmC,aAAa;IAAExB;EAAqB,CAAC,GAAGX,MAAM;EAEtDrB,mBAAmB,CAClB,MAAMwD,aAAa,EAAEC,YAAY,CAAClB,GAAG,CAAC,CAAC,EACtCmB,KAAK,IAAK;IACV,SAAS;;IACT,IAAIA,KAAK,KAAK,CAAC,IAAIA,KAAK,KAAKC,SAAS,EAAE;IACxC3B,oBAAoB,CAAC,CAAC;EACvB,CACD,CAAC;AACF,CAAC;AAED,IAAI4B,wBAAiE;AAErE,MAAMC,oBAAoB,GAAGlD,cAAc,CAAC,gBAAgB,EAAE;EAC7DmD,OAAO,EAAE;AACV,CAAC,CAAC,CACD,CAAC;EAAEC,KAAK;EAAEC,OAAO;EAAEnC,cAAc;EAAEoC,WAAW;EAAEC;AAAS,CAAC,KAAK;EAC9D,MAAM;IAAEnB,OAAO;IAAEoB;EAAK,CAAC,GAAGrD,cAAc,CAAC,CAAC;EAC1C,MAAM;IAAEiB,YAAY;IAAEqC;EAAkB,CAAC,GAAGvD,wBAAwB,CAAC,CAAC;EACtE,MAAMiB,gBAAgB,GAAGiB,OAAO,CAAC3B,KAAK,CAACiB,GAAG;EAC1C,MAAMgC,mBAAmB,GAAGlD,eAAe,CAACgD,IAAI,EAAE/C,KAAK,CAAC;;EAExD;EACA,MAAMoC,aAAa,GAAGI,wBAAwB,CAAC,CAAC;EAEhD,MAAMU,SAAS,GAAGrE,cAAc,CAAC,CAAC,CAAC;EACnC,MAAMwD,YAAiC,GACtCD,aAAa,EAAEC,YAAY,IAAIa,SAAS;EAEzC,MAAMrC,WAAW,GAAG7B,cAAc,CAAC8B,QAAQ,CAC1CJ,gBAAgB,EAChB,mBACD,CAAC;EACD,MAAMyC,cAAc,GAAG5E,OAAO,CAAC,MAAMe,qBAAqB,CAACqD,KAAK,CAAC,EAAE,CAACA,KAAK,CAAC,CAAC;EAE3E,MAAMS,UAAU,GAAGrE,sBAAsB,CAAC,MAAM;IAC/C,SAAS;;IACT,MAAMsE,MAAM,GAAG,CAACjB,aAAa;IAC7B,IAAIiB,MAAM,EAAEhB,YAAY,CAACZ,GAAG,CAACY,YAAY,CAAClB,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;EACrD,CAAC,CAAC;EAEF,MAAMP,oBAAoB,GAAG7B,sBAAsB,CAClD,CAAC;IACA6D,OAAO;IACPrB,eAAe;IACfC;EAC2B,CAAC,GAAG,CAAC,CAAC,KAAK;IACtC,SAAS;;IACT,IAAI,CAACf,cAAc,EAAE;MACpB,IAAImC,OAAO,EAAElE,OAAO,CAACkE,OAAO,CAAC,CAAC,CAAC;MAC/B;IACD;IAEA,MAAMU,aAAa,GAAGrE,oBAAoB,CAACyB,gBAAgB,CAAC;IAC5D,MAAM6C,kBAAkB,GAAGP,iBAAiB,GACzC9D,mBAAmB,CAAC8D,iBAAiB,EAAEtC,gBAAgB,CAAC,GACxD6B,SAAS;IACZ,MAAMiB,oBAAoB,GAAGR,iBAAiB,GAC3C/D,oBAAoB,CAAC+D,iBAAiB,CAAC,GACvCT,SAAS;IAEZ,IAAIhB,eAAe,IAAIV,WAAW,CAACM,GAAG,CAAC,CAAC,EAAE;MACzC,MAAMsC,QAAQ,GAAGtE,QAAQ,CAACsB,cAAc,EAAEC,gBAAgB,CAAC;MAC3D,IAAI+C,QAAQ,EAAEC,MAAM,EAAE;QACrBlE,yBAAyB,CAAC;UACzBmE,QAAQ,EAAElD,cAAc;UACxBmD,MAAM,EAAEnD,cAAc;UACtBC,gBAAgB;UAChBmD,QAAQ,EAAEJ,QAAQ,CAACC,MAAM;UACzBP,cAAc;UACdW,SAAS,EAAE;YACVC,IAAI,EAAE,QAAQ;YACdC,OAAO,EAAEV;UACV;QACD,CAAC,CAAC;MACH;MAEA,IAAIV,OAAO,EAAElE,OAAO,CAACkE,OAAO,CAAC,CAAC,CAAC;MAC/B;IACD;IAEA,MAAMqB,gBAAgB,GAAGT,oBAAoB,GAC1CnE,SAAS,CAACmE,oBAAoB,EAAE/C,cAAc,CAAC,KAAK,IAAI,GACxD,KAAK;IACR,MAAMyD,SAAS,GACd7E,SAAS,CAACiE,aAAa,EAAE7C,cAAc,CAAC,KAAK,IAAI,KAChD8C,kBAAkB,GAChBlE,SAAS,CAACkE,kBAAkB,EAAE9C,cAAc,CAAC,KAAK,IAAI,GACtD,KAAK,CAAC;IACV,MAAM0D,cAAc,GAAGZ,kBAAkB,GACtCnE,cAAc,CAACmE,kBAAkB,EAAE9C,cAAc,CAAC,KAAK,IAAI,GAC3D,KAAK;IAER,MAAM2D,cAAc,GAAG,CAAC,CAAC7C,eAAe;IACxC,MAAM8C,mBAAmB,GAAG,CAAC,CAAC7C,oBAAoB;IAClD,MAAM8C,iBAAiB,GAAG,CAACF,cAAc,IAAI,CAACC,mBAAmB;IAEjE,MAAME,YAAY,GAAGH,cAAc;IACnC,MAAMI,iBAAiB,GACtBH,mBAAmB,KAAKJ,gBAAgB,IAAIC,SAAS,CAAC;IACvD,MAAMO,eAAe,GACpBH,iBAAiB,KAChBL,gBAAgB,IAAIC,SAAS,IAAIC,cAAc,CAAC;IAElD,IAAI,CAACI,YAAY,IAAI,CAACC,iBAAiB,IAAI,CAACC,eAAe,EAAE;MAC5D,IAAI7B,OAAO,EAAElE,OAAO,CAACkE,OAAO,CAAC,CAAC,CAAC;MAC/B;IACD;IAEA,MAAMiB,QAAQ,GAAGpF,OAAO,CAACoE,WAAW,CAAC;IACrC,IAAI,CAACgB,QAAQ,EAAE;MACd,IAAIjB,OAAO,EAAElE,OAAO,CAACkE,OAAO,CAAC,CAAC,CAAC;MAC/B;IACD;IAEAQ,UAAU,CAAC,CAAC;IAEZ5D,yBAAyB,CAAC;MACzBmE,QAAQ,EAAElD,cAAc;MACxBmD,MAAM,EAAEnD,cAAc;MACtBC,gBAAgB;MAChBmD,QAAQ;MACRV,cAAc;MACdW,SAAS,EAAES,YAAY,GACpB;QACAR,IAAI,EAAE,QAAQ;QACdC,OAAO,EAAEV;MACV,CAAC,GACAkB,iBAAiB,IAAIjB,kBAAkB,GACtC;QACAQ,IAAI,EAAE,aAAa;QACnBC,OAAO,EAAET;MACV,CAAC,GACAhB;IACL,CAAC,CAAC;IAEF,IAAIgC,YAAY,IAAIC,iBAAiB,IAAIjB,kBAAkB,EAAE;MAC5D/D,yBAAyB,CAAC;QACzBmE,QAAQ,EAAElD,cAAc;QACxBmD,MAAM,EAAEnD,cAAc;QACtBC,gBAAgB;QAChBmD,QAAQ;QACRV,cAAc;QACdW,SAAS,EAAE;UACVC,IAAI,EAAE,aAAa;UACnBC,OAAO,EAAET;QACV;MACD,CAAC,CAAC;IACH;IAEA,IAAIX,OAAO,EAAElE,OAAO,CAACkE,OAAO,CAAC,CAAC,CAAC;EAChC,CACD,CAAC;EAED,MAAM8B,mBAAmB,GAAGlE,uBAAuB,CAAC;IACnDC,cAAc;IACdC,gBAAgB;IAChBC,YAAY;IACZC;EACD,CAAC,CAAC;;EAEF;EACA,MAAM;IAAEsB;EAAmB,CAAC,GAAGR,kBAAkB,CAAC;IACjDE,OAAO,EAAE,CAACgB,OAAO;IACjBnC,cAAc;IACdoB,eAAe,EAAEoB,mBAAmB;IACpCrC,oBAAoB;IACpBD;EACD,CAAC,CAAC;EAEFwB,qBAAqB,CAAC;IAAEC,aAAa;IAAExB;EAAqB,CAAC,CAAC;EAE9D,MAAM+D,oBAAoB,GAAG7F,iBAAiB,CAAC,MAAM;IACpD,IAAI,CAAC2B,cAAc,EAAE;MACpBmC,OAAO,GAAG,CAAC;MACX;IACD;IACAjE,OAAO,CAACiC,oBAAoB,CAAC,CAAC;MAAEgC,OAAO;MAAErB,eAAe,EAAE;IAAK,CAAC,CAAC;IACjEW,kBAAkB,CAAC,CAAC;EACrB,CAAC,CAAC;EAEF,OAAO;IACNI,KAAK,EAAE;MAAED;IAAa,CAAC;IACvBS,QAAQ,eAAEhD,IAAA,CAAAF,SAAA;MAAAkD,QAAA,EAAGA,QAAQ,CAAC;QAAE4B,mBAAmB;QAAEC;MAAqB,CAAC;IAAC,CAAG;EACxE,CAAC;AACF,CACD,CAAC;;AAED;AACA;AACA;AACA;AACA;AACA;AACA;AACA,MAAMC,sBAAsB,GAAGnC,oBAAoB,CAACmC,sBAAsB;AAC1EpC,wBAAwB,GAAGC,oBAAoB,CAACD,wBAAwB;AAExE,SAASoC,sBAAsB","ignoreList":[]}
|
|
@@ -1,20 +1,37 @@
|
|
|
1
1
|
import type { DefaultNavigatorOptions, Descriptor, NavigationHelpers, NavigationProp, ParamListBase, RouteProp, StackActionHelpers, StackNavigationState, StackRouterOptions, Theme } from "@react-navigation/native";
|
|
2
2
|
import type { ScreenTransitionConfig } from "../shared";
|
|
3
3
|
import type { OverlayProps } from "../shared/types/overlay.types";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
6
|
+
*/
|
|
4
7
|
export type ComponentStackNavigationEventMap = {};
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
10
|
+
*/
|
|
5
11
|
export type ComponentStackNavigationProp<ParamList extends ParamListBase, RouteName extends keyof ParamList = string, NavigatorID extends string | undefined = undefined> = NavigationProp<ParamList, RouteName, NavigatorID, StackNavigationState<ParamList>, ComponentStackNavigationOptions, ComponentStackNavigationEventMap> & StackActionHelpers<ParamList>;
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
14
|
+
*/
|
|
6
15
|
export type ComponentStackScreenProps<ParamList extends ParamListBase, RouteName extends keyof ParamList = string, NavigatorID extends string | undefined = undefined> = {
|
|
7
16
|
navigation: ComponentStackNavigationProp<ParamList, RouteName, NavigatorID>;
|
|
8
17
|
route: RouteProp<ParamList, RouteName>;
|
|
9
18
|
};
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
21
|
+
*/
|
|
10
22
|
export type ComponentStackOptionsArgs<ParamList extends ParamListBase, RouteName extends keyof ParamList = keyof ParamList, NavigatorID extends string | undefined = undefined> = ComponentStackScreenProps<ParamList, RouteName, NavigatorID> & {
|
|
11
23
|
theme: Theme;
|
|
12
24
|
};
|
|
25
|
+
/**
|
|
26
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
27
|
+
*/
|
|
13
28
|
export type ComponentStackNavigationHelpers = NavigationHelpers<ParamListBase, ComponentStackNavigationEventMap>;
|
|
14
29
|
type ComponentStackNavigationConfig = {};
|
|
15
30
|
/**
|
|
16
31
|
* Props passed to overlay components in component-stack.
|
|
17
32
|
* Uses the shared OverlayProps type with component-stack's navigation type.
|
|
33
|
+
*
|
|
34
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
18
35
|
*/
|
|
19
36
|
export type ComponentStackOverlayProps = OverlayProps<ComponentStackNavigationProp<ParamListBase>>;
|
|
20
37
|
type ComponentStackScreenTransitionConfig = ScreenTransitionConfig & {
|
|
@@ -25,8 +42,17 @@ type ComponentStackScreenTransitionConfig = ScreenTransitionConfig & {
|
|
|
25
42
|
*/
|
|
26
43
|
detachPreviousScreen?: boolean;
|
|
27
44
|
};
|
|
45
|
+
/**
|
|
46
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
47
|
+
*/
|
|
28
48
|
export type ComponentStackNavigationOptions = ComponentStackScreenTransitionConfig & {};
|
|
49
|
+
/**
|
|
50
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
51
|
+
*/
|
|
29
52
|
export type ComponentStackNavigatorProps = DefaultNavigatorOptions<ParamListBase, string | undefined, StackNavigationState<ParamListBase>, ComponentStackNavigationOptions, ComponentStackNavigationEventMap, ComponentStackNavigationProp<ParamListBase>> & StackRouterOptions & ComponentStackNavigationConfig;
|
|
53
|
+
/**
|
|
54
|
+
* @deprecated Component stack is deprecated. Use blank stack instead.
|
|
55
|
+
*/
|
|
30
56
|
export type ComponentStackDescriptor = Descriptor<ComponentStackNavigationOptions, ComponentStackNavigationProp<ParamListBase>, RouteProp<ParamListBase>>;
|
|
31
57
|
export {};
|
|
32
58
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/component-stack/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,uBAAuB,EACvB,UAAU,EACV,iBAAiB,EACjB,cAAc,EACd,aAAa,EACb,SAAS,EACT,kBAAkB,EAClB,oBAAoB,EACpB,kBAAkB,EAClB,KAAK,EACL,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AACxD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAElE,MAAM,MAAM,gCAAgC,GAAG,EAAE,CAAC;AAElD,MAAM,MAAM,4BAA4B,CACvC,SAAS,SAAS,aAAa,EAC/B,SAAS,SAAS,MAAM,SAAS,GAAG,MAAM,EAC1C,WAAW,SAAS,MAAM,GAAG,SAAS,GAAG,SAAS,IAC/C,cAAc,CACjB,SAAS,EACT,SAAS,EACT,WAAW,EACX,oBAAoB,CAAC,SAAS,CAAC,EAC/B,+BAA+B,EAC/B,gCAAgC,CAChC,GACA,kBAAkB,CAAC,SAAS,CAAC,CAAC;AAE/B,MAAM,MAAM,yBAAyB,CACpC,SAAS,SAAS,aAAa,EAC/B,SAAS,SAAS,MAAM,SAAS,GAAG,MAAM,EAC1C,WAAW,SAAS,MAAM,GAAG,SAAS,GAAG,SAAS,IAC/C;IACH,UAAU,EAAE,4BAA4B,CAAC,SAAS,EAAE,SAAS,EAAE,WAAW,CAAC,CAAC;IAC5E,KAAK,EAAE,SAAS,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;CACvC,CAAC;AAEF,MAAM,MAAM,yBAAyB,CACpC,SAAS,SAAS,aAAa,EAC/B,SAAS,SAAS,MAAM,SAAS,GAAG,MAAM,SAAS,EACnD,WAAW,SAAS,MAAM,GAAG,SAAS,GAAG,SAAS,IAC/C,yBAAyB,CAAC,SAAS,EAAE,SAAS,EAAE,WAAW,CAAC,GAAG;IAClE,KAAK,EAAE,KAAK,CAAC;CACb,CAAC;AAEF,MAAM,MAAM,+BAA+B,GAAG,iBAAiB,CAC9D,aAAa,EACb,gCAAgC,CAChC,CAAC;AAEF,KAAK,8BAA8B,GAAG,EAAE,CAAC;AAEzC
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/component-stack/types.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EACX,uBAAuB,EACvB,UAAU,EACV,iBAAiB,EACjB,cAAc,EACd,aAAa,EACb,SAAS,EACT,kBAAkB,EAClB,oBAAoB,EACpB,kBAAkB,EAClB,KAAK,EACL,MAAM,0BAA0B,CAAC;AAClC,OAAO,KAAK,EAAE,sBAAsB,EAAE,MAAM,WAAW,CAAC;AACxD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAElE;;GAEG;AACH,MAAM,MAAM,gCAAgC,GAAG,EAAE,CAAC;AAElD;;GAEG;AACH,MAAM,MAAM,4BAA4B,CACvC,SAAS,SAAS,aAAa,EAC/B,SAAS,SAAS,MAAM,SAAS,GAAG,MAAM,EAC1C,WAAW,SAAS,MAAM,GAAG,SAAS,GAAG,SAAS,IAC/C,cAAc,CACjB,SAAS,EACT,SAAS,EACT,WAAW,EACX,oBAAoB,CAAC,SAAS,CAAC,EAC/B,+BAA+B,EAC/B,gCAAgC,CAChC,GACA,kBAAkB,CAAC,SAAS,CAAC,CAAC;AAE/B;;GAEG;AACH,MAAM,MAAM,yBAAyB,CACpC,SAAS,SAAS,aAAa,EAC/B,SAAS,SAAS,MAAM,SAAS,GAAG,MAAM,EAC1C,WAAW,SAAS,MAAM,GAAG,SAAS,GAAG,SAAS,IAC/C;IACH,UAAU,EAAE,4BAA4B,CAAC,SAAS,EAAE,SAAS,EAAE,WAAW,CAAC,CAAC;IAC5E,KAAK,EAAE,SAAS,CAAC,SAAS,EAAE,SAAS,CAAC,CAAC;CACvC,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,yBAAyB,CACpC,SAAS,SAAS,aAAa,EAC/B,SAAS,SAAS,MAAM,SAAS,GAAG,MAAM,SAAS,EACnD,WAAW,SAAS,MAAM,GAAG,SAAS,GAAG,SAAS,IAC/C,yBAAyB,CAAC,SAAS,EAAE,SAAS,EAAE,WAAW,CAAC,GAAG;IAClE,KAAK,EAAE,KAAK,CAAC;CACb,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,+BAA+B,GAAG,iBAAiB,CAC9D,aAAa,EACb,gCAAgC,CAChC,CAAC;AAEF,KAAK,8BAA8B,GAAG,EAAE,CAAC;AAEzC;;;;;GAKG;AACH,MAAM,MAAM,0BAA0B,GAAG,YAAY,CACpD,4BAA4B,CAAC,aAAa,CAAC,CAC3C,CAAC;AAEF,KAAK,oCAAoC,GAAG,sBAAsB,GAAG;IACpE;;;;OAIG;IACH,oBAAoB,CAAC,EAAE,OAAO,CAAC;CAC/B,CAAC;AAEF;;GAEG;AACH,MAAM,MAAM,+BAA+B,GAC1C,oCAAoC,GAAG,EAAE,CAAC;AAE3C;;GAEG;AACH,MAAM,MAAM,4BAA4B,GAAG,uBAAuB,CACjE,aAAa,EACb,MAAM,GAAG,SAAS,EAClB,oBAAoB,CAAC,aAAa,CAAC,EACnC,+BAA+B,EAC/B,gCAAgC,EAChC,4BAA4B,CAAC,aAAa,CAAC,CAC3C,GACA,kBAAkB,GAClB,8BAA8B,CAAC;AAEhC;;GAEG;AACH,MAAM,MAAM,wBAAwB,GAAG,UAAU,CAChD,+BAA+B,EAC/B,4BAA4B,CAAC,aAAa,CAAC,EAC3C,SAAS,CAAC,aAAa,CAAC,CACxB,CAAC"}
|
package/lib/typescript/shared/components/boundary/portal/components/portal-boundary-host.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"portal-boundary-host.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal-boundary-host.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,SAAS,EAAc,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"portal-boundary-host.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal-boundary-host.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,SAAS,EAAc,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAY1E,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,sCAAsC,CAAC;AASrF,KAAK,uBAAuB,GAAG;IAC9B,IAAI,EAAE,wBAAwB,CAAC;IAC/B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,CAAC;AAEF,eAAO,MAAM,kBAAkB,yDAG5B,uBAAuB,oDA4HxB,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"portal.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIN,KAAK,SAAS,EAId,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"portal.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/components/portal.tsx"],"names":[],"mappings":"AAAA,OAAO,EAIN,KAAK,SAAS,EAId,MAAM,OAAO,CAAC;AACf,OAAO,KAAK,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACzC,OAAiB,EAChB,KAAK,WAAW,EAMhB,MAAM,yBAAyB,CAAC;AA2CjC,UAAU,WAAW;IACpB,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,QAAQ,EAAE,SAAS,CAAC;IACpB,OAAO,CAAC,EAAE,OAAO,CAAC;IAClB,cAAc,CAAC,EAAE,OAAO,CAAC;IACzB;;;;;OAKG;IACH,cAAc,CAAC,EAAE,WAAW,CAAC,IAAI,CAAC,CAAC;IACnC,mBAAmB,CAAC,EAAE,SAAS,CAAC;CAChC;AAED,eAAO,MAAM,MAAM,wHAOhB,WAAW,6UAyUZ,CAAC"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import type { LayoutRectangle } from "react-native";
|
|
2
|
+
import { type SharedValue } from "react-native-reanimated";
|
|
3
|
+
interface UsePlaceholderProps {
|
|
4
|
+
visiblePortalHostName: SharedValue<string | null>;
|
|
5
|
+
}
|
|
6
|
+
export declare const usePlaceholderStyles: ({ visiblePortalHostName, }: UsePlaceholderProps) => {
|
|
7
|
+
placeholderStyle: {
|
|
8
|
+
readonly width: "auto";
|
|
9
|
+
readonly height: "auto";
|
|
10
|
+
} | {
|
|
11
|
+
width: number;
|
|
12
|
+
height: number;
|
|
13
|
+
};
|
|
14
|
+
handleOnLayout: (layout: LayoutRectangle) => void;
|
|
15
|
+
};
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=use-placeholder-styles.d.ts.map
|
package/lib/typescript/shared/components/boundary/portal/hooks/use-placeholder-styles.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"use-placeholder-styles.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/hooks/use-placeholder-styles.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,EACN,KAAK,WAAW,EAGhB,MAAM,yBAAyB,CAAC;AAEjC,UAAU,mBAAmB;IAC5B,qBAAqB,EAAE,WAAW,CAAC,MAAM,GAAG,IAAI,CAAC,CAAC;CAClD;AAED,eAAO,MAAM,oBAAoB,GAAI,4BAElC,mBAAmB;;;;;;;;6BAqBX,eAAe;CAmBzB,CAAC"}
|
|
@@ -15,7 +15,16 @@ type ResolvePortalOffsetStyleParams = {
|
|
|
15
15
|
bounds: ScrollMeasuredDimensions;
|
|
16
16
|
hostKey: string;
|
|
17
17
|
placement: PortalOffsetPlacement;
|
|
18
|
+
/**
|
|
19
|
+
* Live correction applied on top of the stored source placement. Used by
|
|
20
|
+
* cross-screen hosts to keep the landing rect tracking the source screen's
|
|
21
|
+
* scroll while the source is interactive mid-flight.
|
|
22
|
+
*/
|
|
23
|
+
landingShift?: {
|
|
24
|
+
x: number;
|
|
25
|
+
y: number;
|
|
26
|
+
};
|
|
18
27
|
};
|
|
19
|
-
export declare const resolvePortalOffsetStyle: ({ bounds, hostKey, placement, }: ResolvePortalOffsetStyleParams) => StyleProps;
|
|
28
|
+
export declare const resolvePortalOffsetStyle: ({ bounds, hostKey, placement, landingShift, }: ResolvePortalOffsetStyleParams) => StyleProps;
|
|
20
29
|
export {};
|
|
21
30
|
//# sourceMappingURL=offset-style.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"offset-style.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/utils/offset-style.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAE1D,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AAG5E;;;;;;;;GAQG;AACH,MAAM,MAAM,qBAAqB,GAAG,aAAa,GAAG,cAAc,CAAC;AAEnE,KAAK,8BAA8B,GAAG;IACrC,uEAAuE;IACvE,MAAM,EAAE,wBAAwB,CAAC;IACjC,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,qBAAqB,CAAC;
|
|
1
|
+
{"version":3,"file":"offset-style.d.ts","sourceRoot":"","sources":["../../../../../../../src/shared/components/boundary/portal/utils/offset-style.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAE1D,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,6BAA6B,CAAC;AAG5E;;;;;;;;GAQG;AACH,MAAM,MAAM,qBAAqB,GAAG,aAAa,GAAG,cAAc,CAAC;AAEnE,KAAK,8BAA8B,GAAG;IACrC,uEAAuE;IACvE,MAAM,EAAE,wBAAwB,CAAC;IACjC,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,EAAE,qBAAqB,CAAC;IACjC;;;;OAIG;IACH,YAAY,CAAC,EAAE;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;CACxC,CAAC;AAEF,eAAO,MAAM,wBAAwB,GAAI,+CAKtC,8BAA8B,KAAG,UAyCnC,CAAC"}
|
|
@@ -1,4 +1,8 @@
|
|
|
1
1
|
import { type StyleProp, type ViewStyle } from "react-native";
|
|
2
|
+
/**
|
|
3
|
+
* @deprecated Use `navigationMaskEnabled` with the navigation mask style IDs
|
|
4
|
+
* instead.
|
|
5
|
+
*/
|
|
2
6
|
export default function MaskedView({ children, style: userStyles, }: {
|
|
3
7
|
children: React.ReactNode;
|
|
4
8
|
style?: StyleProp<ViewStyle>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"masked-view.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/masked-view.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAoB,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAchF,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAClC,QAAQ,EACR,KAAK,EAAE,UAAe,GACtB,EAAE;IACF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,2WAqBA"}
|
|
1
|
+
{"version":3,"file":"masked-view.d.ts","sourceRoot":"","sources":["../../../../src/shared/components/masked-view.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,KAAK,SAAS,EAAoB,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAchF;;;GAGG;AACH,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,EAClC,QAAQ,EACR,KAAK,EAAE,UAAe,GACtB,EAAE;IACF,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,KAAK,CAAC,EAAE,SAAS,CAAC,SAAS,CAAC,CAAC;CAC7B,2WAqBA"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"backdrop.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/screen-container/layers/backdrop.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"backdrop.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/screen-container/layers/backdrop.tsx"],"names":[],"mappings":"AAUA,OAAO,KAAK,EACX,gBAAgB,EAEhB,MAAM,6BAA6B,CAAC;AAKrC,eAAO,MAAM,aAAa,gFAGvB;IACF,gBAAgB,EAAE,gBAAgB,CAAC;IACnC,gBAAgB,EAAE,OAAO,CAAC;CAC1B,6CA8HC,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"content.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/screen-container/layers/content.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"content.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/screen-container/layers/content.tsx"],"names":[],"mappings":"AAgBA,KAAK,KAAK,GAAG;IACZ,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,EAAE,UAAU,GAAG,SAAS,CAAC;IACtC,gBAAgB,EAAE,OAAO,CAAC;CAC1B,CAAC;AAEF,eAAO,MAAM,YAAY,sFACwB,KAAK,6CAgFrD,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"render-component.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/screen-container/layers/render-component.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,OAAO,CAAC;AAE3C,wBAAgB,oBAAoB,CACnC,SAAS,EAAE,aAAa,CAAC,GAAG,CAAC,GAC3B,SAAS,IAAI,aAAa,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC,CAIrD"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"surface-container.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/screen-container/layers/surface-container.tsx"],"names":[],"mappings":"AACA,OAAO,EAAc,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAK1D,KAAK,KAAK,GAAG;IACZ,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,EAAE,SAAS,CAAC,eAAe,CAAC,CAAC;CAC1C,CAAC;AAEF,eAAO,MAAM,gBAAgB,oEAAsC,KAAK,
|
|
1
|
+
{"version":3,"file":"surface-container.d.ts","sourceRoot":"","sources":["../../../../../../src/shared/components/screen-container/layers/surface-container.tsx"],"names":[],"mappings":"AACA,OAAO,EAAc,KAAK,SAAS,EAAE,MAAM,cAAc,CAAC;AAK1D,KAAK,KAAK,GAAG;IACZ,QAAQ,EAAE,KAAK,CAAC,SAAS,CAAC;IAC1B,aAAa,EAAE,SAAS,CAAC,eAAe,CAAC,CAAC;CAC1C,CAAC;AAEF,eAAO,MAAM,gBAAgB,oEAAsC,KAAK,6WAsBtE,CAAC"}
|
|
@@ -9,16 +9,16 @@ declare const _default: {
|
|
|
9
9
|
withScreenTransitions: typeof withScreenTransitions;
|
|
10
10
|
Boundary: import("./components/boundary").BoundaryComponent;
|
|
11
11
|
View: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
|
|
12
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
13
12
|
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
14
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
15
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
16
13
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
14
|
+
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
17
15
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
18
16
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
17
|
+
pointerEvents?: "auto" | "box-none" | "none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "box-none" | "none" | "box-only" | undefined> | undefined;
|
|
19
18
|
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
20
19
|
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
21
20
|
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
21
|
+
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
22
22
|
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
23
23
|
onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
|
|
24
24
|
onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
|
|
@@ -112,16 +112,16 @@ declare const _default: {
|
|
|
112
112
|
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
113
113
|
} & {
|
|
114
114
|
animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
|
|
115
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
116
115
|
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
117
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
118
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
119
116
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
117
|
+
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
120
118
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
121
119
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
120
|
+
pointerEvents?: "auto" | "box-none" | "none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "box-none" | "none" | "box-only" | undefined> | undefined;
|
|
122
121
|
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
123
122
|
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
124
123
|
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
124
|
+
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
125
125
|
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
126
126
|
onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
|
|
127
127
|
onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
|
|
@@ -220,18 +220,16 @@ declare const _default: {
|
|
|
220
220
|
remeasureOnFocus?: boolean;
|
|
221
221
|
} & import("react").RefAttributes<never>>>;
|
|
222
222
|
Pressable: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
|
|
223
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
224
|
-
key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
|
|
225
223
|
children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode) | import("react-native-reanimated").SharedValue<import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode)>;
|
|
226
|
-
ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
|
|
227
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
228
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
229
224
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
225
|
+
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
230
226
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
231
227
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
228
|
+
pointerEvents?: "auto" | "box-none" | "none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "box-none" | "none" | "box-only" | undefined> | undefined;
|
|
232
229
|
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
233
230
|
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
234
231
|
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
232
|
+
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
235
233
|
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
236
234
|
onBlur?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
|
|
237
235
|
onFocus?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
|
|
@@ -317,6 +315,8 @@ declare const _default: {
|
|
|
317
315
|
accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
318
316
|
accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
319
317
|
accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
318
|
+
key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
|
|
319
|
+
ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
|
|
320
320
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
321
321
|
disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
|
|
322
322
|
onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
|
|
@@ -341,18 +341,16 @@ declare const _default: {
|
|
|
341
341
|
exiting?: import("react-native-reanimated").EntryOrExitLayoutType;
|
|
342
342
|
} & {
|
|
343
343
|
animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
|
|
344
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
345
|
-
key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
|
|
346
344
|
children?: import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode) | import("react-native-reanimated").SharedValue<import("react").ReactNode | ((state: import("react-native").PressableStateCallbackType) => React.ReactNode)>;
|
|
347
|
-
ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
|
|
348
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
349
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
350
345
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
346
|
+
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
351
347
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
352
348
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
349
|
+
pointerEvents?: "auto" | "box-none" | "none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "box-none" | "none" | "box-only" | undefined> | undefined;
|
|
353
350
|
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
354
351
|
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
355
352
|
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
353
|
+
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
356
354
|
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
357
355
|
onBlur?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
|
|
358
356
|
onFocus?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").TargetedEvent>) => void) | null | undefined> | null | undefined;
|
|
@@ -438,6 +436,8 @@ declare const _default: {
|
|
|
438
436
|
accessibilityShowsLargeContentViewer?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
439
437
|
accessibilityLargeContentTitle?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
440
438
|
accessibilityRespondsToUserInteraction?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
439
|
+
key?: import("react").Key | import("react-native-reanimated").SharedValue<import("react").Key | null | undefined> | null | undefined;
|
|
440
|
+
ref?: import("react").Ref<View> | import("react-native-reanimated").SharedValue<import("react").Ref<View> | undefined> | undefined;
|
|
441
441
|
onPress?: ((event: import("react-native").GestureResponderEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").GestureResponderEvent) => void) | null | undefined> | null | undefined;
|
|
442
442
|
disabled?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
|
|
443
443
|
onHoverIn?: ((event: import("react-native").MouseEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").MouseEvent) => void) | null | undefined> | null | undefined;
|
|
@@ -468,16 +468,16 @@ declare const _default: {
|
|
|
468
468
|
} & import("react").RefAttributes<View | import("react").Component<import("react-native").PressableProps & import("react").RefAttributes<View>, any, any>>>>;
|
|
469
469
|
ScrollView: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
|
|
470
470
|
horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
|
|
471
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
472
471
|
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
473
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
474
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
475
472
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
473
|
+
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
476
474
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
477
475
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
476
|
+
pointerEvents?: "auto" | "box-none" | "none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "box-none" | "none" | "box-only" | undefined> | undefined;
|
|
478
477
|
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
479
478
|
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
480
479
|
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
480
|
+
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
481
481
|
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
482
482
|
onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
|
|
483
483
|
onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
|
|
@@ -617,7 +617,7 @@ declare const _default: {
|
|
|
617
617
|
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
618
618
|
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
619
619
|
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
620
|
-
snapToAlignment?: "
|
|
620
|
+
snapToAlignment?: "end" | "start" | "center" | import("react-native-reanimated").SharedValue<"end" | "start" | "center" | undefined> | undefined;
|
|
621
621
|
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
622
622
|
zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
623
623
|
endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
|
|
@@ -643,16 +643,16 @@ declare const _default: {
|
|
|
643
643
|
} & {
|
|
644
644
|
animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
|
|
645
645
|
horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
|
|
646
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
647
646
|
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
648
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
649
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
650
647
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
648
|
+
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
651
649
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
652
650
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
651
|
+
pointerEvents?: "auto" | "box-none" | "none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "box-none" | "none" | "box-only" | undefined> | undefined;
|
|
653
652
|
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
654
653
|
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
655
654
|
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
655
|
+
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
656
656
|
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
657
657
|
onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
|
|
658
658
|
onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
|
|
@@ -792,7 +792,7 @@ declare const _default: {
|
|
|
792
792
|
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
793
793
|
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
794
794
|
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
795
|
-
snapToAlignment?: "
|
|
795
|
+
snapToAlignment?: "end" | "start" | "center" | import("react-native-reanimated").SharedValue<"end" | "start" | "center" | undefined> | undefined;
|
|
796
796
|
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
797
797
|
zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
798
798
|
endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
|
|
@@ -823,16 +823,16 @@ declare const _default: {
|
|
|
823
823
|
} & import("react").RefAttributes<never>>>;
|
|
824
824
|
FlatList: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<{
|
|
825
825
|
horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
|
|
826
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
827
826
|
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
828
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
829
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
830
827
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
828
|
+
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
831
829
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
832
830
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
831
|
+
pointerEvents?: "auto" | "box-none" | "none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "box-none" | "none" | "box-only" | undefined> | undefined;
|
|
833
832
|
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
834
833
|
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
835
834
|
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
835
|
+
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
836
836
|
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
837
837
|
onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
|
|
838
838
|
onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
|
|
@@ -973,7 +973,7 @@ declare const _default: {
|
|
|
973
973
|
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
974
974
|
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
975
975
|
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
976
|
-
snapToAlignment?: "
|
|
976
|
+
snapToAlignment?: "end" | "start" | "center" | import("react-native-reanimated").SharedValue<"end" | "start" | "center" | undefined> | undefined;
|
|
977
977
|
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
978
978
|
zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
979
979
|
endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
|
|
@@ -1065,16 +1065,16 @@ declare const _default: {
|
|
|
1065
1065
|
} & {
|
|
1066
1066
|
animatedProps?: import("react-native-reanimated/lib/typescript/css/types").AddArrayPropertyType<Partial<{
|
|
1067
1067
|
horizontal?: boolean | import("react-native-reanimated").SharedValue<boolean | null | undefined> | null | undefined;
|
|
1068
|
-
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1069
1068
|
children?: import("react").ReactNode | import("react-native-reanimated").SharedValue<import("react").ReactNode>;
|
|
1070
|
-
pointerEvents?: "auto" | "none" | "box-none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "none" | "box-none" | "box-only" | undefined> | undefined;
|
|
1071
|
-
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1072
1069
|
hitSlop?: number | import("react-native").Insets | import("react-native-reanimated").SharedValue<number | import("react-native").Insets | null | undefined> | null | undefined;
|
|
1070
|
+
id?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1073
1071
|
needsOffscreenAlphaCompositing?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1074
1072
|
onLayout?: ((event: import("react-native").LayoutChangeEvent) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").LayoutChangeEvent) => void) | undefined> | undefined;
|
|
1073
|
+
pointerEvents?: "auto" | "box-none" | "none" | "box-only" | import("react-native-reanimated").SharedValue<"auto" | "box-none" | "none" | "box-only" | undefined> | undefined;
|
|
1075
1074
|
removeClippedSubviews?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1076
1075
|
testID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1077
1076
|
nativeID?: string | import("react-native-reanimated").SharedValue<string | undefined> | undefined;
|
|
1077
|
+
collapsable?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1078
1078
|
collapsableChildren?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1079
1079
|
onBlur?: ((e: import("react-native").BlurEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").BlurEvent) => void) | null | undefined> | null | undefined;
|
|
1080
1080
|
onFocus?: ((e: import("react-native").FocusEvent) => void) | import("react-native-reanimated").SharedValue<((e: import("react-native").FocusEvent) => void) | null | undefined> | null | undefined;
|
|
@@ -1215,7 +1215,7 @@ declare const _default: {
|
|
|
1215
1215
|
scrollIndicatorInsets?: import("react-native").Insets | import("react-native-reanimated").SharedValue<import("react-native").Insets | undefined> | undefined;
|
|
1216
1216
|
scrollToOverflowEnabled?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1217
1217
|
scrollsToTop?: boolean | import("react-native-reanimated").SharedValue<boolean | undefined> | undefined;
|
|
1218
|
-
snapToAlignment?: "
|
|
1218
|
+
snapToAlignment?: "end" | "start" | "center" | import("react-native-reanimated").SharedValue<"end" | "start" | "center" | undefined> | undefined;
|
|
1219
1219
|
onScrollToTop?: ((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | import("react-native-reanimated").SharedValue<((event: import("react-native").NativeSyntheticEvent<import("react-native").NativeScrollEvent>) => void) | undefined> | undefined;
|
|
1220
1220
|
zoomScale?: number | import("react-native-reanimated").SharedValue<number | undefined> | undefined;
|
|
1221
1221
|
endFillColor?: import("react-native").ColorValue | import("react-native-reanimated").SharedValue<import("react-native").ColorValue | undefined> | undefined;
|
|
@@ -1310,6 +1310,10 @@ declare const _default: {
|
|
|
1310
1310
|
sharedBoundTag?: string;
|
|
1311
1311
|
remeasureOnFocus?: boolean;
|
|
1312
1312
|
} & import("react").RefAttributes<never>>>;
|
|
1313
|
+
/**
|
|
1314
|
+
* @deprecated Use `navigationMaskEnabled` with the navigation mask style IDs
|
|
1315
|
+
* instead.
|
|
1316
|
+
*/
|
|
1313
1317
|
MaskedView: typeof MaskedView;
|
|
1314
1318
|
Presets: {
|
|
1315
1319
|
SlideFromTop: (config?: Partial<import("./types").ScreenTransitionConfig>) => import("./types").ScreenTransitionConfig;
|
|
@@ -1344,5 +1348,5 @@ export { useHistory } from "./hooks/navigation/use-history";
|
|
|
1344
1348
|
export { type ScreenState, useScreenState, } from "./hooks/navigation/use-screen-state";
|
|
1345
1349
|
export { type ScreenAnimationTarget, useScreenAnimation, } from "./providers/screen/animation";
|
|
1346
1350
|
export { type ScreenGestureTarget, useScreenGesture, } from "./providers/screen/gestures/hooks/use-screen-gesture";
|
|
1347
|
-
export type { AnimatedViewStyle, AnimationConfig, BoundaryTeleportControl, BoundsMotion, BoundsMotionFrame, BoundsMotionTransform, BoundsNavigationAccessor, BoundsNavigationRevealOptions, BoundsNavigationRevealStyle, BoundsNavigationZoomOpacityRange, BoundsNavigationZoomOpacityRanges, BoundsNavigationZoomOptions, BoundsNavigationZoomStyle, GestureHandoffValues, InactiveBehavior, OverlayProps, RawGestureValues, ScreenInterpolationProps, ScreenStyleInterpolator, ScreenTransitionAccessor, ScreenTransitionConfig, ScreenTransitionDepthTarget, ScreenTransitionTarget, ScrollGestureAxis, ScrollGestureAxisState, ScrollGestureState, ScrollMetadataState, TransitionInterpolatedStyle, TransitionSlotProps, TransitionSlotStyle, TransitionSpec, } from "./types";
|
|
1351
|
+
export type { AnimatedViewStyle, AnimationConfig, BoundaryTeleportControl, BoundsMotion, BoundsMotionFrame, BoundsMotionTransform, BoundsNavigationAccessor, BoundsNavigationRevealOptions, BoundsNavigationRevealStyle, BoundsNavigationZoomOpacityRange, BoundsNavigationZoomOpacityRanges, BoundsNavigationZoomOptions, BoundsNavigationZoomStyle, GestureHandoffValues, InactiveBehavior, OverlayProps, RawGestureValues, ScreenBackdropComponent, ScreenBackdropComponentProps, ScreenContentComponent, ScreenContentComponentProps, ScreenInterpolationProps, ScreenLayerComponentProps, ScreenStyleInterpolator, ScreenTransitionAccessor, ScreenTransitionConfig, ScreenTransitionDepthTarget, ScreenTransitionTarget, ScrollGestureAxis, ScrollGestureAxisState, ScrollGestureState, ScrollMetadataState, TransitionInterpolatedStyle, TransitionSlotProps, TransitionSlotStyle, TransitionSpec, } from "./types";
|
|
1348
1352
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/shared/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAuB,UAAU,EAAE,IAAI,EAAE,MAAM,cAAc,CAAC;AACrE,OAAO,EAAE,qBAAqB,EAAE,MAAM,oCAAoC,CAAC;AAC3E,OAAO,EAAY,uBAAuB,EAAE,MAAM,uBAAuB,CAAC;AAC1E,OAAO,EAAE,8BAA8B,EAAE,MAAM,gDAAgD,CAAC;AAChG,OAAO,UAAU,MAAM,0BAA0B,CAAC
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/shared/index.ts"],"names":[],"mappings":"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"}
|