@gmb/bitmark-parser-generator 5.6.0 → 5.7.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
@@ -1450,6 +1450,7 @@ var propertyKeys = {
1450
1450
  property_technicalTerm: "@technicalTerm",
1451
1451
  property_textReference: "@textReference",
1452
1452
  property_theme: "@theme",
1453
+ property_rtl: "@rtl",
1453
1454
  property_thumbImage: "@thumbImage",
1454
1455
  property_title: "@title",
1455
1456
  property_toc: "@toc",
@@ -2934,6 +2935,12 @@ var GROUPS = {
2934
2935
  format: TagFormat.plainText,
2935
2936
  maxCount: Count.infinity
2936
2937
  },
2938
+ {
2939
+ key: ConfigKey.property_rtl,
2940
+ description: "If true, the book is right-to-left",
2941
+ format: TagFormat.boolean,
2942
+ defaultValue: "false"
2943
+ },
2937
2944
  {
2938
2945
  key: ConfigKey.property_target,
2939
2946
  description: "The target(s) for the bit",
@@ -10404,7 +10411,7 @@ var instance2 = new Config();
10404
10411
  // src/generated/package_info.ts
10405
10412
  var PACKAGE_INFO = {
10406
10413
  "name": "@gmb/bitmark-parser-generator",
10407
- "version": "5.6.0",
10414
+ "version": "5.7.0",
10408
10415
  "author": "Get More Brain Ltd",
10409
10416
  "license": "ISC",
10410
10417
  "description": "A bitmark parser and generator using Peggy.js"
@@ -11389,6 +11396,8 @@ var NodeType = {
11389
11396
  textsValue: "textsValue",
11390
11397
  theme: "theme",
11391
11398
  themeValue: "themeValue",
11399
+ rtl: "rtl",
11400
+ rtlValue: "rtlValue",
11392
11401
  thumbImage: "thumbImage",
11393
11402
  thumbImageValue: "thumbImageValue",
11394
11403
  thumbnails: "thumbnails",
@@ -24291,6 +24300,7 @@ var Builder = class extends BaseBuilder {
24291
24300
  options
24292
24301
  ),
24293
24302
  theme: this.toAstProperty(bitType, ConfigKey.property_theme, data.theme, options),
24303
+ rtl: this.toAstProperty(bitType, ConfigKey.property_rtl, data.rtl, options),
24294
24304
  computerLanguage: this.toAstProperty(
24295
24305
  bitType,
24296
24306
  ConfigKey.property_computerLanguage,