@gmb/bitmark-parser-generator 1.5.28 → 1.6.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.
Files changed (146) hide show
  1. package/dist/browser/bitmark-parser-generator.min.js +1 -1
  2. package/dist/browser/bundle-report.html +2 -2
  3. package/dist/cjs/ast/Builder.js +21 -3
  4. package/dist/cjs/ast/Builder.js.map +1 -1
  5. package/dist/cjs/config/Config.js +1 -2
  6. package/dist/cjs/config/Config.js.map +1 -1
  7. package/dist/cjs/config/raw/bits.js +60 -1
  8. package/dist/cjs/config/raw/bits.js.map +1 -1
  9. package/dist/cjs/config/raw/groups.js +8 -0
  10. package/dist/cjs/config/raw/groups.js.map +1 -1
  11. package/dist/cjs/config/raw/properties.js +54 -11
  12. package/dist/cjs/config/raw/properties.js.map +1 -1
  13. package/dist/cjs/config/raw/tags.js +13 -13
  14. package/dist/cjs/config/raw/tags.js.map +1 -1
  15. package/dist/cjs/generated/build-info.js +1 -1
  16. package/dist/cjs/generated/build-info.js.map +1 -1
  17. package/dist/cjs/generator/bitmark/BitmarkGenerator.js +31 -1
  18. package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
  19. package/dist/cjs/generator/json/JsonGenerator.js +83 -1
  20. package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
  21. package/dist/cjs/model/ast/NodeType.js +333 -334
  22. package/dist/cjs/model/ast/NodeType.js.map +1 -1
  23. package/dist/cjs/model/config/enum/PropertyConfigKey.js +8 -0
  24. package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
  25. package/dist/cjs/model/enum/BitType.js +3 -0
  26. package/dist/cjs/model/enum/BitType.js.map +1 -1
  27. package/dist/cjs/model/enum/PropertyAstKey.js +6 -6
  28. package/dist/cjs/model/enum/PropertyAstKey.js.map +1 -1
  29. package/dist/cjs/model/enum/PropertyTag.js +2 -135
  30. package/dist/cjs/model/enum/PropertyTag.js.map +1 -1
  31. package/dist/cjs/model/enum/Tag.js +13 -13
  32. package/dist/cjs/model/enum/Tag.js.map +1 -1
  33. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js +11 -11
  34. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
  35. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js +1 -1
  36. package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
  37. package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +2 -1
  38. package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
  39. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +2 -1
  40. package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  41. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js +2 -1
  42. package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js.map +1 -1
  43. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +2 -1
  44. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
  45. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +2 -1
  46. package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  47. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +6 -1
  48. package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  49. package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +36 -0
  50. package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -0
  51. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +1 -1
  52. package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  53. package/dist/cjs/parser/json/JsonParser.js +21 -4
  54. package/dist/cjs/parser/json/JsonParser.js.map +1 -1
  55. package/dist/esm/ast/Builder.js +21 -3
  56. package/dist/esm/ast/Builder.js.map +1 -1
  57. package/dist/esm/config/Config.js +1 -2
  58. package/dist/esm/config/Config.js.map +1 -1
  59. package/dist/esm/config/raw/bits.js +61 -2
  60. package/dist/esm/config/raw/bits.js.map +1 -1
  61. package/dist/esm/config/raw/groups.js +8 -0
  62. package/dist/esm/config/raw/groups.js.map +1 -1
  63. package/dist/esm/config/raw/properties.js +54 -11
  64. package/dist/esm/config/raw/properties.js.map +1 -1
  65. package/dist/esm/config/raw/tags.js +13 -13
  66. package/dist/esm/config/raw/tags.js.map +1 -1
  67. package/dist/esm/generated/build-info.js +1 -1
  68. package/dist/esm/generated/build-info.js.map +1 -1
  69. package/dist/esm/generator/bitmark/BitmarkGenerator.js +31 -1
  70. package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
  71. package/dist/esm/generator/json/JsonGenerator.js +83 -1
  72. package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
  73. package/dist/esm/model/ast/NodeType.js +333 -334
  74. package/dist/esm/model/ast/NodeType.js.map +1 -1
  75. package/dist/esm/model/config/enum/PropertyConfigKey.js +8 -0
  76. package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
  77. package/dist/esm/model/enum/BitType.js +3 -0
  78. package/dist/esm/model/enum/BitType.js.map +1 -1
  79. package/dist/esm/model/enum/PropertyAstKey.js +6 -6
  80. package/dist/esm/model/enum/PropertyAstKey.js.map +1 -1
  81. package/dist/esm/model/enum/PropertyTag.js +2 -135
  82. package/dist/esm/model/enum/PropertyTag.js.map +1 -1
  83. package/dist/esm/model/enum/Tag.js +13 -13
  84. package/dist/esm/model/enum/Tag.js.map +1 -1
  85. package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js +11 -11
  86. package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
  87. package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js +1 -1
  88. package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
  89. package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +2 -1
  90. package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
  91. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +2 -1
  92. package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
  93. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js +2 -1
  94. package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js.map +1 -1
  95. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +2 -1
  96. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
  97. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +2 -1
  98. package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
  99. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +6 -1
  100. package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
  101. package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +33 -0
  102. package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -0
  103. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +1 -1
  104. package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
  105. package/dist/esm/parser/json/JsonParser.js +21 -4
  106. package/dist/esm/parser/json/JsonParser.js.map +1 -1
  107. package/dist/types/ast/Builder.d.ts +18 -1
  108. package/dist/types/ast/Builder.d.ts.map +1 -1
  109. package/dist/types/config/Config.d.ts +4 -3
  110. package/dist/types/config/Config.d.ts.map +1 -1
  111. package/dist/types/config/raw/bits.d.ts.map +1 -1
  112. package/dist/types/config/raw/groups.d.ts.map +1 -1
  113. package/dist/types/config/raw/properties.d.ts.map +1 -1
  114. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +3 -0
  115. package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
  116. package/dist/types/generator/json/JsonGenerator.d.ts +5 -2
  117. package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
  118. package/dist/types/model/ast/NodeType.d.ts +666 -640
  119. package/dist/types/model/ast/NodeType.d.ts.map +1 -1
  120. package/dist/types/model/ast/Nodes.d.ts +11 -0
  121. package/dist/types/model/ast/Nodes.d.ts.map +1 -1
  122. package/dist/types/model/config/enum/ConfigKey.d.ts +16 -0
  123. package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
  124. package/dist/types/model/config/enum/PropertyConfigKey.d.ts +24 -0
  125. package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
  126. package/dist/types/model/enum/BitType.d.ts +6 -0
  127. package/dist/types/model/enum/BitType.d.ts.map +1 -1
  128. package/dist/types/model/enum/PropertyAstKey.d.ts +12 -12
  129. package/dist/types/model/enum/PropertyTag.d.ts +46 -14
  130. package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
  131. package/dist/types/model/enum/Tag.d.ts +26 -26
  132. package/dist/types/model/json/BitJson.d.ts +11 -0
  133. package/dist/types/model/json/BitJson.d.ts.map +1 -1
  134. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +4 -1
  135. package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
  136. package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts.map +1 -1
  137. package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts.map +1 -1
  138. package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.d.ts.map +1 -1
  139. package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts.map +1 -1
  140. package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts.map +1 -1
  141. package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts.map +1 -1
  142. package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts +7 -0
  143. package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts.map +1 -0
  144. package/dist/types/parser/json/JsonParser.d.ts +1 -0
  145. package/dist/types/parser/json/JsonParser.d.ts.map +1 -1
  146. package/package.json +1 -1
