cedar-embeddable-editor 2.0.1 → 2.0.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 +19 -0
- package/README.md +78 -634
- package/bundle-manifest.json +2 -2
- package/cedar-embeddable-editor.d.ts +22 -6
- package/cedar-embeddable-editor.js +78 -78
- package/license.txt +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.0.2] - 2026-08-27
|
|
11
|
+
|
|
12
|
+
The second stable release on the 2.x line adds field identities to required-value validation and
|
|
13
|
+
bundles the public `cedar-model-typescript-library@1.0.3`. The application and the visual fixtures
|
|
14
|
+
use that same model build, so the package exercised in browsers carries the contract those fixtures
|
|
15
|
+
were generated against.
|
|
16
|
+
|
|
17
|
+
### Added
|
|
18
|
+
|
|
19
|
+
- The data quality report now includes one `required` problem for each unsatisfied required field
|
|
20
|
+
declaration, with the same `path`, `field`, and `inputType` carried by other problems. The report's
|
|
21
|
+
four-member shape, required-field counters, and validity result are unchanged; hosts that already
|
|
22
|
+
read `problems` gain the field identities that the counters alone could not provide.
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- The application and visual-test dependency graphs now use the public
|
|
27
|
+
`cedar-model-typescript-library@1.0.3` release from npmjs.
|
|
28
|
+
|
|
10
29
|
## [2.0.1] - 2026-08-21
|
|
11
30
|
|
|
12
31
|
The first stable release on the 2.x line, published to npmjs as `cedar-embeddable-editor@2.0.1`.
|