Skip to content

Commit 4e27c71

Browse files
chore(release): 2.0.0-next.9 [skip ci]
# 2.0.0-next.9 (2024-05-05) ### Bug Fixes * **@forml/core, @forml/hooks:** more comprehensive prefix handling 0a20cf3 * **core:** dynamic: add prefix to RenderingContext 509482b * **core:** error/description fixes in text mapper 19798ae * **core:** fix array item titleFun usage 10fc02d * **core:** fix array titleFun usage 13f3ccc * **core:** fix useMemo on droppableId e006abb * **core:** restore default prop values 9124f99 * **core:** restore field validation a55fd58 * **core:** wrap item onChange in a memoized callback daa56c2 * **decorator-mui:** hide rowMax prop 684f5ea * **example:** fonts and css as webpack assets bb47009 * **hooks:** add validator to models 014fd1b * **hooks:** treat undefined as null in getTypeOf 859faf6 ### Features * **core:** optional prefix for SchemaRender 52ca371
1 parent ba8dd3f commit 4e27c71

File tree

12 files changed

+64
-40
lines changed

12 files changed

+64
-40
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
# 2.0.0-next.9 (2024-05-05)
2+
3+
4+
### Bug Fixes
5+
6+
* **@forml/core, @forml/hooks:** more comprehensive prefix handling 0a20cf3
7+
* **core:** dynamic: add prefix to RenderingContext 509482b
8+
* **core:** error/description fixes in text mapper 19798ae
9+
* **core:** fix array item titleFun usage 10fc02d
10+
* **core:** fix array titleFun usage 13f3ccc
11+
* **core:** fix useMemo on droppableId e006abb
12+
* **core:** restore default prop values 9124f99
13+
* **core:** restore field validation a55fd58
14+
* **core:** wrap item onChange in a memoized callback daa56c2
15+
* **decorator-mui:** hide rowMax prop 684f5ea
16+
* **example:** fonts and css as webpack assets bb47009
17+
* **hooks:** add validator to models 014fd1b
18+
* **hooks:** treat undefined as null in getTypeOf 859faf6
19+
20+
21+
### Features
22+
23+
* **core:** optional prefix for SchemaRender 52ca371
24+
125
# 2.0.0-next.8 (2024-05-03)
226

327

example/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

example/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@forml/example",
3-
"version": "2.0.0-next.8",
3+
"version": "2.0.0-next.9",
44
"description": "",
55
"main": "lib/index.js",
66
"private": true,

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@
1010
"packages/decorator-pdf",
1111
"example"
1212
],
13-
"version": "2.0.0-next.8"
13+
"version": "2.0.0-next.9"
1414
}

package-lock.json

Lines changed: 22 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "forml",
3-
"version": "2.0.0-next.8",
3+
"version": "2.0.0-next.9",
44
"description": "Small, fast, and powerful JSON-schema form generator for React.",
55
"keywords": [
66
"forml",

packages/core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@forml/core",
3-
"version": "2.0.0-next.8",
3+
"version": "2.0.0-next.9",
44
"description": "A JSON Schema-based form generator powered by React",
55
"main": "lib/index.js",
66
"scripts": {
@@ -35,7 +35,7 @@
3535
},
3636
"dependencies": {
3737
"@forml/context": "^2.0.0-next.1",
38-
"@forml/hooks": "^2.0.0-next.6",
38+
"@forml/hooks": "^2.0.0-next.9",
3939
"ajv": "^8.12.0",
4040
"deepmerge": "^4.3.1",
4141
"objectpath": "^2.0.0",
@@ -49,7 +49,7 @@
4949
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
5050
"@babel/preset-env": "^7.24.4",
5151
"@babel/preset-react": "^7.24.1",
52-
"@forml/decorator-barebones": "^2.0.0-next.6"
52+
"@forml/decorator-barebones": "^2.0.0-next.9"
5353
},
5454
"gitHead": "070e7bf9829f1b21c2d7100f935fdc624d43fdef"
5555
}

packages/decorator-barebones/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@forml/decorator-barebones",
3-
"version": "2.0.0-next.6",
3+
"version": "2.0.0-next.9",
44
"description": "A barebones decorator for forml; intended for testing, not production",
55
"main": "lib/index.js",
66
"scripts": {
@@ -40,7 +40,7 @@
4040
"@babel/preset-env": "^7.24.4",
4141
"@babel/preset-react": "^7.24.1",
4242
"@forml/context": "^2.0.0-next.1",
43-
"@forml/hooks": "^2.0.0-next.6"
43+
"@forml/hooks": "^2.0.0-next.9"
4444
},
4545
"dependencies": {
4646
"clsx": "^2.1.1",

packages/decorator-bootstrap/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@forml/decorator-bootstrap",
3-
"version": "2.0.0-next.6",
3+
"version": "2.0.0-next.9",
44
"description": "Bootstrap V4 forml decorator",
55
"keywords": [
66
"react",
@@ -42,7 +42,7 @@
4242
"react-dom": "^18.3.1"
4343
},
4444
"dependencies": {
45-
"@forml/hooks": "^2.0.0-next.6"
45+
"@forml/hooks": "^2.0.0-next.9"
4646
},
4747
"devDependencies": {
4848
"@forml/context": "^2.0.0-next.1",

packages/decorator-mui/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@forml/decorator-mui",
3-
"version": "2.0.0-next.8",
3+
"version": "2.0.0-next.9",
44
"description": "A forml decorator using MaterialUI",
55
"main": "lib/index.js",
66
"scripts": {
@@ -34,7 +34,7 @@
3434
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
3535
"@babel/preset-env": "^7.24.4",
3636
"@babel/preset-react": "^7.24.1",
37-
"@forml/core": "^2.0.0-next.8",
37+
"@forml/core": "^2.0.0-next.9",
3838
"@date-io/moment": "^3.0.0",
3939
"@testing-library/jest-dom": "^6.4.2",
4040
"@testing-library/react": "^15.0.5",
@@ -50,7 +50,7 @@
5050
"@emotion/react": "^11.11.4",
5151
"@emotion/styled": "^11.11.5",
5252
"@forml/context": "^2.0.0-next.1",
53-
"@forml/hooks": "^2.0.0-next.6",
53+
"@forml/hooks": "^2.0.0-next.9",
5454
"@mui/icons-material": "^5.15.15",
5555
"@mui/lab": "^5.0.0-alpha.170",
5656
"@mui/material": "^5.15.15",

0 commit comments

Comments
 (0)