File tree Expand file tree Collapse file tree 10 files changed +35
-29
lines changed Expand file tree Collapse file tree 10 files changed +35
-29
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.5.14(2021-08-27)
4+
5+ ### :rose : Improve code quality
6+
7+ 1 . [ refactor(core): support drag source designerProps] ( https://github.com/alibaba/designable/commit/82ee47f ) :point_right : ( [ zhili.wzl] ( https://github.com/zhili.wzl ) )
8+
9+ ### :blush : Other Changes
10+
11+ 1 . [ chore(core): improve node quick selection] ( https://github.com/alibaba/designable/commit/fc8e6c3 ) :point_right : ( [ zhili.wzl] ( https://github.com/zhili.wzl ) )
12+
313## v0.5.13(2021-08-27)
414
515### :beetle : Bug Fixes
285295### :blush : Other Changes
286296
2872971 . [ chore(settings): fix MonacoInput onChangeHandler] ( https://github.com/alibaba/designable/commit/29c89e7 ) :point_right : ( [ zhili.wzl] ( https://github.com/zhili.wzl ) )
288-
289- ## v0.4.17(2021-07-28)
290-
291- ### :blush : Other Changes
292-
293- 1 . [ chore(settings): improve DrawerSetter ui] ( https://github.com/alibaba/designable/commit/c2387a6 ) :point_right : ( [ zhili.wzl] ( https://github.com/zhili.wzl ) )
Original file line number Diff line number Diff line change 11{
2- "version" : " 0.5.14 " ,
2+ "version" : " 0.5.15 " ,
33 "npmClient" : " yarn" ,
44 "useWorkspaces" : true ,
55 "npmClientArgs" : [" --ignore-engines" ],
Original file line number Diff line number Diff line change 11{
22 "name" : " @designable/core" ,
3- "version" : " 0.5.14 " ,
3+ "version" : " 0.5.15 " ,
44 "license" : " MIT" ,
55 "main" : " lib" ,
66 "types" : " lib/index.d.ts" ,
1515 "build:umd" : " rollup --config"
1616 },
1717 "dependencies" : {
18- "@designable/shared" : " 0.5.14 " ,
18+ "@designable/shared" : " 0.5.15 " ,
1919 "@formily/json-schema" : " ^2.0.0-beta.84" ,
2020 "@formily/path" : " ^2.0.0-beta.84" ,
2121 "@formily/reactive" : " ^2.0.0-beta.84" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @designable/formily" ,
3- "version" : " 0.5.14 " ,
3+ "version" : " 0.5.15 " ,
44 "license" : " MIT" ,
55 "main" : " lib" ,
66 "types" : " lib/index.d.ts" ,
1818 "access" : " public"
1919 },
2020 "dependencies" : {
21- "@designable/core" : " 0.5.14 " ,
22- "@designable/shared" : " 0.5.14 " ,
21+ "@designable/core" : " 0.5.15 " ,
22+ "@designable/shared" : " 0.5.15 " ,
2323 "@formily/core" : " ^2.0.0-beta.84" ,
2424 "@formily/json-schema" : " ^2.0.0-beta.84"
2525 },
Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ export const transformToSchema = (
3838 Object . assign ( schema , clone ( node . props ) )
3939 }
4040 schema [ '_designableId' ] = node . id
41+ schema [ '_sourceName' ] = node . sourceName
4142 if ( schema . type === 'array' ) {
4243 if ( node . children [ 0 ] ) {
4344 if (
@@ -91,6 +92,7 @@ export const transformToTreeNode = (
9192 if ( ! schema ) return
9293 const current = {
9394 id : schema [ '_designableId' ] || uid ( ) ,
95+ sourceName : schema [ '_sourceName' ] ,
9496 componentName : realOptions . designableFieldName ,
9597 props : cleanProps ( schema . toJSON ( false ) ) ,
9698 children : [ ] ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @designable/playground" ,
3- "version" : " 0.5.14 " ,
3+ "version" : " 0.5.15 " ,
44 "license" : " MIT" ,
55 "private" : true ,
66 "engines" : {
2525 "webpack-dev-server" : " ^3.10.1"
2626 },
2727 "dependencies" : {
28- "@designable/core" : " 0.5.14 " ,
29- "@designable/react" : " 0.5.14 " ,
30- "@designable/react-sandbox" : " 0.5.14 " ,
31- "@designable/react-settings-form" : " 0.5.14 " ,
32- "@designable/shared" : " 0.5.14 " ,
28+ "@designable/core" : " 0.5.15 " ,
29+ "@designable/react" : " 0.5.15 " ,
30+ "@designable/react-sandbox" : " 0.5.15 " ,
31+ "@designable/react-settings-form" : " 0.5.15 " ,
32+ "@designable/shared" : " 0.5.15 " ,
3333 "@formily/reactive" : " ^2.0.0-beta.84" ,
3434 "@formily/reactive-react" : " ^2.0.0-beta.84" ,
3535 "antd" : " ^4.15.2" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @designable/react-sandbox" ,
3- "version" : " 0.5.14 " ,
3+ "version" : " 0.5.15 " ,
44 "license" : " MIT" ,
55 "main" : " lib" ,
66 "types" : " lib/index.d.ts" ,
1818 "react" : " 16.x || 17.x"
1919 },
2020 "dependencies" : {
21- "@designable/react" : " 0.5.14 " ,
22- "@designable/shared" : " 0.5.14 "
21+ "@designable/react" : " 0.5.15 " ,
22+ "@designable/shared" : " 0.5.15 "
2323 },
2424 "publishConfig" : {
2525 "access" : " public"
Original file line number Diff line number Diff line change 11{
22 "name" : " @designable/react-settings-form" ,
3- "version" : " 0.5.14 " ,
3+ "version" : " 0.5.15 " ,
44 "license" : " MIT" ,
55 "main" : " lib" ,
66 "types" : " lib/index.d.ts" ,
2222 },
2323 "dependencies" : {
2424 "@babel/parser" : " ^7.14.7" ,
25- "@designable/core" : " 0.5.14 " ,
26- "@designable/react" : " 0.5.14 " ,
27- "@designable/shared" : " 0.5.14 " ,
25+ "@designable/core" : " 0.5.15 " ,
26+ "@designable/react" : " 0.5.15 " ,
27+ "@designable/shared" : " 0.5.15 " ,
2828 "@formily/antd" : " ^2.0.0-beta.84" ,
2929 "@formily/core" : " ^2.0.0-beta.84" ,
3030 "@formily/react" : " ^2.0.0-beta.84" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @designable/react" ,
3- "version" : " 0.5.14 " ,
3+ "version" : " 0.5.15 " ,
44 "license" : " MIT" ,
55 "main" : " lib" ,
66 "types" : " lib/index.d.ts" ,
1919 "react" : " 16.x || 17.x"
2020 },
2121 "dependencies" : {
22- "@designable/core" : " 0.5.14 " ,
23- "@designable/shared" : " 0.5.14 " ,
22+ "@designable/core" : " 0.5.15 " ,
23+ "@designable/shared" : " 0.5.15 " ,
2424 "@formily/reactive" : " ^2.0.0-beta.84" ,
2525 "@formily/reactive-react" : " ^2.0.0-beta.84" ,
2626 "@juggle/resize-observer" : " ^3.3.1" ,
Original file line number Diff line number Diff line change 11{
22 "name" : " @designable/shared" ,
3- "version" : " 0.5.14 " ,
3+ "version" : " 0.5.15 " ,
44 "license" : " MIT" ,
55 "main" : " lib" ,
66 "types" : " lib/index.d.ts" ,
You canβt perform that action at this time.
0 commit comments