@qlover/fe-corekit 3.2.0 → 3.3.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +1 -1
  2. package/package.json +1 -3
package/dist/index.d.ts CHANGED
@@ -99,7 +99,7 @@ interface AborterConfig {
99
99
  * // Aborts if parent cancels OR timeout expires
100
100
  * ```
101
101
  */
102
- signal?: AbortSignal;
102
+ signal?: AbortSignal | null;
103
103
  }
104
104
  /**
105
105
  * Interface defining the common API for abort management
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@qlover/fe-corekit",
3
3
  "description": "A corekit for frontwork",
4
- "version": "3.2.0",
4
+ "version": "3.3.0",
5
5
  "private": false,
6
6
  "type": "module",
7
7
  "files": [
@@ -11,14 +11,12 @@
11
11
  ],
12
12
  "main": "./dist/index.cjs",
13
13
  "module": "./dist/index.js",
14
- "browser": "./dist/index.iife.js",
15
14
  "types": "./dist/index.d.ts",
16
15
  "exports": {
17
16
  "./package.json": "./package.json",
18
17
  ".": {
19
18
  "types": "./dist/index.d.ts",
20
19
  "import": "./dist/index.js",
21
- "browser": "./dist/index.iife.js",
22
20
  "require": "./dist/index.cjs"
23
21
  },
24
22
  "./aborter": {