Skip to content

Commit

Permalink
chore: update proform to v1.2.26
Browse files Browse the repository at this point in the history
  • Loading branch information
yiwwhl committed Mar 7, 2024
1 parent f288d9a commit 4931b48
Show file tree
Hide file tree
Showing 9 changed files with 1,067 additions and 4,406 deletions.
6 changes: 6 additions & 0 deletions packages/common/ProForm/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @harbor-design/proform

## 1.2.26

### Patch Changes

- improve pack size

## 1.2.25

### Patch Changes
Expand Down
5,428 changes: 1,033 additions & 4,395 deletions packages/common/ProForm/dist/index.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions packages/common/ProForm/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@harbor-design/proform",
"version": "1.2.25",
"version": "1.2.26",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down Expand Up @@ -31,9 +31,9 @@
],
"license": "MIT",
"dependencies": {
"lodash": "^4.17.21"
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@types/lodash": "^4.14.199"
"@types/lodash-es": "^4.17.12"
}
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { get, set } from "lodash";
import { get, set } from "lodash-es";
import { AdaptedInterfacePreset, AnyObject } from "../../types";
import { IS } from "../../utils";
import { toRaw } from "vue";
Expand Down
2 changes: 1 addition & 1 deletion packages/common/ProForm/src/services/Processor/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
replaceUndefinedInString,
} from "../../utils";
import Effect from "../Effect";
import { set } from "lodash";
import { set } from "lodash-es";

/**
* 基本描述
Expand Down
7 changes: 7 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @harbor-design/web

## 0.0.43

### Patch Changes

- Updated dependencies
- @harbor-design/proform@1.2.26

## 0.0.42

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@harbor-design/web",
"version": "0.0.42",
"version": "0.0.43",
"type": "module",
"scripts": {
"dev": "vite",
Expand Down
2 changes: 1 addition & 1 deletion packages/web/src/views/Form/DynamicArco/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ export default defineComponent({
resolve(model.age + "姓名");
});
},
field: markStructuredPathParsing("name[0].value"),
field: markStructuredPathParsing("name[0][0].value[0]"),
defaultValue({ shared }) {
return shared?.helloworld;
},
Expand Down
18 changes: 14 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4931b48

Please sign in to comment.