@tonguetoquill/collection 0.13.2 → 0.13.4

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.13.2",
3
+ "version": "0.13.4",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nibsbin/tonguetoquill-collection.git"
@@ -8,7 +8,7 @@ Quill:
8
8
 
9
9
  main:
10
10
  ui:
11
- hide_body: true
11
+ hide_body: false
12
12
  fields:
13
13
  award:
14
14
  title: Award
@@ -37,16 +37,11 @@ main:
37
37
  unit_commander_rank_name_and_telephone:
38
38
  title: Rank/Name of Unit Commander & Telephone (DSN/Commercial)
39
39
  type: string
40
- accomplishments:
41
- title: Specific Accomplishments (Page 1)
42
- type: markdown
43
- ui:
44
- multiline: true
45
- rankname_of_nominee_page_2:
46
- title: Rank/Name of Nominee (Page 2 — optional; defaults to Page 1)
47
- type: string
48
- accomplishments_continued:
49
- title: Specific Accomplishments (Continued — Page 2)
50
- type: markdown
51
- ui:
52
- multiline: true
40
+
41
+ cards:
42
+ accomplishments_continued:
43
+ title: Specific Accomplishments (Continued — Page 2)
44
+ description: Optional. Add this card only when page 2 overflow is required. Use the card body for continued bullets. Rank/name on page 2 matches the main nominee line automatically.
45
+ ui:
46
+ hide_body: false
47
+ fields: {}
@@ -1,19 +1,23 @@
1
1
  ---
2
2
  QUILL: daf1206@0.1.0
3
- award: "AIR AND SPACE ACHIEVEMENT MEDAL"
4
- category: "Terrestrial"
5
- award_period: "1 Jan 24 - 31 Dec 24"
6
- rankname_of_nominee: "SSgt Doe, John A."
7
- majcom_fldcom_foa_or_dru: "ACC"
8
- dafscduty_title: "1D7X1 / Cyber Operator"
9
- nominees_telephone: "DSN: 123-4567 / Comm: (123) 456-7890"
10
- unitoffice_symbol: "1st Communications Squadron / SC, 123 Main St, AFB, ST 12345"
11
- unit_commander: "Capt Jane Smith / DSN: 123-4568 / Comm: (123) 456-7891"
3
+ award: "CY2018 Stripes for Exceptional Performers II Board"
4
+ category_if_applicable: "Senior Master Sgt"
5
+ award_period: "N/A"
6
+ rankname_of_nominee: "Smith, John Q., SMSgt"
7
+ majcom_fldcom_foa_or_dru: "MAJCOM of Assignment"
8
+ dafsc_duty_title: "3F071/NCOIC, 123rd Force Support Squadron"
9
+ nominees_telephone_dsn_commercial: "DSN XXXX-XXXX, Comm (XXX) XXX-XXXX"
10
+ unit_office_symbol_street_address_base_state_zip: "123 FSS/FMSPD, Someplace AFB, CO XXXXX"
11
+ unit_commander_rank_name_and_telephone: "Lt Col Jane C. Doe, DSN XXX-XXXXXXX, Comm (XXX) XXX-XXXX"
12
+ ---
12
13
 
13
- accomplishments: |-
14
- - **Spearheaded major network upgrade**; improved speed by 50%
15
- - Mentored 5 Airmen; 100% upgrade training completion rate
14
+ Use this main body for page 1 accomplishments.
15
+ - Keep bullet format.
16
+ - Replace all placeholder values.
16
17
 
17
- accomplishments_continued: |-
18
- - Continued excellence in supporting base communications
19
18
  ---
19
+ CARD: accomplishments_continued
20
+ ---
21
+
22
+ Use this card body only if page 2 overflow is needed.
23
+ - Add continuation bullets here.
@@ -9,7 +9,10 @@
9
9
  #if "award" in data { vals.insert("AWARD", data.award) }
10
10
  #if "category_if_applicable" in data { vals.insert("CATEGORY_If_Applicable", data.category_if_applicable) }
11
11
  #if "award_period" in data { vals.insert("AWARD_PERIOD", data.award_period) }
12
- #if "rankname_of_nominee" in data { vals.insert("RANKNAME_OF_NOMINEE_First_Middle_Initial_Last", data.rankname_of_nominee) }
12
+ #if "rankname_of_nominee" in data {
13
+ vals.insert("RANKNAME_OF_NOMINEE_First_Middle_Initial_Last", data.rankname_of_nominee)
14
+ vals.insert("RANKNAME_OF_NOMINEE_First_Middle_Initial_Last_2", data.rankname_of_nominee)
15
+ }
13
16
  #if "majcom_fldcom_foa_or_dru" in data { vals.insert("MAJCOM_FLDCOM_FOA_OR_DRU", data.majcom_fldcom_foa_or_dru) }
14
17
  #if "dafsc_duty_title" in data { vals.insert("DAFSCDUTY_TITLE", data.dafsc_duty_title) }
15
18
  #if "nominees_telephone_dsn_commercial" in data {
@@ -27,22 +30,18 @@
27
30
  data.unit_commander_rank_name_and_telephone,
28
31
  )
29
32
  }
