Skip to content

Commit d0a452c

Browse files
authored
Added Next.js app (#866)
* added next.js app * . * . * sandbox_simple - remove complex config * todo: why complex ? * doc * . * . * . * . * lint fix * reuse funcs * serialize export funcs * render from context * tmp!!!! * Revert "tmp!!!!" This reverts commit 290487a. * fix sanitizeTree * . * wip * . * . * . * . * ctx better shape * ssr antd * all components converted to use ctx * todo: session in cookie is bad * sid * test app * config mixins * . * lint fix * cs ci * tests fix * jsx fix * cs ci fix * new session approach * . . * . * . * patch version * body len * node-fetch * throttle * Revert "node-fetch" This reverts commit 6990f0b. * redis vs file * lint fix * redis * . * 6.2.0 * readme * fix onChange 2nd param - return basic config, not extended * fix compress for [] * readme * . * . * typo * . * . * . * . * not working * sanitizeTree? * ? * . * readme * tests * tests * fix types * tests * delete @mui/lab * applyJsonLogic * tree funcs * fixed & added tests * more tests * typo * try to fix fix time test1 test2 test3 test4 test5 test6 upd test packages codecov for pr . node 16 codecov log . test . enable cache FIX TESTS SKIP TEST Revert "test1" This reverts commit cdb9a35d0b62c5fa6459b95d2b38357825fa5e51. * throw * cov * . * ? * . * . * log * . * 1111 * clean time * clean * lint fix * upd @mui * . * wip #912 todo * Revert "wip #912 todo" This reverts commit 62289bd. * test: can use reversed op * more doc * . * . * urls * . . . . . * . * . * . * .
1 parent eeae6b7 commit d0a452c

File tree

145 files changed

+6190
-2904
lines changed

Some content is hidden

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

145 files changed

+6190
-2904
lines changed

.codesandbox/ci.json

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"packages": [
3+
"packages/core",
4+
"packages/ui",
5+
"packages/antd",
6+
"packages/mui",
7+
"packages/material",
8+
"packages/bootstrap",
9+
"packages/fluent"
10+
],
11+
"sandboxes": [
12+
"/packages/examples",
13+
"/packages/sandbox",
14+
"/packages/sandbox_simple",
15+
"/packages/sandbox_next"
16+
],
17+
"node": "18",
18+
"buildCommand": "build-libs"
19+
}

.deepsource.toml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ test_patterns = ["tests/**"]
55
exclude_patterns = [
66
"packages/sandbox/**",
77
"packages/sandbox_simple/**",
8+
"packages/sandbox_next/**",
89
"scripts/**"
910
]
1011

.github/workflows/codecov-report.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ name: CodeCov Report
22

33
on:
44
release:
5-
types: [published]
5+
types: [ published ]
6+
pull_request:
7+
branches: [ master ]
68
workflow_dispatch:
79

810
jobs:

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ coverage/
66
junit/
77
/package/
88
*.log
9+
.next/
910

1011
package-lock.json
1112
yarn.lock

.npmignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ coverage/
66
junit/
77
/package/
88
*.log
9+
.next/
910

1011
package-lock.json
1112
yarn.lock

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
2+
- 6.3.0
3+
- Allow saving and loading config from server (PR #866) (issue #817)
4+
- New utils: `compressConfig()`, `decompressConfig()`
5+
- New `settings.useConfigCompress`
6+
- Config now has `ctx` property
7+
- Added new test app `sandbox_next` to demonstrate new server-side features
8+
- Export utils (like `mongoFormatOp1`, `mongoFormatOp2`) in `CoreConfig.ctx.utils` (PR #866) (issue #890)
9+
- 2nd parameter of `onChange` callback now equals original config, not extended config (PR #866) (issue #364)
210
- 6.2.0
311
- Fixed type `Config`: should have render settings like `renderSize` (PR #909) (issue #879)
412
- Fixed type for `renderBeforeWidget`: `RuleProps` instead of wrong `FieldProps` (PR #909) (issue #879)

0 commit comments

Comments
 (0)