cedar-embeddable-editor 2.0.5 → 2.0.6
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 +47 -0
- package/README.md +1 -1
- package/bundle-manifest.json +2 -2
- package/cedar-embeddable-editor.js +89 -89
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,53 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [2.0.6] - 2026-09-04
|
|
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 fixes eleven field-widget
|
|
14
|
+
defects found by two audits of the editor's input modes, most of them in how a
|
|
15
|
+
required field reports an unanswered value and how a temporal or numeric field
|
|
16
|
+
treats a value still being typed.
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- A required external authority field emptied by its clear action or by deleting its text reports
|
|
21
|
+
the requirement again, instead of reporting itself satisfied over nothing.
|
|
22
|
+
|
|
23
|
+
- Choosing a second controlled term or authority term from a suggestion list that still holds the
|
|
24
|
+
first records the second. Material reports the deselection of the first through the same output,
|
|
25
|
+
after the choice, and that report used to overwrite the new value.
|
|
26
|
+
|
|
27
|
+
- The clock shows the minutes and seconds the field stores once the user leaves it, rather than
|
|
28
|
+
leaving their placeholders over a recorded `00`.
|
|
29
|
+
|
|
30
|
+
- A required temporal field says it is unanswered once a date has been picked from the calendar or
|
|
31
|
+
an offset chosen from the list and the value is still incomplete.
|
|
32
|
+
|
|
33
|
+
- A read-only attribute-value field no longer rewrites its slot, or publishes a change event, when
|
|
34
|
+
its name box loses focus.
|
|
35
|
+
|
|
36
|
+
- Paging a read-only repeating text field from an occurrence holding an ORCID or ROR to one holding
|
|
37
|
+
plain text no longer renders the text as a link to the previous occurrence's identifier, and the
|
|
38
|
+
widget returns to an input over the whole identifier should read-only mode be switched off.
|
|
39
|
+
|
|
40
|
+
- A numeric field validates the text the user typed rather than the number the browser parsed from
|
|
41
|
+
it, so the widget and the data quality report reach the same verdict on values such as `1.50` in a
|
|
42
|
+
one-decimal field.
|
|
43
|
+
|
|
44
|
+
- A required checkbox group states its requirement once the group has been touched or edited, as
|
|
45
|
+
every other widget does, rather than on first render.
|
|
46
|
+
|
|
47
|
+
- A temporal value still being entered says which part it lacks, and that nothing is recorded until
|
|
48
|
+
it is complete. An optional dateTime with only its date picked used to stay silent for good.
|
|
49
|
+
|
|
50
|
+
- The date picker no longer carries a requirement of its own, in one of its three templates and with
|
|
51
|
+
a red outline the other two never showed. The temporal field states the requirement once, below
|
|
52
|
+
the row.
|
|
53
|
+
|
|
54
|
+
- The numeric spinner and arrow keys step by the field's declared precision, one for an integer and
|
|
55
|
+
the smallest declared decimal place otherwise.
|
|
56
|
+
|
|
10
57
|
## [2.0.5] - 2026-09-03
|
|
11
58
|
|
|
12
59
|
This release aligns CEE's build-time model dependency with the public
|
package/README.md
CHANGED
|
@@ -18,7 +18,7 @@ Embeddable Editor*](https://doi.org/10.5334/dsj-2026-002), published in the
|
|
|
18
18
|
*Data Science Journal* (2026).
|
|
19
19
|
|
|
20
20
|
For embedding and using the CEE in a web application, see the
|
|
21
|
-
[CEDAR Embeddable Editor documentation](https://metadatacenter.readthedocs.io/en/latest/cedar-embeddable-editor/
|
|
21
|
+
[CEDAR Embeddable Editor documentation](https://metadatacenter.readthedocs.io/en/latest/cedar-embeddable-editor/).
|
|
22
22
|
|
|
23
23
|
This README covers developing, building, and testing the component.
|
|
24
24
|
|
package/bundle-manifest.json
CHANGED