Skip to content

Commit 1c7f017

Browse files
committed
parent 371c5da
author janryWang <[email protected]> 1576468726 +0800 committer janryWang <[email protected]> 1576468726 +0800 refactor(project): rebase feat: merge master feat: editor 新增菜单树 feat: FieldEditor 中组件、属性、校验规则可以不用枚举 fix: printer get api and add get form schema to doc (alibaba#482) fix(@uform/core): validate (alibaba#484) * fix: change submit and validate function * feat: add validate unit-test compat * feat: abandon this pr` * feat: doc update * feat: add try catch to inner valodate * feat: update validate case * feat: update unitest and cod * feat: update use field Fix form (alibaba#488) fix(@uform/core): fix init visible can not remove value (alibaba#492) * refactor(@uform/core): update onFormSubmit position * fix(@uform/antd/next): fix submit cannot autosubmit * fix(@uform/core): fix init visible can not remove value fix(@uform/antd): Warning Received `true` for a non-boolean attribute `inline` (alibaba#494) fix: types merge error fix: use omit to elegant & fix schema property `minItems ` (alibaba#493) fix(@uform/core): fix batch update(alibaba#497) refactor(antd): adjust the handling of importing components on demand (alibaba#485) chore(publish): v1.0.0-alpha.8 update readme Fix form submit (alibaba#498) * refactor(@uform/core): update onFormSubmit position * fix(@uform/antd/next): fix form submit fix: form effect demo (alibaba#499) fix(@uform/shared/react): fix depreated and get schema (alibaba#502) * fix: get schema and depreate * feat: remove window param Fix initialized (alibaba#505) Fix destructor (alibaba#506) fix(@uform/core): add values to submit resolve callback params (alibaba#508)
1 parent efbafd4 commit 1c7f017

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+1898
-541
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ npm-debug.log*
77
package-lock.json
88
lib/
99
esm/
10+
temp_esm/
1011
dist/
1112
build/
1213
coverage/
@@ -15,4 +16,4 @@ examples/test
1516
.idea/
1617
.vscode/
1718
TODO.md
18-
tsconfig.tsbuildinfo
19+
tsconfig.tsbuildinfo

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ English | [简体中文](./README.zh-cn.md)
22

33
<p align="center">
44
<img src="https://img.alicdn.com/tfs/TB19uf2XBGw3KVjSZFwXXbQ2FXa-1400-689.png">
5-
<a href="https://www.npmjs.com/package/@uform/core"><a href="#backers" alt="sponsors on Open Collective"><img src="https://opencollective.com/uform/backers/badge.svg" /></a> <a href="#sponsors" alt="Sponsors on Open Collective"><img src="https://opencollective.com/uform/sponsors/badge.svg" /></a> <img src="https://img.shields.io/npm/v/@uform/core.svg"></a>
5+
<a href="https://www.npmjs.com/package/@uform/core"><img src="https://img.shields.io/npm/v/@uform/core.svg"></a>
66
<a href="https://www.npmjs.com/package/@uform/react"><img src="https://img.shields.io/npm/v/@uform/react.svg"></a>
77
<a href="https://travis-ci.com/alibaba/uform"><img src="https://travis-ci.com/alibaba/uform.svg?branch=master"></a>
88
<a href="https://standardjs.com"><img src="https://img.shields.io/badge/code_style-standard-brightgreen.svg"></a>

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"test": "npm run lint && jest",
1616
"test:core": "jest --watch packages/core/src/__tests__/*.spec.ts",
1717
"test:hook": "jest --watch packages/react/src/__tests__/*.spec.tsx",
18+
"test:renderer": "jest --watch packages/react-schema-renderer/src/__tests__/*.spec.tsx",
1819
"test:editor": "jest --watch packages/react-schema-editor/src/__tests__/*.spec.ts",
1920
"test:prod": "cross-env TEST_ENV=production npm run build && jest",
2021
"doc:core": "doc-scripts start -i packages/core",

0 commit comments

Comments
 (0)