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