@flemo/core 2.4.0 → 2.5.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.
@@ -6,7 +6,8 @@ interface CreatePartProps {
6
6
  idle: PartVariantValue;
7
7
  enter: PartVariantValue;
8
8
  exit: PartVariantValue;
9
+ dismiss?: PartVariantValue;
9
10
  options?: PartTransitionOptions;
10
11
  }
11
- export default function createPartTransition({ name, initial, idle, enter, exit, options }: CreatePartProps): PartTransition;
12
+ export default function createPartTransition({ name, initial, idle, enter, exit, dismiss, options }: CreatePartProps): PartTransition;
12
13
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@flemo/core",
3
- "version": "2.4.0",
3
+ "version": "2.5.0",
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",
@@ -39,14 +39,14 @@
39
39
  "@flemo/eslint-config": "0.0.0",
40
40
  "@flemo/tsconfig": "0.0.0",
41
41
  "@types/node": "^24.13.1",
42
- "@vitest/coverage-v8": "^4.1.11",
42
+ "@vitest/coverage-v8": "^5.0.0",
43
43
  "csstype": "^3.2.3",
44
44
  "eslint": "^9.39.5",
45
- "jsdom": "^29.1.1",
45
+ "jsdom": "^30.0.1",
46
46
  "typescript": "^6.0.3",
47
47
  "vite": "^8.2.2",
48
48
  "vite-plugin-dts": "^5.1.0",
49
- "vitest": "^4.1.11"
49
+ "vitest": "^5.0.0"
50
50
  },
51
51
  "publishConfig": {
52
52
  "access": "public"
@@ -1 +0,0 @@
1
- export {};
@@ -1,3 +0,0 @@
1
- export { WARM_ATTR } from '../../dom/attributes';
2
- export declare const resetCompositorWarmForTesting: () => void;
3
- export default function holdCompositorWarm(): () => void;