@gmb/bitmark-parser-generator 5.21.0 → 5.22.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 +154 -18
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +14 -0
- package/dist/browser/esm/index.d.ts +14 -0
- package/dist/browser/esm/index.js +154 -18
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/cli/main.js +170 -20
- package/dist/cli/main.js.map +1 -1
- package/dist/index.cjs +170 -20
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +170 -20
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -624,6 +624,7 @@ declare const BitType: {
|
|
|
624
624
|
readonly vendorPadletEmbed: "vendor-padlet-embed";
|
|
625
625
|
readonly vendorStripePricingTable: "vendor-stripe-pricing-table";
|
|
626
626
|
readonly vendorStripePricingTableExternal: "vendor-stripe-pricing-table-external";
|
|
627
|
+
readonly vendorStripePricingTablePrintOnRequest: "vendor-stripe-pricing-table-print-on-request";
|
|
627
628
|
readonly video: "video";
|
|
628
629
|
readonly videoEmbed: "video-embed";
|
|
629
630
|
readonly videoEmbedLandscape: "video-embed-landscape";
|
|
@@ -875,6 +876,8 @@ declare const ConfigKey: {
|
|
|
875
876
|
readonly property_padletId: "@padletId";
|
|
876
877
|
readonly property_page: "@page";
|
|
877
878
|
readonly property_printParentChapterLevel: "@printParentChapterLevel";
|
|
879
|
+
readonly property_printOnRequestCustomerId: "@printOnRequestCustomerId";
|
|
880
|
+
readonly property_printOnRequestProductId: "@printOnRequestProductId";
|
|
878
881
|
readonly property_pageNo: "@pageNo";
|
|
879
882
|
readonly property_partialAnswer: "@partialAnswer";
|
|
880
883
|
readonly property_partner: "@partner";
|
|
@@ -1833,6 +1836,8 @@ interface BitJson {
|
|
|
1833
1836
|
maxTocChapterLevel: number;
|
|
1834
1837
|
allowPrint: string;
|
|
1835
1838
|
printParentChapterLevel: number;
|
|
1839
|
+
printOnRequestCustomerId: string;
|
|
1840
|
+
printOnRequestProductId: string;
|
|
1836
1841
|
sourceDocument: string;
|
|
1837
1842
|
internalPrintPdf: string;
|
|
1838
1843
|
hasPrintRestriction: boolean;
|
|
@@ -2122,6 +2127,7 @@ interface PronunciationTableJson {
|
|
|
2122
2127
|
data: PronunciationTableCellJson[][];
|
|
2123
2128
|
}
|
|
2124
2129
|
interface TableJson {
|
|
2130
|
+
columnWidths?: (number | null)[];
|
|
2125
2131
|
columns: JsonText[];
|
|
2126
2132
|
data: JsonText[][];
|
|
2127
2133
|
}
|
|
@@ -2466,6 +2472,8 @@ interface Bit {
|
|
|
2466
2472
|
allowPrint?: Property;
|
|
2467
2473
|
allowPrintValue?: Property;
|
|
2468
2474
|
printParentChapterLevel?: Property;
|
|
2475
|
+
printOnRequestCustomerId?: Property;
|
|
2476
|
+
printOnRequestProductId?: Property;
|
|
2469
2477
|
platformBrandTarget?: Property;
|
|
2470
2478
|
platformName?: Property;
|
|
2471
2479
|
platformIcon?: ImageResourceWrapperJson;
|
|
@@ -3052,6 +3060,10 @@ declare const NodeType: {
|
|
|
3052
3060
|
readonly previewVideoValue: "previewVideoValue";
|
|
3053
3061
|
readonly printParentChapterLevel: "printParentChapterLevel";
|
|
3054
3062
|
readonly printParentChapterLevelValue: "printParentChapterLevelValue";
|
|
3063
|
+
readonly printOnRequestCustomerId: "printOnRequestCustomerId";
|
|
3064
|
+
readonly printOnRequestCustomerIdValue: "printOnRequestCustomerIdValue";
|
|
3065
|
+
readonly printOnRequestProductId: "printOnRequestProductId";
|
|
3066
|
+
readonly printOnRequestProductIdValue: "printOnRequestProductIdValue";
|
|
3055
3067
|
readonly processHandIn: "processHandIn";
|
|
3056
3068
|
readonly processHandInLocation: "processHandInLocation";
|
|
3057
3069
|
readonly processHandInLocationValue: "processHandInLocationValue";
|
|
@@ -4337,6 +4349,8 @@ declare class Builder extends BaseBuilder {
|
|
|
4337
4349
|
tocContent?: string | string[];
|
|
4338
4350
|
page?: string | string[];
|
|
4339
4351
|
printParentChapterLevel?: number;
|
|
4352
|
+
printOnRequestCustomerId?: string;
|
|
4353
|
+
printOnRequestProductId?: string;
|
|
4340
4354
|
platformBrandTarget?: string;
|
|
4341
4355
|
platformName?: string;
|
|
4342
4356
|
platformIcon?: Partial<ImageResourceWrapperJson>;
|
package/dist/index.d.ts
CHANGED
|
@@ -624,6 +624,7 @@ declare const BitType: {
|
|
|
624
624
|
readonly vendorPadletEmbed: "vendor-padlet-embed";
|
|
625
625
|
readonly vendorStripePricingTable: "vendor-stripe-pricing-table";
|
|
626
626
|
readonly vendorStripePricingTableExternal: "vendor-stripe-pricing-table-external";
|
|
627
|
+
readonly vendorStripePricingTablePrintOnRequest: "vendor-stripe-pricing-table-print-on-request";
|
|
627
628
|
readonly video: "video";
|
|
628
629
|
readonly videoEmbed: "video-embed";
|
|
629
630
|
readonly videoEmbedLandscape: "video-embed-landscape";
|
|
@@ -875,6 +876,8 @@ declare const ConfigKey: {
|
|
|
875
876
|
readonly property_padletId: "@padletId";
|
|
876
877
|
readonly property_page: "@page";
|
|
877
878
|
readonly property_printParentChapterLevel: "@printParentChapterLevel";
|
|
879
|
+
readonly property_printOnRequestCustomerId: "@printOnRequestCustomerId";
|
|
880
|
+
readonly property_printOnRequestProductId: "@printOnRequestProductId";
|
|
878
881
|
readonly property_pageNo: "@pageNo";
|
|
879
882
|
readonly property_partialAnswer: "@partialAnswer";
|
|
880
883
|
readonly property_partner: "@partner";
|
|
@@ -1833,6 +1836,8 @@ interface BitJson {
|
|
|
1833
1836
|
maxTocChapterLevel: number;
|
|
1834
1837
|
allowPrint: string;
|
|
1835
1838
|
printParentChapterLevel: number;
|
|
1839
|
+
printOnRequestCustomerId: string;
|
|
1840
|
+
printOnRequestProductId: string;
|
|
1836
1841
|
sourceDocument: string;
|
|
1837
1842
|
internalPrintPdf: string;
|
|
1838
1843
|
hasPrintRestriction: boolean;
|
|
@@ -2122,6 +2127,7 @@ interface PronunciationTableJson {
|
|
|
2122
2127
|
data: PronunciationTableCellJson[][];
|
|
2123
2128
|
}
|
|
2124
2129
|
interface TableJson {
|
|
2130
|
+
columnWidths?: (number | null)[];
|
|
2125
2131
|
columns: JsonText[];
|
|
2126
2132
|
data: JsonText[][];
|
|
2127
2133
|
}
|
|
@@ -2466,6 +2472,8 @@ interface Bit {
|
|
|
2466
2472
|
allowPrint?: Property;
|
|
2467
2473
|
allowPrintValue?: Property;
|
|
2468
2474
|
printParentChapterLevel?: Property;
|
|
2475
|
+
printOnRequestCustomerId?: Property;
|
|
2476
|
+
printOnRequestProductId?: Property;
|
|
2469
2477
|
platformBrandTarget?: Property;
|
|
2470
2478
|
platformName?: Property;
|
|
2471
2479
|
platformIcon?: ImageResourceWrapperJson;
|
|
@@ -3052,6 +3060,10 @@ declare const NodeType: {
|
|
|
3052
3060
|
readonly previewVideoValue: "previewVideoValue";
|
|
3053
3061
|
readonly printParentChapterLevel: "printParentChapterLevel";
|
|
3054
3062
|
readonly printParentChapterLevelValue: "printParentChapterLevelValue";
|
|
3063
|
+
readonly printOnRequestCustomerId: "printOnRequestCustomerId";
|
|
3064
|
+
readonly printOnRequestCustomerIdValue: "printOnRequestCustomerIdValue";
|
|
3065
|
+
readonly printOnRequestProductId: "printOnRequestProductId";
|
|
3066
|
+
readonly printOnRequestProductIdValue: "printOnRequestProductIdValue";
|
|
3055
3067
|
readonly processHandIn: "processHandIn";
|
|
3056
3068
|
readonly processHandInLocation: "processHandInLocation";
|
|
3057
3069
|
readonly processHandInLocationValue: "processHandInLocationValue";
|
|
@@ -4337,6 +4349,8 @@ declare class Builder extends BaseBuilder {
|
|
|
4337
4349
|
tocContent?: string | string[];
|
|
4338
4350
|
page?: string | string[];
|
|
4339
4351
|
printParentChapterLevel?: number;
|
|
4352
|
+
printOnRequestCustomerId?: string;
|
|
4353
|
+
printOnRequestProductId?: string;
|
|
4340
4354
|
platformBrandTarget?: string;
|
|
4341
4355
|
platformName?: string;
|
|
4342
4356
|
platformIcon?: Partial<ImageResourceWrapperJson>;
|