@tonguetoquill/collection 0.15.0 → 0.16.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tonguetoquill/collection",
3
- "version": "0.15.0",
3
+ "version": "0.16.1",
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.12.0",
40
- "@quillmark/wasm": "^0.53.1"
39
+ "@quillmark/registry": "^0.13.0",
40
+ "@quillmark/wasm": "^0.54.0"
41
41
  }
42
42
  }
@@ -64,10 +64,11 @@ cards:
64
64
  written_grade_date:
65
65
  title: Written Grade Date
66
66
  type: date
67
+ default: ""
67
68
  ui:
68
69
  group: Record
69
70
  compact: true
70
- description: Date of written grade (column D).
71
+ description: Date of written grade (column D). Omit or leave blank when there is no written grade.
71
72
 
72
73
  positional_grade:
73
74
  title: Positional Grade
@@ -80,10 +81,11 @@ cards:
80
81
  positional_grade_date:
81
82
  title: Positional Grade Date
82
83
  type: date
84
+ default: ""
83
85
  ui:
84
86
  group: Record
85
87
  compact: true
86
- description: Date of positional grade (column F).
88
+ description: Date of positional grade (column F). Omit or leave blank when there is no positional grade.
87
89
 
88
90
  auth_or_remarks:
89
91
  title: Record of Authentication or Remarks
@@ -33,9 +33,9 @@ CARD: experience
33
33
  date: 2025-01-15
34
34
  action: "Assigned to 1 ACCS/DOT as Weapons Director"
35
35
  written_grade: ""
36
- written_grade_date: ""
36
+ written_grade_date: 2025-01-15
37
37
  positional_grade: ""
38
- positional_grade_date: ""
38
+ positional_grade_date: 2025-01-15
39
39
  auth_or_remarks: "Initial assignment"
40
40
  ---
41
41
 
@@ -47,7 +47,7 @@ action: "Completed written upgrade evaluation for 3-Level"
47
47
  written_grade: "3"
48
48
  written_grade_date: 2025-03-15
49
49
  positional_grade: ""
50
- positional_grade_date: ""
50
+ positional_grade_date: 2025-03-15
51
51
  auth_or_remarks: "Per AFMAN 13-1CRCV1"
52
52
  ---
53
53
 
@@ -57,7 +57,7 @@ CARD: experience
57
57
  date: 2025-06-20
58
58
  action: "Certified Mission Ready — positional upgrade"
59
59
  written_grade: ""
60
- written_grade_date: ""
60
+ written_grade_date: 2025-06-20
61
61
  positional_grade: "4"
62
62
  positional_grade_date: 2025-06-20
63
63
  auth_or_remarks: "SSgt Jones, T.R."
@@ -75,14 +75,12 @@ positional_grade_date: 2025-08-01
75
75
  auth_or_remarks: "Verified by unit commander"
76
76
  ---
77
77
 
78
- <!-- Example 5: PCS departure — no grade columns needed -->
78
+ <!-- Example 5: PCS departure — no written/positional grade; omit grade dates (or use "") -->
79
79
  ---
80
80
  CARD: experience
81
81
  date: 2025-09-01
82
82
  action: "PCS to 726 ACS/MOC, Tinker AFB OK"
83
83
  written_grade: ""
84
- written_grade_date: ""
85
84
  positional_grade: ""
86
- positional_grade_date: ""
87
85
  auth_or_remarks: "Outprocessed 1 ACCS/DOT"
88
86
  ---
@@ -4,8 +4,10 @@
4
4
  #set text(font: ("NimbusRomNo9L", "Times New Roman", "serif"))
5
5
 
6
6
  // `type: date` fields arrive as Typst `datetime`; PDF overlay expects strings.
7
+ // Missing / blank dates: helper uses `none`; empty strings may also appear from input.
7
8
  #let form-cell(v) = {
8
9
  if v == none { "" }
10
+ else if type(v) == str and v == "" { "" }
9
11
  else if type(v) == datetime {
10
12
  v.display("[month padding:none]/[day padding:none]/[year]")
11
13
  } else {
@@ -2,11 +2,11 @@
2
2
  QUILL: daf4392
3
3
 
4
4
  transportation_mode: "other"
5
- departure_date: "XX Mar 26"
5
+ departure_date: 2026-03-26
6
6
  final_destination: "123 Sesame St, Fake City, MS"
7
7
  notes: "Visiting Donald Duck over 3 day weekend."
8
8
  organization: "333 TRS"
9
- briefed_date: "XX Mar 26"
9
+ briefed_date: 2026-03-25
10
10
  briefee_name: "Doe, Jane"
11
11
  briefee_grade: "O-1"
12
12
  briefer_name: ""
@@ -17,7 +17,7 @@ emergency_contact_phone: "999-999-9999"
17
17
 
18
18
  ---
19
19
  CARD: itinerary
20
- date: "XX Mar"
20
+ date: 2026-03-26
21
21
  departure_point: "Biloxi, MS"
22
22
  arrival_point: "Fake City, MS"
23
23
  rest_length: "2 days"
@@ -26,7 +26,7 @@ mileage: "250"
26
26
 
27
27
  ---
28
28
  CARD: itinerary
29
- date: "XX Mar"
29
+ date: 2026-03-29
30
30
  departure_point: "Fake City, MS"
31
31
  arrival_point: "Biloxi, MS"
32
32
  rest_length: "0"
@@ -16,8 +16,8 @@ CARD: experience
16
16
  date: 2025-01-01
17
17
  action: "Describe the action or event"
18
18
  written_grade: ""
19
- written_grade_date: ""
19
+ written_grade_date: 2025-01-01
20
20
  positional_grade: ""
21
- positional_grade_date: ""
21
+ positional_grade_date: 2025-01-01
22
22
  auth_or_remarks: ""
23
23
  ---
@@ -2,11 +2,11 @@
2
2
  QUILL: daf4392@0.1
3
3
 
4
4
  transportation_mode: "other"
5
- departure_date: "XX Mar 26"
5
+ departure_date: 2026-03-26
6
6
  final_destination: "123 Sesame St, Fake City, MS"
7
7
  notes: "Visiting Donald Duck over 3 day weekend."
8
8
  organization: "333 TRS"
9
- briefed_date: "XX Mar 26"
9
+ briefed_date: 2026-03-25
10
10
  briefee_name: "Doe, Jane"
11
11
  briefee_grade: "O-1"
12
12
  briefer_name: ""
@@ -17,7 +17,7 @@ emergency_contact_phone: "999-999-9999"
17
17
 
18
18
  ---
19
19
  CARD: itinerary
20
- date: "XX Mar"
20
+ date: 2026-03-26
21
21
  departure_point: "Biloxi, MS"
22
22
  arrival_point: "Fake City, MS"
23
23
  rest_length: "2 days"
@@ -26,7 +26,7 @@ mileage: "250"
26
26
 
27
27
  ---
28
28
  CARD: itinerary
29
- date: "XX Mar"
29
+ date: 2026-03-29
30
30
  departure_point: "Fake City, MS"
31
31
  arrival_point: "Biloxi, MS"
32
32
  rest_length: "0"