@tonguetoquill/collection 0.8.1 → 0.10.0
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tonguetoquill/collection",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nibsbin/tonguetoquill-collection.git"
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {},
|
|
38
38
|
"devDependencies": {
|
|
39
|
-
"@quillmark/registry": "^0.
|
|
39
|
+
"@quillmark/registry": "^0.12.0",
|
|
40
40
|
"@quillmark/wasm": "^0.49.0"
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -84,10 +84,19 @@ main:
|
|
|
84
84
|
compact: true
|
|
85
85
|
description: "Put in your Grade."
|
|
86
86
|
|
|
87
|
-
|
|
88
|
-
title: Emergency
|
|
89
|
-
type:
|
|
90
|
-
|
|
87
|
+
emergency_contact_name:
|
|
88
|
+
title: Emergency Contact Name
|
|
89
|
+
type: string
|
|
90
|
+
required: true
|
|
91
|
+
description: "Put in your Emergency Contact Name."
|
|
92
|
+
ui.compact: true
|
|
93
|
+
|
|
94
|
+
emergency_contact_phone:
|
|
95
|
+
title: Emergency Contact Phone
|
|
96
|
+
type: string
|
|
97
|
+
required: true
|
|
98
|
+
description: "Put in your Emergency Contact's Phone Number."
|
|
99
|
+
ui.compact: true
|
|
91
100
|
|
|
92
101
|
|
|
93
102
|
cards:
|
|
@@ -65,4 +65,15 @@
|
|
|
65
65
|
#tf(270pt, 680pt)[#data.at("briefer_grade", default: "")]
|
|
66
66
|
|
|
67
67
|
// Emergency Contact
|
|
68
|
-
#
|
|
68
|
+
#{
|
|
69
|
+
let emergency_name = str(data.at("emergency_contact_name", default: ""))
|
|
70
|
+
let emergency_phone = str(data.at("emergency_contact_phone", default: ""))
|
|
71
|
+
let emergency_contact = if emergency_name != "" and emergency_phone != "" {
|
|
72
|
+
emergency_name + ": " + emergency_phone
|
|
73
|
+
} else if emergency_name != "" {
|
|
74
|
+
emergency_name
|
|
75
|
+
} else {
|
|
76
|
+
emergency_phone
|
|
77
|
+
}
|
|
78
|
+
tf(40pt, 700pt)[#text(size: 10pt, weight: "bold")[EMERGENCY CONTACT:] #text(size: 10pt)[#eval-markup(emergency_contact)]]
|
|
79
|
+
}
|
package/templates/daf4392.md
CHANGED