cedar-embeddable-editor 2.0.4 → 2.0.5
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 +43 -4
- package/bundle-manifest.json +2 -2
- package/cedar-embeddable-editor.js +131 -131
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,45 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.0.5] - 2026-09-03
|
|
11
|
+
|
|
12
|
+
This release aligns CEE's build-time model dependency with the public
|
|
13
|
+
`cedar-model-typescript-library@1.0.6` package. It also completes a pass over
|
|
14
|
+
the editor's read/write interaction states and the presentation of supplied
|
|
15
|
+
read-only instances.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Compact YAML downloads retain the artifact ID for templates, elements, fields, and instances.
|
|
20
|
+
|
|
21
|
+
- Read-only instances present recorded values as values rather than editable controls. Multiple
|
|
22
|
+
selections read as a list, temporal values respect their declared granularity, authority and
|
|
23
|
+
controlled-term identifiers remain available as links, and multi-instance fields keep their
|
|
24
|
+
occurrence controls alongside the field heading.
|
|
25
|
+
|
|
26
|
+
- Field specification text, numeric bounds, field and element identity markers, and the spacing of
|
|
27
|
+
editable forms are more compact and consistent.
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- Loading, clearing, and rejecting an over-limit edit in a multi-select no longer leaves stale
|
|
32
|
+
selection or validation state, erases an existing answer, or writes while the form is read-only.
|
|
33
|
+
|
|
34
|
+
- Required checkbox and multi-select fields now report an unanswered value correctly, and checkbox
|
|
35
|
+
view synchronization no longer mutates the instance.
|
|
36
|
+
|
|
37
|
+
- Paging, copying, adding, deleting, and emptying repeated fields and attribute-value fields keep
|
|
38
|
+
the displayed occurrence, cursor, and serialized instance in agreement.
|
|
39
|
+
|
|
40
|
+
- Temporal fields now preserve the selected year in month pickers, ignore an untouched AM/PM
|
|
41
|
+
control, restore invalid typed segments on blur, and display unreadable stored values explicitly.
|
|
42
|
+
|
|
43
|
+
- Controlled-term searches honor value arrangements, distinguish empty and failed result states,
|
|
44
|
+
recover after an aborted suggestion click, and retain a labelless loaded term by its IRI.
|
|
45
|
+
|
|
46
|
+
- Authority inputs no longer issue duplicate searches per keystroke and consistently reconcile
|
|
47
|
+
unselected free text on blur.
|
|
48
|
+
|
|
10
49
|
## [2.0.4] - 2026-09-01
|
|
11
50
|
|
|
12
51
|
This release aligns CEE's build-time model dependency with the public
|
|
@@ -243,12 +282,12 @@ null` for a literal and `{}` for an IRI — and the compact serialization, the o
|
|
|
243
282
|
value to show.
|
|
244
283
|
|
|
245
284
|
- `Compact YAML - Instance` in the download menu writes the model library's
|
|
246
|
-
compact instance form to `<name>-instance-compact.yaml`,
|
|
247
|
-
and
|
|
285
|
+
compact instance form to `<name>-instance-compact.yaml`, retaining root identity
|
|
286
|
+
and instance data while omitting provenance metadata.
|
|
248
287
|
|
|
249
288
|
- `Compact YAML - Template` in the download menu writes the model library's
|
|
250
|
-
compact template form to `<name>-template-compact.yaml`, alongside
|
|
251
|
-
YAML document rather than replacing it.
|
|
289
|
+
identified compact template form to `<name>-template-compact.yaml`, alongside
|
|
290
|
+
the full YAML document rather than replacing it.
|
|
252
291
|
|
|
253
292
|
- `CeeValidationProblem` declares `field` and `inputType`. Every problem has carried both and the
|
|
254
293
|
validation guide documents both, so the one kind of consumer the declarations exist for was the
|
package/bundle-manifest.json
CHANGED