@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,768 +7,794 @@ import { EnumType } from '@ncoderz/superenum';
7
7
  */
8
8
  declare const NodeType: Readonly<{
9
9
  unknown: "unknown";
10
- bitType: "bitType";
10
+ action: "action";
11
+ actionValue: "actionValue";
12
+ ageRange: "ageRange";
13
+ ageRangeValue: "ageRangeValue";
14
+ aiGenerated: "aiGenerated";
15
+ aiGeneratedValue: "aiGeneratedValue";
11
16
  alias: "alias";
12
- root: "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";
35
+ bitmarkVersion: "bitmarkVersion";
16
36
  bits: "bits";
17
37
  bitsValue: "bitsValue";
18
- properties: "properties";
19
- property: "property";
20
- propertyValues: "propertyValues";
21
- itemLead: "itemLead";
38
+ bitType: "bitType";
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
- id: "id";
66
- idValue: "idValue";
67
- internalComment: "internalComment";
68
- internalCommentValue: "internalCommentValue";
69
- externalId: "externalId";
70
- externalIdValue: "externalIdValue";
71
- spaceId: "spaceId";
72
- spaceIdValue: "spaceIdValue";
73
- releaseVersion: "releaseVersion";
74
- releaseVersionValue: "releaseVersionValue";
75
- releaseKind: "releaseKind";
76
- releaseKindValue: "releaseKindValue";
77
- releaseDate: "releaseDate";
78
- releaseDateValue: "releaseDateValue";
79
- padletId: "padletId";
80
- padletIdValue: "padletIdValue";
81
- jupyterId: "jupyterId";
82
- jupyterIdValue: "jupyterIdValue";
83
- jupyterExecutionCount: "jupyterExecutionCount";
84
- jupyterExecutionCountValue: "jupyterExecutionCountValue";
85
- aiGenerated: "aiGenerated";
86
- aiGeneratedValue: "aiGeneratedValue";
87
- ageRange: "ageRange";
88
- ageRangeValue: "ageRangeValue";
89
- lang: "lang";
90
- langValue: "langValue";
91
- language: "language";
92
- languageValue: "languageValue";
93
- publisher: "publisher";
94
- publisherValue: "publisherValue";
95
- publisherName: "publisherName";
96
- publisherNameValue: "publisherNameValue";
97
- theme: "theme";
98
- themeValue: "themeValue";
99
- computerLanguage: "computerLanguage";
100
- computerLanguageValue: "computerLanguageValue";
101
- target: "target";
102
- targetValue: "targetValue";
103
- tag: "tag";
104
- tagValue: "tagValue";
105
- icon: "icon";
106
- iconValue: "iconValue";
107
- iconTag: "iconTag";
108
- iconTagValue: "iconTagValue";
109
- colorTag: "colorTag";
110
- colorTagValue: "colorTagValue";
111
- flashcardSet: "flashcardSet";
112
- flashcardSetValue: "flashcardSetValue";
113
- subtype: "subtype";
114
- subtypeValue: "subtypeValue";
115
- bookAlias: "bookAlias";
116
- bookAliasValue: "bookAliasValue";
117
- coverImage: "coverImage";
118
- coverImageValue: "coverImageValue";
119
- coverColor: "coverColor";
120
- coverColorValue: "coverColorValue";
121
- publications: "publications";
122
- publicationsValue: "publicationsValue";
123
- author: "author";
124
- authorValue: "authorValue";
125
- subject: "subject";
126
- subjectValue: "subjectValue";
127
- date: "date";
128
- dateValue: "dateValue";
129
- location: "location";
130
- locationValue: "locationValue";
131
- kind: "kind";
132
- kindValue: "kindValue";
133
- blockId: "blockId";
134
- blockIdValue: "blockIdValue";
135
- pageNo: "pageNo";
136
- pageNoValue: "pageNoValue";
137
- x: "x";
138
- xValue: "xValue";
139
- y: "y";
140
- yValue: "yValue";
141
- width: "width";
142
- widthValue: "widthValue";
143
- height: "height";
144
- heightValue: "heightValue";
145
- index: "index";
146
- indexValue: "indexValue";
60
+ cardNode: "cardNode";
61
+ cells: "cells";
62
+ cellsValue: "cellsValue";
63
+ checked: "checked";
64
+ choices: "choices";
65
+ choicesValue: "choicesValue";
66
+ class: "class";
147
67
  classification: "classification";
148
68
  classificationValue: "classificationValue";
149
- availableClassifications: "availableClassifications";
150
- availableClassificationsValue: "availableClassificationsValue";
151
- tableFixedHeader: "tableFixedHeader";
152
- tableFixedHeaderValue: "tableFixedHeaderValue";
153
- tableSearch: "tableSearch";
154
- tableSearchValue: "tableSearchValue";
155
- tableSort: "tableSort";
156
- tableSortValue: "tableSortValue";
157
- tablePagination: "tablePagination";
158
- tablePaginationValue: "tablePaginationValue";
159
- tablePaginationLimit: "tablePaginationLimit";
160
- tablePaginationLimitValue: "tablePaginationLimitValue";
161
- tableHeight: "tableHeight";
162
- tableHeightValue: "tableHeightValue";
163
- tableWhitespaceNoWrap: "tableWhitespaceNoWrap";
164
- tableWhitespaceNoWrapValue: "tableWhitespaceNoWrapValue";
165
- tableAutoWidth: "tableAutoWidth";
166
- tableAutoWidthValue: "tableAutoWidthValue";
167
- tableResizableColumns: "tableResizableColumns";
168
- tableResizableColumnsValue: "tableResizableColumnsValue";
169
- quizCountItems: "quizCountItems";
170
- quizCountItemsValue: "quizCountItemsValue";
171
- quizStrikethroughSolutions: "quizStrikethroughSolutions";
172
- quizStrikethroughSolutionsValue: "quizStrikethroughSolutionsValue";
173
69
  codeLineNumbers: "codeLineNumbers";
174
70
  codeLineNumbersValue: "codeLineNumbersValue";
175
71
  codeMinimap: "codeMinimap";
176
72
  codeMinimapValue: "codeMinimapValue";
177
- table: "table";
73
+ color: "color";
74
+ colorTag: "colorTag";
75
+ colorTagValue: "colorTagValue";
76
+ column: "column";
178
77
  columns: "columns";
179
78
  columnsValue: "columnsValue";
180
- rows: "rows";
181
- rowsValue: "rowsValue";
182
- rowsValueValue: "rowsValueValue";
183
- action: "action";
184
- actionValue: "actionValue";
185
- thumbImage: "thumbImage";
186
- thumbImageValue: "thumbImageValue";
187
- scormSource: "scormSource";
188
- scormSourceValue: "scormSourceValue";
189
- posterImage: "posterImage";
190
- posterImageValue: "posterImageValue";
191
- focusX: "focusX";
192
- focusXValue: "focusXValue";
193
- focusY: "focusY";
194
- focusYValue: "focusYValue";
195
- pointerLeft: "pointerLeft";
196
- pointerLeftValue: "pointerLeftValue";
197
- pointerTop: "pointerTop";
198
- pointerTopValue: "pointerTopValue";
199
- backgroundWallpaper: "backgroundWallpaper";
200
- backgroundWallpaperValue: "backgroundWallpaperValue";
201
- duration: "duration";
202
- 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";
203
96
  deeplink: "deeplink";
204
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";
205
111
  externalLink: "externalLink";
206
112
  externalLinkText: "externalLinkText";
207
- videoCallLink: "videoCallLink";
208
- videoCallLinkValue: "videoCallLinkValue";
209
- vendorUrl: "vendorUrl";
210
- vendorUrlValue: "vendorUrlValue";
211
- search: "search";
212
- searchValue: "searchValue";
213
- bot: "bot";
214
- botValue: "botValue";
215
- referenceProperty: "referenceProperty";
216
- 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";
217
150
  ingredients: "ingredients";
218
151
  ingredientsValue: "ingredientsValue";
219
- list: "list";
220
- listValue: "listValue";
221
- textReference: "textReference";
222
- textReferenceValue: "textReferenceValue";
223
- isTracked: "isTracked";
224
- 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";
225
160
  isInfoOnly: "isInfoOnly";
226
161
  isInfoOnlyValue: "isInfoOnlyValue";
227
- labelTrue: "labelTrue";
228
- 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";
229
178
  labelFalse: "labelFalse";
230
179
  labelFalseValue: "labelFalseValue";
231
- 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";
232
194
  mailingList: "mailingList";
233
- buttonCaption: "buttonCaption";
234
- buttonCaptionValue: "buttonCaptionValue";
235
- caption: "caption";
236
- captionValue: "captionValue";
237
- quotedPerson: "quotedPerson";
238
- partialAnswer: "partialAnswer";
239
- partialAnswerValue: "partialAnswerValue";
240
- reasonableNumOfChars: "reasonableNumOfChars";
241
- reasonableNumOfCharsValue: "reasonableNumOfCharsValue";
242
- resolved: "resolved";
243
- resolvedValue: "resolvedValue";
244
- resolvedDate: "resolvedDate";
245
- resolvedDateValue: "resolvedDateValue";
246
- resolvedBy: "resolvedBy";
247
- resolvedByValue: "resolvedByValue";
195
+ marginNumber: "marginNumber";
196
+ mark: "mark";
197
+ markConfig: "markConfig";
198
+ markConfigValue: "markConfigValue";
199
+ marks: "marks";
200
+ marksValue: "marksValue";
201
+ markup: "markup";
202
+ matrix: "matrix";
203
+ matrixValue: "matrixValue";
248
204
  maxCreatedBits: "maxCreatedBits";
249
205
  maxCreatedBitsValue: "maxCreatedBitsValue";
250
206
  maxDisplayLevel: "maxDisplayLevel";
251
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";
252
237
  product: "product";
253
- productValue: "productValue";
238
+ productFolder: "productFolder";
239
+ productFolderValue: "productFolderValue";
254
240
  productList: "productList";
255
241
  productListValue: "productListValue";
242
+ productValue: "productValue";
256
243
  productVideo: "productVideo";
257
- productVideoValue: "productVideoValue";
258
244
  productVideoList: "productVideoList";
259
245
  productVideoListValue: "productVideoListValue";
260
- productFolder: "productFolder";
261
- productFolderValue: "productFolderValue";
262
- technicalTerm: "technicalTerm";
263
- technicalTermValue: "technicalTermValue";
264
- servings: "servings";
265
- servingsValue: "servingsValue";
266
- book: "book";
267
- item: "item";
268
- lead: "lead";
269
- pageNumber: "pageNumber";
270
- marginNumber: "marginNumber";
271
- hint: "hint";
272
- instruction: "instruction";
273
- isDefaultExample: "isDefaultExample";
274
- isExample: "isExample";
275
- example: "example";
276
- exampleValue: "exampleValue";
277
- extraProperties: "extraProperties";
278
- title: "title";
279
- subtitle: "subtitle";
280
- level: "level";
281
- toc: "toc";
282
- tocValue: "tocValue";
246
+ productVideoValue: "productVideoValue";
283
247
  progress: "progress";
284
248
  progressValue: "progressValue";
285
- 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";
286
279
  reference: "reference";
287
280
  referenceEnd: "referenceEnd";
288
- elementsValue: "elementsValue";
289
- solutionsValue: "solutionsValue";
290
- prefix: "prefix";
291
- postfix: "postfix";
292
- isCaseSensitive: "isCaseSensitive";
293
- isCorrect: "isCorrect";
294
- forKeys: "forKeys";
295
- forValuesValue: "forValuesValue";
296
- key: "key";
297
- valuesValue: "valuesValue";
298
- 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";
302
+ rows: "rows";
303
+ rowsValue: "rowsValue";
304
+ rowsValueValue: "rowsValueValue";
299
305
  sampleSolution: "sampleSolution";
300
306
  sampleSolutionValue: "sampleSolutionValue";
301
- statementText: "statementText";
302
- text: "text";
303
- propertyKey: "propertyKey";
304
- propertyValue: "propertyValue";
305
- keyAudio: "keyAudio";
306
- keyImage: "keyImage";
307
- response: "response";
308
- reaction: "reaction";
309
- feedback: "feedback";
310
- checked: "checked";
311
- quantity: "quantity";
312
- unit: "unit";
313
- unitAbbr: "unitAbbr";
314
- decimalPlaces: "decimalPlaces";
315
- disableCalculation: "disableCalculation";
316
- imageSource: "imageSource";
317
- 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";
318
316
  size: "size";
319
- trim: "trim";
320
- person: "person";
321
- name: "name";
322
- avatarImage: "avatarImage";
323
- markConfig: "markConfig";
324
- markConfigValue: "markConfigValue";
325
317
  solution: "solution";
326
- mark: "mark";
327
- color: "color";
328
- emphasis: "emphasis";
329
- flashcards: "flashcards";
330
- flashcardsValue: "flashcardsValue";
331
- answer: "answer";
332
- alternativeAnswers: "alternativeAnswers";
333
- alternativeAnswersValue: "alternativeAnswersValue";
334
- resourceType: "resourceType";
335
- resources: "resources";
336
- resourcesValue: "resourcesValue";
337
- image: "image";
338
- imagePortrait: "imagePortrait";
339
- imageLandscape: "imageLandscape";
340
- audio: "audio";
341
- type: "type";
342
- typeAlias: "typeAlias";
343
- format: "format";
344
- value: "value";
345
- url: "url";
318
+ solutions: "solutions";
319
+ solutionsValue: "solutionsValue";
320
+ spaceId: "spaceId";
321
+ spaceIdValue: "spaceIdValue";
346
322
  src: "src";
347
323
  src1x: "src1x";
348
324
  src2x: "src2x";
349
325
  src3x: "src3x";
350
326
  src4x: "src4x";
351
- alt: "alt";
352
- zoomDisabled: "zoomDisabled";
353
- license: "license";
354
- copyright: "copyright";
355
- provider: "provider";
356
- showInIndex: "showInIndex";
357
- thumbnails: "thumbnails";
358
- thumbnailsValue: "thumbnailsValue";
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";
359
364
  textAst: "textAst";
360
365
  textAstValue: "textAstValue";
361
- content: "contentValue";
362
- contentValue: "contentValue";
363
- contentValueValue: "contentValueValue";
364
- attrs: "attrs";
365
- section: "section";
366
- parent: "parent";
367
- marks: "marks";
368
- marksValue: "marksValue";
369
- comment: "comment";
370
- alignment: "alignment";
371
- textAlign: "textAlign";
372
- class: "class";
373
- href: "href";
374
- 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";
375
391
  version: "version";
376
- bitmarkVersion: "bitmarkVersion";
377
- commentedBitType: "commentedBitType";
392
+ videoCallLink: "videoCallLink";
393
+ videoCallLinkValue: "videoCallLinkValue";
378
394
  warnings: "warnings";
379
395
  warningsValue: "warningsValue";
380
- errors: "errors";
381
- errorsValue: "errorsValue";
382
- message: "message";
383
- original: "original";
384
- start: "start";
385
- end: "end";
386
- offset: "offset";
387
- line: "line";
388
- column: "column";
389
- markup: "markup";
396
+ width: "width";
397
+ widthValue: "widthValue";
398
+ x: "x";
399
+ xValue: "xValue";
400
+ y: "y";
401
+ yValue: "yValue";
402
+ zoomDisabled: "zoomDisabled";
390
403
  }> & import("@ncoderz/superenum").EnumExtensions<EnumType<{
391
404
  unknown: "unknown";
392
- bitType: "bitType";
405
+ action: "action";
406
+ actionValue: "actionValue";
407
+ ageRange: "ageRange";
408
+ ageRangeValue: "ageRangeValue";
409
+ aiGenerated: "aiGenerated";
410
+ aiGeneratedValue: "aiGeneratedValue";
393
411
  alias: "alias";
394
- root: "root";
395
- textFormat: "textFormat";
396
- isCommented: "isCommented";
412
+ alignment: "alignment";
413
+ alt: "alt";
414
+ alternativeAnswers: "alternativeAnswers";
415
+ alternativeAnswersValue: "alternativeAnswersValue";
416
+ anchor: "anchor";
417
+ answer: "answer";
418
+ attrs: "attrs";
419
+ audio: "audio";
420
+ author: "author";
421
+ authorValue: "authorValue";
422
+ availableClassifications: "availableClassifications";
423
+ availableClassificationsValue: "availableClassificationsValue";
424
+ avatarImage: "avatarImage";
425
+ backgroundWallpaper: "backgroundWallpaper";
426
+ backgroundWallpaperValue: "backgroundWallpaperValue";
427
+ hasBookNavigation: "hasBookNavigation";
428
+ hasBookNavigationValue: "hasBookNavigationValue";
397
429
  bitmarkAst: "bitmarkAst";
430
+ bitmarkVersion: "bitmarkVersion";
398
431
  bits: "bits";
399
432
  bitsValue: "bitsValue";
400
- properties: "properties";
401
- property: "property";
402
- propertyValues: "propertyValues";
403
- itemLead: "itemLead";
433
+ bitType: "bitType";
434
+ blockId: "blockId";
435
+ blockIdValue: "blockIdValue";
404
436
  body: "body";
437
+ bodyJson: "bodyJson";
405
438
  bodyParts: "bodyParts";
406
439
  bodyPartsValue: "bodyPartsValue";
407
440
  bodyPartText: "bodyPartText";
408
- data: "data";
409
441
  bodyText: "bodyText";
410
- bodyJson: "bodyJson";
411
- footer: "footer";
412
- footerText: "footerText";
413
- gap: "gap";
414
- select: "select";
415
- highlight: "highlight";
416
- cardNode: "cardNode";
417
- elements: "elements";
418
- solutions: "solutions";
419
- options: "options";
420
- optionsValue: "optionsValue";
421
- texts: "texts";
422
- textsValue: "textsValue";
423
- statement: "statement";
424
- statements: "statements";
425
- statementsValue: "statementsValue";
426
- choices: "choices";
427
- choicesValue: "choicesValue";
428
- responses: "responses";
429
- responsesValue: "responsesValue";
430
- quizzes: "quizzes";
431
- quizzesValue: "quizzesValue";
432
- heading: "heading";
433
- forValues: "forValues";
434
- pairs: "pairs";
435
- pairsValue: "pairsValue";
436
- values: "values";
437
- matrix: "matrix";
438
- matrixValue: "matrixValue";
439
- cells: "cells";
440
- cellsValue: "cellsValue";
441
- questions: "questions";
442
- questionsValue: "questionsValue";
442
+ book: "book";
443
+ bookAlias: "bookAlias";
444
+ bookAliasValue: "bookAliasValue";
445
+ bot: "bot";
443
446
  botResponses: "botResponses";
444
447
  botResponsesValue: "botResponsesValue";
448
+ botValue: "botValue";
449
+ buttonCaption: "buttonCaption";
450
+ buttonCaptionValue: "buttonCaptionValue";
451
+ caption: "caption";
452
+ captionValue: "captionValue";
445
453
  cardBits: "cardBits";
446
454
  cardBitsValue: "cardBitsValue";
447
- id: "id";
448
- idValue: "idValue";
449
- internalComment: "internalComment";
450
- internalCommentValue: "internalCommentValue";
451
- externalId: "externalId";
452
- externalIdValue: "externalIdValue";
453
- spaceId: "spaceId";
454
- spaceIdValue: "spaceIdValue";
455
- releaseVersion: "releaseVersion";
456
- releaseVersionValue: "releaseVersionValue";
457
- releaseKind: "releaseKind";
458
- releaseKindValue: "releaseKindValue";
459
- releaseDate: "releaseDate";
460
- releaseDateValue: "releaseDateValue";
461
- padletId: "padletId";
462
- padletIdValue: "padletIdValue";
463
- jupyterId: "jupyterId";
464
- jupyterIdValue: "jupyterIdValue";
465
- jupyterExecutionCount: "jupyterExecutionCount";
466
- jupyterExecutionCountValue: "jupyterExecutionCountValue";
467
- aiGenerated: "aiGenerated";
468
- aiGeneratedValue: "aiGeneratedValue";
469
- ageRange: "ageRange";
470
- ageRangeValue: "ageRangeValue";
471
- lang: "lang";
472
- langValue: "langValue";
473
- language: "language";
474
- languageValue: "languageValue";
475
- publisher: "publisher";
476
- publisherValue: "publisherValue";
477
- publisherName: "publisherName";
478
- publisherNameValue: "publisherNameValue";
479
- theme: "theme";
480
- themeValue: "themeValue";
481
- computerLanguage: "computerLanguage";
482
- computerLanguageValue: "computerLanguageValue";
483
- target: "target";
484
- targetValue: "targetValue";
485
- tag: "tag";
486
- tagValue: "tagValue";
487
- icon: "icon";
488
- iconValue: "iconValue";
489
- iconTag: "iconTag";
490
- iconTagValue: "iconTagValue";
491
- colorTag: "colorTag";
492
- colorTagValue: "colorTagValue";
493
- flashcardSet: "flashcardSet";
494
- flashcardSetValue: "flashcardSetValue";
495
- subtype: "subtype";
496
- subtypeValue: "subtypeValue";
497
- bookAlias: "bookAlias";
498
- bookAliasValue: "bookAliasValue";
499
- coverImage: "coverImage";
500
- coverImageValue: "coverImageValue";
501
- coverColor: "coverColor";
502
- coverColorValue: "coverColorValue";
503
- publications: "publications";
504
- publicationsValue: "publicationsValue";
505
- author: "author";
506
- authorValue: "authorValue";
507
- subject: "subject";
508
- subjectValue: "subjectValue";
509
- date: "date";
510
- dateValue: "dateValue";
511
- location: "location";
512
- locationValue: "locationValue";
513
- kind: "kind";
514
- kindValue: "kindValue";
515
- blockId: "blockId";
516
- blockIdValue: "blockIdValue";
517
- pageNo: "pageNo";
518
- pageNoValue: "pageNoValue";
519
- x: "x";
520
- xValue: "xValue";
521
- y: "y";
522
- yValue: "yValue";
523
- width: "width";
524
- widthValue: "widthValue";
525
- height: "height";
526
- heightValue: "heightValue";
527
- index: "index";
528
- indexValue: "indexValue";
455
+ cardNode: "cardNode";
456
+ cells: "cells";
457
+ cellsValue: "cellsValue";
458
+ checked: "checked";
459
+ choices: "choices";
460
+ choicesValue: "choicesValue";
461
+ class: "class";
529
462
  classification: "classification";
530
463
  classificationValue: "classificationValue";
531
- availableClassifications: "availableClassifications";
532
- availableClassificationsValue: "availableClassificationsValue";
533
- tableFixedHeader: "tableFixedHeader";
534
- tableFixedHeaderValue: "tableFixedHeaderValue";
535
- tableSearch: "tableSearch";
536
- tableSearchValue: "tableSearchValue";
537
- tableSort: "tableSort";
538
- tableSortValue: "tableSortValue";
539
- tablePagination: "tablePagination";
540
- tablePaginationValue: "tablePaginationValue";
541
- tablePaginationLimit: "tablePaginationLimit";
542
- tablePaginationLimitValue: "tablePaginationLimitValue";
543
- tableHeight: "tableHeight";
544
- tableHeightValue: "tableHeightValue";
545
- tableWhitespaceNoWrap: "tableWhitespaceNoWrap";
546
- tableWhitespaceNoWrapValue: "tableWhitespaceNoWrapValue";
547
- tableAutoWidth: "tableAutoWidth";
548
- tableAutoWidthValue: "tableAutoWidthValue";
549
- tableResizableColumns: "tableResizableColumns";
550
- tableResizableColumnsValue: "tableResizableColumnsValue";
551
- quizCountItems: "quizCountItems";
552
- quizCountItemsValue: "quizCountItemsValue";
553
- quizStrikethroughSolutions: "quizStrikethroughSolutions";
554
- quizStrikethroughSolutionsValue: "quizStrikethroughSolutionsValue";
555
464
  codeLineNumbers: "codeLineNumbers";
556
465
  codeLineNumbersValue: "codeLineNumbersValue";
557
466
  codeMinimap: "codeMinimap";
558
467
  codeMinimapValue: "codeMinimapValue";
559
- table: "table";
468
+ color: "color";
469
+ colorTag: "colorTag";
470
+ colorTagValue: "colorTagValue";
471
+ column: "column";
560
472
  columns: "columns";
561
473
  columnsValue: "columnsValue";
562
- rows: "rows";
563
- rowsValue: "rowsValue";
564
- rowsValueValue: "rowsValueValue";
565
- action: "action";
566
- actionValue: "actionValue";
567
- thumbImage: "thumbImage";
568
- thumbImageValue: "thumbImageValue";
569
- scormSource: "scormSource";
570
- scormSourceValue: "scormSourceValue";
571
- posterImage: "posterImage";
572
- posterImageValue: "posterImageValue";
573
- focusX: "focusX";
574
- focusXValue: "focusXValue";
575
- focusY: "focusY";
576
- focusYValue: "focusYValue";
577
- pointerLeft: "pointerLeft";
578
- pointerLeftValue: "pointerLeftValue";
579
- pointerTop: "pointerTop";
580
- pointerTopValue: "pointerTopValue";
581
- backgroundWallpaper: "backgroundWallpaper";
582
- backgroundWallpaperValue: "backgroundWallpaperValue";
583
- duration: "duration";
584
- durationValue: "durationValue";
474
+ comment: "comment";
475
+ commentedBitType: "commentedBitType";
476
+ computerLanguage: "computerLanguage";
477
+ computerLanguageValue: "computerLanguageValue";
478
+ content: "contentValue";
479
+ content2Buy: "content2Buy";
480
+ contentValue: "contentValue";
481
+ contentValueValue: "contentValueValue";
482
+ copyright: "copyright";
483
+ coverColor: "coverColor";
484
+ coverColorValue: "coverColorValue";
485
+ coverImage: "coverImage";
486
+ coverImageValue: "coverImageValue";
487
+ data: "data";
488
+ date: "date";
489
+ dateValue: "dateValue";
490
+ decimalPlaces: "decimalPlaces";
585
491
  deeplink: "deeplink";
586
492
  deeplinkValue: "deeplinkValue";
493
+ disableCalculation: "disableCalculation";
494
+ duration: "duration";
495
+ durationValue: "durationValue";
496
+ elements: "elements";
497
+ elementsValue: "elementsValue";
498
+ emphasis: "emphasis";
499
+ end: "end";
500
+ errors: "errors";
501
+ errorsValue: "errorsValue";
502
+ example: "example";
503
+ exampleValue: "exampleValue";
504
+ externalId: "externalId";
505
+ externalIdValue: "externalIdValue";
587
506
  externalLink: "externalLink";
588
507
  externalLinkText: "externalLinkText";
589
- videoCallLink: "videoCallLink";
590
- videoCallLinkValue: "videoCallLinkValue";
591
- vendorUrl: "vendorUrl";
592
- vendorUrlValue: "vendorUrlValue";
593
- search: "search";
594
- searchValue: "searchValue";
595
- bot: "bot";
596
- botValue: "botValue";
597
- referenceProperty: "referenceProperty";
598
- referencePropertyValue: "referencePropertyValue";
508
+ extraProperties: "extraProperties";
509
+ feedback: "feedback";
510
+ flashcards: "flashcards";
511
+ flashcardSet: "flashcardSet";
512
+ flashcardSetValue: "flashcardSetValue";
513
+ flashcardsValue: "flashcardsValue";
514
+ focusX: "focusX";
515
+ focusXValue: "focusXValue";
516
+ focusY: "focusY";
517
+ focusYValue: "focusYValue";
518
+ footer: "footer";
519
+ footerText: "footerText";
520
+ forKeys: "forKeys";
521
+ format: "format";
522
+ forValues: "forValues";
523
+ forValuesValue: "forValuesValue";
524
+ gap: "gap";
525
+ hasMarkAsDone: "hasMarkAsDone";
526
+ hasMarkAsDoneValue: "hasMarkAsDoneValue";
527
+ heading: "heading";
528
+ height: "height";
529
+ heightValue: "heightValue";
530
+ highlight: "highlight";
531
+ hint: "hint";
532
+ href: "href";
533
+ icon: "icon";
534
+ iconTag: "iconTag";
535
+ iconTagValue: "iconTagValue";
536
+ iconValue: "iconValue";
537
+ id: "id";
538
+ idValue: "idValue";
539
+ image: "image";
540
+ imageLandscape: "imageLandscape";
541
+ imagePortrait: "imagePortrait";
542
+ imageSource: "imageSource";
543
+ index: "index";
544
+ indexValue: "indexValue";
599
545
  ingredients: "ingredients";
600
546
  ingredientsValue: "ingredientsValue";
601
- list: "list";
602
- listValue: "listValue";
603
- textReference: "textReference";
604
- textReferenceValue: "textReferenceValue";
605
- isTracked: "isTracked";
606
- isTrackedValue: "isTrackedValue";
547
+ instruction: "instruction";
548
+ internalComment: "internalComment";
549
+ internalCommentValue: "internalCommentValue";
550
+ isCaseSensitive: "isCaseSensitive";
551
+ isCommented: "isCommented";
552
+ isCorrect: "isCorrect";
553
+ isDefaultExample: "isDefaultExample";
554
+ isExample: "isExample";
607
555
  isInfoOnly: "isInfoOnly";
608
556
  isInfoOnlyValue: "isInfoOnlyValue";
609
- labelTrue: "labelTrue";
610
- labelTrueValue: "labelTrueValue";
557
+ isPublic: "isPublic";
558
+ isPublicValue: "isPublicValue";
559
+ isTracked: "isTracked";
560
+ isTrackedValue: "isTrackedValue";
561
+ item: "item";
562
+ itemLead: "itemLead";
563
+ jupyterExecutionCount: "jupyterExecutionCount";
564
+ jupyterExecutionCountValue: "jupyterExecutionCountValue";
565
+ jupyterId: "jupyterId";
566
+ jupyterIdValue: "jupyterIdValue";
567
+ key: "key";
568
+ keyAudio: "keyAudio";
569
+ keyImage: "keyImage";
570
+ kind: "kind";
571
+ kindValue: "kindValue";
572
+ label: "label";
611
573
  labelFalse: "labelFalse";
612
574
  labelFalseValue: "labelFalseValue";
613
- content2Buy: "content2Buy";
575
+ labelTrue: "labelTrue";
576
+ labelTrueValue: "labelTrueValue";
577
+ lang: "lang";
578
+ language: "language";
579
+ languageValue: "languageValue";
580
+ langValue: "langValue";
581
+ lead: "lead";
582
+ level: "level";
583
+ license: "license";
584
+ line: "line";
585
+ list: "list";
586
+ listValue: "listValue";
587
+ location: "location";
588
+ locationValue: "locationValue";
614
589
  mailingList: "mailingList";
615
- buttonCaption: "buttonCaption";
616
- buttonCaptionValue: "buttonCaptionValue";
617
- caption: "caption";
618
- captionValue: "captionValue";
619
- quotedPerson: "quotedPerson";
620
- partialAnswer: "partialAnswer";
621
- partialAnswerValue: "partialAnswerValue";
622
- reasonableNumOfChars: "reasonableNumOfChars";
623
- reasonableNumOfCharsValue: "reasonableNumOfCharsValue";
624
- resolved: "resolved";
625
- resolvedValue: "resolvedValue";
626
- resolvedDate: "resolvedDate";
627
- resolvedDateValue: "resolvedDateValue";
628
- resolvedBy: "resolvedBy";
629
- resolvedByValue: "resolvedByValue";
590
+ marginNumber: "marginNumber";
591
+ mark: "mark";
592
+ markConfig: "markConfig";
593
+ markConfigValue: "markConfigValue";
594
+ marks: "marks";
595
+ marksValue: "marksValue";
596
+ markup: "markup";
597
+ matrix: "matrix";
598
+ matrixValue: "matrixValue";
630
599
  maxCreatedBits: "maxCreatedBits";
631
600
  maxCreatedBitsValue: "maxCreatedBitsValue";
632
601
  maxDisplayLevel: "maxDisplayLevel";
633
602
  maxDisplayLevelValue: "maxDisplayLevelValue";
603
+ message: "message";
604
+ mockupId: "mockupId";
605
+ name: "name";
606
+ offset: "offset";
607
+ options: "options";
608
+ optionsValue: "optionsValue";
609
+ original: "original";
610
+ padletId: "padletId";
611
+ padletIdValue: "padletIdValue";
612
+ pageNo: "pageNo";
613
+ pageNoValue: "pageNoValue";
614
+ pageNumber: "pageNumber";
615
+ pairs: "pairs";
616
+ pairsValue: "pairsValue";
617
+ parent: "parent";
618
+ parser: "parser";
619
+ partialAnswer: "partialAnswer";
620
+ partialAnswerValue: "partialAnswerValue";
621
+ person: "person";
622
+ pointerLeft: "pointerLeft";
623
+ pointerLeftValue: "pointerLeftValue";
624
+ pointerTop: "pointerTop";
625
+ pointerTopValue: "pointerTopValue";
626
+ posterImage: "posterImage";
627
+ posterImageValue: "posterImageValue";
628
+ postfix: "postfix";
629
+ prefix: "prefix";
630
+ productId: "productId";
631
+ productIdValue: "productIdValue";
634
632
  product: "product";
635
- productValue: "productValue";
633
+ productFolder: "productFolder";
634
+ productFolderValue: "productFolderValue";
636
635
  productList: "productList";
637
636
  productListValue: "productListValue";
637
+ productValue: "productValue";
638
638
  productVideo: "productVideo";
639
- productVideoValue: "productVideoValue";
640
639
  productVideoList: "productVideoList";
641
640
  productVideoListValue: "productVideoListValue";
642
- productFolder: "productFolder";
643
- productFolderValue: "productFolderValue";
644
- technicalTerm: "technicalTerm";
645
- technicalTermValue: "technicalTermValue";
646
- servings: "servings";
647
- servingsValue: "servingsValue";
648
- book: "book";
649
- item: "item";
650
- lead: "lead";
651
- pageNumber: "pageNumber";
652
- marginNumber: "marginNumber";
653
- hint: "hint";
654
- instruction: "instruction";
655
- isDefaultExample: "isDefaultExample";
656
- isExample: "isExample";
657
- example: "example";
658
- exampleValue: "exampleValue";
659
- extraProperties: "extraProperties";
660
- title: "title";
661
- subtitle: "subtitle";
662
- level: "level";
663
- toc: "toc";
664
- tocValue: "tocValue";
641
+ productVideoValue: "productVideoValue";
665
642
  progress: "progress";
666
643
  progressValue: "progressValue";
667
- anchor: "anchor";
644
+ properties: "properties";
645
+ property: "property";
646
+ propertyKey: "propertyKey";
647
+ propertyValue: "propertyValue";
648
+ propertyValues: "propertyValues";
649
+ provider: "provider";
650
+ publications: "publications";
651
+ publicationsValue: "publicationsValue";
652
+ publisher: "publisher";
653
+ publisherName: "publisherName";
654
+ publisherNameValue: "publisherNameValue";
655
+ publisherValue: "publisherValue";
656
+ quantity: "quantity";
657
+ question: "question";
658
+ questions: "questions";
659
+ questionsValue: "questionsValue";
660
+ quizCountItems: "quizCountItems";
661
+ quizCountItemsValue: "quizCountItemsValue";
662
+ quizStrikethroughSolutions: "quizStrikethroughSolutions";
663
+ quizStrikethroughSolutionsValue: "quizStrikethroughSolutionsValue";
664
+ quizzes: "quizzes";
665
+ quizzesValue: "quizzesValue";
666
+ quotedPerson: "quotedPerson";
667
+ ratingLevelEnd: "ratingLevelEnd";
668
+ ratingLevelSelected: "ratingLevelSelected";
669
+ ratingLevelSelectedValue: "ratingLevelSelectedValue";
670
+ ratingLevelStart: "ratingLevelStart";
671
+ reaction: "reaction";
672
+ reasonableNumOfChars: "reasonableNumOfChars";
673
+ reasonableNumOfCharsValue: "reasonableNumOfCharsValue";
668
674
  reference: "reference";
669
675
  referenceEnd: "referenceEnd";
670
- elementsValue: "elementsValue";
671
- solutionsValue: "solutionsValue";
672
- prefix: "prefix";
673
- postfix: "postfix";
674
- isCaseSensitive: "isCaseSensitive";
675
- isCorrect: "isCorrect";
676
- forKeys: "forKeys";
677
- forValuesValue: "forValuesValue";
678
- key: "key";
679
- valuesValue: "valuesValue";
680
- question: "question";
676
+ referenceProperty: "referenceProperty";
677
+ referencePropertyValue: "referencePropertyValue";
678
+ releaseDate: "releaseDate";
679
+ releaseDateValue: "releaseDateValue";
680
+ releaseKind: "releaseKind";
681
+ releaseKindValue: "releaseKindValue";
682
+ releaseVersion: "releaseVersion";
683
+ releaseVersionValue: "releaseVersionValue";
684
+ resolved: "resolved";
685
+ resolvedBy: "resolvedBy";
686
+ resolvedByValue: "resolvedByValue";
687
+ resolvedDate: "resolvedDate";
688
+ resolvedDateValue: "resolvedDateValue";
689
+ resolvedValue: "resolvedValue";
690
+ resources: "resources";
691
+ resourcesValue: "resourcesValue";
692
+ resourceType: "resourceType";
693
+ response: "response";
694
+ responses: "responses";
695
+ responsesValue: "responsesValue";
696
+ root: "root";
697
+ rows: "rows";
698
+ rowsValue: "rowsValue";
699
+ rowsValueValue: "rowsValueValue";
681
700
  sampleSolution: "sampleSolution";
682
701
  sampleSolutionValue: "sampleSolutionValue";
683
- statementText: "statementText";
684
- text: "text";
685
- propertyKey: "propertyKey";
686
- propertyValue: "propertyValue";
687
- keyAudio: "keyAudio";
688
- keyImage: "keyImage";
689
- response: "response";
690
- reaction: "reaction";
691
- feedback: "feedback";
692
- checked: "checked";
693
- quantity: "quantity";
694
- unit: "unit";
695
- unitAbbr: "unitAbbr";
696
- decimalPlaces: "decimalPlaces";
697
- disableCalculation: "disableCalculation";
698
- imageSource: "imageSource";
699
- mockupId: "mockupId";
702
+ scormSource: "scormSource";
703
+ scormSourceValue: "scormSourceValue";
704
+ search: "search";
705
+ searchValue: "searchValue";
706
+ section: "section";
707
+ select: "select";
708
+ servings: "servings";
709
+ servingsValue: "servingsValue";
710
+ showInIndex: "showInIndex";
700
711
  size: "size";
701
- trim: "trim";
702
- person: "person";
703
- name: "name";
704
- avatarImage: "avatarImage";
705
- markConfig: "markConfig";
706
- markConfigValue: "markConfigValue";
707
712
  solution: "solution";
708
- mark: "mark";
709
- color: "color";
710
- emphasis: "emphasis";
711
- flashcards: "flashcards";
712
- flashcardsValue: "flashcardsValue";
713
- answer: "answer";
714
- alternativeAnswers: "alternativeAnswers";
715
- alternativeAnswersValue: "alternativeAnswersValue";
716
- resourceType: "resourceType";
717
- resources: "resources";
718
- resourcesValue: "resourcesValue";
719
- image: "image";
720
- imagePortrait: "imagePortrait";
721
- imageLandscape: "imageLandscape";
722
- audio: "audio";
723
- type: "type";
724
- typeAlias: "typeAlias";
725
- format: "format";
726
- value: "value";
727
- url: "url";
713
+ solutions: "solutions";
714
+ solutionsValue: "solutionsValue";
715
+ spaceId: "spaceId";
716
+ spaceIdValue: "spaceIdValue";
728
717
  src: "src";
729
718
  src1x: "src1x";
730
719
  src2x: "src2x";
731
720
  src3x: "src3x";
732
721
  src4x: "src4x";
733
- alt: "alt";
734
- zoomDisabled: "zoomDisabled";
735
- license: "license";
736
- copyright: "copyright";
737
- provider: "provider";
738
- showInIndex: "showInIndex";
739
- thumbnails: "thumbnails";
740
- thumbnailsValue: "thumbnailsValue";
722
+ start: "start";
723
+ statement: "statement";
724
+ statements: "statements";
725
+ statementsValue: "statementsValue";
726
+ statementText: "statementText";
727
+ subject: "subject";
728
+ subjectValue: "subjectValue";
729
+ subtitle: "subtitle";
730
+ subtype: "subtype";
731
+ subtypeValue: "subtypeValue";
732
+ table: "table";
733
+ tableAutoWidth: "tableAutoWidth";
734
+ tableAutoWidthValue: "tableAutoWidthValue";
735
+ tableFixedHeader: "tableFixedHeader";
736
+ tableFixedHeaderValue: "tableFixedHeaderValue";
737
+ tableHeight: "tableHeight";
738
+ tableHeightValue: "tableHeightValue";
739
+ tablePagination: "tablePagination";
740
+ tablePaginationLimit: "tablePaginationLimit";
741
+ tablePaginationLimitValue: "tablePaginationLimitValue";
742
+ tablePaginationValue: "tablePaginationValue";
743
+ tableResizableColumns: "tableResizableColumns";
744
+ tableResizableColumnsValue: "tableResizableColumnsValue";
745
+ tableSearch: "tableSearch";
746
+ tableSearchValue: "tableSearchValue";
747
+ tableSort: "tableSort";
748
+ tableSortValue: "tableSortValue";
749
+ tableWhitespaceNoWrap: "tableWhitespaceNoWrap";
750
+ tableWhitespaceNoWrapValue: "tableWhitespaceNoWrapValue";
751
+ tag: "tag";
752
+ tagValue: "tagValue";
753
+ target: "target";
754
+ targetValue: "targetValue";
755
+ technicalTerm: "technicalTerm";
756
+ technicalTermValue: "technicalTermValue";
757
+ text: "text";
758
+ textAlign: "textAlign";
741
759
  textAst: "textAst";
742
760
  textAstValue: "textAstValue";
743
- content: "contentValue";
744
- contentValue: "contentValue";
745
- contentValueValue: "contentValueValue";
746
- attrs: "attrs";
747
- section: "section";
748
- parent: "parent";
749
- marks: "marks";
750
- marksValue: "marksValue";
751
- comment: "comment";
752
- alignment: "alignment";
753
- textAlign: "textAlign";
754
- class: "class";
755
- href: "href";
756
- parser: "parser";
761
+ textFormat: "textFormat";
762
+ textReference: "textReference";
763
+ textReferenceValue: "textReferenceValue";
764
+ texts: "texts";
765
+ textsValue: "textsValue";
766
+ theme: "theme";
767
+ themeValue: "themeValue";
768
+ thumbImage: "thumbImage";
769
+ thumbImageValue: "thumbImageValue";
770
+ thumbnails: "thumbnails";
771
+ thumbnailsValue: "thumbnailsValue";
772
+ title: "title";
773
+ toc: "toc";
774
+ tocValue: "tocValue";
775
+ trim: "trim";
776
+ type: "type";
777
+ typeAlias: "typeAlias";
778
+ unit: "unit";
779
+ unitAbbr: "unitAbbr";
780
+ url: "url";
781
+ value: "value";
782
+ values: "values";
783
+ valuesValue: "valuesValue";
784
+ vendorUrl: "vendorUrl";
785
+ vendorUrlValue: "vendorUrlValue";
757
786
  version: "version";
758
- bitmarkVersion: "bitmarkVersion";
759
- commentedBitType: "commentedBitType";
787
+ videoCallLink: "videoCallLink";
788
+ videoCallLinkValue: "videoCallLinkValue";
760
789
  warnings: "warnings";
761
790
  warningsValue: "warningsValue";
762
- errors: "errors";
763
- errorsValue: "errorsValue";
764
- message: "message";
765
- original: "original";
766
- start: "start";
767
- end: "end";
768
- offset: "offset";
769
- line: "line";
770
- column: "column";
771
- markup: "markup";
791
+ width: "width";
792
+ widthValue: "widthValue";
793
+ x: "x";
794
+ xValue: "xValue";
795
+ y: "y";
796
+ yValue: "yValue";
797
+ zoomDisabled: "zoomDisabled";
772
798
  }>>;
773
799
  export type NodeTypeType = EnumType<typeof NodeType>;
774
800
  export { NodeType };