@gmb/bitmark-parser-generator 5.3.2 → 5.4.0

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/dist/index.cjs CHANGED
@@ -517,6 +517,9 @@ var BitType = {
517
517
  platformSectionInput: "platform-section-input",
518
518
  platformSystemIcon: "platform-system-icon",
519
519
  preparationNote: "preparation-note",
520
+ printThisBook: "print-this-book",
521
+ printThisChapter: "print-this-chapter",
522
+ printPageBreak: "print-page-break",
520
523
  pronunciationTable: "pronunciation-table",
521
524
  prototypeImages: "prototype-images",
522
525
  qAndA: "q-and-a",
@@ -6850,6 +6853,35 @@ var BITS = {
6850
6853
  baseBitType: BitType.article,
6851
6854
  description: "Preparation note bit, used to provide preparation notes in articles or books"
6852
6855
  },
6856
+ [BitType.printThisBook]: {
6857
+ since: "5.4.0",
6858
+ baseBitType: BitType._standard,
6859
+ description: "Print this book bit, used to create a button that prints the entire book",
6860
+ tags: [
6861
+ {
6862
+ key: ConfigKey.property_buttonCaption,
6863
+ description: "The caption of the print button",
6864
+ format: TagFormat.plainText
6865
+ }
6866
+ ]
6867
+ },
6868
+ [BitType.printThisChapter]: {
6869
+ since: "5.4.0",
6870
+ baseBitType: BitType._standard,
6871
+ description: "Print this chapter bit, used to create a button that prints the current chapter",
6872
+ tags: [
6873
+ {
6874
+ key: ConfigKey.property_buttonCaption,
6875
+ description: "The caption of the print button",
6876
+ format: TagFormat.plainText
6877
+ }
6878
+ ]
6879
+ },
6880
+ [BitType.printPageBreak]: {
6881
+ since: "5.4.0",
6882
+ baseBitType: BitType.separator,
6883
+ description: "Print page break bit, used to create page breaks for printing in articles or books"
6884
+ },
6853
6885
  [BitType.releaseNotesSummary]: {
6854
6886
  since: "1.3.0",
6855
6887
  baseBitType: BitType.article,
@@ -10317,7 +10349,7 @@ var instance2 = new Config();
10317
10349
  // src/generated/package_info.ts
10318
10350
  var PACKAGE_INFO = {
10319
10351
  "name": "@gmb/bitmark-parser-generator",
10320
- "version": "5.3.2",
10352
+ "version": "5.4.0",
10321
10353
  "author": "Get More Brain Ltd",
10322
10354
  "license": "ISC",
10323
10355
  "description": "A bitmark parser and generator using Peggy.js"