@whitesev/utils 1.0.3 → 1.0.5
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/index.amd.js +11 -0
- package/dist/index.amd.js.map +1 -1
- package/dist/index.cjs.js +11 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.esm.js +11 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/index.iife.js +11 -0
- package/dist/index.iife.js.map +1 -1
- package/dist/index.system.js +11 -0
- package/dist/index.system.js.map +1 -1
- package/dist/index.umd.js +11 -0
- package/dist/index.umd.js.map +1 -1
- package/dist/src/UtilsCore.d.ts +7 -0
- package/dist/src/{Utils.d.ts → index.d.ts} +206 -1
- package/index.ts +1 -1
- package/package.json +36 -35
- package/rollup.config.js +10 -1
- package/src/GBKEncoder.ts +2 -0
- package/src/UtilsCore.ts +9 -0
- package/src/UtilsGMCookie.ts +1 -1
- package/src/{ajaxHooker.js → ajaxHooker/ajaxHooker.js} +1 -0
- package/src/{Utils.ts → index.ts} +266 -16
- package/tsconfig.json +1 -2
- package/src/GBKEncoder.js +0 -111
- package/src/types/DOMUtils.d.ts +0 -188
- package/src/types/UtilsCore.d.ts +0 -7
- package/src/types/global.d.ts +0 -58
- /package/dist/src/{Dictionary.d.ts → Dictionary/Dictionary.d.ts} +0 -0
- /package/dist/src/{Hooks.d.ts → Hooks/Hooks.d.ts} +0 -0
- /package/dist/src/{Httpx.d.ts → Httpx/Httpx.d.ts} +0 -0
- /package/dist/src/{LockFunction.d.ts → LockFunction/LockFunction.d.ts} +0 -0
- /package/dist/src/{Log.d.ts → Log/Log.d.ts} +0 -0
- /package/dist/src/{Progress.d.ts → Progress/Progress.d.ts} +0 -0
- /package/dist/src/{UtilsGMMenu.d.ts → UtilsGMMenu/UtilsGMMenu.d.ts} +0 -0
- /package/dist/src/{ajaxHooker.d.ts → ajaxHooker/ajaxHooker.d.ts} +0 -0
- /package/dist/src/{indexedDB.d.ts → indexedDB/indexedDB.d.ts} +0 -0
- /package/dist/src/{tryCatch.d.ts → tryCatch/tryCatch.d.ts} +0 -0
- /package/src/{Dictionary.js → Dictionary/Dictionary.js} +0 -0
- /package/src/{types/Dictionary.d.ts → Dictionary/index.d.ts} +0 -0
- /package/src/{Hooks.js → Hooks/Hooks.js} +0 -0
- /package/src/{types/Hook.d.ts → Hooks/index.d.ts} +0 -0
- /package/src/{Httpx.js → Httpx/Httpx.js} +0 -0
- /package/src/{types/Httpx.d.ts → Httpx/index.d.ts} +0 -0
- /package/src/{LockFunction.js → LockFunction/LockFunction.js} +0 -0
- /package/src/{types/LockFunction.d.ts → LockFunction/index.d.ts} +0 -0
- /package/src/{Log.js → Log/Log.js} +0 -0
- /package/src/{types/Log.d.ts → Log/index.d.ts} +0 -0
- /package/src/{Progress.js → Progress/Progress.js} +0 -0
- /package/src/{types/Progress.d.ts → Progress/index.d.ts} +0 -0
- /package/src/{UtilsGMMenu.js → UtilsGMMenu/UtilsGMMenu.js} +0 -0
- /package/src/{types/UtilsGMMenu.d.ts → UtilsGMMenu/index.d.ts} +0 -0
- /package/src/{types/AjaxHooker.d.ts → ajaxHooker/index.d.ts} +0 -0
- /package/src/{types/Indexdb.d.ts → indexedDB/index.d.ts} +0 -0
- /package/src/{indexedDB.js → indexedDB/indexedDB.js} +0 -0
- /package/src/{types/TryCatch.d.ts → tryCatch/index.d.ts} +0 -0
- /package/src/{tryCatch.js → tryCatch/tryCatch.js} +0 -0
package/dist/index.umd.js
CHANGED
|
@@ -374,6 +374,7 @@
|
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
376
|
|
|
377
|
+
/// <reference path="./index.d.ts" />
|
|
377
378
|
// @name ajaxHooker
|
|
378
379
|
// @author cxxjackie
|
|
379
380
|
// @version 1.4.1
|
|
@@ -3212,6 +3213,16 @@
|
|
|
3212
3213
|
}
|
|
3213
3214
|
}
|
|
3214
3215
|
|
|
3216
|
+
/// <reference path="./ajaxHooker/index.d.ts" />
|
|
3217
|
+
/// <reference path="./Dictionary/index.d.ts" />
|
|
3218
|
+
/// <reference path="./Hooks/index.d.ts" />
|
|
3219
|
+
/// <reference path="./Httpx/index.d.ts" />
|
|
3220
|
+
/// <reference path="./indexedDB/index.d.ts" />
|
|
3221
|
+
/// <reference path="./LockFunction/index.d.ts" />
|
|
3222
|
+
/// <reference path="./Log/index.d.ts" />
|
|
3223
|
+
/// <reference path="./Progress/index.d.ts" />
|
|
3224
|
+
/// <reference path="./tryCatch/index.d.ts" />
|
|
3225
|
+
/// <reference path="./UtilsGMMenu/index.d.ts" />
|
|
3215
3226
|
let Utils$1 = class Utils {
|
|
3216
3227
|
/** 版本号 */
|
|
3217
3228
|
version = "2024.5.25";
|