New:Socket for Asana Is Now Available.Learn more
Get Started

@complex-suite/data

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@complex-suite/data - npm Package Compare versions

Comparing version
5.0.16
to
5.0.17
+3
-0
history.md

@@ -10,2 +10,5 @@ <!--

### 5.0.17
- fix(tsconfig): 移除 `extends` 外部引用,改为自包含配置,消除 npm 发布后 extends 解析失败导致 TypeScript 降级到默认 target 的问题
### 5.0.16

@@ -12,0 +15,0 @@ - fix(search): `SearchData.resetForm` 改为返回 `Promise<void>` 的异步函数,`parseData` 完成后再执行 `syncData` 与 `_syncData`,消除重置后 `$current` 先按空表单收集的时序错位;新增同步轻量函数 `clearFormData` 供 `reset`/`destroy` 路径调用,避免销毁场景触发异步 parse;`ComplexData.resetSearch` 改为 `Promise.resolve(search?.resetForm(...)).then(() => setSearch('reset'))` 链式调用,确保搜索在表单默认值解析完成后触发

+3
-3
{
"name": "@complex-suite/data",
"version": "5.0.16",
"version": "5.0.17",
"description": "a complex data",

@@ -15,4 +15,4 @@ "type": "module",

"dependencies": {
"@complex-suite/utils": "3.0.16",
"@complex-suite/plugin": "5.0.16"
"@complex-suite/utils": "3.0.17",
"@complex-suite/plugin": "5.0.17"
},

@@ -19,0 +19,0 @@ "devDependencies": {

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"target": "ES2016",
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"module": "ES2020",
"moduleResolution": "bundler",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts"]
}