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