30
- #if "accomplishments" in data {
33
+ #if "BODY" in data {
31
34
  vals.insert(
32
35
  "SPECIFIC_ACCOMPLISHMENTS_Use_Performance_Statements_IAW_DAFMAN_362806",
33
- data.accomplishments,
36
+ data.BODY,
34
37
  )
35
38
  }
36
- #if "rankname_of_nominee_page_2" in data {
37
- vals.insert("RANKNAME_OF_NOMINEE_First_Middle_Initial_Last_2", data.rankname_of_nominee_page_2)
38
- } else if "rankname_of_nominee" in data {
39
- vals.insert("RANKNAME_OF_NOMINEE_First_Middle_Initial_Last_2", data.rankname_of_nominee)
40
- }
41
- #if "accomplishments_continued" in data {
42
- vals.insert(
43
- "SPECIFIC_ACCOMPLISHMENTS_Use_Performance_Statements_IAW_DAFMAN_362806_Continued",
44
- data.accomplishments_continued,
45
- )
39
+
40
+ #let continued-key = "SPECIFIC_ACCOMPLISHMENTS_Use_Performance_Statements_IAW_DAFMAN_362806_Continued"
41
+ #for card in data.CARDS {
42
+ if card.CARD == "accomplishments_continued" and continued-key not in vals and "BODY" in card {
43
+ vals.insert(continued-key, card.BODY)
44
+ }
46
45
  }
47
46
 
48
47
  #form(..vals)
@@ -1,31 +1,23 @@
1
1
  ---
2
2
  QUILL: daf1206@0.1
3
3
 
4
- # EDIT: Award name (e.g., "AIR AND SPACE ACHIEVEMENT MEDAL")
5
- award: "AWARD NAME"
6
- # EDIT: Category (If Applicable)
7
- category: ""
8
- # EDIT: Award Period (e.g., "1 Jan 24 - 31 Dec 24")
9
- award_period: "1 Jan 2X - 31 Dec 2X"
10
- # EDIT: Rank/Name of Nominee (First, Middle Initial, Last)
11
- rankname_of_nominee: "LAST, FIRST M."
12
- # EDIT: MAJCOM/FLDCOM/FOA/DRU
13
- majcom_fldcom_foa_or_dru: ""
14
- # EDIT: DAFSC/Duty Title
15
- dafscduty_title: ""
16
- # EDIT: Nominee's Telephone (DSN/Commercial)
17
- nominees_telephone: ""
18
- # EDIT: Unit/Office Symbol/Street Address/Base/State/Zip Code
19
- unitoffice_symbol: ""
20
- # EDIT: Rank/Name of Unit Commander & Telephone
21
- unit_commander: ""
4
+ award: "CY2018 Stripes for Exceptional Performers II Board"
5
+ category_if_applicable: "Senior Master Sgt"
6
+ award_period: "N/A"
7
+ rankname_of_nominee: "Smith, John Q., SMSgt"
8
+ majcom_fldcom_foa_or_dru: "MAJCOM of Assignment"
9
+ dafsc_duty_title: "3F071/NCOIC, 123rd Force Support Squadron"
10
+ nominees_telephone_dsn_commercial: "DSN XXXX-XXXX, Comm (XXX) XXX-XXXX"
11
+ unit_office_symbol_street_address_base_state_zip: "123 FSS/FMSPD, Someplace AFB, CO XXXXX"
12
+ unit_commander_rank_name_and_telephone: "Lt Col Jane C. Doe, DSN XXX-XXXXXXX, Comm (XXX) XXX-XXXX"
13
+ ---
22
14
 
23
- # EDIT: Specific Accomplishments (Page 1)
24
- accomplishments: |-
25
- -
26
- -
15
+ **Leadership & job performance in primary duty**
27
16
 
28
- # EDIT: Specific Accomplishments (Continued - Page 2)
29
- accomplishments_continued: |-
30
- -
31
- ---
17
+ - Led flight-wide training program; 100% task qualification on inspector checklist—zero findings
18
+ - Directed resource actions for 12-person team; recovered $XXk in unfunded requirements
19
+
20
+ **Whole Airman Concept**
21
+
22
+ - Completed CCAF/PME milestone; mentored two SSgts on promotion packages—both selected
23
+ - Volunteered 40 hrs base youth program; raised unit visibility in community partnership event
package/templates/taro.md DELETED
@@ -1,27 +0,0 @@
1
- ---
2
- QUILL: taro@0.1
3
- author: Nibs
4
- ice_cream: Taro
5
- title: "My Favorite Cream Flavor"
6
- ---
7
-
8
- I love Taro ice cream for its subtly sweet, nutty flavor and creamy, earthy undertones that set it apart from more common flavors. Its unique purple hue and smooth texture make it both visually striking and deliciously comforting. Here are some quotes from satisfied customers:
9
-
10
-
11
- ---
12
- CARD: quotes
13
- author: Albert Einstein
14
- ---
15
- Without taro ice cream, life would be a mistake.
16
-
17
- ---
18
- CARD: quotes
19
- author: Friedrich Nietzsche
20
- ---
21
- He who has taro ice cream in his heart will never be alone.
22
-
23
- ---
24
- CARD: quotes
25
- author: Mark Twain
26
- ---
27
- The secret of getting ahead is getting started... with taro ice cream.