@gmb/bitmark-parser-generator 4.12.0 → 4.14.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.
@@ -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";
@@ -556,6 +568,7 @@ declare const BitType: Readonly<{
556
568
  surveyRatingOnce: "survey-rating-once";
557
569
  table: "table";
558
570
  tableAlt: "table-alt";
571
+ tableExtended: "table-extended";
559
572
  tableImage: "table-image";
560
573
  tableImageAlt: "table-image-alt";
561
574
  takePicture: "take-picture";
@@ -709,6 +722,7 @@ declare const BitType: Readonly<{
709
722
  botActionSend: "bot-action-send";
710
723
  botActionTrueFalse: "bot-action-true-false";
711
724
  botInterview: "bot-interview";
725
+ brandColor: "brand-color";
712
726
  browserImage: "browser-image";
713
727
  bug: "bug";
714
728
  bugAlt: "bug-alt";
@@ -1023,7 +1037,18 @@ declare const BitType: Readonly<{
1023
1037
  pageSubscribe: "page-subscribe";
1024
1038
  parameters: "parameters";
1025
1039
  photo: "photo";
1040
+ platform: "platform";
1041
+ platformHeader: "platform-header";
1042
+ platformMain: "platform-main";
1043
+ platformMainButton: "platform-main-button";
1044
+ platformMainInput: "platform-main-input";
1026
1045
  platformPath: "platform-path";
1046
+ platformSection: "platform-section";
1047
+ platformSectionButton: "platform-section-button";
1048
+ platformSectionChat: "platform-section-chat";
1049
+ platformSectionHeader: "platform-section-header";
1050
+ platformSectionInput: "platform-section-input";
1051
+ platformSystemIcon: "platform-system-icon";
1027
1052
  preparationNote: "preparation-note";
1028
1053
  pronunciationTable: "pronunciation-table";
1029
1054
  prototypeImages: "prototype-images";
@@ -1154,6 +1179,7 @@ declare const BitType: Readonly<{
1154
1179
  surveyRatingOnce: "survey-rating-once";
1155
1180
  table: "table";
1156
1181
  tableAlt: "table-alt";
1182
+ tableExtended: "table-extended";
1157
1183
  tableImage: "table-image";
1158
1184
  tableImageAlt: "table-image-alt";
1159
1185
  takePicture: "take-picture";
@@ -1255,6 +1281,7 @@ declare const ConfigKey: Readonly<{
1255
1281
  group_bookCommon: "group_bookCommon";
1256
1282
  group_learningPathCommon: "group_learningPathCommon";
1257
1283
  group_advertisingCommon: "group_advertisingCommon";
1284
+ group_platformColorsCommon: "group_platformColorsCommon";
1258
1285
  group_quizCommon: "group_quizCommon";
1259
1286
  group_resourceBitTags: "group_resourceBitTags";
1260
1287
  group_resourceCommon: "group_resourceCommon";
@@ -1300,6 +1327,8 @@ declare const ConfigKey: Readonly<{
1300
1327
  property_author: "@author";
1301
1328
  property_autoplay: "@autoplay";
1302
1329
  property_availableClassifications: "@availableClassifications";
1330
+ property_brandColor: "@brandColor";
1331
+ property_brandColorName: "@brandColorName";
1303
1332
  property_blockId: "@blockId";
1304
1333
  property_book: "@book";
1305
1334
  property_bookAlias: "@bookAlias";
@@ -1366,6 +1395,8 @@ declare const ConfigKey: Readonly<{
1366
1395
  property_imageSource: "@imageSource";
1367
1396
  property_index: "@index";
1368
1397
  property_internalComment: "@internalComment";
1398
+ property_internalPrintPdf: "@internalPrintPdf";
1399
+ property_hasPrintRestriction: "@hasPrintRestriction";
1369
1400
  property_isCaseSensitive: "@isCaseSensitive";
1370
1401
  property_isInfoOnly: "@isInfoOnly";
1371
1402
  property_isPublic: "@isPublic";
@@ -1405,6 +1436,18 @@ declare const ConfigKey: Readonly<{
1405
1436
  property_partialAnswer: "@partialAnswer";
1406
1437
  property_partner: "@partner";
1407
1438
  property_path: "@path";
1439
+ property_platformBackgroundColor: "@platformBackgroundColor";
1440
+ property_platformButtonBackgroundColor: "@platformButtonBackgroundColor";
1441
+ property_platformButtonPrimaryColor: "@platformButtonPrimaryColor";
1442
+ property_platformMessageBackgroundColor: "@platformMessageBackgroundColor";
1443
+ property_platformName: "@platformName";
1444
+ property_platformPlaceholderColor: "@platformPlaceholderColor";
1445
+ property_platformPrimaryColor: "@platformPrimaryColor";
1446
+ property_platformScrollbarColor: "@platformScrollbarColor";
1447
+ property_platformSecondaryColor: "@platformSecondaryColor";
1448
+ property_platformSelectionColor: "@platformSelectionColor";
1449
+ property_platformSeparatorColor: "@platformSeparatorColor";
1450
+ property_platformTextSelectionColor: "@platformTextSelectionColor";
1408
1451
  property_person: "@person";
1409
1452
  property_pointerLeft: "@pointerLeft";
1410
1453
  property_pointerTop: "@pointerTop";
@@ -1454,6 +1497,7 @@ declare const ConfigKey: Readonly<{
1454
1497
  property_size: "@size";
1455
1498
  property_slug: "@slug";
1456
1499
  property_sourceDocument: "@sourceDocument";
1500
+ property_sourceRL: "@sourceRL";
1457
1501
  property_spaceId: "@spaceId";
1458
1502
  property_src1x: "@src1x";
1459
1503
  property_src2x: "@src2x";
@@ -1475,6 +1519,10 @@ declare const ConfigKey: Readonly<{
1475
1519
  property_tableSearch: "@tableSearch";
1476
1520
  property_tableSort: "@tableSort";
1477
1521
  property_tableWhitespaceNoWrap: "@tableWhitespaceNoWrap";
1522
+ property_tableCellType: "@tableCellType";
1523
+ property_tableRowSpan: "@tableRowSpan";
1524
+ property_tableColSpan: "@tableColSpan";
1525
+ property_tableScope: "@tableScope";
1478
1526
  property_tag: "@tag";
1479
1527
  property_target: "@target";
1480
1528
  property_technicalTerm: "@technicalTerm";
@@ -1522,6 +1570,9 @@ declare const ConfigKey: Readonly<{
1522
1570
  resource_appLink: "&appLink";
1523
1571
  resource_websiteLink: "&websiteLink";
1524
1572
  resource_icon: "&icon";
1573
+ resource_platformBackgroundImage: "&platformBackgroundImage";
1574
+ resource_platformIcon: "&platformIcon";
1575
+ resource_platformLogo: "&platformLogo";
1525
1576
  resource_backgroundWallpaper: "&backgroundWallpaper";
1526
1577
  resource_imagePlaceholder: "&imagePlaceholder";
1527
1578
  tag_title: "#";
@@ -1552,6 +1603,7 @@ declare const ConfigKey: Readonly<{
1552
1603
  group_bookCommon: "group_bookCommon";
1553
1604
  group_learningPathCommon: "group_learningPathCommon";
1554
1605
  group_advertisingCommon: "group_advertisingCommon";
1606
+ group_platformColorsCommon: "group_platformColorsCommon";
1555
1607
  group_quizCommon: "group_quizCommon";
1556
1608
  group_resourceBitTags: "group_resourceBitTags";
1557
1609
  group_resourceCommon: "group_resourceCommon";
@@ -1597,6 +1649,8 @@ declare const ConfigKey: Readonly<{
1597
1649
  property_author: "@author";
1598
1650
  property_autoplay: "@autoplay";
1599
1651
  property_availableClassifications: "@availableClassifications";
1652
+ property_brandColor: "@brandColor";
1653
+ property_brandColorName: "@brandColorName";
1600
1654
  property_blockId: "@blockId";
1601
1655
  property_book: "@book";
1602
1656
  property_bookAlias: "@bookAlias";
@@ -1663,6 +1717,8 @@ declare const ConfigKey: Readonly<{
1663
1717
  property_imageSource: "@imageSource";
1664
1718
  property_index: "@index";
1665
1719
  property_internalComment: "@internalComment";
1720
+ property_internalPrintPdf: "@internalPrintPdf";
1721
+ property_hasPrintRestriction: "@hasPrintRestriction";
1666
1722
  property_isCaseSensitive: "@isCaseSensitive";
1667
1723
  property_isInfoOnly: "@isInfoOnly";
1668
1724
  property_isPublic: "@isPublic";
@@ -1702,6 +1758,18 @@ declare const ConfigKey: Readonly<{
1702
1758
  property_partialAnswer: "@partialAnswer";
1703
1759
  property_partner: "@partner";
1704
1760
  property_path: "@path";
1761
+ property_platformBackgroundColor: "@platformBackgroundColor";
1762
+ property_platformButtonBackgroundColor: "@platformButtonBackgroundColor";
1763
+ property_platformButtonPrimaryColor: "@platformButtonPrimaryColor";
1764
+ property_platformMessageBackgroundColor: "@platformMessageBackgroundColor";
1765
+ property_platformName: "@platformName";
1766
+ property_platformPlaceholderColor: "@platformPlaceholderColor";
1767
+ property_platformPrimaryColor: "@platformPrimaryColor";
1768
+ property_platformScrollbarColor: "@platformScrollbarColor";
1769
+ property_platformSecondaryColor: "@platformSecondaryColor";
1770
+ property_platformSelectionColor: "@platformSelectionColor";
1771
+ property_platformSeparatorColor: "@platformSeparatorColor";
1772
+ property_platformTextSelectionColor: "@platformTextSelectionColor";
1705
1773
  property_person: "@person";
1706
1774
  property_pointerLeft: "@pointerLeft";
1707
1775
  property_pointerTop: "@pointerTop";
@@ -1751,6 +1819,7 @@ declare const ConfigKey: Readonly<{
1751
1819
  property_size: "@size";
1752
1820
  property_slug: "@slug";
1753
1821
  property_sourceDocument: "@sourceDocument";
1822
+ property_sourceRL: "@sourceRL";
1754
1823
  property_spaceId: "@spaceId";
1755
1824
  property_src1x: "@src1x";
1756
1825
  property_src2x: "@src2x";
@@ -1772,6 +1841,10 @@ declare const ConfigKey: Readonly<{
1772
1841
  property_tableSearch: "@tableSearch";
1773
1842
  property_tableSort: "@tableSort";
1774
1843
  property_tableWhitespaceNoWrap: "@tableWhitespaceNoWrap";
1844
+ property_tableCellType: "@tableCellType";
1845
+ property_tableRowSpan: "@tableRowSpan";
1846
+ property_tableColSpan: "@tableColSpan";
1847
+ property_tableScope: "@tableScope";
1775
1848
  property_tag: "@tag";
1776
1849
  property_target: "@target";
1777
1850
  property_technicalTerm: "@technicalTerm";
@@ -1819,6 +1892,9 @@ declare const ConfigKey: Readonly<{
1819
1892
  resource_appLink: "&appLink";
1820
1893
  resource_websiteLink: "&websiteLink";
1821
1894
  resource_icon: "&icon";
1895
+ resource_platformBackgroundImage: "&platformBackgroundImage";
1896
+ resource_platformIcon: "&platformIcon";
1897
+ resource_platformLogo: "&platformLogo";
1822
1898
  resource_backgroundWallpaper: "&backgroundWallpaper";
1823
1899
  resource_imagePlaceholder: "&imagePlaceholder";
1824
1900
  tag_title: "#";
@@ -1867,6 +1943,9 @@ declare const ResourceType: Readonly<{
1867
1943
  icon: "icon";
1868
1944
  backgroundWallpaper: "backgroundWallpaper";
1869
1945
  imagePlaceholder: "imagePlaceholder";
1946
+ platformIcon: "platformIcon";
1947
+ platformLogo: "platformLogo";
1948
+ platformBackgroundImage: "platformBackgroundImage";
1870
1949
  }> & _ncoderz_superenum.EnumExtensions<EnumType<{
1871
1950
  unknown: "unknown";
1872
1951
  image: "image";
@@ -1896,6 +1975,9 @@ declare const ResourceType: Readonly<{
1896
1975
  icon: "icon";
1897
1976
  backgroundWallpaper: "backgroundWallpaper";
1898
1977
  imagePlaceholder: "imagePlaceholder";
1978
+ platformIcon: "platformIcon";
1979
+ platformLogo: "platformLogo";
1980
+ platformBackgroundImage: "platformBackgroundImage";
1899
1981
  }>>;
1900
1982
  type ResourceTypeType = EnumType<typeof ResourceType>;
1901
1983
 
@@ -2509,6 +2591,7 @@ interface BitJson {
2509
2591
  padletId: string;
2510
2592
  jupyterId: string;
2511
2593
  jupyterExecutionCount: number;
2594
+ sourceRL: string;
2512
2595
  isPublic: boolean;
2513
2596
  isTemplate: boolean;
2514
2597
  isTemplateStripTheme: boolean;
@@ -2641,6 +2724,8 @@ interface BitJson {
2641
2724
  buttonCaption: string;
2642
2725
  callToActionUrl: string;
2643
2726
  advertisingClickUrl: string;
2727
+ brandColor: string;
2728
+ brandColorName: string;
2644
2729
  caption: JsonText;
2645
2730
  quotedPerson: string;
2646
2731
  reasonableNumOfChars: number;
@@ -2654,9 +2739,26 @@ interface BitJson {
2654
2739
  maxDisplayLevel: number;
2655
2740
  maxTocChapterLevel: number;
2656
2741
  sourceDocument: string;
2742
+ internalPrintPdf: string;
2743
+ hasPrintRestriction: boolean;
2657
2744
  tocResource: string | string[];
2658
2745
  tocContent: string | string[];
2659
2746
  page: string;
2747
+ platformName: string;
2748
+ platformIcon: ImageResourceWrapperJson;
2749
+ platformLogo: ImageResourceWrapperJson;
2750
+ platformPrimaryColor: string;
2751
+ platformSecondaryColor: string;
2752
+ platformBackgroundColor: string;
2753
+ platformScrollbarColor: string;
2754
+ platformSelectionColor: string;
2755
+ platformSeparatorColor: string;
2756
+ platformPlaceholderColor: string;
2757
+ platformTextSelectionColor: string;
2758
+ platformButtonPrimaryColor: string;
2759
+ platformButtonBackgroundColor: string;
2760
+ platformMessageBackgroundColor: string;
2761
+ platformBackgroundImage: ImageResourceWrapperJson;
2660
2762
  productId: string | string[];
2661
2763
  product: string;
2662
2764
  productVideo: string;
@@ -2679,7 +2781,6 @@ interface BitJson {
2679
2781
  item: JsonText;
2680
2782
  lead: JsonText;
2681
2783
  pageNumber: JsonText;
2682
- sourcePageNumber: JsonText;
2683
2784
  marginNumber: JsonText;
2684
2785
  hint: JsonText;
2685
2786
  instruction: JsonText;
@@ -2701,7 +2802,7 @@ interface BitJson {
2701
2802
  additionalSolutions: string[];
2702
2803
  partialAnswer: string;
2703
2804
  elements: string[];
2704
- statement: string;
2805
+ statement: JsonText;
2705
2806
  isCorrect: boolean;
2706
2807
  cards: FlashcardJson[];
2707
2808
  definitions: DefinitionListItemJson[];
@@ -2714,6 +2815,7 @@ interface BitJson {
2714
2815
  pairs: PairJson[];
2715
2816
  matrix: MatrixJson[];
2716
2817
  table: TableJson;
2818
+ tableExtended: TableExtendedJson;
2717
2819
  choices: ChoiceJson[];
2718
2820
  questions: QuestionJson[];
2719
2821
  ingredients: IngredientJson[];
@@ -2780,7 +2882,7 @@ interface TextAndIconJson {
2780
2882
  icon: ImageResourceWrapperJson;
2781
2883
  }
2782
2884
  interface StatementJson {
2783
- statement: string;
2885
+ statement: JsonText;
2784
2886
  isCorrect: boolean;
2785
2887
  item: JsonText;
2786
2888
  lead: JsonText;
@@ -2915,8 +3017,26 @@ interface TableJson {
2915
3017
  columns: JsonText[];
2916
3018
  data: JsonText[][];
2917
3019
  }
3020
+ interface TableExtendedJson {
3021
+ head?: TableSectionJson;
3022
+ body?: TableSectionJson;
3023
+ foot?: TableSectionJson;
3024
+ }
3025
+ interface TableSectionJson {
3026
+ rows: TableRowJson[];
3027
+ }
3028
+ interface TableRowJson {
3029
+ cells: TableCellJson[];
3030
+ }
3031
+ interface TableCellJson {
3032
+ content: JsonText;
3033
+ title?: boolean;
3034
+ rowspan?: number;
3035
+ colspan?: number;
3036
+ scope?: 'row' | 'col' | 'rowgroup' | 'colgroup';
3037
+ }
2918
3038
  interface QuestionJson {
2919
- question: string;
3039
+ question: JsonText;
2920
3040
  partialAnswer: string;
2921
3041
  sampleSolution: string;
2922
3042
  additionalSolutions: string[];
@@ -3033,6 +3153,7 @@ interface Bit {
3033
3153
  padletId?: Property;
3034
3154
  jupyterId?: Property;
3035
3155
  jupyterExecutionCount?: Property;
3156
+ sourceRL?: Property;
3036
3157
  isPublic?: Property;
3037
3158
  isTemplate?: Property;
3038
3159
  isTemplateStripTheme?: Property;
@@ -3125,6 +3246,10 @@ interface Bit {
3125
3246
  tableAutoWidth?: Property;
3126
3247
  tableResizableColumns?: Property;
3127
3248
  tableColumnMinWidth?: Property;
3249
+ tableCellType?: Property;
3250
+ tableRowSpan?: Property;
3251
+ tableColSpan?: Property;
3252
+ tableScope?: Property;
3128
3253
  quizCountItems?: Property;
3129
3254
  quizStrikethroughSolutions?: Property;
3130
3255
  codeLineNumbers?: Property;
@@ -3171,6 +3296,8 @@ interface Bit {
3171
3296
  buttonCaption?: Property;
3172
3297
  callToActionUrl?: Property;
3173
3298
  advertisingClickUrl?: Property;
3299
+ brandColor?: Property;
3300
+ brandColorName?: Property;
3174
3301
  caption?: TextAst;
3175
3302
  quotedPerson?: Property;
3176
3303
  partialAnswer?: Property;
@@ -3185,9 +3312,26 @@ interface Bit {
3185
3312
  maxDisplayLevel?: Property;
3186
3313
  maxTocChapterLevel?: Property;
3187
3314
  sourceDocument?: Property;
3315
+ internalPrintPdf?: Property;
3316
+ hasPrintRestriction?: Property;
3188
3317
  tocResource?: Property;
3189
3318
  tocContent?: Property;
3190
3319
  page?: Property;
3320
+ platformName?: Property;
3321
+ platformIcon?: ImageResourceWrapperJson;
3322
+ platformLogo?: ImageResourceWrapperJson;
3323
+ platformPrimaryColor?: Property;
3324
+ platformSecondaryColor?: Property;
3325
+ platformBackgroundColor?: Property;
3326
+ platformScrollbarColor?: Property;
3327
+ platformSelectionColor?: Property;
3328
+ platformSeparatorColor?: Property;
3329
+ platformPlaceholderColor?: Property;
3330
+ platformTextSelectionColor?: Property;
3331
+ platformButtonPrimaryColor?: Property;
3332
+ platformButtonBackgroundColor?: Property;
3333
+ platformMessageBackgroundColor?: Property;
3334
+ platformBackgroundImage?: ImageResourceWrapperJson;
3191
3335
  productId?: Property;
3192
3336
  product?: Property;
3193
3337
  productList?: Property;
@@ -3215,7 +3359,6 @@ interface Bit {
3215
3359
  item?: TextAst;
3216
3360
  lead?: TextAst;
3217
3361
  pageNumber?: TextAst;
3218
- sourcePageNumber?: TextAst;
3219
3362
  marginNumber?: TextAst;
3220
3363
  hint?: TextAst;
3221
3364
  instruction?: TextAst;
@@ -3270,7 +3413,7 @@ interface CardNode {
3270
3413
  pairs?: PairJson[];
3271
3414
  matrix?: MatrixJson[];
3272
3415
  pronunciationTable?: PronunciationTableJson;
3273
- table?: TableJson;
3416
+ table?: TableJson | TableExtendedJson;
3274
3417
  botResponses?: BotResponseJson[];
3275
3418
  cardBits?: Bit[];
3276
3419
  ingredients?: IngredientJson[];
@@ -3300,6 +3443,10 @@ declare const NodeType: Readonly<{
3300
3443
  advertisingClickUrl: "advertisingClickUrl";
3301
3444
  advertisingClickUrlValue: "advertisingClickUrlValue";
3302
3445
  ageRange: "ageRange";
3446
+ brandColor: "brandColor";
3447
+ brandColorValue: "brandColorValue";
3448
+ brandColorName: "brandColorName";
3449
+ brandColorNameValue: "brandColorNameValue";
3303
3450
  ageRangeValue: "ageRangeValue";
3304
3451
  aiGenerated: "aiGenerated";
3305
3452
  aiGeneratedValue: "aiGeneratedValue";
@@ -3446,6 +3593,7 @@ declare const NodeType: Readonly<{
3446
3593
  durationValue: "durationValue";
3447
3594
  elements: "elements";
3448
3595
  elementsValue: "elementsValue";
3596
+ elementsValueValue: "elementsValueValue";
3449
3597
  emphasis: "emphasis";
3450
3598
  end: "end";
3451
3599
  errors: "errors";
@@ -3474,6 +3622,7 @@ declare const NodeType: Readonly<{
3474
3622
  focusY: "focusY";
3475
3623
  focusYValue: "focusYValue";
3476
3624
  footer: "footer";
3625
+ footerValue: "footerValue";
3477
3626
  footerText: "footerText";
3478
3627
  forKeys: "forKeys";
3479
3628
  format: "format";
@@ -3496,11 +3645,13 @@ declare const NodeType: Readonly<{
3496
3645
  hasBookNavigationValue: "hasBookNavigationValue";
3497
3646
  hasMarkAsDone: "hasMarkAsDone";
3498
3647
  hasMarkAsDoneValue: "hasMarkAsDoneValue";
3648
+ head: "head";
3499
3649
  heading: "heading";
3500
3650
  height: "height";
3501
3651
  heightValue: "heightValue";
3502
3652
  highlight: "highlight";
3503
3653
  hint: "hint";
3654
+ hintValue: "hintValue";
3504
3655
  href: "href";
3505
3656
  icon: "icon";
3506
3657
  iconTag: "iconTag";
@@ -3522,8 +3673,13 @@ declare const NodeType: Readonly<{
3522
3673
  ingredients: "ingredients";
3523
3674
  ingredientsValue: "ingredientsValue";
3524
3675
  instruction: "instruction";
3676
+ instructionValue: "instructionValue";
3525
3677
  internalComment: "internalComment";
3526
3678
  internalCommentValue: "internalCommentValue";
3679
+ internalPrintPdf: "internalPrintPdf";
3680
+ internalPrintPdfValue: "internalPrintPdfValue";
3681
+ hasPrintRestriction: "hasPrintRestriction";
3682
+ hasPrintRestrictionValue: "hasPrintRestrictionValue";
3527
3683
  isCaseSensitive: "isCaseSensitive";
3528
3684
  isCommented: "isCommented";
3529
3685
  isCorrect: "isCorrect";
@@ -3542,6 +3698,7 @@ declare const NodeType: Readonly<{
3542
3698
  isTracked: "isTracked";
3543
3699
  isTrackedValue: "isTrackedValue";
3544
3700
  item: "item";
3701
+ itemValue: "itemValue";
3545
3702
  itemLead: "itemLead";
3546
3703
  jobTitle: "jobTitle";
3547
3704
  jobTitleValue: "jobTitleValue";
@@ -3568,6 +3725,7 @@ declare const NodeType: Readonly<{
3568
3725
  layerRoleValue: "layerRoleValue";
3569
3726
  layerValue: "layerValue";
3570
3727
  lead: "lead";
3728
+ leadValue: "leadValue";
3571
3729
  level: "level";
3572
3730
  levelACTFL: "levelACTFL";
3573
3731
  levelACTFLValue: "levelACTFLValue";
@@ -3589,6 +3747,7 @@ declare const NodeType: Readonly<{
3589
3747
  machineTranslatedValue: "machineTranslatedValue";
3590
3748
  mailingList: "mailingList";
3591
3749
  marginNumber: "marginNumber";
3750
+ marginNumberValue: "marginNumberValue";
3592
3751
  mark: "mark";
3593
3752
  markConfig: "markConfig";
3594
3753
  markConfigValue: "markConfigValue";
@@ -3616,6 +3775,7 @@ declare const NodeType: Readonly<{
3616
3775
  pageNo: "pageNo";
3617
3776
  pageNoValue: "pageNoValue";
3618
3777
  pageNumber: "pageNumber";
3778
+ pageNumberValue: "pageNumberValue";
3619
3779
  pageValue: "pageValue";
3620
3780
  pairs: "pairs";
3621
3781
  pairsValue: "pairsValue";
@@ -3625,6 +3785,36 @@ declare const NodeType: Readonly<{
3625
3785
  partialAnswerValue: "partialAnswerValue";
3626
3786
  path: "path";
3627
3787
  pathValue: "pathValue";
3788
+ platformName: "platformName";
3789
+ platformNameValue: "platformNameValue";
3790
+ platformIcon: "platformIcon";
3791
+ platformIconValue: "platformIconValue";
3792
+ platformLogo: "platformLogo";
3793
+ platformLogoValue: "platformLogoValue";
3794
+ platformPrimaryColor: "platformPrimaryColor";
3795
+ platformPrimaryColorValue: "platformPrimaryColorValue";
3796
+ platformSecondaryColor: "platformSecondaryColor";
3797
+ platformSecondaryColorValue: "platformSecondaryColorValue";
3798
+ platformBackgroundColor: "platformBackgroundColor";
3799
+ platformBackgroundColorValue: "platformBackgroundColorValue";
3800
+ platformScrollbarColor: "platformScrollbarColor";
3801
+ platformScrollbarColorValue: "platformScrollbarColorValue";
3802
+ platformSelectionColor: "platformSelectionColor";
3803
+ platformSelectionColorValue: "platformSelectionColorValue";
3804
+ platformSeparatorColor: "platformSeparatorColor";
3805
+ platformSeparatorColorValue: "platformSeparatorColorValue";
3806
+ platformPlaceholderColor: "platformPlaceholderColor";
3807
+ platformPlaceholderColorValue: "platformPlaceholderColorValue";
3808
+ platformTextSelectionColor: "platformTextSelectionColor";
3809
+ platformTextSelectionColorValue: "platformTextSelectionColorValue";
3810
+ platformButtonPrimaryColor: "platformButtonPrimaryColor";
3811
+ platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue";
3812
+ platformButtonBackgroundColor: "platformButtonBackgroundColor";
3813
+ platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue";
3814
+ platformMessageBackgroundColor: "platformMessageBackgroundColor";
3815
+ platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue";
3816
+ platformBackgroundImage: "platformBackgroundImage";
3817
+ platformBackgroundImageValue: "platformBackgroundImageValue";
3628
3818
  person: "person";
3629
3819
  pointerLeft: "pointerLeft";
3630
3820
  pointerLeftValue: "pointerLeftValue";
@@ -3669,6 +3859,7 @@ declare const NodeType: Readonly<{
3669
3859
  publisherValue: "publisherValue";
3670
3860
  quantity: "quantity";
3671
3861
  question: "question";
3862
+ questionValue: "questionValue";
3672
3863
  questions: "questions";
3673
3864
  questionsValue: "questionsValue";
3674
3865
  quizCountItems: "quizCountItems";
@@ -3720,6 +3911,10 @@ declare const NodeType: Readonly<{
3720
3911
  responsesValue: "responsesValue";
3721
3912
  revealSolutions: "revealSolutions";
3722
3913
  root: "root";
3914
+ rows: "rows";
3915
+ rowsValue: "rowsValue";
3916
+ rubric: "rubric";
3917
+ rubricValue: "rubricValue";
3723
3918
  sampleSolution: "sampleSolution";
3724
3919
  sampleSolutionValue: "sampleSolutionValue";
3725
3920
  scormSource: "scormSource";
@@ -3742,7 +3937,8 @@ declare const NodeType: Readonly<{
3742
3937
  solutionsValue: "solutionsValue";
3743
3938
  sourceDocument: "sourceDocument";
3744
3939
  sourceDocumentValue: "sourceDocumentValue";
3745
- sourcePageNumber: "sourcePageNumber";
3940
+ sourceRL: "sourceRL";
3941
+ sourceRLValue: "sourceRLValue";
3746
3942
  spaceId: "spaceId";
3747
3943
  spaceIdValue: "spaceIdValue";
3748
3944
  src: "src";
@@ -3866,6 +4062,10 @@ declare const NodeType: Readonly<{
3866
4062
  advertisingClickUrl: "advertisingClickUrl";
3867
4063
  advertisingClickUrlValue: "advertisingClickUrlValue";
3868
4064
  ageRange: "ageRange";
4065
+ brandColor: "brandColor";
4066
+ brandColorValue: "brandColorValue";
4067
+ brandColorName: "brandColorName";
4068
+ brandColorNameValue: "brandColorNameValue";
3869
4069
  ageRangeValue: "ageRangeValue";
3870
4070
  aiGenerated: "aiGenerated";
3871
4071
  aiGeneratedValue: "aiGeneratedValue";
@@ -4012,6 +4212,7 @@ declare const NodeType: Readonly<{
4012
4212
  durationValue: "durationValue";
4013
4213
  elements: "elements";
4014
4214
  elementsValue: "elementsValue";
4215
+ elementsValueValue: "elementsValueValue";
4015
4216
  emphasis: "emphasis";
4016
4217
  end: "end";
4017
4218
  errors: "errors";
@@ -4040,6 +4241,7 @@ declare const NodeType: Readonly<{
4040
4241
  focusY: "focusY";
4041
4242
  focusYValue: "focusYValue";
4042
4243
  footer: "footer";
4244
+ footerValue: "footerValue";
4043
4245
  footerText: "footerText";
4044
4246
  forKeys: "forKeys";
4045
4247
  format: "format";
@@ -4062,11 +4264,13 @@ declare const NodeType: Readonly<{
4062
4264
  hasBookNavigationValue: "hasBookNavigationValue";
4063
4265
  hasMarkAsDone: "hasMarkAsDone";
4064
4266
  hasMarkAsDoneValue: "hasMarkAsDoneValue";
4267
+ head: "head";
4065
4268
  heading: "heading";
4066
4269
  height: "height";
4067
4270
  heightValue: "heightValue";
4068
4271
  highlight: "highlight";
4069
4272
  hint: "hint";
4273
+ hintValue: "hintValue";
4070
4274
  href: "href";
4071
4275
  icon: "icon";
4072
4276
  iconTag: "iconTag";
@@ -4088,8 +4292,13 @@ declare const NodeType: Readonly<{
4088
4292
  ingredients: "ingredients";
4089
4293
  ingredientsValue: "ingredientsValue";
4090
4294
  instruction: "instruction";
4295
+ instructionValue: "instructionValue";
4091
4296
  internalComment: "internalComment";
4092
4297
  internalCommentValue: "internalCommentValue";
4298
+ internalPrintPdf: "internalPrintPdf";
4299
+ internalPrintPdfValue: "internalPrintPdfValue";
4300
+ hasPrintRestriction: "hasPrintRestriction";
4301
+ hasPrintRestrictionValue: "hasPrintRestrictionValue";
4093
4302
  isCaseSensitive: "isCaseSensitive";
4094
4303
  isCommented: "isCommented";
4095
4304
  isCorrect: "isCorrect";
@@ -4108,6 +4317,7 @@ declare const NodeType: Readonly<{
4108
4317
  isTracked: "isTracked";
4109
4318
  isTrackedValue: "isTrackedValue";
4110
4319
  item: "item";
4320
+ itemValue: "itemValue";
4111
4321
  itemLead: "itemLead";
4112
4322
  jobTitle: "jobTitle";
4113
4323
  jobTitleValue: "jobTitleValue";
@@ -4134,6 +4344,7 @@ declare const NodeType: Readonly<{
4134
4344
  layerRoleValue: "layerRoleValue";
4135
4345
  layerValue: "layerValue";
4136
4346
  lead: "lead";
4347
+ leadValue: "leadValue";
4137
4348
  level: "level";
4138
4349
  levelACTFL: "levelACTFL";
4139
4350
  levelACTFLValue: "levelACTFLValue";
@@ -4155,6 +4366,7 @@ declare const NodeType: Readonly<{
4155
4366
  machineTranslatedValue: "machineTranslatedValue";
4156
4367
  mailingList: "mailingList";
4157
4368
  marginNumber: "marginNumber";
4369
+ marginNumberValue: "marginNumberValue";
4158
4370
  mark: "mark";
4159
4371
  markConfig: "markConfig";
4160
4372
  markConfigValue: "markConfigValue";
@@ -4182,6 +4394,7 @@ declare const NodeType: Readonly<{
4182
4394
  pageNo: "pageNo";
4183
4395
  pageNoValue: "pageNoValue";
4184
4396
  pageNumber: "pageNumber";
4397
+ pageNumberValue: "pageNumberValue";
4185
4398
  pageValue: "pageValue";
4186
4399
  pairs: "pairs";
4187
4400
  pairsValue: "pairsValue";
@@ -4191,6 +4404,36 @@ declare const NodeType: Readonly<{
4191
4404
  partialAnswerValue: "partialAnswerValue";
4192
4405
  path: "path";
4193
4406
  pathValue: "pathValue";
4407
+ platformName: "platformName";
4408
+ platformNameValue: "platformNameValue";
4409
+ platformIcon: "platformIcon";
4410
+ platformIconValue: "platformIconValue";
4411
+ platformLogo: "platformLogo";
4412
+ platformLogoValue: "platformLogoValue";
4413
+ platformPrimaryColor: "platformPrimaryColor";
4414
+ platformPrimaryColorValue: "platformPrimaryColorValue";
4415
+ platformSecondaryColor: "platformSecondaryColor";
4416
+ platformSecondaryColorValue: "platformSecondaryColorValue";
4417
+ platformBackgroundColor: "platformBackgroundColor";
4418
+ platformBackgroundColorValue: "platformBackgroundColorValue";
4419
+ platformScrollbarColor: "platformScrollbarColor";
4420
+ platformScrollbarColorValue: "platformScrollbarColorValue";
4421
+ platformSelectionColor: "platformSelectionColor";
4422
+ platformSelectionColorValue: "platformSelectionColorValue";
4423
+ platformSeparatorColor: "platformSeparatorColor";
4424
+ platformSeparatorColorValue: "platformSeparatorColorValue";
4425
+ platformPlaceholderColor: "platformPlaceholderColor";
4426
+ platformPlaceholderColorValue: "platformPlaceholderColorValue";
4427
+ platformTextSelectionColor: "platformTextSelectionColor";
4428
+ platformTextSelectionColorValue: "platformTextSelectionColorValue";
4429
+ platformButtonPrimaryColor: "platformButtonPrimaryColor";
4430
+ platformButtonPrimaryColorValue: "platformButtonPrimaryColorValue";
4431
+ platformButtonBackgroundColor: "platformButtonBackgroundColor";
4432
+ platformButtonBackgroundColorValue: "platformButtonBackgroundColorValue";
4433
+ platformMessageBackgroundColor: "platformMessageBackgroundColor";
4434
+ platformMessageBackgroundColorValue: "platformMessageBackgroundColorValue";
4435
+ platformBackgroundImage: "platformBackgroundImage";
4436
+ platformBackgroundImageValue: "platformBackgroundImageValue";
4194
4437
  person: "person";
4195
4438
  pointerLeft: "pointerLeft";
4196
4439
  pointerLeftValue: "pointerLeftValue";
@@ -4235,6 +4478,7 @@ declare const NodeType: Readonly<{
4235
4478
  publisherValue: "publisherValue";
4236
4479
  quantity: "quantity";
4237
4480
  question: "question";
4481
+ questionValue: "questionValue";
4238
4482
  questions: "questions";
4239
4483
  questionsValue: "questionsValue";
4240
4484
  quizCountItems: "quizCountItems";
@@ -4286,6 +4530,10 @@ declare const NodeType: Readonly<{
4286
4530
  responsesValue: "responsesValue";
4287
4531
  revealSolutions: "revealSolutions";
4288
4532
  root: "root";
4533
+ rows: "rows";
4534
+ rowsValue: "rowsValue";
4535
+ rubric: "rubric";
4536
+ rubricValue: "rubricValue";
4289
4537
  sampleSolution: "sampleSolution";
4290
4538
  sampleSolutionValue: "sampleSolutionValue";
4291
4539
  scormSource: "scormSource";
@@ -4308,7 +4556,8 @@ declare const NodeType: Readonly<{
4308
4556
  solutionsValue: "solutionsValue";
4309
4557
  sourceDocument: "sourceDocument";
4310
4558
  sourceDocumentValue: "sourceDocumentValue";
4311
- sourcePageNumber: "sourcePageNumber";
4559
+ sourceRL: "sourceRL";
4560
+ sourceRLValue: "sourceRLValue";
4312
4561
  spaceId: "spaceId";
4313
4562
  spaceIdValue: "spaceIdValue";
4314
4563
  src: "src";
@@ -5051,6 +5300,7 @@ declare const CardSetConfigKey: Readonly<{
5051
5300
  matchImagePairs: "matchImagePairs";
5052
5301
  matchMatrix: "matchMatrix";
5053
5302
  table: "table";
5303
+ tableExtended: "tableExtended";
5054
5304
  pronunciationTable: "pronunciationTable";
5055
5305
  botActionResponses: "botActionResponses";
5056
5306
  exampleBitList: "exampleBitList";
@@ -5070,6 +5320,7 @@ declare const CardSetConfigKey: Readonly<{
5070
5320
  matchImagePairs: "matchImagePairs";
5071
5321
  matchMatrix: "matchMatrix";
5072
5322
  table: "table";
5323
+ tableExtended: "tableExtended";
5073
5324
  pronunciationTable: "pronunciationTable";
5074
5325
  botActionResponses: "botActionResponses";
5075
5326
  exampleBitList: "exampleBitList";
@@ -5283,6 +5534,7 @@ declare class Builder extends BaseBuilder {
5283
5534
  padletId?: string;
5284
5535
  jupyterId?: string;
5285
5536
  jupyterExecutionCount?: number;
5537
+ sourceRL?: string;
5286
5538
  isPublic?: boolean;
5287
5539
  isTemplate?: boolean;
5288
5540
  isTemplateStripTheme?: boolean;
@@ -5421,6 +5673,8 @@ declare class Builder extends BaseBuilder {
5421
5673
  buttonCaption?: string;
5422
5674
  callToActionUrl?: string;
5423
5675
  advertisingClickUrl?: string;
5676
+ brandColor?: string;
5677
+ brandColorName?: string;
5424
5678
  caption?: JsonText;
5425
5679
  quotedPerson?: string;
5426
5680
  reasonableNumOfChars?: number;
@@ -5434,9 +5688,26 @@ declare class Builder extends BaseBuilder {
5434
5688
  maxDisplayLevel?: number;
5435
5689
  maxTocChapterLevel?: number;
5436
5690
  sourceDocument?: string;
5691
+ internalPrintPdf?: string;
5692
+ hasPrintRestriction?: boolean;
5437
5693
  tocResource?: string | string[];
5438
5694
  tocContent?: string | string[];
5439
5695
  page?: string | string[];
5696
+ platformName?: string;
5697
+ platformIcon?: Partial<ImageResourceWrapperJson>;
5698
+ platformLogo?: Partial<ImageResourceWrapperJson>;
5699
+ platformPrimaryColor?: string;
5700
+ platformSecondaryColor?: string;
5701
+ platformBackgroundColor?: string;
5702
+ platformScrollbarColor?: string;
5703
+ platformSelectionColor?: string;
5704
+ platformSeparatorColor?: string;
5705
+ platformPlaceholderColor?: string;
5706
+ platformTextSelectionColor?: string;
5707
+ platformButtonPrimaryColor?: string;
5708
+ platformButtonBackgroundColor?: string;
5709
+ platformMessageBackgroundColor?: string;
5710
+ platformBackgroundImage?: Partial<ImageResourceWrapperJson>;
5440
5711
  productId?: string | string[];
5441
5712
  product?: string | string[];
5442
5713
  productVideo?: string | string[];
@@ -5462,7 +5733,6 @@ declare class Builder extends BaseBuilder {
5462
5733
  item?: JsonText;
5463
5734
  lead?: JsonText;
5464
5735
  pageNumber?: JsonText;
5465
- sourcePageNumber?: JsonText;
5466
5736
  marginNumber?: JsonText;
5467
5737
  hint?: JsonText;
5468
5738
  instruction?: JsonText;
@@ -5479,7 +5749,7 @@ declare class Builder extends BaseBuilder {
5479
5749
  sampleSolution?: string;
5480
5750
  additionalSolutions?: string | string[];
5481
5751
  heading?: Partial<HeadingJson>;
5482
- elements?: string[];
5752
+ elements?: JsonText[];
5483
5753
  flashcards?: Partial<FlashcardJson>[];
5484
5754
  definitions?: Partial<DefinitionListItemJson>[];
5485
5755
  legend?: Partial<DefinitionListItemJson>[];
@@ -5490,7 +5760,7 @@ declare class Builder extends BaseBuilder {
5490
5760
  pairs?: Partial<PairJson>[];
5491
5761
  matrix?: Partial<MatrixJson>[];
5492
5762
  pronunciationTable?: Partial<PronunciationTableJson>;
5493
- table?: Partial<TableJson>;
5763
+ table?: Partial<TableJson | TableExtendedJson>;
5494
5764
  choices?: Partial<ChoiceJson>[];
5495
5765
  questions?: Partial<QuestionJson>[];
5496
5766
  botResponses?: Partial<BotResponseJson>[];
@@ -5670,12 +5940,12 @@ declare class Builder extends BaseBuilder {
5670
5940
  */
5671
5941
  protected buildPronunciationTable(context: BuildContext, dataIn: Partial<PronunciationTableJson> | undefined): PronunciationTableJson | undefined;
5672
5942
  /**
5673
- * Build table node
5943
+ * Build table / table extended node
5674
5944
  *
5675
5945
  * @param data - data for the node
5676
5946
  * @returns
5677
5947
  */
5678
- protected buildTable(context: BuildContext, dataIn: Partial<TableJson> | undefined): TableJson | undefined;
5948
+ protected buildTable(context: BuildContext, dataIn: Partial<TableJson | TableExtendedJson> | undefined): TableJson | TableExtendedJson | undefined;
5679
5949
  /**
5680
5950
  * Build question[] node
5681
5951
  *
@@ -6541,6 +6811,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6541
6811
  private hasCardSet;
6542
6812
  private hasFooter;
6543
6813
  private inTag;
6814
+ private skipTableTraversal;
6544
6815
  /**
6545
6816
  * Generate bitmark markup from a bitmark AST
6546
6817
  *
@@ -6599,7 +6870,6 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6599
6870
  protected enter_item(node: NodeInfo, route: NodeInfo[]): boolean;
6600
6871
  protected enter_lead(node: NodeInfo, route: NodeInfo[]): boolean;
6601
6872
  protected enter_pageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
6602
- protected enter_sourcePageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
6603
6873
  protected enter_marginNumber(node: NodeInfo, route: NodeInfo[]): boolean;
6604
6874
  protected enter_body(node: NodeInfo, route: NodeInfo[]): boolean;
6605
6875
  protected exit_body(_node: NodeInfo, _route: NodeInfo[]): void;
@@ -6645,7 +6915,12 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6645
6915
  protected enter_values(_node: NodeInfo, _route: NodeInfo[]): void;
6646
6916
  protected between_values(_node: NodeInfo, _left: NodeInfo, _right: NodeInfo, _route: NodeInfo[]): void;
6647
6917
  protected between_pronunciationTable(_node: NodeInfo, _left: NodeInfo, _right: NodeInfo, route: NodeInfo[]): void;
6918
+ protected enter_table(node: NodeInfo, route: NodeInfo[]): boolean | void;
6648
6919
  protected between_table(_node: NodeInfo, _left: NodeInfo, _right: NodeInfo, route: NodeInfo[]): void;
6920
+ private writeAdvancedTable;
6921
+ private writeTableRow;
6922
+ private writeTableCell;
6923
+ private writeTableCellProperty;
6649
6924
  protected between_data(_node: NodeInfo, _left: NodeInfo, _right: NodeInfo, route: NodeInfo[]): void;
6650
6925
  protected between_columns(_node: NodeInfo, _left: NodeInfo, _right: NodeInfo, route: NodeInfo[]): void;
6651
6926
  protected leaf_columnsValue(node: NodeInfo, _route: NodeInfo[]): void;
@@ -6672,6 +6947,9 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6672
6947
  protected leaf_feedback(node: NodeInfo, route: NodeInfo[]): void;
6673
6948
  protected enter_backgroundWallpaper(node: NodeInfo, _route: NodeInfo[]): boolean;
6674
6949
  protected enter_imagePlaceholder(node: NodeInfo, _route: NodeInfo[]): boolean;
6950
+ protected enter_platformIcon(node: NodeInfo, _route: NodeInfo[]): boolean;
6951
+ protected enter_platformLogo(node: NodeInfo, _route: NodeInfo[]): boolean;
6952
+ protected enter_platformBackgroundImage(node: NodeInfo, _route: NodeInfo[]): boolean;
6675
6953
  protected exit_imagePlaceholder(_node: NodeInfo, _route: NodeInfo[]): void;
6676
6954
  protected enter_posterImage(node: NodeInfo, route: NodeInfo[]): boolean;
6677
6955
  protected enter_thumbnails(node: NodeInfo, route: NodeInfo[]): boolean;
@@ -6693,7 +6971,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6693
6971
  protected leaf_refPublicationYear(node: NodeInfo, route: NodeInfo[]): void;
6694
6972
  protected leaf_citationStyle(node: NodeInfo, route: NodeInfo[]): void;
6695
6973
  protected leaf_isExample(node: NodeInfo, route: NodeInfo[]): void;
6696
- protected leaf_elementsValue(node: NodeInfo, _route: NodeInfo[]): void;
6974
+ protected enter_elementsValue(node: NodeInfo, _route: NodeInfo[]): void;
6697
6975
  protected leaf_solutionsValue(node: NodeInfo, route: NodeInfo[]): void;
6698
6976
  protected leaf_prefix(node: NodeInfo, _route: NodeInfo[]): void;
6699
6977
  protected leaf_postfix(node: NodeInfo, _route: NodeInfo[]): void;
@@ -6703,6 +6981,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6703
6981
  protected leaf_forValuesValue(node: NodeInfo, _route: NodeInfo[]): void;
6704
6982
  protected leaf_key(node: NodeInfo, _route: NodeInfo[]): void;
6705
6983
  protected leaf_valuesValue(node: NodeInfo, _route: NodeInfo[]): void;
6984
+ protected enter_question(node: NodeInfo, route: NodeInfo[]): void;
6706
6985
  protected leaf_question(node: NodeInfo, route: NodeInfo[]): void;
6707
6986
  protected leaf_srcAltValue(node: NodeInfo, route: NodeInfo[]): void;
6708
6987
  protected leaf_src1x(node: NodeInfo, route: NodeInfo[]): void;
@@ -6808,9 +7087,11 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6808
7087
  protected writePlainTextDivider(): void;
6809
7088
  protected writeCardSetStart(): void;
6810
7089
  protected writeCardSetEnd(): void;
6811
- protected writeCardSetCardDivider(): void;
7090
+ protected writeCardSetCardDivider(qualifier?: string): void;
6812
7091
  protected writeCardSetSideDivider(): void;
6813
7092
  protected writeCardSetVariantDivider(): void;
7093
+ private getCardDividerMarker;
7094
+ private appendCardDividerQualifier;
6814
7095
  protected writeNL_IfNotChain(route: NodeInfo[]): void;
6815
7096
  protected writeNL(): void;
6816
7097
  protected writePropertyStyleResource(key: string, resource: ResourceJson, deprecated_writeAsProperty?: boolean): boolean | void;
@@ -6830,6 +7111,7 @@ declare class BitmarkGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6830
7111
  protected isEmptyText(text: TextAst | undefined): boolean;
6831
7112
  protected isWriteTextFormat(bitsValue: string, textFormatDefault: TextFormatType): boolean;
6832
7113
  protected calculateIsCardAllowed(): boolean;
7114
+ protected isTableBitType(): boolean;
6833
7115
  protected isOfBitType1(): boolean;
6834
7116
  protected isOfBitType(baseBitType: BitTypeType | BitTypeType[]): boolean;
6835
7117
  /**
@@ -6992,7 +7274,6 @@ declare class JsonGenerator extends AstWalkerGenerator<BitmarkAst, void> {
6992
7274
  protected enter_item(node: NodeInfo, route: NodeInfo[]): boolean;
6993
7275
  protected enter_lead(node: NodeInfo, route: NodeInfo[]): boolean;
6994
7276
  protected enter_pageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
6995
- protected enter_sourcePageNumber(node: NodeInfo, route: NodeInfo[]): boolean;
6996
7277
  protected enter_marginNumber(node: NodeInfo, route: NodeInfo[]): boolean;
6997
7278
  protected enter_hint(node: NodeInfo, route: NodeInfo[]): boolean;
6998
7279
  protected enter_instruction(node: NodeInfo, route: NodeInfo[]): boolean;
@@ -7043,6 +7324,9 @@ declare class JsonGenerator extends AstWalkerGenerator<BitmarkAst, void> {
7043
7324
  protected enter_captionDefinitionList(node: NodeInfo, route: NodeInfo[]): boolean;
7044
7325
  protected enter_backgroundWallpaper(node: NodeInfo, route: NodeInfo[]): boolean;
7045
7326
  protected enter_imagePlaceholder(node: NodeInfo, route: NodeInfo[]): boolean;
7327
+ protected enter_platformIcon(node: NodeInfo, route: NodeInfo[]): boolean;
7328
+ protected enter_platformLogo(node: NodeInfo, route: NodeInfo[]): boolean;
7329
+ protected enter_platformBackgroundImage(node: NodeInfo, route: NodeInfo[]): boolean;
7046
7330
  protected enter_resources(node: NodeInfo, route: NodeInfo[]): boolean;
7047
7331
  protected leaf_level(node: NodeInfo, route: NodeInfo[]): boolean;
7048
7332
  protected enter_book(node: NodeInfo, route: NodeInfo[]): boolean;