@gmb/bitmark-parser-generator 5.3.1 → 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.
@@ -447,6 +447,9 @@ declare const BitType: {
447
447
  readonly platformSectionInput: "platform-section-input";
448
448
  readonly platformSystemIcon: "platform-system-icon";
449
449
  readonly preparationNote: "preparation-note";
450
+ readonly printThisBook: "print-this-book";
451
+ readonly printThisChapter: "print-this-chapter";
452
+ readonly printPageBreak: "print-page-break";
450
453
  readonly pronunciationTable: "pronunciation-table";
451
454
  readonly prototypeImages: "prototype-images";
452
455
  readonly qAndA: "q-and-a";
@@ -447,6 +447,9 @@ declare const BitType: {
447
447
  readonly platformSectionInput: "platform-section-input";
448
448
  readonly platformSystemIcon: "platform-system-icon";
449
449
  readonly preparationNote: "preparation-note";
450
+ readonly printThisBook: "print-this-book";
451
+ readonly printThisChapter: "print-this-chapter";
452
+ readonly printPageBreak: "print-page-break";
450
453
  readonly pronunciationTable: "pronunciation-table";
451
454
  readonly prototypeImages: "prototype-images";
452
455
  readonly qAndA: "q-and-a";
@@ -456,6 +456,9 @@ var BitType = {
456
456
  platformSectionInput: "platform-section-input",
457
457
  platformSystemIcon: "platform-system-icon",
458
458
  preparationNote: "preparation-note",
459
+ printThisBook: "print-this-book",
460
+ printThisChapter: "print-this-chapter",
461
+ printPageBreak: "print-page-break",
459
462
  pronunciationTable: "pronunciation-table",
460
463
  prototypeImages: "prototype-images",
461
464
  qAndA: "q-and-a",
@@ -6789,6 +6792,35 @@ var BITS = {
6789
6792
  baseBitType: BitType.article,
6790
6793
  description: "Preparation note bit, used to provide preparation notes in articles or books"
6791
6794
  },
6795
+ [BitType.printThisBook]: {
6796
+ since: "5.4.0",
6797
+ baseBitType: BitType._standard,
6798
+ description: "Print this book bit, used to create a button that prints the entire book",
6799
+ tags: [
6800
+ {
6801
+ key: ConfigKey.property_buttonCaption,
6802
+ description: "The caption of the print button",
6803
+ format: TagFormat.plainText
6804
+ }
6805
+ ]
6806
+ },
6807
+ [BitType.printThisChapter]: {
6808
+ since: "5.4.0",
6809
+ baseBitType: BitType._standard,
6810
+ description: "Print this chapter bit, used to create a button that prints the current chapter",
6811
+ tags: [
6812
+ {
6813
+ key: ConfigKey.property_buttonCaption,
6814
+ description: "The caption of the print button",
6815
+ format: TagFormat.plainText
6816
+ }
6817
+ ]
6818
+ },
6819
+ [BitType.printPageBreak]: {
6820
+ since: "5.4.0",
6821
+ baseBitType: BitType.separator,
6822
+ description: "Print page break bit, used to create page breaks for printing in articles or books"
6823
+ },
6792
6824
  [BitType.releaseNotesSummary]: {
6793
6825
  since: "1.3.0",
6794
6826
  baseBitType: BitType.article,
@@ -10256,7 +10288,7 @@ var instance2 = new Config();
10256
10288
  // src/generated/package_info.ts
10257
10289
  var PACKAGE_INFO = {
10258
10290
  "name": "@gmb/bitmark-parser-generator",
10259
- "version": "5.3.1",
10291
+ "version": "5.4.0",
10260
10292
  "author": "Get More Brain Ltd",
10261
10293
  "license": "ISC",
10262
10294
  "description": "A bitmark parser and generator using Peggy.js"