@tonguetoquill/collection 0.1.5 → 0.1.6

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.1.5",
3
+ "version": "0.1.6",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/nibsbin/tonguetoquill-collection.git"
@@ -193,18 +193,11 @@ cards:
193
193
  title: Action Decision
194
194
  type: string
195
195
  enum:
196
- - approved
197
- - disapproved
196
+ - approve
197
+ - disapprove
198
198
  ui:
199
199
  group: Additional
200
- description: "Action taken by the endorser ('approved' or 'disapproved')."
201
- show_action:
202
- title: Show Action Line
203
- type: boolean
204
- default: false
205
- ui:
206
- group: Additional
207
- description: "Display the APPROVED / DISAPPROVED action line."
200
+ description: "Action taken by the endorser. When set, the APPROVE / DISAPPROVE line is displayed with the selected option highlighted."
208
201
  attachments:
209
202
  title: Attachments for this endorsement
210
203
  type: array
@@ -47,7 +47,7 @@ CARD: indorsement
47
47
  for: ORG/SYMBOL
48
48
  format: standard
49
49
  from: ORG/SYMBOL
50
- action: approved
50
+ action: approve
51
51
  show_action: true
52
52
  signature_block:
53
53
  - FIRST M. LAST, Rank, USAF
@@ -1,17 +1,27 @@
1
1
  [package]
2
2
  name = "tonguetoquill-usaf-memo"
3
- version = "1.0.0"
3
+ version = "1.1.0"
4
4
  compiler = "0.14.0"
5
5
  entrypoint = "src/lib.typ"
6
6
  repository = "https://github.com/nibsbin/tonguetoquill-usaf-memo"
7
7
  authors = ["Nibs"]
8
8
  license = "MIT"
9
9
  description = "Typeset memos that are fully compliant with AFH 33-337 'The Tongue and Quill'."
10
- keywords = ["USAF", "Air Force", "memorandum", "memo", "military", "AFH 33-337", "official", "correspondence", "formatting"]
10
+ keywords = [
11
+ "USAF",
12
+ "Air Force",
13
+ "memorandum",
14
+ "memo",
15
+ "military",
16
+ "AFH 33-337",
17
+ "official",
18
+ "correspondence",
19
+ "formatting",
20
+ ]
11
21
  categories = ["office", "report"]
12
22
  disciplines = ["politics", "law", "business", "engineering", "education"]
13
23
 
14
24
  [template]
15
25
  path = "template"
16
26
  entrypoint = "usaf-template.typ"
17
- thumbnail = "template/assets/thumbnail.png"
27
+ thumbnail = "template/assets/thumbnail.png"
@@ -1,5 +1,5 @@
1
1
  #import "@local/quillmark-helper:0.1.0": data, eval-markup, parse-date
2
- #import "@preview/tonguetoquill-usaf-memo:1.0.0": backmatter, frontmatter, indorsement, mainmatter
2
+ #import "@preview/tonguetoquill-usaf-memo:1.1.0": backmatter, frontmatter, indorsement, mainmatter
3
3
 
4
4
  // Frontmatter configuration
5
5
  #show: frontmatter.with(
@@ -68,7 +68,6 @@
68
68
  format: card.at("format", default: "standard"),
69
69
  ..if "date" in card { (date: card.date) },
70
70
  ..if "action" in card { (action: card.action) },
71
- ..if "show_action" in card { (show_action: card.show_action) },
72
71
  )[
73
72
  #eval-markup(card.BODY)
74
73
  ]