@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.
- package/dist/browser/bitmark-parser-generator.min.js +1 -1
- package/dist/browser/bundle-report.html +2 -2
- package/dist/cjs/ast/Builder.js +21 -3
- package/dist/cjs/ast/Builder.js.map +1 -1
- package/dist/cjs/config/Config.js +1 -2
- package/dist/cjs/config/Config.js.map +1 -1
- package/dist/cjs/config/raw/bits.js +60 -1
- package/dist/cjs/config/raw/bits.js.map +1 -1
- package/dist/cjs/config/raw/groups.js +8 -0
- package/dist/cjs/config/raw/groups.js.map +1 -1
- package/dist/cjs/config/raw/properties.js +54 -11
- package/dist/cjs/config/raw/properties.js.map +1 -1
- package/dist/cjs/config/raw/tags.js +13 -13
- package/dist/cjs/config/raw/tags.js.map +1 -1
- package/dist/cjs/generated/build-info.js +1 -1
- package/dist/cjs/generated/build-info.js.map +1 -1
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js +31 -1
- package/dist/cjs/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/cjs/generator/json/JsonGenerator.js +83 -1
- package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
- package/dist/cjs/model/ast/NodeType.js +333 -334
- package/dist/cjs/model/ast/NodeType.js.map +1 -1
- package/dist/cjs/model/config/enum/PropertyConfigKey.js +8 -0
- package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/cjs/model/enum/BitType.js +3 -0
- package/dist/cjs/model/enum/BitType.js.map +1 -1
- package/dist/cjs/model/enum/PropertyAstKey.js +6 -6
- package/dist/cjs/model/enum/PropertyAstKey.js.map +1 -1
- package/dist/cjs/model/enum/PropertyTag.js +2 -135
- package/dist/cjs/model/enum/PropertyTag.js.map +1 -1
- package/dist/cjs/model/enum/Tag.js +13 -13
- package/dist/cjs/model/enum/Tag.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js +11 -11
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js +1 -1
- package/dist/cjs/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +2 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +2 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js +2 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +2 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +2 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +6 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +36 -0
- package/dist/cjs/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -0
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +1 -1
- package/dist/cjs/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
- package/dist/cjs/parser/json/JsonParser.js +21 -4
- package/dist/cjs/parser/json/JsonParser.js.map +1 -1
- package/dist/esm/ast/Builder.js +21 -3
- package/dist/esm/ast/Builder.js.map +1 -1
- package/dist/esm/config/Config.js +1 -2
- package/dist/esm/config/Config.js.map +1 -1
- package/dist/esm/config/raw/bits.js +61 -2
- package/dist/esm/config/raw/bits.js.map +1 -1
- package/dist/esm/config/raw/groups.js +8 -0
- package/dist/esm/config/raw/groups.js.map +1 -1
- package/dist/esm/config/raw/properties.js +54 -11
- package/dist/esm/config/raw/properties.js.map +1 -1
- package/dist/esm/config/raw/tags.js +13 -13
- package/dist/esm/config/raw/tags.js.map +1 -1
- package/dist/esm/generated/build-info.js +1 -1
- package/dist/esm/generated/build-info.js.map +1 -1
- package/dist/esm/generator/bitmark/BitmarkGenerator.js +31 -1
- package/dist/esm/generator/bitmark/BitmarkGenerator.js.map +1 -1
- package/dist/esm/generator/json/JsonGenerator.js +83 -1
- package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
- package/dist/esm/model/ast/NodeType.js +333 -334
- package/dist/esm/model/ast/NodeType.js.map +1 -1
- package/dist/esm/model/config/enum/PropertyConfigKey.js +8 -0
- package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/esm/model/enum/BitType.js +3 -0
- package/dist/esm/model/enum/BitType.js.map +1 -1
- package/dist/esm/model/enum/PropertyAstKey.js +6 -6
- package/dist/esm/model/enum/PropertyAstKey.js.map +1 -1
- package/dist/esm/model/enum/PropertyTag.js +2 -135
- package/dist/esm/model/enum/PropertyTag.js.map +1 -1
- package/dist/esm/model/enum/Tag.js +13 -13
- package/dist/esm/model/enum/Tag.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js +11 -11
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserTypes.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js +1 -1
- package/dist/esm/parser/bitmark/peg/BitmarkPegParserValidator.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js +2 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js +2 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js +2 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js +2 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js +2 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js +6 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.js.map +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js +33 -0
- package/dist/esm/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.js.map +1 -0
- package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js +1 -1
- package/dist/esm/parser/bitmark/peg/contentProcessors/ResourceContentProcessor.js.map +1 -1
- package/dist/esm/parser/json/JsonParser.js +21 -4
- package/dist/esm/parser/json/JsonParser.js.map +1 -1
- package/dist/types/ast/Builder.d.ts +18 -1
- package/dist/types/ast/Builder.d.ts.map +1 -1
- package/dist/types/config/Config.d.ts +4 -3
- package/dist/types/config/Config.d.ts.map +1 -1
- package/dist/types/config/raw/bits.d.ts.map +1 -1
- package/dist/types/config/raw/groups.d.ts.map +1 -1
- package/dist/types/config/raw/properties.d.ts.map +1 -1
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts +3 -0
- package/dist/types/generator/bitmark/BitmarkGenerator.d.ts.map +1 -1
- package/dist/types/generator/json/JsonGenerator.d.ts +5 -2
- package/dist/types/generator/json/JsonGenerator.d.ts.map +1 -1
- package/dist/types/model/ast/NodeType.d.ts +666 -640
- package/dist/types/model/ast/NodeType.d.ts.map +1 -1
- package/dist/types/model/ast/Nodes.d.ts +11 -0
- package/dist/types/model/ast/Nodes.d.ts.map +1 -1
- package/dist/types/model/config/enum/ConfigKey.d.ts +16 -0
- package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts +24 -0
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
- package/dist/types/model/enum/BitType.d.ts +6 -0
- package/dist/types/model/enum/BitType.d.ts.map +1 -1
- package/dist/types/model/enum/PropertyAstKey.d.ts +12 -12
- package/dist/types/model/enum/PropertyTag.d.ts +46 -14
- package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
- package/dist/types/model/enum/Tag.d.ts +26 -26
- package/dist/types/model/json/BitJson.d.ts +11 -0
- package/dist/types/model/json/BitJson.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts +4 -1
- package/dist/types/parser/bitmark/peg/BitmarkPegParserTypes.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/GapChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ImageSourceChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/ItemLeadChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/MarkConfigChainContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/PropertyContentProcessor.d.ts.map +1 -1
- package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts +7 -0
- package/dist/types/parser/bitmark/peg/contentProcessors/RatingLevelChainContentProcessor.d.ts.map +1 -0
- package/dist/types/parser/json/JsonParser.d.ts +1 -0
- package/dist/types/parser/json/JsonParser.d.ts.map +1 -1
- 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
|
-
|
|
10
|
+
action: "action";
|
|
11
|
+
actionValue: "actionValue";
|
|
12
|
+
ageRange: "ageRange";
|
|
13
|
+
ageRangeValue: "ageRangeValue";
|
|
14
|
+
aiGenerated: "aiGenerated";
|
|
15
|
+
aiGeneratedValue: "aiGeneratedValue";
|
|
11
16
|
alias: "alias";
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
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
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
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
|
-
|
|
73
|
+
color: "color";
|
|
74
|
+
colorTag: "colorTag";
|
|
75
|
+
colorTagValue: "colorTagValue";
|
|
76
|
+
column: "column";
|
|
178
77
|
columns: "columns";
|
|
179
78
|
columnsValue: "columnsValue";
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
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
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
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
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
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
|
-
|
|
228
|
-
|
|
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
|
-
|
|
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
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
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
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
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
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
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
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
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
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
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
|
-
|
|
377
|
-
|
|
392
|
+
videoCallLink: "videoCallLink";
|
|
393
|
+
videoCallLinkValue: "videoCallLinkValue";
|
|
378
394
|
warnings: "warnings";
|
|
379
395
|
warningsValue: "warningsValue";
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
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
|
-
|
|
405
|
+
action: "action";
|
|
406
|
+
actionValue: "actionValue";
|
|
407
|
+
ageRange: "ageRange";
|
|
408
|
+
ageRangeValue: "ageRangeValue";
|
|
409
|
+
aiGenerated: "aiGenerated";
|
|
410
|
+
aiGeneratedValue: "aiGeneratedValue";
|
|
393
411
|
alias: "alias";
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
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
|
-
|
|
401
|
-
|
|
402
|
-
|
|
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
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
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
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
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
|
-
|
|
468
|
+
color: "color";
|
|
469
|
+
colorTag: "colorTag";
|
|
470
|
+
colorTagValue: "colorTagValue";
|
|
471
|
+
column: "column";
|
|
560
472
|
columns: "columns";
|
|
561
473
|
columnsValue: "columnsValue";
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
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
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
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
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
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
|
-
|
|
610
|
-
|
|
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
|
-
|
|
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
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
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
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
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
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
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
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
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
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
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
|
-
|
|
759
|
-
|
|
787
|
+
videoCallLink: "videoCallLink";
|
|
788
|
+
videoCallLinkValue: "videoCallLinkValue";
|
|
760
789
|
warnings: "warnings";
|
|
761
790
|
warningsValue: "warningsValue";
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
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 };
|