@tonguetoquill/collection 0.3.0 → 0.3.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/package.json +1 -1
- package/quills/daf4392/0.1.0/Quill.yaml +18 -7
- package/quills/daf4392/0.1.0/assets/page1.png +0 -0
- package/quills/daf4392/0.1.0/plate.typ +20 -12
- package/quills/daf4392/0.1.0/packages/daf4392page2_pkg/out/debug.typ +0 -4
- package/quills/daf4392/0.1.0/packages/daf4392page2_pkg/out/example.typ +0 -4
- package/quills/daf4392/0.1.0/packages/daf4392page2_pkg/page1.png +0 -0
package/package.json
CHANGED
|
@@ -16,6 +16,17 @@ fields:
|
|
|
16
16
|
required: true
|
|
17
17
|
description: "Matches the check box."
|
|
18
18
|
|
|
19
|
+
dept_flight_num:
|
|
20
|
+
title: Departure Flight Number
|
|
21
|
+
type: string
|
|
22
|
+
description: "Departure flight number."
|
|
23
|
+
|
|
24
|
+
arrival_flight_num:
|
|
25
|
+
title: Arrival Flight Number
|
|
26
|
+
type: string
|
|
27
|
+
description: "Arrival flight number."
|
|
28
|
+
|
|
29
|
+
|
|
19
30
|
departure_date:
|
|
20
31
|
title: Departure Date
|
|
21
32
|
type: date
|
|
@@ -43,7 +54,7 @@ fields:
|
|
|
43
54
|
required: true
|
|
44
55
|
ui:
|
|
45
56
|
compact: true
|
|
46
|
-
description: "Unit / Organization
|
|
57
|
+
description: "Unit / Organization."
|
|
47
58
|
|
|
48
59
|
briefed_date:
|
|
49
60
|
title: Date Briefed
|
|
@@ -51,7 +62,7 @@ fields:
|
|
|
51
62
|
required: true
|
|
52
63
|
ui:
|
|
53
64
|
compact: true
|
|
54
|
-
description: "
|
|
65
|
+
description: "Put in today's date."
|
|
55
66
|
|
|
56
67
|
briefee_name:
|
|
57
68
|
title: Individual Receiving Brief (Name)
|
|
@@ -59,29 +70,29 @@ fields:
|
|
|
59
70
|
required: true
|
|
60
71
|
ui:
|
|
61
72
|
compact: true
|
|
62
|
-
description: "Name (Last, First)
|
|
73
|
+
description: "Put in your Name (Last, First)."
|
|
63
74
|
|
|
64
75
|
briefee_grade:
|
|
65
76
|
title: Individual Receiving Brief (Grade)
|
|
66
77
|
type: string
|
|
67
78
|
ui:
|
|
68
79
|
compact: true
|
|
69
|
-
description: "
|
|
80
|
+
description: "Put in your Grade."
|
|
70
81
|
|
|
71
82
|
emergency_contact_name:
|
|
72
83
|
title: Emergency Contact Name
|
|
73
84
|
type: string
|
|
74
|
-
description: "
|
|
85
|
+
description: "Put in your Emergency Contact Name."
|
|
75
86
|
|
|
76
87
|
emergency_contact_phone:
|
|
77
88
|
title: Emergency Contact Phone
|
|
78
89
|
type: string
|
|
79
|
-
description: "
|
|
90
|
+
description: "Put in your Emergency Contact's Phone Number."
|
|
80
91
|
|
|
81
92
|
cards:
|
|
82
93
|
itinerary:
|
|
83
94
|
title: Proposed Travel Itinerary
|
|
84
|
-
description: "Each card represents one row in the travel itinerary table. Up to
|
|
95
|
+
description: "Each card represents one row in the travel itinerary table. Up to 10 rows are supported."
|
|
85
96
|
ui:
|
|
86
97
|
hide_body: true
|
|
87
98
|
fields:
|
|
Binary file
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
|
|
21
21
|
// Fields
|
|
22
22
|
#tf(40pt, 100pt)[#data.at("departure_date", default: "")]
|
|
23
|
-
#tf(
|
|
23
|
+
#tf(123pt, 100pt)[#data.at("final_destination", default: "")]
|
|
24
24
|
|
|
25
25
|
// Itinerary Rows (via CARDS)
|
|
26
26
|
#{
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
let dy-step = 40pt
|
|
30
30
|
if "CARDS" in data {
|
|
31
31
|
for card in data.CARDS {
|
|
32
|
-
if card.CARD == "itinerary" and row <
|
|
32
|
+
if card.CARD == "itinerary" and row < 10 {
|
|
33
33
|
let dy = dy-start + (row * dy-step)
|
|
34
34
|
tf(80pt, dy)[#card.at("date", default: "")]
|
|
35
35
|
tf(135pt, dy)[#card.at("departure_point", default: "")]
|
|
36
|
-
tf(
|
|
36
|
+
tf(295pt, dy)[#card.at("arrival_point", default: "")]
|
|
37
37
|
tf(450pt, dy)[#card.at("rest_length", default: "")]
|
|
38
38
|
tf(515pt, dy)[#card.at("mileage", default: "")]
|
|
39
39
|
row = row + 1
|
|
@@ -42,19 +42,27 @@
|
|
|
42
42
|
}
|
|
43
43
|
}
|
|
44
44
|
|
|
45
|
+
// Flight Info
|
|
46
|
+
#{
|
|
47
|
+
let d-flight = str(data.at("dept_flight_num", default: ""))
|
|
48
|
+
if d-flight != "" { tf(400pt, 545pt)[#text(weight: "bold")[Dept Flight:] #d-flight] }
|
|
49
|
+
|
|
50
|
+
let a-flight = str(data.at("arrival_flight_num", default: ""))
|
|
51
|
+
if a-flight != "" { tf(450pt, 545pt)[#text(weight: "bold")[Arr Flight:] #a-flight] }
|
|
52
|
+
}
|
|
53
|
+
|
|
45
54
|
// Notes
|
|
46
|
-
#tf(40pt,
|
|
55
|
+
#tf(40pt, 565pt)[#block(width: 530pt)[#data.at("notes", default: "")]]
|
|
47
56
|
|
|
48
57
|
// Acknowledgements
|
|
49
|
-
#tf(40pt,
|
|
50
|
-
#tf(500pt,
|
|
58
|
+
#tf(40pt, 620pt)[#data.at("organization", default: "")]
|
|
59
|
+
#tf(500pt, 620pt)[#data.at("briefed_date", default: "")]
|
|
51
60
|
|
|
52
|
-
#tf(40pt,
|
|
53
|
-
#tf(270pt,
|
|
61
|
+
#tf(40pt, 650pt)[#data.at("briefee_name", default: "")]
|
|
62
|
+
#tf(270pt, 650pt)[#data.at("briefee_grade", default: "")]
|
|
54
63
|
|
|
55
|
-
#tf(40pt,
|
|
56
|
-
#tf(270pt,
|
|
64
|
+
#tf(40pt, 680pt)[#data.at("briefer_name", default: "")]
|
|
65
|
+
#tf(270pt, 680pt)[#data.at("briefer_grade", default: "")]
|
|
57
66
|
|
|
58
67
|
// Emergency Contact
|
|
59
|
-
#tf(40pt,
|
|
60
|
-
#tf(40pt, 520pt)[#text(size: 12pt)[#data.at("emergency_contact_name", default: ""): #data.at("emergency_contact_phone", default: "")]]
|
|
68
|
+
#tf(40pt, 700pt)[#text(size: 10pt, weight: "bold")[EMERGENCY CONTACT:] #text(size: 10pt)[#data.at("emergency_contact_name", default: ""): #data.at("emergency_contact_phone", default: "")]]
|
|
Binary file
|