diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-01-03 08:11:15 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-01-03 08:11:15 -0400 |
commit | a2488d2f5f5d1b9ef096c2d9968c56e6439adcac (patch) | |
tree | 2bb65015f29e3c3b76a58e5c80ced9bed1ca3a68 /src/data/composite/wiki-properties/annotatedReferenceList.js | |
parent | c6687d47da7d5e065b75b2ae22deb4671dd1671b (diff) |
data: with{Resolved,Reverse}AnnotatedReferenceList: dates
Diffstat (limited to 'src/data/composite/wiki-properties/annotatedReferenceList.js')
-rw-r--r-- | src/data/composite/wiki-properties/annotatedReferenceList.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/data/composite/wiki-properties/annotatedReferenceList.js b/src/data/composite/wiki-properties/annotatedReferenceList.js index 860f3c3d..d6364475 100644 --- a/src/data/composite/wiki-properties/annotatedReferenceList.js +++ b/src/data/composite/wiki-properties/annotatedReferenceList.js @@ -4,6 +4,7 @@ import {combineWikiDataArrays} from '#wiki-data'; import { isContentString, + isDate, optional, validateArrayItems, validateProperties, @@ -28,6 +29,11 @@ export default templateCompositeFrom({ data: inputWikiData({allowMixedTypes: true}), find: input({type: 'function'}), + date: input({ + validate: isDate, + acceptsNull: true, + }), + reference: input.staticValue({type: 'string', defaultValue: 'reference'}), annotation: input.staticValue({type: 'string', defaultValue: 'annotation'}), thing: input.staticValue({type: 'string', defaultValue: 'thing'}), @@ -53,6 +59,8 @@ export default templateCompositeFrom({ withResolvedAnnotatedReferenceList({ list: input.updateValue(), + date: input('date'), + reference: input('reference'), annotation: input('annotation'), thing: input('thing'), |