@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/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/browser/cjs/index.cjs +11 -1
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +5 -0
- package/dist/browser/esm/index.d.ts +5 -0
- package/dist/browser/esm/index.js +11 -1
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +11 -1
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +11 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -0
- package/dist/index.d.ts +5 -0
- package/dist/index.js +11 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli/main.js
CHANGED
|
@@ -1354,6 +1354,7 @@ var propertyKeys = {
|
|
|
1354
1354
|
property_technicalTerm: "@technicalTerm",
|
|
1355
1355
|
property_textReference: "@textReference",
|
|
1356
1356
|
property_theme: "@theme",
|
|
1357
|
+
property_rtl: "@rtl",
|
|
1357
1358
|
property_thumbImage: "@thumbImage",
|
|
1358
1359
|
property_title: "@title",
|
|
1359
1360
|
property_toc: "@toc",
|
|
@@ -2829,6 +2830,12 @@ var GROUPS = {
|
|
|
2829
2830
|
format: TagFormat.plainText,
|
|
2830
2831
|
maxCount: Count.infinity
|
|
2831
2832
|
},
|
|
2833
|
+
{
|
|
2834
|
+
key: ConfigKey.property_rtl,
|
|
2835
|
+
description: "If true, the book is right-to-left",
|
|
2836
|
+
format: TagFormat.boolean,
|
|
2837
|
+
defaultValue: "false"
|
|
2838
|
+
},
|
|
2832
2839
|
{
|
|
2833
2840
|
key: ConfigKey.property_target,
|
|
2834
2841
|
description: "The target(s) for the bit",
|
|
@@ -10299,7 +10306,7 @@ var instance2 = new Config();
|
|
|
10299
10306
|
// src/generated/package_info.ts
|
|
10300
10307
|
var PACKAGE_INFO = {
|
|
10301
10308
|
"name": "@gmb/bitmark-parser-generator",
|
|
10302
|
-
"version": "5.
|
|
10309
|
+
"version": "5.7.0",
|
|
10303
10310
|
"license": "ISC"};
|
|
10304
10311
|
var Environment = {
|
|
10305
10312
|
unknown: "",
|
|
@@ -11252,6 +11259,8 @@ var NodeType = {
|
|
|
11252
11259
|
textsValue: "textsValue",
|
|
11253
11260
|
theme: "theme",
|
|
11254
11261
|
themeValue: "themeValue",
|
|
11262
|
+
rtl: "rtl",
|
|
11263
|
+
rtlValue: "rtlValue",
|
|
11255
11264
|
thumbImage: "thumbImage",
|
|
11256
11265
|
thumbImageValue: "thumbImageValue",
|
|
11257
11266
|
thumbnails: "thumbnails",
|
|
@@ -23970,6 +23979,7 @@ var Builder = class extends BaseBuilder {
|
|
|
23970
23979
|
options
|
|
23971
23980
|
),
|
|
23972
23981
|
theme: this.toAstProperty(bitType, ConfigKey.property_theme, data.theme, options),
|
|
23982
|
+
rtl: this.toAstProperty(bitType, ConfigKey.property_rtl, data.rtl, options),
|
|
23973
23983
|
computerLanguage: this.toAstProperty(
|
|
23974
23984
|
bitType,
|
|
23975
23985
|
ConfigKey.property_computerLanguage,
|