jedison 1.22.0 → 1.22.2
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/dist/cjs/jedison.cjs +1 -1
- package/dist/cjs/jedison.cjs.map +1 -1
- package/dist/esm/jedison.js +42 -8
- 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 +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
### Unreleased
|
|
2
2
|
|
|
3
|
+
### 1.22.2
|
|
4
|
+
|
|
5
|
+
- Fixed issue #78: `x-defaultProperties`/`x-defaultProperty` had no effect on `oneOf`/`anyOf` branches under `x-discriminator` - `InstanceMultiple` was stomping each branch's defaults with an empty placeholder right after creation, also letting properties leak between branches
|
|
6
|
+
|
|
7
|
+
### 1.22.1
|
|
8
|
+
|
|
9
|
+
- 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
|
|
10
|
+
- 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
|
|
11
|
+
|
|
3
12
|
### 1.22.0
|
|
4
13
|
|
|
5
14
|
- Added issue #78: `x-defaultProperties` lets an object schema whitelist which optional properties show by default, without needing the properties-toggle opt-in
|