@larsgw/formica 0.5.2 → 0.6.1
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 +18 -0
- package/lib/catalog/value.js +2 -2
- package/lib/resources/content/clavis.js +10 -0
- package/lib/resources/content/index.js +0 -0
- package/lib/resources/content/sdd.js +151 -0
- package/lib/resources/parse-text.js +2 -2
- package/lib/resources/sdd.js +78 -0
- package/package.json +1 -1
- package/src/catalog/value.ts +2 -2
- package/src/resources/parse-text.ts +2 -2
- package/test/resources.js +12 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## [0.6.1](https://github.com/identification-resources/formica/compare/v0.6.0...v0.6.1) (2024-03-20)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **resources:** allow two-part hybrid names ([8e3b836](https://github.com/identification-resources/formica/commit/8e3b8368985d1db35b62d306d833121150e91865))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
# [0.6.0](https://github.com/identification-resources/formica/compare/v0.5.2...v0.6.0) (2024-01-05)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **catalog:** add entry type, key type values ([ed6e4fb](https://github.com/identification-resources/formica/commit/ed6e4fb545e09cddb5d466f602bffb8a8483f043))
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
|
|
1
19
|
## [0.5.2](https://github.com/identification-resources/formica/compare/v0.5.1...v0.5.2) (2023-11-27)
|
|
2
20
|
|
|
3
21
|
|
package/lib/catalog/value.js
CHANGED
|
@@ -7,8 +7,8 @@ var spdxLicenseList = require("spdx-license-list");
|
|
|
7
7
|
var ietfTagListFactory = require("ietf-language-tag-regex");
|
|
8
8
|
var ietfTagList = ietfTagListFactory();
|
|
9
9
|
exports.FORMATS = {
|
|
10
|
-
ENTRY_TYPE: ['print', 'online', 'cd'],
|
|
11
|
-
KEY_TYPE: ['key', 'matrix', 'reference', 'gallery', 'checklist', 'supplement', 'collection'],
|
|
10
|
+
ENTRY_TYPE: ['print', 'online', 'cd', 'application'],
|
|
11
|
+
KEY_TYPE: ['key', 'matrix', 'reference', 'gallery', 'checklist', 'supplement', 'collection', 'algorithm'],
|
|
12
12
|
COMPLETE: ['TRUE', 'FALSE'],
|
|
13
13
|
ID: /^B\d+$/,
|
|
14
14
|
EDTF_0: /^(\d{4}(-\d{2}(-\d{2}(T\d{2}:\d{2}:\d{2}(Z|[-+]\d{2}(:\d{2})?))?)?)?|\d{4}(-\d{2}(-\d{2})?)?\/(\d{4}(-\d{2}(-\d{2})?)?|\.\.))$/,
|
|
File without changes
|