jedison 1.21.0 โ 1.22.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +26 -10
- package/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +13 -2
- package/dist/esm/jedison.js.map +1 -1
- package/dist/umd/jedison.umd.js +1 -1
- package/dist/umd/jedison.umd.js.map +1 -1
- package/package.json +26 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
### Unreleased
|
|
2
2
|
|
|
3
|
+
### 1.22.0
|
|
4
|
+
|
|
5
|
+
- Added issue #78: `x-defaultProperties` lets an object schema whitelist which optional properties show by default, without needing the properties-toggle opt-in
|
|
6
|
+
- Added issue #78: `x-defaultProperty` lets a property override that whitelist on its own schema, so a property reused via `$ref` can decide its own default visibility per consumer
|
|
7
|
+
|
|
8
|
+
### 1.21.1
|
|
9
|
+
|
|
10
|
+
- security updates
|
|
11
|
+
|
|
3
12
|
### 1.21.0
|
|
4
13
|
|
|
5
14
|
- Fixed issue #70: `dist` now rebuilds on version bump and before publish, so `Jedison.version` matches the package version
|
package/README.md
CHANGED
|
@@ -1,14 +1,30 @@
|
|
|
1
1
|
[](https://github.com/germanbisurgi/jedison/actions/workflows/main.yml)
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
[](https://www.npmjs.com/package/jedison)
|
|
3
|
+
[](https://www.npmjs.com/package/jedison)
|
|
4
|
+
[](https://bundlephobia.com/package/jedison)
|
|
5
|
+
[](https://www.npmjs.com/package/jedison?activeTab=dependencies)
|
|
6
|
+
[](https://github.com/germanbisurgi/jedison/blob/main/LICENSE)
|
|
7
|
+
|
|
8
|
+
<p align="center">
|
|
9
|
+
<a href="https://github.com/germanbisurgi/jedison">
|
|
10
|
+
<img src="https://raw.githubusercontent.com/germanbisurgi/jedison/main/public/images/jedison-mark.png" alt="Jedison logo" width="120" height="120">
|
|
11
|
+
</a>
|
|
12
|
+
|
|
13
|
+
<h3 align="center">Jedison</h3>
|
|
14
|
+
|
|
15
|
+
<p align="center">
|
|
16
|
+
Framework-agnostic JavaScript library that generates and validates forms from <a href="https://json-schema.org/">JSON Schema</a>.
|
|
17
|
+
<br />
|
|
18
|
+
<a href="https://germanbisurgi.github.io/jedison-docs/"><strong>Explore the docs ยป</strong></a>
|
|
19
|
+
<br />
|
|
20
|
+
<br />
|
|
21
|
+
<a href="https://germanbisurgi.github.io/jedison/index.html?theme=bootstrap5">View Playground</a>
|
|
22
|
+
·
|
|
23
|
+
<a href="https://github.com/germanbisurgi/jedison/issues">Report Bug</a>
|
|
24
|
+
·
|
|
25
|
+
<a href="https://github.com/germanbisurgi/jedison/issues">Request Feature</a>
|
|
26
|
+
</p>
|
|
27
|
+
</p>
|
|
12
28
|
|
|
13
29
|
## What is Jedison
|
|
14
30
|
|