jedison 1.21.1 โ 1.22.1
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 +10 -0
- package/README.md +20 -9
- package/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +45 -9
- 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 +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
### Unreleased
|
|
2
2
|
|
|
3
|
+
### 1.22.1
|
|
4
|
+
|
|
5
|
+
- Fixed issue #79: `x-buttons` on an array editor (`nav-horizontal`/`nav-vertical`/default) never fired - `refreshUI()` cleared the button's click listener right after it was registered. Schema-button listeners now live in their own list, separate from the one array editors clear on every refresh
|
|
6
|
+
- The object editor's "Add property" button now has its own icon (a circled plus) instead of reusing the array's plain "Add item" plus, which made the two easy to confuse
|
|
7
|
+
|
|
8
|
+
### 1.22.0
|
|
9
|
+
|
|
10
|
+
- Added issue #78: `x-defaultProperties` lets an object schema whitelist which optional properties show by default, without needing the properties-toggle opt-in
|
|
11
|
+
- 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
|
|
12
|
+
|
|
3
13
|
### 1.21.1
|
|
4
14
|
|
|
5
15
|
- security updates
|
package/README.md
CHANGED
|
@@ -5,15 +5,26 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/jedison?activeTab=dependencies)
|
|
6
6
|
[](https://github.com/germanbisurgi/jedison/blob/main/LICENSE)
|
|
7
7
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
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>
|
|
17
28
|
|
|
18
29
|
## What is Jedison
|
|
19
30
|
|