@tonguetoquill/collection 0.1.19 → 0.2.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 +2 -2
- package/quills/af4141/0.1.0/Quill.yaml +96 -0
- package/quills/af4141/0.1.0/assets/Figtree-Bold.ttf +0 -0
- package/quills/af4141/0.1.0/assets/Figtree-Italic.ttf +0 -0
- package/quills/af4141/0.1.0/assets/Figtree-Regular.ttf +0 -0
- package/quills/af4141/0.1.0/design/TASK.md +20 -0
- package/quills/af4141/0.1.0/design/af4141.pdf +0 -0
- package/quills/af4141/0.1.0/example.md +36 -0
- package/quills/af4141/0.1.0/packages/typst-af4141/FIELDS.json +3170 -0
- package/quills/af4141/0.1.0/packages/typst-af4141/form.typ +538 -0
- package/quills/af4141/0.1.0/packages/typst-af4141/lib.typ +227 -0
- package/quills/af4141/0.1.0/packages/typst-af4141/page1.png +0 -0
- package/quills/af4141/0.1.0/packages/typst-af4141/page2.png +0 -0
- package/quills/af4141/0.1.0/packages/typst-af4141/typst.toml +7 -0
- package/quills/af4141/0.1.0/plate.typ +48 -0
- package/quills/classic_resume/0.1.0/plate.typ +1 -1
- package/quills/cmu_letter/0.1.0/plate.typ +1 -1
- package/quills/usaf_memo/0.1.0/plate.typ +1 -1
- package/quills/usaf_memo/0.2.0/plate.typ +1 -1
- package/templates/af4141.md +88 -0
- package/templates/loc.md +2 -2
- package/templates/templates.json +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tonguetoquill/collection",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
6
6
|
"url": "git+https://github.com/nibsbin/tonguetoquill-collection.git"
|
|
@@ -36,6 +36,6 @@
|
|
|
36
36
|
"dependencies": {},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"@quillmark/registry": "^0.6.1",
|
|
39
|
-
"@quillmark/wasm": "^0.
|
|
39
|
+
"@quillmark/wasm": "^0.41.0"
|
|
40
40
|
}
|
|
41
41
|
}
|
|
@@ -0,0 +1,96 @@
|
|
|
1
|
+
Quill:
|
|
2
|
+
name: af4141
|
|
3
|
+
version: 0.1.0
|
|
4
|
+
backend: typst
|
|
5
|
+
plate_file: plate.typ
|
|
6
|
+
ui:
|
|
7
|
+
hide_body: true
|
|
8
|
+
example_file: example.md
|
|
9
|
+
description: "AF Form 4141 — Individual's Record of Duties and Experience, Ground Environment Personnel"
|
|
10
|
+
|
|
11
|
+
fields:
|
|
12
|
+
name:
|
|
13
|
+
title: Name (Last, First, MI)
|
|
14
|
+
type: string
|
|
15
|
+
required: true
|
|
16
|
+
ui:
|
|
17
|
+
group: Personnel
|
|
18
|
+
description: Full name in Last, First, Middle Initial format.
|
|
19
|
+
|
|
20
|
+
unit:
|
|
21
|
+
title: Unit of Assignment
|
|
22
|
+
type: string
|
|
23
|
+
required: true
|
|
24
|
+
ui:
|
|
25
|
+
group: Personnel
|
|
26
|
+
description: Unit or organization of assignment.
|
|
27
|
+
|
|
28
|
+
grade:
|
|
29
|
+
title: Grade/CCC Level
|
|
30
|
+
type: string
|
|
31
|
+
ui:
|
|
32
|
+
group: Personnel
|
|
33
|
+
description: Current grade or CCC level.
|
|
34
|
+
|
|
35
|
+
commanders_auth:
|
|
36
|
+
title: Commander's Record of Authentication
|
|
37
|
+
type: string
|
|
38
|
+
ui:
|
|
39
|
+
group: Personnel
|
|
40
|
+
description: Commander's authentication entry on page 1.
|
|
41
|
+
|
|
42
|
+
cards:
|
|
43
|
+
experience:
|
|
44
|
+
title: Record of Experience
|
|
45
|
+
description: Each card represents one row in the Record of Experience table. Rows fill page 1 (up to 16 rows) then page 2 (up to 21 rows), for a maximum of 37 rows.
|
|
46
|
+
ui:
|
|
47
|
+
hide_body: true
|
|
48
|
+
fields:
|
|
49
|
+
date:
|
|
50
|
+
title: Date
|
|
51
|
+
type: string
|
|
52
|
+
ui:
|
|
53
|
+
group: Record
|
|
54
|
+
description: Date of the action (column A).
|
|
55
|
+
|
|
56
|
+
action:
|
|
57
|
+
title: Mandatory Actions to be Reported
|
|
58
|
+
type: string
|
|
59
|
+
ui:
|
|
60
|
+
group: Record
|
|
61
|
+
description: One type of action per line (column B).
|
|
62
|
+
|
|
63
|
+
written_grade:
|
|
64
|
+
title: Written Grade
|
|
65
|
+
type: string
|
|
66
|
+
ui:
|
|
67
|
+
group: Record
|
|
68
|
+
description: Written grade, if applicable (column C).
|
|
69
|
+
|
|
70
|
+
written_grade_date:
|
|
71
|
+
title: Written Grade Date
|
|
72
|
+
type: string
|
|
73
|
+
ui:
|
|
74
|
+
group: Record
|
|
75
|
+
description: Date of written grade (column D).
|
|
76
|
+
|
|
77
|
+
positional_grade:
|
|
78
|
+
title: Positional Grade
|
|
79
|
+
type: string
|
|
80
|
+
ui:
|
|
81
|
+
group: Record
|
|
82
|
+
description: Positional grade, if applicable (column E).
|
|
83
|
+
|
|
84
|
+
positional_grade_date:
|
|
85
|
+
title: Positional Grade Date
|
|
86
|
+
type: string
|
|
87
|
+
ui:
|
|
88
|
+
group: Record
|
|
89
|
+
description: Date of positional grade (column F).
|
|
90
|
+
|
|
91
|
+
auth_or_remarks:
|
|
92
|
+
title: Record of Authentication or Remarks
|
|
93
|
+
type: string
|
|
94
|
+
ui:
|
|
95
|
+
group: Record
|
|
96
|
+
description: Authentication or remarks entry (column G).
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
I visually mapped out a bunch of fields on the form to the typst field names. The intent is to write a plate and field schema that interfaces with the Typst form and exposes an ergonomic API to the Quill consumer. See [Creating Quills](https://quillmark.readthedocs.io/en/latest/guides/creating-quills/) to learn how to write the field schema.
|
|
2
|
+
|
|
3
|
+
Note that the following field names are not authortative; use your discretion to name them ergonomically.
|
|
4
|
+
|
|
5
|
+
## Admin Fields
|
|
6
|
+
|
|
7
|
+
Name: `commonforms_text_p1_1`
|
|
8
|
+
Unit: `commonforms_text_p1_2`
|
|
9
|
+
Grade/CCC Level: `commonforms_text_p1_3`
|
|
10
|
+
|
|
11
|
+
## Record of Experience table fields
|
|
12
|
+
|
|
13
|
+
Date: `commonforms_text_p1_{4,7,18,...,109}` and `commonforms_text_p2_{1,8,15,...141}`
|
|
14
|
+
Mandatory Actions to be Reported: `commonforms_text_p1_{5,12,19,...,110}` and `commonforms_text_p2_{2,9,16,...,142}`
|
|
15
|
+
written_grade: `commonforms_text_p1_{6,13,...111}` and `commonforms_text_p2_{3,10,...,143}`
|
|
16
|
+
writen_grade_date: `commonforms_text_p1_{7,14,...,112}` and `commonforms_text_p2_{4,11,144}`
|
|
17
|
+
positional_grade: `commonforms_text_p1_{8,15,...,113}` and `commonforms_text_p2_{5,12,...,145}`
|
|
18
|
+
positional_grade_date: `commonforms_text_p1_{9,...,114}` and
|
|
19
|
+
`commonforms_text_p2_{6,...,145}`
|
|
20
|
+
auth_or_remarks: `commonforms_text_p1_{10,...,115}` and `commonforms_text_p2_{7,...,146}`
|
|
Binary file
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
---
|
|
2
|
+
QUILL: af4141@0.1
|
|
3
|
+
name: "DOE, JOHN A."
|
|
4
|
+
unit: "1 CACS/DOT"
|
|
5
|
+
grade: "GS-13"
|
|
6
|
+
commanders_auth: "Verified by unit commander"
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
---
|
|
10
|
+
CARD: experience
|
|
11
|
+
date: "2025-01-15"
|
|
12
|
+
action: "Assigned to 1 CACS/DOT as Weapons Director"
|
|
13
|
+
written_grade: "3"
|
|
14
|
+
written_grade_date: "2025-01-20"
|
|
15
|
+
positional_grade: "3"
|
|
16
|
+
positional_grade_date: "2025-01-20"
|
|
17
|
+
auth_or_remarks: "Initial assignment"
|
|
18
|
+
---
|
|
19
|
+
|
|
20
|
+
---
|
|
21
|
+
CARD: experience
|
|
22
|
+
date: "2025-06-01"
|
|
23
|
+
action: "Completed WD upgrade evaluation — certified Mission Ready"
|
|
24
|
+
written_grade: "5"
|
|
25
|
+
written_grade_date: "2025-06-10"
|
|
26
|
+
positional_grade: "5"
|
|
27
|
+
positional_grade_date: "2025-06-10"
|
|
28
|
+
auth_or_remarks: "Per AFMAN 13-1CRCV1"
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
---
|
|
32
|
+
CARD: experience
|
|
33
|
+
date: "2025-09-15"
|
|
34
|
+
action: "PCS to 726 ACS/DOT"
|
|
35
|
+
auth_or_remarks: "Outprocessed 1 CACS"
|
|
36
|
+
---
|