@flemo/core 1.25.1 → 1.26.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.
|
@@ -11,6 +11,9 @@ export declare const targetToDecls: (target: TransitionVariantValue["value"] | I
|
|
|
11
11
|
export declare const easingToCss: (ease: AnimationOptions["ease"] | undefined) => string;
|
|
12
12
|
export declare const softenFrontLoadedEasing: (easingCss: string, durationS: number) => string | null;
|
|
13
13
|
export declare const animationName: (scope: "screen" | "decorator" | "part", name: string, variant: TransitionVariant) => string;
|
|
14
|
+
export declare const HEAD_ANIMATION_SUFFIXES: readonly ["-lpm", "-deskhead", "-lpmcreep"];
|
|
15
|
+
export declare const matchesFlightAnimationName: (eventName: string, expectedName: string) => boolean;
|
|
14
16
|
export declare const compileTransitionStyles: (transitions: Iterable<Transition>, decorators: Iterable<Decorator>, partTransitions?: Iterable<PartTransition>) => string;
|
|
15
17
|
export declare const variantHasAnimation: (transitionLike: Pick<Transition, "initial" | "variants">, variant: TransitionVariant) => boolean;
|
|
18
|
+
export declare const DESKTOP_HEAD_MS: Record<string, number>;
|
|
16
19
|
export declare const LPM_HEAD_MS: Record<string, number>;
|
package/package.json
CHANGED