@gmb/bitmark-parser-generator 5.16.0 → 5.17.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 +21 -1
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +10 -0
- package/dist/browser/esm/index.d.ts +10 -0
- package/dist/browser/esm/index.js +21 -1
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +21 -1
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +21 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.js +21 -1
- package/dist/index.js.map +1 -1
- package/package.json +2 -1
package/dist/index.cjs
CHANGED
|
@@ -10982,7 +10982,7 @@ var instance2 = new Config();
|
|
|
10982
10982
|
// src/generated/package_info.ts
|
|
10983
10983
|
var PACKAGE_INFO = {
|
|
10984
10984
|
"name": "@gmb/bitmark-parser-generator",
|
|
10985
|
-
"version": "5.
|
|
10985
|
+
"version": "5.17.0",
|
|
10986
10986
|
"author": "Get More Brain Ltd",
|
|
10987
10987
|
"license": "ISC",
|
|
10988
10988
|
"description": "A bitmark parser and generator using Peggy.js"
|
|
@@ -11239,6 +11239,16 @@ var TextMarkType = {
|
|
|
11239
11239
|
light: "light",
|
|
11240
11240
|
italic: "italic",
|
|
11241
11241
|
highlight: "highlight",
|
|
11242
|
+
highlightOrange: "highlightOrange",
|
|
11243
|
+
highlightYellow: "highlightYellow",
|
|
11244
|
+
highlightGreen: "highlightGreen",
|
|
11245
|
+
highlightBlue: "highlightBlue",
|
|
11246
|
+
highlightPurple: "highlightPurple",
|
|
11247
|
+
highlightPink: "highlightPink",
|
|
11248
|
+
highlightBrown: "highlightBrown",
|
|
11249
|
+
highlightBlack: "highlightBlack",
|
|
11250
|
+
highlightWhite: "highlightWhite",
|
|
11251
|
+
highlightGray: "highlightGray",
|
|
11242
11252
|
// Inline only styles
|
|
11243
11253
|
strike: "strike",
|
|
11244
11254
|
subscript: "subscript",
|
|
@@ -12763,6 +12773,16 @@ var STANDARD_MARK_TYPES = [
|
|
|
12763
12773
|
TextMarkType.highlight
|
|
12764
12774
|
];
|
|
12765
12775
|
var INLINE_MARK_TYPES = [
|
|
12776
|
+
TextMarkType.highlightOrange,
|
|
12777
|
+
TextMarkType.highlightYellow,
|
|
12778
|
+
TextMarkType.highlightGreen,
|
|
12779
|
+
TextMarkType.highlightBlue,
|
|
12780
|
+
TextMarkType.highlightPurple,
|
|
12781
|
+
TextMarkType.highlightPink,
|
|
12782
|
+
TextMarkType.highlightBrown,
|
|
12783
|
+
TextMarkType.highlightBlack,
|
|
12784
|
+
TextMarkType.highlightWhite,
|
|
12785
|
+
TextMarkType.highlightGray,
|
|
12766
12786
|
TextMarkType.strike,
|
|
12767
12787
|
TextMarkType.subscript,
|
|
12768
12788
|
TextMarkType.superscript,
|