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 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
  [![Tests](https://github.com/germanbisurgi/jedison/actions/workflows/main.yml/badge.svg?branch=main)](https://github.com/germanbisurgi/jedison/actions/workflows/main.yml)
2
-
3
- # Jedison
4
-
5
- ## ๐Ÿš€ Quick Links
6
-
7
- ๐ŸŽฎ **[Playground](https://germanbisurgi.github.io/jedison/index.html?theme=bootstrap5)**
8
- Test and experiment with configuration options in a live environment.
9
-
10
- ๐Ÿ“– **[Documentation](https://germanbisurgi.github.io/jedison-docs/)**
11
- Learn how to use Jedison with detailed guides and interactive examples.
2
+ [![npm version](https://img.shields.io/npm/v/jedison)](https://www.npmjs.com/package/jedison)
3
+ [![npm downloads](https://img.shields.io/npm/dm/jedison)](https://www.npmjs.com/package/jedison)
4
+ [![bundle size](https://img.shields.io/bundlephobia/minzip/jedison)](https://bundlephobia.com/package/jedison)
5
+ [![dependencies](https://img.shields.io/badge/dependencies-0-brightgreen)](https://www.npmjs.com/package/jedison?activeTab=dependencies)
6
+ [![license](https://img.shields.io/npm/l/jedison)](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
+ &middot;
23
+ <a href="https://github.com/germanbisurgi/jedison/issues">Report Bug</a>
24
+ &middot;
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