@flemo/core 1.19.0 → 1.19.1

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.
@@ -61,6 +61,9 @@ declare class TaskManager {
61
61
  dependencies?: string[];
62
62
  control?: Control;
63
63
  }): Promise<TaskResult<T>>;
64
+ private gatePhases;
65
+ markGateHeld(taskId: string): void;
66
+ anchorGate(taskId: string): void;
64
67
  private armBackstop;
65
68
  resolveTask(taskId: string): Promise<boolean>;
66
69
  resolveAllPending(): Promise<void>;
package/dist/index.d.ts CHANGED
@@ -40,7 +40,7 @@ export { SKIP_ANIMATION_ATTR, type TransitionEngine, type TransitionEngineDeps,
40
40
  export { default as createSwipeController } from './core/engine/createSwipeController';
41
41
  export { type SwipeController, type SwipeControllerConfig, type SwipeControllerElements, type SharedBarPresenceLike } from './core/engine/createSwipeController';
42
42
  export { default as computeBarRiding, type BarRidingInput } from './screen/computeBarRiding';
43
- export { animHoldKey, shouldMountShellFirst, scheduleAnimHoldRelease, createAnimHoldCoordinator, eagerlyDecodeImages, ANIM_HOLD_RELEASE_BACKSTOP_MS, type AnimHoldInput, type ShellFirstInput, type AnimHoldCoordinator } from './screen/animStartAnchor';
43
+ export { animHoldKey, scheduleAnimHoldRelease, createAnimHoldCoordinator, eagerlyDecodeImages, ANIM_HOLD_RELEASE_BACKSTOP_MS, type AnimHoldInput, type AnimHoldCoordinator } from './screen/animStartAnchor';
44
44
  export { default as observeBarHeight } from './screen/observeBarHeight';
45
45
  export { default as observeViewportScrollHeight } from './screen/observeViewportScrollHeight';
46
46
  export type { RegisterTransition, TransitionName, TransitionVariant, TransitionVariantValue, TransitionOptions, BaseTransition, Transition, SwipeInfo, SwipeAnimate } from './transition/typing';