@@ -10,400 +10,399 @@ const superenum_1 = require("@ncoderz/superenum");
10
10
  */
11
11
  const NodeType = (0, superenum_1.superenum)({
12
12
  unknown: 'unknown', // unknown
13
- bitType: 'bitType', // bit type
13
+ action: 'action',
14
+ actionValue: 'actionValue',
15
+ ageRange: 'ageRange',
16
+ ageRangeValue: 'ageRangeValue',
17
+ aiGenerated: 'aiGenerated',
18
+ aiGeneratedValue: 'aiGeneratedValue',
14
19
  alias: 'alias', // bit type (alias)
15
- root: 'root', // bit type (root)
16
- textFormat: 'textFormat',
17
- isCommented: 'isCommented',
20
+ alignment: 'alignment',
21
+ alt: 'alt',
22
+ alternativeAnswers: 'alternativeAnswers',
23
+ alternativeAnswersValue: 'alternativeAnswersValue',
24
+ anchor: 'anchor',
25
+ answer: 'answer',
26
+ attrs: 'attrs',
27
+ audio: 'audio',
28
+ author: 'author',
29
+ authorValue: 'authorValue',
30
+ availableClassifications: 'availableClassifications',
31
+ availableClassificationsValue: 'availableClassificationsValue',
32
+ avatarImage: 'avatarImage',
33
+ backgroundWallpaper: 'backgroundWallpaper',
34
+ backgroundWallpaperValue: 'backgroundWallpaperValue',
35
+ hasBookNavigation: 'hasBookNavigation',
36
+ hasBookNavigationValue: 'hasBookNavigationValue',
18
37
  bitmarkAst: 'bitmarkAst', // bitmarkAst
38
+ bitmarkVersion: 'bitmarkVersion',
19
39
  bits: 'bits', // bits
20
40
  bitsValue: 'bitsValue', // bit
21
- properties: 'properties',
22
- property: 'property',
23
- propertyValues: 'propertyValues',
24
- itemLead: 'itemLead',
41
+ bitType: 'bitType', // bit type
42
+ blockId: 'blockId',
43
+ blockIdValue: 'blockIdValue',
25
44
  body: 'body',
45
+ bodyJson: 'bodyJson',
26
46
  bodyParts: 'bodyParts',
27
47
  bodyPartsValue: 'bodyPartsValue',
28
48
  bodyPartText: 'bodyPartText',
29
- data: 'data',
30
49
  bodyText: 'bodyText',
31
- bodyJson: 'bodyJson',
32
- footer: 'footer',
33
- footerText: 'footerText',
34
- gap: 'gap',
35
- select: 'select',
36
- highlight: 'highlight',
37
- cardNode: 'cardNode',
38
- elements: 'elements',
39
- solutions: 'solutions',
40
- options: 'options',
41
- optionsValue: 'optionsValue',
42
- texts: 'texts',
43
- textsValue: 'textsValue',
44
- statement: 'statement',
45
- statements: 'statements',
46
- statementsValue: 'statementsValue',
47
- choices: 'choices',
48
- choicesValue: 'choicesValue',
49
- responses: 'responses',
50
- responsesValue: 'responsesValue',
51
- quizzes: 'quizzes',
52
- quizzesValue: 'quizzesValue',
53
- heading: 'heading',
54
- forValues: 'forValues',
55
- pairs: 'pairs',
56
- pairsValue: 'pairsValue',
57
- values: 'values',
58
- matrix: 'matrix',
59
- matrixValue: 'matrixValue',
60
- cells: 'cells',
61
- cellsValue: 'cellsValue',
62
- questions: 'questions',
63
- questionsValue: 'questionsValue',
50
+ book: 'book',
51
+ bookAlias: 'bookAlias',
52
+ bookAliasValue: 'bookAliasValue',
53
+ bot: 'bot',
64
54
  botResponses: 'botResponses',
65
55
  botResponsesValue: 'botResponsesValue',
56
+ botValue: 'botValue',
57
+ buttonCaption: 'buttonCaption',
58
+ buttonCaptionValue: 'buttonCaptionValue',
59
+ caption: 'caption',
60
+ captionValue: 'captionValue',
66
61
  cardBits: 'cardBits',
67
62
  cardBitsValue: 'cardBitsValue',
68
- // Properties
69
- id: 'id',
70
- idValue: 'idValue',
71
- internalComment: 'internalComment',
72
- internalCommentValue: 'internalCommentValue',
73
- externalId: 'externalId',
74
- externalIdValue: 'externalIdValue',
75
- spaceId: 'spaceId',
76
- spaceIdValue: 'spaceIdValue',
77
- releaseVersion: 'releaseVersion',
78
- releaseVersionValue: 'releaseVersionValue',
79
- releaseKind: 'releaseKind',
80
- releaseKindValue: 'releaseKindValue',
81
- releaseDate: 'releaseDate',
82
- releaseDateValue: 'releaseDateValue',
83
- padletId: 'padletId',
84
- padletIdValue: 'padletIdValue',
85
- jupyterId: 'jupyterId',
86
- jupyterIdValue: 'jupyterIdValue',
87
- jupyterExecutionCount: 'jupyterExecutionCount',
88
- jupyterExecutionCountValue: 'jupyterExecutionCountValue',
89
- aiGenerated: 'aiGenerated',
90
- aiGeneratedValue: 'aiGeneratedValue',
91
- ageRange: 'ageRange',
92
- ageRangeValue: 'ageRangeValue',
93
- lang: 'lang',
94
- langValue: 'langValue',
95
- language: 'language',
96
- languageValue: 'languageValue',
97
- publisher: 'publisher',
98
- publisherValue: 'publisherValue',
99
- publisherName: 'publisherName',
100
- publisherNameValue: 'publisherNameValue',
101
- theme: 'theme',
102
- themeValue: 'themeValue',
103
- computerLanguage: 'computerLanguage',
104
- computerLanguageValue: 'computerLanguageValue',
105
- target: 'target',
106
- targetValue: 'targetValue',
107
- tag: 'tag',
108
- tagValue: 'tagValue',
109
- icon: 'icon',
110
- iconValue: 'iconValue',
111
- iconTag: 'iconTag',
112
- iconTagValue: 'iconTagValue',
113
- colorTag: 'colorTag',
114
- colorTagValue: 'colorTagValue',
115
- flashcardSet: 'flashcardSet',
116
- flashcardSetValue: 'flashcardSetValue',
117
- subtype: 'subtype',
118
- subtypeValue: 'subtypeValue',
119
- bookAlias: 'bookAlias',
120
- bookAliasValue: 'bookAliasValue',
121
- coverImage: 'coverImage',
122
- coverImageValue: 'coverImageValue',
123
- coverColor: 'coverColor',
124
- coverColorValue: 'coverColorValue',
125
- publications: 'publications',
126
- publicationsValue: 'publicationsValue',
127
- author: 'author',
128
- authorValue: 'authorValue',
129
- subject: 'subject',
130
- subjectValue: 'subjectValue',
131
- date: 'date',
132
- dateValue: 'dateValue',
133
- location: 'location',
134
- locationValue: 'locationValue',
135
- kind: 'kind',
136
- kindValue: 'kindValue',
137
- blockId: 'blockId',
138
- blockIdValue: 'blockIdValue',
139
- pageNo: 'pageNo',
140
- pageNoValue: 'pageNoValue',
141
- x: 'x',
142
- xValue: 'xValue',
143
- y: 'y',
144
- yValue: 'yValue',
145
- width: 'width',
146
- widthValue: 'widthValue',
147
- height: 'height',
148
- heightValue: 'heightValue',
149
- index: 'index',
150
- indexValue: 'indexValue',
63
+ cardNode: 'cardNode',
64
+ cells: 'cells',
65
+ cellsValue: 'cellsValue',
66
+ checked: 'checked',
67
+ choices: 'choices',
68
+ choicesValue: 'choicesValue',
69
+ class: 'class',
151
70
  classification: 'classification',
152
71
  classificationValue: 'classificationValue',
153
- availableClassifications: 'availableClassifications',
154
- availableClassificationsValue: 'availableClassificationsValue',
155
- tableFixedHeader: 'tableFixedHeader',
156
- tableFixedHeaderValue: 'tableFixedHeaderValue',
157
- tableSearch: 'tableSearch',
158
- tableSearchValue: 'tableSearchValue',
159
- tableSort: 'tableSort',
160
- tableSortValue: 'tableSortValue',
161
- tablePagination: 'tablePagination',
162
- tablePaginationValue: 'tablePaginationValue',
163
- tablePaginationLimit: 'tablePaginationLimit',
164
- tablePaginationLimitValue: 'tablePaginationLimitValue',
165
- tableHeight: 'tableHeight',
166
- tableHeightValue: 'tableHeightValue',
167
- tableWhitespaceNoWrap: 'tableWhitespaceNoWrap',
168
- tableWhitespaceNoWrapValue: 'tableWhitespaceNoWrapValue',
169
- tableAutoWidth: 'tableAutoWidth',
170
- tableAutoWidthValue: 'tableAutoWidthValue',
171
- tableResizableColumns: 'tableResizableColumns',
172
- tableResizableColumnsValue: 'tableResizableColumnsValue',
173
- quizCountItems: 'quizCountItems',
174
- quizCountItemsValue: 'quizCountItemsValue',
175
- quizStrikethroughSolutions: 'quizStrikethroughSolutions',
176
- quizStrikethroughSolutionsValue: 'quizStrikethroughSolutionsValue',
177
72
  codeLineNumbers: 'codeLineNumbers',
178
73
  codeLineNumbersValue: 'codeLineNumbersValue',
179
74
  codeMinimap: 'codeMinimap',
180
75
  codeMinimapValue: 'codeMinimapValue',
181
- table: 'table',
76
+ color: 'color',
77
+ colorTag: 'colorTag',
78
+ colorTagValue: 'colorTagValue',
79
+ column: 'column',
182
80
  columns: 'columns',
183
81
  columnsValue: 'columnsValue',
184
- rows: 'rows',
185
- rowsValue: 'rowsValue',
186
- rowsValueValue: 'rowsValueValue',
187
- action: 'action',
188
- actionValue: 'actionValue',
189
- thumbImage: 'thumbImage',
190
- thumbImageValue: 'thumbImageValue',
191
- scormSource: 'scormSource',
192
- scormSourceValue: 'scormSourceValue',
193
- posterImage: 'posterImage',
194
- posterImageValue: 'posterImageValue',
195
- focusX: 'focusX',
196
- focusXValue: 'focusXValue',
197
- focusY: 'focusY',
198
- focusYValue: 'focusYValue',
199
- pointerLeft: 'pointerLeft',
200
- pointerLeftValue: 'pointerLeftValue',
201
- pointerTop: 'pointerTop',
202
- pointerTopValue: 'pointerTopValue',
203
- backgroundWallpaper: 'backgroundWallpaper',
204
- backgroundWallpaperValue: 'backgroundWallpaperValue',
205
- duration: 'duration',
206
- durationValue: 'durationValue',
82
+ comment: 'comment',
83
+ commentedBitType: 'commentedBitType',
84
+ computerLanguage: 'computerLanguage',
85
+ computerLanguageValue: 'computerLanguageValue',
86
+ content: 'contentValue',
87
+ content2Buy: 'content2Buy',
88
+ contentValue: 'contentValue',
89
+ contentValueValue: 'contentValueValue',
90
+ copyright: 'copyright',
91
+ coverColor: 'coverColor',
92
+ coverColorValue: 'coverColorValue',
93
+ coverImage: 'coverImage',
94
+ coverImageValue: 'coverImageValue',
95
+ data: 'data',
96
+ date: 'date',
97
+ dateValue: 'dateValue',
98
+ decimalPlaces: 'decimalPlaces',
207
99
  deeplink: 'deeplink',
208
100
  deeplinkValue: 'deeplinkValue',
101
+ disableCalculation: 'disableCalculation',
102
+ duration: 'duration',
103
+ durationValue: 'durationValue',
104
+ elements: 'elements',
105
+ elementsValue: 'elementsValue',
106
+ emphasis: 'emphasis',
107
+ end: 'end',
108
+ errors: 'errors',
109
+ errorsValue: 'errorsValue',
110
+ example: 'example',
111
+ exampleValue: 'exampleValue',
112
+ externalId: 'externalId',
113
+ externalIdValue: 'externalIdValue',
209
114
  externalLink: 'externalLink',
210
115
  externalLinkText: 'externalLinkText',
211
- videoCallLink: 'videoCallLink',
212
- videoCallLinkValue: 'videoCallLinkValue',
213
- vendorUrl: 'vendorUrl',
214
- vendorUrlValue: 'vendorUrlValue',
215
- search: 'search',
216
- searchValue: 'searchValue',
217
- bot: 'bot',
218
- botValue: 'botValue',
219
- referenceProperty: 'referenceProperty',
220
- referencePropertyValue: 'referencePropertyValue',
116
+ extraProperties: 'extraProperties',
117
+ feedback: 'feedback',
118
+ flashcards: 'flashcards',
119
+ flashcardSet: 'flashcardSet',
120
+ flashcardSetValue: 'flashcardSetValue',
121
+ flashcardsValue: 'flashcardsValue',
122
+ focusX: 'focusX',
123
+ focusXValue: 'focusXValue',
124
+ focusY: 'focusY',
125
+ focusYValue: 'focusYValue',
126
+ footer: 'footer',
127
+ footerText: 'footerText',
128
+ forKeys: 'forKeys',
129
+ format: 'format',
130
+ forValues: 'forValues',
131
+ forValuesValue: 'forValuesValue',
132
+ gap: 'gap',
133
+ hasMarkAsDone: 'hasMarkAsDone',
134
+ hasMarkAsDoneValue: 'hasMarkAsDoneValue',
135
+ heading: 'heading',
136
+ height: 'height',
137
+ heightValue: 'heightValue',
138
+ highlight: 'highlight',
139
+ hint: 'hint',
140
+ href: 'href',
141
+ icon: 'icon',
142
+ iconTag: 'iconTag',
143
+ iconTagValue: 'iconTagValue',
144
+ iconValue: 'iconValue',
145
+ id: 'id',
146
+ idValue: 'idValue',
147
+ image: 'image',
148
+ imageLandscape: 'imageLandscape',
149
+ imagePortrait: 'imagePortrait',
150
+ imageSource: 'imageSource',
151
+ index: 'index',
152
+ indexValue: 'indexValue',
221
153
  ingredients: 'ingredients',
222
154
  ingredientsValue: 'ingredientsValue',
223
- list: 'list',
224
- listValue: 'listValue',
225
- textReference: 'textReference',
226
- textReferenceValue: 'textReferenceValue',
227
- isTracked: 'isTracked',
228
- isTrackedValue: 'isTrackedValue',
155
+ instruction: 'instruction',
156
+ internalComment: 'internalComment',
157
+ internalCommentValue: 'internalCommentValue',
158
+ isCaseSensitive: 'isCaseSensitive',
159
+ isCommented: 'isCommented',
160
+ isCorrect: 'isCorrect',
161
+ isDefaultExample: 'isDefaultExample',
162
+ isExample: 'isExample',
229
163
  isInfoOnly: 'isInfoOnly',
230
164
  isInfoOnlyValue: 'isInfoOnlyValue',
231
- labelTrue: 'labelTrue',
232
- labelTrueValue: 'labelTrueValue',
165
+ isPublic: 'isPublic',
166
+ isPublicValue: 'isPublicValue',
167
+ isTracked: 'isTracked',
168
+ isTrackedValue: 'isTrackedValue',
169
+ item: 'item',
170
+ itemLead: 'itemLead',
171
+ jupyterExecutionCount: 'jupyterExecutionCount',
172
+ jupyterExecutionCountValue: 'jupyterExecutionCountValue',
173
+ jupyterId: 'jupyterId',
174
+ jupyterIdValue: 'jupyterIdValue',
175
+ key: 'key',
176
+ keyAudio: 'keyAudio',
177
+ keyImage: 'keyImage',
178
+ kind: 'kind',
179
+ kindValue: 'kindValue',
180
+ label: 'label',
233
181
  labelFalse: 'labelFalse',
234
182
  labelFalseValue: 'labelFalseValue',
235
- content2Buy: 'content2Buy',
183
+ labelTrue: 'labelTrue',
184
+ labelTrueValue: 'labelTrueValue',
185
+ lang: 'lang',
186
+ language: 'language',
187
+ languageValue: 'languageValue',
188
+ langValue: 'langValue',
189
+ lead: 'lead',
190
+ level: 'level',
191
+ license: 'license',
192
+ line: 'line',
193
+ list: 'list',
194
+ listValue: 'listValue',
195
+ location: 'location',
196
+ locationValue: 'locationValue',
236
197
  mailingList: 'mailingList',
237
- buttonCaption: 'buttonCaption',
238
- buttonCaptionValue: 'buttonCaptionValue',
239
- caption: 'caption',
240
- captionValue: 'captionValue',
241
- quotedPerson: 'quotedPerson',
242
- partialAnswer: 'partialAnswer',
243
- partialAnswerValue: 'partialAnswerValue',
244
- reasonableNumOfChars: 'reasonableNumOfChars',
245
- reasonableNumOfCharsValue: 'reasonableNumOfCharsValue',
246
- resolved: 'resolved',
247
- resolvedValue: 'resolvedValue',
248
- resolvedDate: 'resolvedDate',
249
- resolvedDateValue: 'resolvedDateValue',
250
- resolvedBy: 'resolvedBy',
251
- resolvedByValue: 'resolvedByValue',
198
+ marginNumber: 'marginNumber',
199
+ mark: 'mark',
200
+ markConfig: 'markConfig',
201
+ markConfigValue: 'markConfigValue',
202
+ marks: 'marks',
203
+ marksValue: 'marksValue',
204
+ markup: 'markup', // bitmark markup
205
+ matrix: 'matrix',
206
+ matrixValue: 'matrixValue',
252
207
  maxCreatedBits: 'maxCreatedBits',
253
208
  maxCreatedBitsValue: 'maxCreatedBitsValue',
254
209
  maxDisplayLevel: 'maxDisplayLevel',
255
210
  maxDisplayLevelValue: 'maxDisplayLevelValue',
211
+ message: 'message',
212
+ mockupId: 'mockupId',
213
+ name: 'name',
214
+ offset: 'offset',
215
+ options: 'options',
216
+ optionsValue: 'optionsValue',
217
+ original: 'original',
218
+ padletId: 'padletId',
219
+ padletIdValue: 'padletIdValue',
220
+ pageNo: 'pageNo',
221
+ pageNoValue: 'pageNoValue',
222
+ pageNumber: 'pageNumber',
223
+ pairs: 'pairs',
224
+ pairsValue: 'pairsValue',
225
+ parent: 'parent',
226
+ parser: 'parser',
227
+ partialAnswer: 'partialAnswer',
228
+ partialAnswerValue: 'partialAnswerValue',
229
+ person: 'person',
230
+ pointerLeft: 'pointerLeft',
231
+ pointerLeftValue: 'pointerLeftValue',
232
+ pointerTop: 'pointerTop',
233
+ pointerTopValue: 'pointerTopValue',
234
+ posterImage: 'posterImage',
235
+ posterImageValue: 'posterImageValue',
236
+ postfix: 'postfix',
237
+ prefix: 'prefix',
238
+ productId: 'productId',
239
+ productIdValue: 'productIdValue',
256
240
  product: 'product',
257
- productValue: 'productValue',
241
+ productFolder: 'productFolder',
242
+ productFolderValue: 'productFolderValue',
258
243
  productList: 'productList',
259
244
  productListValue: 'productListValue',
245
+ productValue: 'productValue',
260
246
  productVideo: 'productVideo',
261
- productVideoValue: 'productVideoValue',
262
247
  productVideoList: 'productVideoList',
263
248
  productVideoListValue: 'productVideoListValue',
264
- productFolder: 'productFolder',
265
- productFolderValue: 'productFolderValue',
266
- technicalTerm: 'technicalTerm',
267
- technicalTermValue: 'technicalTermValue',
268
- servings: 'servings',
269
- servingsValue: 'servingsValue',
270
- book: 'book',
271
- item: 'item',
272
- lead: 'lead',
273
- pageNumber: 'pageNumber',
274
- marginNumber: 'marginNumber',
275
- hint: 'hint',
276
- instruction: 'instruction',
277
- isDefaultExample: 'isDefaultExample',
278
- isExample: 'isExample',
279
- example: 'example',
280
- exampleValue: 'exampleValue',
281
- extraProperties: 'extraProperties',
282
- title: 'title',
283
- subtitle: 'subtitle',
284
- level: 'level',
285
- toc: 'toc',
286
- tocValue: 'tocValue',
249
+ productVideoValue: 'productVideoValue',
287
250
  progress: 'progress',
288
251
  progressValue: 'progressValue',
289
- anchor: 'anchor',
252
+ properties: 'properties',
253
+ property: 'property',
254
+ propertyKey: 'propertyKey',
255
+ propertyValue: 'propertyValue',
256
+ propertyValues: 'propertyValues',
257
+ provider: 'provider',
258
+ publications: 'publications',
259
+ publicationsValue: 'publicationsValue',
260
+ publisher: 'publisher',
261
+ publisherName: 'publisherName',
262
+ publisherNameValue: 'publisherNameValue',
263
+ publisherValue: 'publisherValue',
264
+ quantity: 'quantity',
265
+ question: 'question',
266
+ questions: 'questions',
267
+ questionsValue: 'questionsValue',
268
+ quizCountItems: 'quizCountItems',
269
+ quizCountItemsValue: 'quizCountItemsValue',
270
+ quizStrikethroughSolutions: 'quizStrikethroughSolutions',
271
+ quizStrikethroughSolutionsValue: 'quizStrikethroughSolutionsValue',
272
+ quizzes: 'quizzes',
273
+ quizzesValue: 'quizzesValue',
274
+ quotedPerson: 'quotedPerson',
275
+ ratingLevelEnd: 'ratingLevelEnd',
276
+ ratingLevelSelected: 'ratingLevelSelected',
277
+ ratingLevelSelectedValue: 'ratingLevelSelectedValue',
278
+ ratingLevelStart: 'ratingLevelStart',
279
+ reaction: 'reaction',
280
+ reasonableNumOfChars: 'reasonableNumOfChars',
281
+ reasonableNumOfCharsValue: 'reasonableNumOfCharsValue',
290
282
  reference: 'reference',
291
283
  referenceEnd: 'referenceEnd',
292
- elementsValue: 'elementsValue',
293
- solutionsValue: 'solutionsValue',
294
- prefix: 'prefix',
295
- postfix: 'postfix',
296
- isCaseSensitive: 'isCaseSensitive',
297
- isCorrect: 'isCorrect',
298
- forKeys: 'forKeys',
299
- forValuesValue: 'forValuesValue',
300
- key: 'key',
301
- valuesValue: 'valuesValue',
302
- question: 'question',
284
+ referenceProperty: 'referenceProperty',
285
+ referencePropertyValue: 'referencePropertyValue',
286
+ releaseDate: 'releaseDate',
287
+ releaseDateValue: 'releaseDateValue',
288
+ releaseKind: 'releaseKind',
289
+ releaseKindValue: 'releaseKindValue',
290
+ releaseVersion: 'releaseVersion',
291
+ releaseVersionValue: 'releaseVersionValue',
292
+ resolved: 'resolved',
293
+ resolvedBy: 'resolvedBy',
294
+ resolvedByValue: 'resolvedByValue',
295
+ resolvedDate: 'resolvedDate',
296
+ resolvedDateValue: 'resolvedDateValue',
297
+ resolvedValue: 'resolvedValue',
298
+ resources: 'resources',
299
+ resourcesValue: 'resourcesValue',
300
+ resourceType: 'resourceType',
301
+ response: 'response',
302
+ responses: 'responses',
303
+ responsesValue: 'responsesValue',
304
+ root: 'root', // bit type (root)
305
+ rows: 'rows',
306
+ rowsValue: 'rowsValue',
307
+ rowsValueValue: 'rowsValueValue',
303
308
  sampleSolution: 'sampleSolution',
304
309
  sampleSolutionValue: 'sampleSolutionValue',
305
- statementText: 'statementText',
306
- text: 'text',
307
- propertyKey: 'propertyKey',
308
- propertyValue: 'propertyValue',
309
- keyAudio: 'keyAudio',
310
- keyImage: 'keyImage',
311
- response: 'response',
312
- reaction: 'reaction',
313
- feedback: 'feedback',
314
- checked: 'checked',
315
- quantity: 'quantity',
316
- unit: 'unit',
317
- unitAbbr: 'unitAbbr',
318
- decimalPlaces: 'decimalPlaces',
319
- disableCalculation: 'disableCalculation',
320
- // ImageSource
321
- imageSource: 'imageSource',
322
- mockupId: 'mockupId',
310
+ scormSource: 'scormSource',
311
+ scormSourceValue: 'scormSourceValue',
312
+ search: 'search',
313
+ searchValue: 'searchValue',
314
+ section: 'section',
315
+ select: 'select',
316
+ servings: 'servings',
317
+ servingsValue: 'servingsValue',
318
+ showInIndex: 'showInIndex',
323
319
  size: 'size',
324
- trim: 'trim',
325
- // Person
326
- person: 'person',
327
- name: 'name',
328
- // title: 'title',
329
- avatarImage: 'avatarImage',
330
- // Mark
331
- markConfig: 'markConfig',
332
- markConfigValue: 'markConfigValue',
333
320
  solution: 'solution',
334
- mark: 'mark',
335
- color: 'color',
336
- emphasis: 'emphasis',
337
- // Flashcard
338
- flashcards: 'flashcards',
339
- flashcardsValue: 'flashcardsValue',
340
- answer: 'answer',
341
- alternativeAnswers: 'alternativeAnswers',
342
- alternativeAnswersValue: 'alternativeAnswersValue',
343
- // Resources
344
- resourceType: 'resourceType',
345
- resources: 'resources',
346
- resourcesValue: 'resourcesValue',
347
- image: 'image',
348
- imagePortrait: 'imagePortrait',
349
- imageLandscape: 'imageLandscape',
350
- audio: 'audio',
351
- type: 'type',
352
- typeAlias: 'typeAlias',
353
- format: 'format',
354
- value: 'value',
355
- url: 'url',
321
+ solutions: 'solutions',
322
+ solutionsValue: 'solutionsValue',
323
+ spaceId: 'spaceId',
324
+ spaceIdValue: 'spaceIdValue',
356
325
  src: 'src',
357
326
  src1x: 'src1x',
358
327
  src2x: 'src2x',
359
328
  src3x: 'src3x',
360
329
  src4x: 'src4x',
361
- // width: 'width',
362
- // height: 'height',
363
- alt: 'alt',
364
- zoomDisabled: 'zoomDisabled',
365
- license: 'license',
366
- copyright: 'copyright',
367
- provider: 'provider',
368
- showInIndex: 'showInIndex',
369
- // duration: 'duration', - NOTE: clash with bit.duration / resource...duration (be careful when walking the tree)
370
- thumbnails: 'thumbnails',
371
- thumbnailsValue: 'thumbnailsValue',
372
- // Text
330
+ start: 'start',
331
+ statement: 'statement',
332
+ statements: 'statements',
333
+ statementsValue: 'statementsValue',
334
+ statementText: 'statementText',
335
+ subject: 'subject',
336
+ subjectValue: 'subjectValue',
337
+ subtitle: 'subtitle',
338
+ subtype: 'subtype',
339
+ subtypeValue: 'subtypeValue',
340
+ table: 'table',
341
+ tableAutoWidth: 'tableAutoWidth',
342
+ tableAutoWidthValue: 'tableAutoWidthValue',
343
+ tableFixedHeader: 'tableFixedHeader',
344
+ tableFixedHeaderValue: 'tableFixedHeaderValue',
345
+ tableHeight: 'tableHeight',
346
+ tableHeightValue: 'tableHeightValue',
347
+ tablePagination: 'tablePagination',
348
+ tablePaginationLimit: 'tablePaginationLimit',
349
+ tablePaginationLimitValue: 'tablePaginationLimitValue',
350
+ tablePaginationValue: 'tablePaginationValue',
351
+ tableResizableColumns: 'tableResizableColumns',
352
+ tableResizableColumnsValue: 'tableResizableColumnsValue',
353
+ tableSearch: 'tableSearch',
354
+ tableSearchValue: 'tableSearchValue',
355
+ tableSort: 'tableSort',
356
+ tableSortValue: 'tableSortValue',
357
+ tableWhitespaceNoWrap: 'tableWhitespaceNoWrap',
358
+ tableWhitespaceNoWrapValue: 'tableWhitespaceNoWrapValue',
359
+ tag: 'tag',
360
+ tagValue: 'tagValue',
361
+ target: 'target',
362
+ targetValue: 'targetValue',
363
+ technicalTerm: 'technicalTerm',
364
+ technicalTermValue: 'technicalTermValue',
365
+ text: 'text',
366
+ textAlign: 'textAlign',
373
367
  textAst: 'textAst',
374
368
  textAstValue: 'textAstValue',
375
- content: 'contentValue',
376
- contentValue: 'contentValue',
377
- contentValueValue: 'contentValueValue',
378
- attrs: 'attrs',
379
- section: 'section',
380
- parent: 'parent',
381
- marks: 'marks',
382
- marksValue: 'marksValue',
383
- comment: 'comment',
384
- alignment: 'alignment',
385
- textAlign: 'textAlign',
386
- class: 'class',
387
- href: 'href',
388
- // Parser Info / Errors
389
- parser: 'parser',
369
+ textFormat: 'textFormat',
370
+ textReference: 'textReference',
371
+ textReferenceValue: 'textReferenceValue',
372
+ texts: 'texts',
373
+ textsValue: 'textsValue',
374
+ theme: 'theme',
375
+ themeValue: 'themeValue',
376
+ thumbImage: 'thumbImage',
377
+ thumbImageValue: 'thumbImageValue',
378
+ thumbnails: 'thumbnails',
379
+ thumbnailsValue: 'thumbnailsValue',
380
+ title: 'title',
381
+ toc: 'toc',
382
+ tocValue: 'tocValue',
383
+ trim: 'trim',
384
+ type: 'type',
385
+ typeAlias: 'typeAlias',
386
+ unit: 'unit',
387
+ unitAbbr: 'unitAbbr',
388
+ url: 'url',
389
+ value: 'value',
390
+ values: 'values',
391
+ valuesValue: 'valuesValue',
392
+ vendorUrl: 'vendorUrl',
393
+ vendorUrlValue: 'vendorUrlValue',
390
394
  version: 'version',
391
- bitmarkVersion: 'bitmarkVersion',
392
- commentedBitType: 'commentedBitType',
395
+ videoCallLink: 'videoCallLink',
396
+ videoCallLinkValue: 'videoCallLinkValue',
393
397
  warnings: 'warnings',
394
398
  warningsValue: 'warningsValue',
395
- errors: 'errors',
396
- errorsValue: 'errorsValue',
397
- message: 'message',
398
- // location: 'location', - NOTE: clash with bit.location / error.location (be careful when walking the tree)
399
- original: 'original',
400
- start: 'start',
401
- end: 'end',
402
- offset: 'offset',
403
- line: 'line',
404
- column: 'column',
405
- // Markup
406
- markup: 'markup', // bitmark markup
399
+ width: 'width',
400
+ widthValue: 'widthValue',
401
+ x: 'x',
402
+ xValue: 'xValue',
403
+ y: 'y',
404
+ yValue: 'yValue',
405
+ zoomDisabled: 'zoomDisabled',
407
406
  });
408
407
  exports.NodeType = NodeType;
409
408
  //# sourceMappingURL=NodeType.js.map