« get me outta code hell

hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src/data/composite/wiki-properties/annotatedReferenceList.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/data/composite/wiki-properties/annotatedReferenceList.js')
-rw-r--r--src/data/composite/wiki-properties/annotatedReferenceList.js8
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'),