@gmb/bitmark-parser-generator 4.12.0 → 4.13.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 +451 -60
- package/dist/browser/cjs/index.cjs.map +1 -1
- package/dist/browser/cjs/index.d.cts +209 -7
- package/dist/browser/esm/index.d.ts +209 -7
- package/dist/browser/esm/index.js +451 -60
- package/dist/browser/esm/index.js.map +1 -1
- package/dist/index.cjs +451 -60
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +209 -7
- package/dist/index.d.ts +209 -7
- package/dist/index.js +451 -60
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
|
@@ -111,6 +111,7 @@ declare const BitType: Readonly<{
|
|
|
111
111
|
botActionSend: "bot-action-send";
|
|
112
112
|
botActionTrueFalse: "bot-action-true-false";
|
|
113
113
|
botInterview: "bot-interview";
|
|
114
|
+
brandColor: "brand-color";
|
|
114
115
|
browserImage: "browser-image";
|
|
115
116
|
bug: "bug";
|
|
116
117
|
bugAlt: "bug-alt";
|
|
@@ -425,7 +426,18 @@ declare const BitType: Readonly<{
|
|
|
425
426
|
pageSubscribe: "page-subscribe";
|
|
426
427
|
parameters: "parameters";
|
|
427
428
|
photo: "photo";
|
|
429
|
+
platform: "platform";
|
|
430
|
+
platformHeader: "platform-header";
|
|
431
|
+
platformMain: "platform-main";
|
|
432
|
+
platformMainButton: "platform-main-button";
|
|
433
|
+
platformMainInput: "platform-main-input";
|
|
428
434
|
platformPath: "platform-path";
|
|
435
|
+
platformSection: "platform-section";
|
|
436
|
+
platformSectionButton: "platform-section-button";
|
|
437
|
+
platformSectionChat: "platform-section-chat";
|
|
438
|
+
platformSectionHeader: "platform-section-header";
|
|
439
|
+
platformSectionInput: "platform-section-input";
|
|
440
|
+
platformSystemIcon: "platform-system-icon";
|
|
429
441
|
preparationNote: "preparation-note";
|
|
430
442
|
pronunciationTable: "pronunciation-table";
|
|
431
443
|
prototypeImages: "prototype-images";
|
|
@@ -709,6 +721,7 @@ declare const BitType: Readonly<{
|
|
|
709
721
|
botActionSend: "bot-action-send";
|
|
710
722
|
botActionTrueFalse: "bot-action-true-false";
|
|
711
723
|
botInterview: "bot-interview";
|
|
724
|
+
brandColor: "brand-color";
|
|
712
725
|
browserImage: "browser-image";
|
|
713
726
|
bug: "bug";
|
|
714
727
|
bugAlt: "bug-alt";
|
|
@@ -1023,7 +1036,18 @@ declare const BitType: Readonly<{
|
|
|
1023
1036
|
pageSubscribe: "page-subscribe";
|
|
1024
1037
|
parameters: "parameters";
|
|
1025
1038
|
photo: "photo";
|
|
1039
|
+
platform: "platform";
|
|
1040
|
+
platformHeader: "platform-header";
|
|
1041
|
+
platformMain: "platform-main";
|
|
1042
|
+
platformMainButton: "platform-main-button";
|
|
1043
|
+
platformMainInput: "platform-main-input";
|
|
1026
1044
|
platformPath: "platform-path";
|
|
1045
|
+
platformSection: "platform-section";
|
|
1046
|
+
platformSectionButton: "platform-section-button";
|
|
1047
|
+
platformSectionChat: "platform-section-chat";
|
|
1048
|
+
platformSectionHeader: "platform-section-header";
|
|
1049
|
+
platformSectionInput: "platform-section-input";
|
|
1050
|
+
platformSystemIcon: "platform-system-icon";
|
|
1027
1051
|
preparationNote: "preparation-note";
|
|
1028
1052
|
pronunciationTable: "pronunciation-table";
|
|
1029
1053
|
prototypeImages: "prototype-images";
|
|
@@ -1255,6 +1279,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1255
1279
|
group_bookCommon: "group_bookCommon";
|
|
1256
1280
|
group_learningPathCommon: "group_learningPathCommon";
|
|
1257
1281
|
group_advertisingCommon: "group_advertisingCommon";
|
|
1282
|
+
group_platformColorsCommon: "group_platformColorsCommon";
|
|
1258
1283
|
group_quizCommon: "group_quizCommon";
|
|
1259
1284
|
group_resourceBitTags: "group_resourceBitTags";
|
|
1260
1285
|
group_resourceCommon: "group_resourceCommon";
|
|
@@ -1300,6 +1325,8 @@ declare const ConfigKey: Readonly<{
|
|
|
1300
1325
|
property_author: "@author";
|
|
1301
1326
|
property_autoplay: "@autoplay";
|
|
1302
1327
|
property_availableClassifications: "@availableClassifications";
|
|
1328
|
+
property_brandColor: "@brandColor";
|
|
1329
|
+
property_brandColorName: "@brandColorName";
|
|
1303
1330
|
property_blockId: "@blockId";
|
|
1304
1331
|
property_book: "@book";
|
|
1305
1332
|
property_bookAlias: "@bookAlias";
|
|
@@ -1366,6 +1393,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1366
1393
|
property_imageSource: "@imageSource";
|
|
1367
1394
|
property_index: "@index";
|
|
1368
1395
|
property_internalComment: "@internalComment";
|
|
1396
|
+
property_internalPrintPdf: "@internalPrintPdf";
|
|
1369
1397
|
property_isCaseSensitive: "@isCaseSensitive";
|
|
1370
1398
|
property_isInfoOnly: "@isInfoOnly";
|
|
1371
1399
|
property_isPublic: "@isPublic";
|
|
@@ -1405,6 +1433,18 @@ declare const ConfigKey: Readonly<{
|
|
|
1405
1433
|
property_partialAnswer: "@partialAnswer";
|
|
1406
1434
|
property_partner: "@partner";
|
|
1407
1435
|
property_path: "@path";
|
|
1436
|
+
property_platformBackgroundColor: "@platformBackgroundColor";
|
|
1437
|
+
property_platformButtonBackgroundColor: "@platformButtonBackgroundColor";
|
|
1438
|
+
property_platformButtonPrimaryColor: "@platformButtonPrimaryColor";
|
|
1439
|
+
property_platformMessageBackgroundColor: "@platformMessageBackgroundColor";
|
|
1440
|
+
property_platformName: "@platformName";
|
|
1441
|
+
property_platformPlaceholderColor: "@platformPlaceholderColor";
|
|
1442
|
+
property_platformPrimaryColor: "@platformPrimaryColor";
|
|
1443
|
+
property_platformScrollbarColor: "@platformScrollbarColor";
|
|
1444
|
+
property_platformSecondaryColor: "@platformSecondaryColor";
|
|
1445
|
+
property_platformSelectionColor: "@platformSelectionColor";
|
|
1446
|
+
property_platformSeparatorColor: "@platformSeparatorColor";
|
|
1447
|
+
property_platformTextSelectionColor: "@platformTextSelectionColor";
|
|
1408
1448
|
property_person: "@person";
|
|
1409
1449
|
property_pointerLeft: "@pointerLeft";
|
|
1410
1450
|
property_pointerTop: "@pointerTop";
|
|
@@ -1454,6 +1494,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1454
1494
|
property_size: "@size";
|
|
1455
1495
|
property_slug: "@slug";
|
|
1456
1496
|
property_sourceDocument: "@sourceDocument";
|
|
1497
|
+
property_sourceRL: "@sourceRL";
|
|
1457
1498
|
property_spaceId: "@spaceId";
|
|
1458
1499
|
property_src1x: "@src1x";
|
|
1459
1500
|
property_src2x: "@src2x";
|
|
@@ -1522,6 +1563,9 @@ declare const ConfigKey: Readonly<{
|
|
|
1522
1563
|
resource_appLink: "&appLink";
|
|
1523
1564
|
resource_websiteLink: "&websiteLink";
|
|
1524
1565
|
resource_icon: "&icon";
|
|
1566
|
+
resource_platformBackgroundImage: "&platformBackgroundImage";
|
|
1567
|
+
resource_platformIcon: "&platformIcon";
|
|
1568
|
+
resource_platformLogo: "&platformLogo";
|
|
1525
1569
|
resource_backgroundWallpaper: "&backgroundWallpaper";
|
|
1526
1570
|
resource_imagePlaceholder: "&imagePlaceholder";
|
|
1527
1571
|
tag_title: "#";
|
|
@@ -1552,6 +1596,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1552
1596
|
group_bookCommon: "group_bookCommon";
|
|
1553
1597
|
group_learningPathCommon: "group_learningPathCommon";
|
|
1554
1598
|
group_advertisingCommon: "group_advertisingCommon";
|
|
1599
|
+
group_platformColorsCommon: "group_platformColorsCommon";
|
|
1555
1600
|
group_quizCommon: "group_quizCommon";
|
|
1556
1601
|
group_resourceBitTags: "group_resourceBitTags";
|
|
1557
1602
|
group_resourceCommon: "group_resourceCommon";
|
|
@@ -1597,6 +1642,8 @@ declare const ConfigKey: Readonly<{
|
|
|
1597
1642
|
property_author: "@author";
|
|
1598
1643
|
property_autoplay: "@autoplay";
|
|
1599
1644
|
property_availableClassifications: "@availableClassifications";
|
|
1645
|
+
property_brandColor: "@brandColor";
|
|
1646
|
+
property_brandColorName: "@brandColorName";
|
|
1600
1647
|
property_blockId: "@blockId";
|
|
1601
1648
|
property_book: "@book";
|
|
1602
1649
|
property_bookAlias: "@bookAlias";
|
|
@@ -1663,6 +1710,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1663
1710
|
property_imageSource: "@imageSource";
|
|
1664
1711
|
property_index: "@index";
|
|
1665
1712
|
property_internalComment: "@internalComment";
|
|
1713
|
+
property_internalPrintPdf: "@internalPrintPdf";
|
|
1666
1714
|
property_isCaseSensitive: "@isCaseSensitive";
|
|
1667
1715
|
property_isInfoOnly: "@isInfoOnly";
|
|
1668
1716
|
property_isPublic: "@isPublic";
|
|
@@ -1702,6 +1750,18 @@ declare const ConfigKey: Readonly<{
|
|
|
1702
1750
|
property_partialAnswer: "@partialAnswer";
|
|
1703
1751
|
property_partner: "@partner";
|
|
1704
1752
|
property_path: "@path";
|
|
1753
|
+
property_platformBackgroundColor: "@platformBackgroundColor";
|
|
1754
|
+
property_platformButtonBackgroundColor: "@platformButtonBackgroundColor";
|
|
1755
|
+
property_platformButtonPrimaryColor: "@platformButtonPrimaryColor";
|
|
1756
|
+
property_platformMessageBackgroundColor: "@platformMessageBackgroundColor";
|
|
1757
|
+
property_platformName: "@platformName";
|
|
1758
|
+
property_platformPlaceholderColor: "@platformPlaceholderColor";
|
|
1759
|
+
property_platformPrimaryColor: "@platformPrimaryColor";
|
|
1760
|
+
property_platformScrollbarColor: "@platformScrollbarColor";
|
|
1761
|
+
property_platformSecondaryColor: "@platformSecondaryColor";
|
|
1762
|
+
property_platformSelectionColor: "@platformSelectionColor";
|
|
1763
|
+
property_platformSeparatorColor: "@platformSeparatorColor";
|
|
1764
|
+
property_platformTextSelectionColor: "@platformTextSelectionColor";
|
|
1705
1765
|
property_person: "@person";
|
|
1706
1766
|
property_pointerLeft: "@pointerLeft";
|
|
1707
1767
|
property_pointerTop: "@pointerTop";
|
|
@@ -1751,6 +1811,7 @@ declare const ConfigKey: Readonly<{
|
|
|
1751
1811
|
property_size: "@size";
|
|
1752
1812
|
property_slug: "@slug";
|
|
1753
1813
|
property_sourceDocument: "@sourceDocument";
|
|
1814
|
+
property_sourceRL: "@sourceRL";
|
|
1754
1815
|
property_spaceId: "@spaceId";
|
|
1755
1816
|
property_src1x: "@src1x";
|
|
1756
1817
|
property_src2x: "@src2x";
|
|
@@ -1819,6 +1880,9 @@ declare const ConfigKey: Readonly<{
|
|
|
1819
1880
|
resource_appLink: "&appLink";
|
|
1820
1881
|
resource_websiteLink: "&websiteLink";
|
|
1821
1882
|
resource_icon: "&icon";
|
|
1883
|
+
resource_platformBackgroundImage: "&platformBackgroundImage";
|
|
1884
|
+
resource_platformIcon: "&platformIcon";
|
|
1885
|
+
resource_platformLogo: "&platformLogo";
|
|
1822
1886
|
resource_backgroundWallpaper: "&backgroundWallpaper";
|
|
1823
1887
|
resource_imagePlaceholder: "&imagePlaceholder";
|
|
1824
1888
|
tag_title: "#";
|
|
@@ -1867,6 +1931,9 @@ declare const ResourceType: Readonly<{
|
|
|
1867
1931
|
icon: "icon";
|
|
1868
1932
|
backgroundWallpaper: "backgroundWallpaper";
|
|
1869
1933
|
imagePlaceholder: "imagePlaceholder";
|
|
1934
|
+
platformIcon: "platformIcon";
|
|
1935
|
+
platformLogo: "platformLogo";
|
|
1936
|
+
platformBackgroundImage: "platformBackgroundImage";
|
|
1870
1937
|
}> & _ncoderz_superenum.EnumExtensions<EnumType<{
|
|
1871
1938
|
unknown: "unknown";
|
|
1872
1939
|
image: "image";
|
|
@@ -1896,6 +1963,9 @@ declare const ResourceType: Readonly<{
|
|
|
1896
1963
|
icon: "icon";
|
|
1897
1964
|
backgroundWallpaper: "backgroundWallpaper";
|
|
1898
1965
|
imagePlaceholder: "imagePlaceholder";
|
|
1966
|
+
platformIcon: "platformIcon";
|
|
1967
|
+
platformLogo: "platformLogo";
|
|
1968
|
+
platformBackgroundImage: "platformBackgroundImage";
|
|
1899
1969
|
}>>;
|
|
1900
1970
|
type ResourceTypeType = EnumType<typeof ResourceType>;
|
|
1901
1971
|
|
|
@@ -2509,6 +2579,7 @@ interface BitJson {
|
|
|
2509
2579
|
padletId: string;
|
|
2510
2580
|
jupyterId: string;
|
|
2511
2581
|
jupyterExecutionCount: number;
|
|
2582
|
+
sourceRL: string;
|
|
2512
2583
|
isPublic: boolean;
|
|
2513
2584
|
isTemplate: boolean;
|
|
2514
2585
|
isTemplateStripTheme: boolean;
|
|
@@ -2641,6 +2712,8 @@ interface BitJson {
|
|
|
2641
2712
|
buttonCaption: string;
|
|
2642
2713
|
callToActionUrl: string;
|
|
2643
2714
|
advertisingClickUrl: string;
|
|
2715
|
+
brandColor: string;
|
|
2716
|
+
brandColorName: string;
|
|
2644
2717
|
caption: JsonText;
|
|
2645
2718
|
quotedPerson: string;
|
|
2646
2719
|
reasonableNumOfChars: number;
|
|
@@ -2654,9 +2727,25 @@ interface BitJson {
|
|
|
2654
2727
|
maxDisplayLevel: number;
|
|
2655
2728
|
maxTocChapterLevel: number;
|
|
2656
2729
|
sourceDocument: string;
|
|
2730
|
+
internalPrintPdf: string;
|
|
2657
2731
|
tocResource: string | string[];
|
|
2658
2732
|
tocContent: string | string[];
|
|
2659
2733
|
page: string;
|
|
2734
|
+
platformName: string;
|
|
2735
|
+
platformIcon: ImageResourceWrapperJson;
|
|
2736
|
+
platformLogo: ImageResourceWrapperJson;
|
|
2737
|
+
platformPrimaryColor: string;
|
|
2738
|
+
platformSecondaryColor: string;
|
|
2739
|
+
platformBackgroundColor: string;
|
|
2740
|
+
platformScrollbarColor: string;
|
|
2741
|
+
platformSelectionColor: string;
|
|
2742
|
+
platformSeparatorColor: string;
|
|
2743
|
+
platformPlaceholderColor: string;
|
|
2744
|
+
platformTextSelectionColor: string;
|
|
2745
|
+
platformButtonPrimaryColor: string;
|
|
2746
|
+
platformButtonBackgroundColor: string;
|
|
2747
|
+
platformMessageBackgroundColor: string;
|
|
2748
|
+
platformBackgroundImage: ImageResourceWrapperJson;
|
|
2660
2749
|
productId: string | string[];
|
|
2661
2750
|
product: string;
|
|
2662
2751
|
productVideo: string;
|
|
@@ -2679,7 +2768,6 @@ interface BitJson {
|
|
|
2679
2768
|
item: JsonText;
|
|
2680
2769
|
lead: JsonText;
|
|
2681
2770
|
pageNumber: JsonText;
|
|
2682
|
-
sourcePageNumber: JsonText;
|
|
2683
2771
|
marginNumber: JsonText;
|
|
2684
2772
|
hint: JsonText;
|
|
2685
2773
|
instruction: JsonText;
|
|
@@ -3033,6 +3121,7 @@ interface Bit {
|
|
|
3033
3121
|
padletId?: Property;
|
|
3034
3122
|
jupyterId?: Property;
|
|
3035
3123
|
jupyterExecutionCount?: Property;
|
|
3124
|
+
sourceRL?: Property;
|
|
3036
3125
|
isPublic?: Property;
|
|
3037
3126
|
isTemplate?: Property;
|
|
3038
3127
|
isTemplateStripTheme?: Property;
|
|
@@ -3171,6 +3260,8 @@ interface Bit {
|
|
|
3171
3260
|
buttonCaption?: Property;
|
|
3172
3261
|
callToActionUrl?: Property;
|
|
3173
3262
|
advertisingClickUrl?: Property;
|
|
3263
|
+
brandColor?: Property;
|
|
3264
|
+
brandColorName?: Property;
|
|
3174
3265
|
caption?: TextAst;
|
|
3175
3266
|
quotedPerson?: Property;
|
|
3176
3267
|
partialAnswer?: Property;
|
|
@@ -3185,9 +3276,25 @@ interface Bit {
|
|
|
3185
3276
|
maxDisplayLevel?: Property;
|
|
3186
3277
|
maxTocChapterLevel?: Property;
|
|
3187
3278
|
sourceDocument?: Property;
|
|
3279
|
+
internalPrintPdf?: Property;
|
|
3188
3280
|
tocResource?: Property;
|
|
3189
3281
|
tocContent?: Property;
|
|
3190
3282
|
page?: Property;
|
|
3283
|
+
platformName?: Property;
|
|
3284
|
+
platformIcon?: ImageResourceWrapperJson;
|
|
3285
|
+
platformLogo?: ImageResourceWrapperJson;
|
|
3286
|
+
platformPrimaryColor?: Property;
|
|
3287
|
+
platformSecondaryColor?: Property;
|
|
3288
|
+
platformBackgroundColor?: Property;
|
|
3289
|
+
platformScrollbarColor?: Property;
|
|
3290
|
+
platformSelectionColor?: Property;
|
|
3291
|
+
platformSeparatorColor?: Property;
|
|
3292
|
+
platformPlaceholderColor?: Property;
|
|
3293
|
+
platformTextSelectionColor?: Property;
|
|
3294
|
+
platformButtonPrimaryColor?: Property;
|
|
3295
|
+
platformButtonBackgroundColor?: Property;
|
|
3296
|
+
platformMessageBackgroundColor?: Property;
|
|
3297
|
+
platformBackgroundImage?: ImageResourceWrapperJson;
|
|
3191
3298
|
productId?: Property;
|
|
3192
3299
|
product?: Property;
|
|
3193
3300
|
productList?: Property;
|
|
@@ -3215,7 +3322,6 @@ interface Bit {
|
|
|
3215
3322
|
item?: TextAst;
|
|
3216
3323
|
lead?: TextAst;
|
|
3217
3324
|
pageNumber?: TextAst;
|
|
3218
|
-
sourcePageNumber?: TextAst;
|
|
3219
3325
|
marginNumber?: TextAst;
|
|
3220
3326
|
hint?: TextAst;
|
|
3221
3327
|
instruction?: TextAst;
|
|
@@ -3300,6 +3406,10 @@ declare const NodeType: Readonly<{
|
|
|
3300
3406
|
advertisingClickUrl: "advertisingClickUrl";
|
|
3301
3407
|
advertisingClickUrlValue: "advertisingClickUrlValue";
|
|
3302
3408
|
ageRange: "ageRange";
|
|
3409
|
+
brandColor: "brandColor";
|
|
3410
|
+
brandColorValue: "brandColorValue";
|
|
3411
|
+
brandColorName: "brandColorName";
|
|
3412
|
+
brandColorNameValue: "brandColorNameValue";
|
|
3303
3413
|
ageRangeValue: "ageRangeValue";
|
|
3304
3414
|
aiGenerated: "aiGenerated";
|
|
3305
3415
|
aiGeneratedValue: "aiGeneratedValue";
|
|
@@ -3524,6 +3634,8 @@ declare const NodeType: Readonly<{
|
|
|
3524
3634
|
instruction: "instruction";
|
|
3525
3635
|
internalComment: "internalComment";
|
|
3526
3636
|
internalCommentValue: "internalCommentValue";
|
|
3637
|
+
internalPrintPdf: "internalPrintPdf";
|
|
3638
|
+
internalPrintPdfValue: "internalPrintPdfValue";
|
|
3527
3639
|
isCaseSensitive: "isCaseSensitive";
|
|
3528
3640
|
isCommented: "isCommented";
|
|
3529
3641
|
isCorrect: "isCorrect";
|
|
@@ -3625,6 +3737,36 @@ declare const NodeType: Readonly<{
|
|
|
3625
3737
|
partialAnswerValue: "partialAnswerValue";
|
|
3626
3738
|
path: "path";
|
|
3627
3739
|
pathValue: "pathValue";
|
|
3740
|
+
platformName: "platformName";
|
|
3741
|
+
platformNameValue: "platformNameValue";
|
|
3742
|
+
platformIcon: "platformIcon";
|
|
3743
|
+
platformIconValue: "platformIconValue";
|
|
3744
|
+
platformLogo: "platformLogo";
|
|
3745
|
+
platformLogoValue: "platformLogoValue";
|
|
3746
|
+
platformPrimaryColor: "platformPrimaryColor";
|
|
3747
|
+
platformPrimaryColorValue: "platformPrimaryColorValue";
|
|
3748
|
+
platformSecondaryColor: "platformSecondaryColor";
|
|
3749
|
+
platformSecondaryColorValue: "platformSecondaryColorValue";
|
|
3750
|
+
platformBackgroundColor: "platformBackgroundColor";
|
|
3751
|
+
platformBackgroundColorValue: "platformBackgroundColorValue";
|
|
3752
|
+
platformScrollbarColor: "platformScrollbarColor";
|
|
3753
|
+
platformScrollbarColorValue: "platformScrollbarColorValue";
|
|
3754
|
+
platformSelectionColor: "platformSelectionColor";
|
|
3755
|
+
platformSelectionColorValue: "platformSelectionColorValue";
|
|
3756
|
+
platformSeparatorColor: "platformSeparatorColor";
|
|
3757
|
+
platformSeparatorColorValue: "platformSeparatorColorValue";
|
|
3758
|
+
platformPlaceholderColor: "platformPlaceholderColor";
|
|
3759
|
+
platformPlaceholderColorValue: "platformPlaceholderColorValue";
|
|
3760
|
+
platformTextSelectionColor: "platformTextSelectionColor";
|
|
3761
|
+
platformTextSelectionColorValue: "platformTextSelectionColorValue";
|
|
3762
|
+
platformButtonPrimaryColor: "platformButtonPrimaryColor";
|
|
3763
|
+
platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue";
|
|
3764
|
+
platformButtonBackgroundColor: "platformButtonBackgroundColor";
|
|
3765
|
+
platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue";
|
|
3766
|
+
platformMessageBackgroundColor: "platformMessageBackgroundColor";
|
|
3767
|
+
platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue";
|
|
3768
|
+
platformBackgroundImage: "platformBackgroundImage";
|
|
3769
|
+
platformBackgroundImageValue: "platformBackgroundImageValue";
|
|
3628
3770
|
person: "person";
|
|
3629
3771
|
pointerLeft: "pointerLeft";
|
|
3630
3772
|
pointerLeftValue: "pointerLeftValue";
|
|
@@ -3742,7 +3884,8 @@ declare const NodeType: Readonly<{
|
|
|
3742
3884
|
solutionsValue: "solutionsValue";
|
|
3743
3885
|
sourceDocument: "sourceDocument";
|
|
3744
3886
|
sourceDocumentValue: "sourceDocumentValue";
|
|
3745
|
-
|
|
3887
|
+
sourceRL: "sourceRL";
|
|
3888
|
+
sourceRLValue: "sourceRLValue";
|
|
3746
3889
|
spaceId: "spaceId";
|
|
3747
3890
|
spaceIdValue: "spaceIdValue";
|
|
3748
3891
|
src: "src";
|
|
@@ -3866,6 +4009,10 @@ declare const NodeType: Readonly<{
|
|
|
3866
4009
|
advertisingClickUrl: "advertisingClickUrl";
|
|
3867
4010
|
advertisingClickUrlValue: "advertisingClickUrlValue";
|
|
3868
4011
|
ageRange: "ageRange";
|
|
4012
|
+
brandColor: "brandColor";
|
|
4013
|
+
brandColorValue: "brandColorValue";
|
|
4014
|
+
brandColorName: "brandColorName";
|
|
4015
|
+
brandColorNameValue: "brandColorNameValue";
|
|
3869
4016
|
ageRangeValue: "ageRangeValue";
|
|
3870
4017
|
aiGenerated: "aiGenerated";
|
|
3871
4018
|
aiGeneratedValue: "aiGeneratedValue";
|
|
@@ -4090,6 +4237,8 @@ declare const NodeType: Readonly<{
|
|
|
4090
4237
|
instruction: "instruction";
|
|
4091
4238
|
internalComment: "internalComment";
|
|
4092
4239
|
internalCommentValue: "internalCommentValue";
|
|
4240
|
+
internalPrintPdf: "internalPrintPdf";
|
|
4241
|
+
internalPrintPdfValue: "internalPrintPdfValue";
|
|
4093
4242
|
isCaseSensitive: "isCaseSensitive";
|
|
4094
4243
|
isCommented: "isCommented";
|
|
4095
4244
|
isCorrect: "isCorrect";
|
|
@@ -4191,6 +4340,36 @@ declare const NodeType: Readonly<{
|
|
|
4191
4340
|
partialAnswerValue: "partialAnswerValue";
|
|
4192
4341
|
path: "path";
|
|
4193
4342
|
pathValue: "pathValue";
|
|
4343
|
+
platformName: "platformName";
|
|
4344
|
+
platformNameValue: "platformNameValue";
|
|
4345
|
+
platformIcon: "platformIcon";
|
|
4346
|
+
platformIconValue: "platformIconValue";
|
|
4347
|
+
platformLogo: "platformLogo";
|
|
4348
|
+
platformLogoValue: "platformLogoValue";
|
|
4349
|
+
platformPrimaryColor: "platformPrimaryColor";
|
|
4350
|
+
platformPrimaryColorValue: "platformPrimaryColorValue";
|
|
4351
|
+
platformSecondaryColor: "platformSecondaryColor";
|
|
4352
|
+
platformSecondaryColorValue: "platformSecondaryColorValue";
|
|
4353
|
+
platformBackgroundColor: "platformBackgroundColor";
|
|
4354
|
+
platformBackgroundColorValue: "platformBackgroundColorValue";
|
|
4355
|
+
platformScrollbarColor: "platformScrollbarColor";
|
|
4356
|
+
platformScrollbarColorValue: "platformScrollbarColorValue";
|
|
4357
|
+
platformSelectionColor: "platformSelectionColor";
|
|
4358
|
+
platformSelectionColorValue: "platformSelectionColorValue";
|
|
4359
|
+
platformSeparatorColor: "platformSeparatorColor";
|
|
4360
|
+
platformSeparatorColorValue: "platformSeparatorColorValue";
|
|
4361
|
+
platformPlaceholderColor: "platformPlaceholderColor";
|
|
4362
|
+
platformPlaceholderColorValue: "platformPlaceholderColorValue";
|
|
4363
|
+
platformTextSelectionColor: "platformTextSelectionColor";
|
|
4364
|
+
platformTextSelectionColorValue: "platformTextSelectionColorValue";
|
|
4365
|
+
platformButtonPrimaryColor: "platformButtonPrimaryColor";
|
|
4366
|
+
platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue";
|
|
4367
|
+
platformButtonBackgroundColor: "platformButtonBackgroundColor";
|
|
4368
|
+
platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue";
|
|
4369
|
+
platformMessageBackgroundColor: "platformMessageBackgroundColor";
|
|
4370
|
+
platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue";
|
|
4371
|
+
platformBackgroundImage: "platformBackgroundImage";
|
|
4372
|
+
platformBackgroundImageValue: "platformBackgroundImageValue";
|
|
4194
4373
|
person: "person";
|
|
4195
4374
|
pointerLeft: "pointerLeft";
|
|
4196
4375
|
pointerLeftValue: "pointerLeftValue";
|
|
@@ -4308,7 +4487,8 @@ declare const NodeType: Readonly<{
|
|
|
4308
4487
|
solutionsValue: "solutionsValue";
|
|
4309
4488
|
sourceDocument: "sourceDocument";
|
|
4310
4489
|
sourceDocumentValue: "sourceDocumentValue";
|
|
4311
|
-
|
|
4490
|
+
sourceRL: "sourceRL";
|
|
4491
|
+
sourceRLValue: "sourceRLValue";
|
|
4312
4492
|
spaceId: "spaceId";
|
|
4313
4493
|
spaceIdValue: "spaceIdValue";
|
|
4314
4494
|
src: "src";
|
|
@@ -5283,6 +5463,7 @@ declare class Builder extends BaseBuilder {
|
|
|
5283
5463
|
padletId?: string;
|
|
5284
5464
|
jupyterId?: string;
|
|
5285
5465
|
jupyterExecutionCount?: number;
|
|
5466
|
+
sourceRL?: string;
|
|
5286
5467
|
isPublic?: boolean;
|
|
5287
5468
|
isTemplate?: boolean;
|
|
5288
5469
|
isTemplateStripTheme?: boolean;
|
|
@@ -5421,6 +5602,8 @@ declare class Builder extends BaseBuilder {
|
|
|
5421
5602
|
buttonCaption?: string;
|
|
5422
5603
|
callToActionUrl?: string;
|
|
5423
5604
|
advertisingClickUrl?: string;
|
|
5605
|
+
brandColor?: string;
|
|
5606
|
+
brandColorName?: string;
|
|
5424
5607
|
caption?: JsonText;
|
|
5425
5608
|
quotedPerson?: string;
|
|
5426
5609
|
reasonableNumOfChars?: number;
|
|
@@ -5434,9 +5617,25 @@ declare class Builder extends BaseBuilder {
|
|
|
5434
5617
|
maxDisplayLevel?: number;
|
|
5435
5618
|
maxTocChapterLevel?: number;
|
|
5436
5619
|
sourceDocument?: string;
|
|
5620
|
+
internalPrintPdf?: string;
|
|
5437
5621
|
tocResource?: string | string[];
|
|
5438
5622
|
tocContent?: string | string[];
|
|
5439
5623
|
page?: string | string[];
|
|
5624
|
+
platformName?: string;
|
|
5625
|
+
platformIcon?: Partial<ImageResourceWrapperJson>;
|
|
5626
|
+
platformLogo?: Partial<ImageResourceWrapperJson>;
|
|
5627
|
+
platformPrimaryColor?: string;
|
|
5628
|
+
platformSecondaryColor?: string;
|
|
5629
|
+
platformBackgroundColor?: string;
|
|
5630
|
+
platformScrollbarColor?: string;
|
|
5631
|
+
platformSelectionColor?: string;
|
|
5632
|
+
platformSeparatorColor?: string;
|
|
5633
|
+
platformPlaceholderColor?: string;
|
|
5634
|
+
platformTextSelectionColor?: string;
|
|
5635
|
+
platformButtonPrimaryColor?: string;
|
|
5636
|
+
platformButtonBackgroundColor?: string;
|
|
5637
|
+
platformMessageBackgroundColor?: string;
|
|
5638
|
+
platformBackgroundImage?: Partial<ImageResourceWrapperJson>;
|
|
5440
5639
|
productId?: string | string[];
|
|
5441
5640
|
product?: string | string[];
|
|
5442
5641
|
productVideo?: string | string[];
|
|
@@ -5462,7 +5661,6 @@ declare class Builder extends BaseBuilder {
|
|
|
5462
5661
|
item?: JsonText;
|
|
5463
5662
|
lead?: JsonText;
|
|
5464
5663
|
pageNumber?: JsonText;
|
|
5465
|
-
sourcePageNumber?: JsonText;
|
|
5466
5664
|
marginNumber?: JsonText;
|
|
5467
5665
|
hint?: JsonText;
|
|
5468
5666
|
instruction?: JsonText;
|
|
@@ -6599,7 +6797,6 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6599
6797
|
protected enter_item(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6600
6798
|
protected enter_lead(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6601
6799
|
protected enter_pageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6602
|
-
protected enter_sourcePageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6603
6800
|
protected enter_marginNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6604
6801
|
protected enter_body(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6605
6802
|
protected exit_body(_node: NodeInfo, _route: NodeInfo[]): void;
|
|
@@ -6672,6 +6869,9 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6672
6869
|
protected leaf_feedback(node: NodeInfo, route: NodeInfo[]): void;
|
|
6673
6870
|
protected enter_backgroundWallpaper(node: NodeInfo, _route: NodeInfo[]): boolean;
|
|
6674
6871
|
protected enter_imagePlaceholder(node: NodeInfo, _route: NodeInfo[]): boolean;
|
|
6872
|
+
protected enter_platformIcon(node: NodeInfo, _route: NodeInfo[]): boolean;
|
|
6873
|
+
protected enter_platformLogo(node: NodeInfo, _route: NodeInfo[]): boolean;
|
|
6874
|
+
protected enter_platformBackgroundImage(node: NodeInfo, _route: NodeInfo[]): boolean;
|
|
6675
6875
|
protected exit_imagePlaceholder(_node: NodeInfo, _route: NodeInfo[]): void;
|
|
6676
6876
|
protected enter_posterImage(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6677
6877
|
protected enter_thumbnails(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
@@ -6992,7 +7192,6 @@ declare class JsonGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
6992
7192
|
protected enter_item(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6993
7193
|
protected enter_lead(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6994
7194
|
protected enter_pageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6995
|
-
protected enter_sourcePageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6996
7195
|
protected enter_marginNumber(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6997
7196
|
protected enter_hint(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
6998
7197
|
protected enter_instruction(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
@@ -7043,6 +7242,9 @@ declare class JsonGenerator extends AstWalkerGenerator<BitmarkAst, void> {
|
|
|
7043
7242
|
protected enter_captionDefinitionList(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
7044
7243
|
protected enter_backgroundWallpaper(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
7045
7244
|
protected enter_imagePlaceholder(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
7245
|
+
protected enter_platformIcon(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
7246
|
+
protected enter_platformLogo(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
7247
|
+
protected enter_platformBackgroundImage(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
7046
7248
|
protected enter_resources(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
7047
7249
|
protected leaf_level(node: NodeInfo, route: NodeInfo[]): boolean;
|
|
7048
7250
|
protected enter_book(node: NodeInfo, route: NodeInfo[]): boolean;
|