@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.
- package/dist/core/TaskManger.d.ts +3 -0
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +307 -285
- package/dist/screen/animStartAnchor.d.ts +0 -6
- package/package.json +3 -3
|
@@ -5,12 +5,6 @@ export interface AnimHoldInput {
|
|
|
5
5
|
transitionName: string;
|
|
6
6
|
}
|
|
7
7
|
export declare function animHoldKey(input: AnimHoldInput): string | null;
|
|
8
|
-
export interface ShellFirstInput {
|
|
9
|
-
holdKey: string | null;
|
|
10
|
-
isActive: boolean;
|
|
11
|
-
status: NavigateStatus;
|
|
12
|
-
}
|
|
13
|
-
export declare function shouldMountShellFirst(input: ShellFirstInput): boolean;
|
|
14
8
|
export declare const ANIM_HOLD_RELEASE_BACKSTOP_MS = 300;
|
|
15
9
|
export declare const ANIM_HOLD_DECODE_CAP_MS = 150;
|
|
16
10
|
export declare function collectDecodableImages(scope: HTMLElement): HTMLImageElement[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@flemo/core",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.1",
|
|
4
4
|
"description": "Framework-agnostic primitives for flemo: history, navigation, transitions, task manager.",
|
|
5
5
|
"main": "./dist/index.mjs",
|
|
6
6
|
"module": "./dist/index.mjs",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"vite": "^8.0.16",
|
|
46
46
|
"vite-plugin-dts": "^5.0.2",
|
|
47
47
|
"vitest": "^4.1.9",
|
|
48
|
-
"@flemo/
|
|
49
|
-
"@flemo/
|
|
48
|
+
"@flemo/eslint-config": "0.0.0",
|
|
49
|
+
"@flemo/tsconfig": "0.0.0"
|
|
50
50
|
},
|
|
51
51
|
"publishConfig": {
|
|
52
52
|
"access": "public"
|