@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
|
@@ -1099,6 +1099,16 @@ declare const TextMarkType: {
|
|
|
1099
1099
|
readonly light: "light";
|
|
1100
1100
|
readonly italic: "italic";
|
|
1101
1101
|
readonly highlight: "highlight";
|
|
1102
|
+
readonly highlightOrange: "highlightOrange";
|
|
1103
|
+
readonly highlightYellow: "highlightYellow";
|
|
1104
|
+
readonly highlightGreen: "highlightGreen";
|
|
1105
|
+
readonly highlightBlue: "highlightBlue";
|
|
1106
|
+
readonly highlightPurple: "highlightPurple";
|
|
1107
|
+
readonly highlightPink: "highlightPink";
|
|
1108
|
+
readonly highlightBrown: "highlightBrown";
|
|
1109
|
+
readonly highlightBlack: "highlightBlack";
|
|
1110
|
+
readonly highlightWhite: "highlightWhite";
|
|
1111
|
+
readonly highlightGray: "highlightGray";
|
|
1102
1112
|
readonly strike: "strike";
|
|
1103
1113
|
readonly subscript: "subscript";
|
|
1104
1114
|
readonly superscript: "superscript";
|
|
@@ -1099,6 +1099,16 @@ declare const TextMarkType: {
|
|
|
1099
1099
|
readonly light: "light";
|
|
1100
1100
|
readonly italic: "italic";
|
|
1101
1101
|
readonly highlight: "highlight";
|
|
1102
|
+
readonly highlightOrange: "highlightOrange";
|
|
1103
|
+
readonly highlightYellow: "highlightYellow";
|
|
1104
|
+
readonly highlightGreen: "highlightGreen";
|
|
1105
|
+
readonly highlightBlue: "highlightBlue";
|
|
1106
|
+
readonly highlightPurple: "highlightPurple";
|
|
1107
|
+
readonly highlightPink: "highlightPink";
|
|
1108
|
+
readonly highlightBrown: "highlightBrown";
|
|
1109
|
+
readonly highlightBlack: "highlightBlack";
|
|
1110
|
+
readonly highlightWhite: "highlightWhite";
|
|
1111
|
+
readonly highlightGray: "highlightGray";
|
|
1102
1112
|
readonly strike: "strike";
|
|
1103
1113
|
readonly subscript: "subscript";
|
|
1104
1114
|
readonly superscript: "superscript";
|
|
@@ -10920,7 +10920,7 @@ var instance2 = new Config();
|
|
|
10920
10920
|
// src/generated/package_info.ts
|
|
10921
10921
|
var PACKAGE_INFO = {
|
|
10922
10922
|
"name": "@gmb/bitmark-parser-generator",
|
|
10923
|
-
"version": "5.
|
|
10923
|
+
"version": "5.17.0",
|
|
10924
10924
|
"author": "Get More Brain Ltd",
|
|
10925
10925
|
"license": "ISC",
|
|
10926
10926
|
"description": "A bitmark parser and generator using Peggy.js"
|
|
@@ -11177,6 +11177,16 @@ var TextMarkType = {
|
|
|
11177
11177
|
light: "light",
|
|
11178
11178
|
italic: "italic",
|
|
11179
11179
|
highlight: "highlight",
|
|
11180
|
+
highlightOrange: "highlightOrange",
|
|
11181
|
+
highlightYellow: "highlightYellow",
|
|
11182
|
+
highlightGreen: "highlightGreen",
|
|
11183
|
+
highlightBlue: "highlightBlue",
|
|
11184
|
+
highlightPurple: "highlightPurple",
|
|
11185
|
+
highlightPink: "highlightPink",
|
|
11186
|
+
highlightBrown: "highlightBrown",
|
|
11187
|
+
highlightBlack: "highlightBlack",
|
|
11188
|
+
highlightWhite: "highlightWhite",
|
|
11189
|
+
highlightGray: "highlightGray",
|
|
11180
11190
|
// Inline only styles
|
|
11181
11191
|
strike: "strike",
|
|
11182
11192
|
subscript: "subscript",
|
|
@@ -12701,6 +12711,16 @@ var STANDARD_MARK_TYPES = [
|
|
|
12701
12711
|
TextMarkType.highlight
|
|
12702
12712
|
];
|
|
12703
12713
|
var INLINE_MARK_TYPES = [
|
|
12714
|
+
TextMarkType.highlightOrange,
|
|
12715
|
+
TextMarkType.highlightYellow,
|
|
12716
|
+
TextMarkType.highlightGreen,
|
|
12717
|
+
TextMarkType.highlightBlue,
|
|
12718
|
+
TextMarkType.highlightPurple,
|
|
12719
|
+
TextMarkType.highlightPink,
|
|
12720
|
+
TextMarkType.highlightBrown,
|
|
12721
|
+
TextMarkType.highlightBlack,
|
|
12722
|
+
TextMarkType.highlightWhite,
|
|
12723
|
+
TextMarkType.highlightGray,
|
|
12704
12724
|
TextMarkType.strike,
|
|
12705
12725
|
TextMarkType.subscript,
|
|
12706
12726
|
TextMarkType.superscript,
|