@gmb/bitmark-parser-generator 4.8.0 → 4.10.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 +818 -645
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +18 -0
- package/dist/browser/esm/index.d.ts +18 -0
- package/dist/browser/esm/index.js +818 -645
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/index.cjs +818 -645
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +18 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +818 -645
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -29,6 +29,7 @@ declare const BitType: Readonly<{
|
|
|
29
29
|
appAiPrompt: "app-ai-prompt";
|
|
30
30
|
appBitmarkFromEditor: "app-bitmark-from-editor";
|
|
31
31
|
appBitmarkFromJavascript: "app-bitmark-from-javascript";
|
|
32
|
+
appCalculatorLatex: "app-calculator-latex";
|
|
32
33
|
appCodeCell: "app-code-cell";
|
|
33
34
|
appCodeEditor: "app-code-editor";
|
|
34
35
|
appCodeIde: "app-code-ide";
|
|
@@ -448,6 +449,10 @@ declare const BitType: Readonly<{
|
|
|
448
449
|
reviewRequestForReviewNote: "review-request-for-review-note";
|
|
449
450
|
reviewReviewerNote: "review-reviewer-note";
|
|
450
451
|
sampleSolution: "sample-solution";
|
|
452
|
+
sandbox: "sandbox";
|
|
453
|
+
sandboxOutputJson: "sandbox-output-json";
|
|
454
|
+
sandboxOutputMarkup: "sandbox-output-markup";
|
|
455
|
+
sandboxOutputRender: "sandbox-output-render";
|
|
451
456
|
scorm: "scorm";
|
|
452
457
|
screenshot: "screenshot";
|
|
453
458
|
selfAssessment: "self-assessment";
|
|
@@ -622,6 +627,7 @@ declare const BitType: Readonly<{
|
|
|
622
627
|
appAiPrompt: "app-ai-prompt";
|
|
623
628
|
appBitmarkFromEditor: "app-bitmark-from-editor";
|
|
624
629
|
appBitmarkFromJavascript: "app-bitmark-from-javascript";
|
|
630
|
+
appCalculatorLatex: "app-calculator-latex";
|
|
625
631
|
appCodeCell: "app-code-cell";
|
|
626
632
|
appCodeEditor: "app-code-editor";
|
|
627
633
|
appCodeIde: "app-code-ide";
|
|
@@ -1041,6 +1047,10 @@ declare const BitType: Readonly<{
|
|
|
1041
1047
|
reviewRequestForReviewNote: "review-request-for-review-note";
|
|
1042
1048
|
reviewReviewerNote: "review-reviewer-note";
|
|
1043
1049
|
sampleSolution: "sample-solution";
|
|
1050
|
+
sandbox: "sandbox";
|
|
1051
|
+
sandboxOutputJson: "sandbox-output-json";
|
|
1052
|
+
sandboxOutputMarkup: "sandbox-output-markup";
|
|
1053
|
+
sandboxOutputRender: "sandbox-output-render";
|
|
1044
1054
|
scorm: "scorm";
|
|
1045
1055
|
screenshot: "screenshot";
|
|
1046
1056
|
selfAssessment: "self-assessment";
|
|
@@ -1338,6 +1348,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1338
1348
|
property_focusX: "@focusX";
|
|
1339
1349
|
property_focusY: "@focusY";
|
|
1340
1350
|
property_format: "@format";
|
|
1351
|
+
property_formula: "@formula";
|
|
1341
1352
|
property_fullName: "@fullName";
|
|
1342
1353
|
property_groupTag: "@groupTag";
|
|
1343
1354
|
property_handInAcceptFileType: "@handInAcceptFileType";
|
|
@@ -1631,6 +1642,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1631
1642
|
property_focusX: "@focusX";
|
|
1632
1643
|
property_focusY: "@focusY";
|
|
1633
1644
|
property_format: "@format";
|
|
1645
|
+
property_formula: "@formula";
|
|
1634
1646
|
property_fullName: "@fullName";
|
|
1635
1647
|
property_groupTag: "@groupTag";
|
|
1636
1648
|
property_handInAcceptFileType: "@handInAcceptFileType";
|
|
@@ -3176,6 +3188,7 @@ interface Bit {
|
|
|
3176
3188
|
ratingLevelStart?: RatingLevelStartEndJson;
|
|
3177
3189
|
ratingLevelEnd?: RatingLevelStartEndJson;
|
|
3178
3190
|
ratingLevelSelected?: Property;
|
|
3191
|
+
formula?: Property;
|
|
3179
3192
|
markConfig?: MarkConfigJson[];
|
|
3180
3193
|
extraProperties?: ExtraProperties;
|
|
3181
3194
|
book?: string | BookJson[];
|
|
@@ -3450,6 +3463,8 @@ declare const NodeType: Readonly<{
|
|
|
3450
3463
|
footerText: "footerText";
|
|
3451
3464
|
forKeys: "forKeys";
|
|
3452
3465
|
format: "format";
|
|
3466
|
+
formula: "formula";
|
|
3467
|
+
formulaValue: "formulaValue";
|
|
3453
3468
|
forValues: "forValues";
|
|
3454
3469
|
forValuesValue: "forValuesValue";
|
|
3455
3470
|
fullName: "fullName";
|
|
@@ -4009,6 +4024,8 @@ declare const NodeType: Readonly<{
|
|
|
4009
4024
|
footerText: "footerText";
|
|
4010
4025
|
forKeys: "forKeys";
|
|
4011
4026
|
format: "format";
|
|
4027
|
+
formula: "formula";
|
|
4028
|
+
formulaValue: "formulaValue";
|
|
4012
4029
|
forValues: "forValues";
|
|
4013
4030
|
forValuesValue: "forValuesValue";
|
|
4014
4031
|
fullName: "fullName";
|
|
@@ -5405,6 +5422,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5405
5422
|
ratingLevelStart?: Partial<RatingLevelStartEndJson>;
|
|
5406
5423
|
ratingLevelEnd?: Partial<RatingLevelStartEndJson>;
|
|
5407
5424
|
ratingLevelSelected?: number;
|
|
5425
|
+
formula?: string;
|
|
5408
5426
|
partialAnswer?: string;
|
|
5409
5427
|
book?: string | BookJson[];
|
|
5410
5428
|
title?: JsonText;
|
|
@@ -29,6 +29,7 @@ declare const BitType: Readonly<{
|
|
|
29
29
|
appAiPrompt: "app-ai-prompt";
|
|
30
30
|
appBitmarkFromEditor: "app-bitmark-from-editor";
|
|
31
31
|
appBitmarkFromJavascript: "app-bitmark-from-javascript";
|
|
32
|
+
appCalculatorLatex: "app-calculator-latex";
|
|
32
33
|
appCodeCell: "app-code-cell";
|
|
33
34
|
appCodeEditor: "app-code-editor";
|
|
34
35
|
appCodeIde: "app-code-ide";
|
|
@@ -448,6 +449,10 @@ declare const BitType: Readonly<{
|
|
|
448
449
|
reviewRequestForReviewNote: "review-request-for-review-note";
|
|
449
450
|
reviewReviewerNote: "review-reviewer-note";
|
|
450
451
|
sampleSolution: "sample-solution";
|
|
452
|
+
sandbox: "sandbox";
|
|
453
|
+
sandboxOutputJson: "sandbox-output-json";
|
|
454
|
+
sandboxOutputMarkup: "sandbox-output-markup";
|
|
455
|
+
sandboxOutputRender: "sandbox-output-render";
|
|
451
456
|
scorm: "scorm";
|
|
452
457
|
screenshot: "screenshot";
|
|
453
458
|
selfAssessment: "self-assessment";
|
|
@@ -622,6 +627,7 @@ declare const BitType: Readonly<{
|
|
|
622
627
|
appAiPrompt: "app-ai-prompt";
|
|
623
628
|
appBitmarkFromEditor: "app-bitmark-from-editor";
|
|
624
629
|
appBitmarkFromJavascript: "app-bitmark-from-javascript";
|
|
630
|
+
appCalculatorLatex: "app-calculator-latex";
|
|
625
631
|
appCodeCell: "app-code-cell";
|
|
626
632
|
appCodeEditor: "app-code-editor";
|
|
627
633
|
appCodeIde: "app-code-ide";
|
|
@@ -1041,6 +1047,10 @@ declare const BitType: Readonly<{
|
|
|
1041
1047
|
reviewRequestForReviewNote: "review-request-for-review-note";
|
|
1042
1048
|
reviewReviewerNote: "review-reviewer-note";
|
|
1043
1049
|
sampleSolution: "sample-solution";
|
|
1050
|
+
sandbox: "sandbox";
|
|
1051
|
+
sandboxOutputJson: "sandbox-output-json";
|
|
1052
|
+
sandboxOutputMarkup: "sandbox-output-markup";
|
|
1053
|
+
sandboxOutputRender: "sandbox-output-render";
|
|
1044
1054
|
scorm: "scorm";
|
|
1045
1055
|
screenshot: "screenshot";
|
|
1046
1056
|
selfAssessment: "self-assessment";
|
|
@@ -1338,6 +1348,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1338
1348
|
property_focusX: "@focusX";
|
|
1339
1349
|
property_focusY: "@focusY";
|
|
1340
1350
|
property_format: "@format";
|
|
1351
|
+
property_formula: "@formula";
|
|
1341
1352
|
property_fullName: "@fullName";
|
|
1342
1353
|
property_groupTag: "@groupTag";
|
|
1343
1354
|
property_handInAcceptFileType: "@handInAcceptFileType";
|
|
@@ -1631,6 +1642,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1631
1642
|
property_focusX: "@focusX";
|
|
1632
1643
|
property_focusY: "@focusY";
|
|
1633
1644
|
property_format: "@format";
|
|
1645
|
+
property_formula: "@formula";
|
|
1634
1646
|
property_fullName: "@fullName";
|
|
1635
1647
|
property_groupTag: "@groupTag";
|
|
1636
1648
|
property_handInAcceptFileType: "@handInAcceptFileType";
|
|
@@ -3176,6 +3188,7 @@ interface Bit {
|
|
|
3176
3188
|
ratingLevelStart?: RatingLevelStartEndJson;
|
|
3177
3189
|
ratingLevelEnd?: RatingLevelStartEndJson;
|
|
3178
3190
|
ratingLevelSelected?: Property;
|
|
3191
|
+
formula?: Property;
|
|
3179
3192
|
markConfig?: MarkConfigJson[];
|
|
3180
3193
|
extraProperties?: ExtraProperties;
|
|
3181
3194
|
book?: string | BookJson[];
|
|
@@ -3450,6 +3463,8 @@ declare const NodeType: Readonly<{
|
|
|
3450
3463
|
footerText: "footerText";
|
|
3451
3464
|
forKeys: "forKeys";
|
|
3452
3465
|
format: "format";
|
|
3466
|
+
formula: "formula";
|
|
3467
|
+
formulaValue: "formulaValue";
|
|
3453
3468
|
forValues: "forValues";
|
|
3454
3469
|
forValuesValue: "forValuesValue";
|
|
3455
3470
|
fullName: "fullName";
|
|
@@ -4009,6 +4024,8 @@ declare const NodeType: Readonly<{
|
|
|
4009
4024
|
footerText: "footerText";
|
|
4010
4025
|
forKeys: "forKeys";
|
|
4011
4026
|
format: "format";
|
|
4027
|
+
formula: "formula";
|
|
4028
|
+
formulaValue: "formulaValue";
|
|
4012
4029
|
forValues: "forValues";
|
|
4013
4030
|
forValuesValue: "forValuesValue";
|
|
4014
4031
|
fullName: "fullName";
|
|
@@ -5405,6 +5422,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5405
5422
|
ratingLevelStart?: Partial<RatingLevelStartEndJson>;
|
|
5406
5423
|
ratingLevelEnd?: Partial<RatingLevelStartEndJson>;
|
|
5407
5424
|
ratingLevelSelected?: number;
|
|
5425
|
+
formula?: string;
|
|
5408
5426
|
partialAnswer?: string;
|
|
5409
5427
|
book?: string | BookJson[];
|
|
5410
5428
|
title?: JsonText;
|