@gmb/bitmark-parser-generator 1.26.0 → 1.28.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 +2 -2
- package/dist/cjs/ast/Builder.js.map +1 -1
- package/dist/cjs/config/raw/bits.js +240 -0
- package/dist/cjs/config/raw/bits.js.map +1 -1
- package/dist/cjs/config/raw/groups.js +13 -0
- package/dist/cjs/config/raw/groups.js.map +1 -1
- package/dist/cjs/config/raw/properties.js +5 -0
- package/dist/cjs/config/raw/properties.js.map +1 -1
- package/dist/cjs/generated/build-info.js +1 -1
- package/dist/cjs/generator/json/JsonGenerator.js +3 -0
- package/dist/cjs/generator/json/JsonGenerator.js.map +1 -1
- package/dist/cjs/model/ast/NodeType.js +2 -0
- package/dist/cjs/model/ast/NodeType.js.map +1 -1
- package/dist/cjs/model/config/enum/GroupConfigKey.js +1 -0
- package/dist/cjs/model/config/enum/GroupConfigKey.js.map +1 -1
- package/dist/cjs/model/config/enum/PropertyConfigKey.js +1 -0
- package/dist/cjs/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/cjs/model/enum/BitType.js +51 -3
- package/dist/cjs/model/enum/BitType.js.map +1 -1
- package/dist/cjs/parser/json/JsonParser.js +2 -2
- package/dist/cjs/parser/json/JsonParser.js.map +1 -1
- package/dist/esm/ast/Builder.js +2 -2
- package/dist/esm/ast/Builder.js.map +1 -1
- package/dist/esm/config/raw/bits.js +240 -0
- package/dist/esm/config/raw/bits.js.map +1 -1
- package/dist/esm/config/raw/groups.js +13 -0
- package/dist/esm/config/raw/groups.js.map +1 -1
- package/dist/esm/config/raw/properties.js +5 -0
- package/dist/esm/config/raw/properties.js.map +1 -1
- package/dist/esm/generated/build-info.js +1 -1
- package/dist/esm/generator/json/JsonGenerator.js +3 -0
- package/dist/esm/generator/json/JsonGenerator.js.map +1 -1
- package/dist/esm/model/ast/NodeType.js +2 -0
- package/dist/esm/model/ast/NodeType.js.map +1 -1
- package/dist/esm/model/config/enum/GroupConfigKey.js +1 -0
- package/dist/esm/model/config/enum/GroupConfigKey.js.map +1 -1
- package/dist/esm/model/config/enum/PropertyConfigKey.js +1 -0
- package/dist/esm/model/config/enum/PropertyConfigKey.js.map +1 -1
- package/dist/esm/model/enum/BitType.js +51 -3
- package/dist/esm/model/enum/BitType.js.map +1 -1
- package/dist/esm/parser/json/JsonParser.js +2 -2
- package/dist/esm/parser/json/JsonParser.js.map +1 -1
- package/dist/types/ast/Builder.d.ts +1 -0
- package/dist/types/ast/Builder.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/json/JsonGenerator.d.ts.map +1 -1
- package/dist/types/model/ast/NodeType.d.ts +4 -0
- package/dist/types/model/ast/NodeType.d.ts.map +1 -1
- package/dist/types/model/ast/Nodes.d.ts +1 -0
- package/dist/types/model/ast/Nodes.d.ts.map +1 -1
- package/dist/types/model/config/enum/ConfigKey.d.ts +4 -0
- package/dist/types/model/config/enum/ConfigKey.d.ts.map +1 -1
- package/dist/types/model/config/enum/GroupConfigKey.d.ts +3 -0
- package/dist/types/model/config/enum/GroupConfigKey.d.ts.map +1 -1
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts +3 -0
- package/dist/types/model/config/enum/PropertyConfigKey.d.ts.map +1 -1
- package/dist/types/model/enum/BitType.d.ts +102 -6
- package/dist/types/model/enum/BitType.d.ts.map +1 -1
- package/dist/types/model/enum/PropertyTag.d.ts +2 -0
- package/dist/types/model/enum/PropertyTag.d.ts.map +1 -1
- package/dist/types/model/json/BitJson.d.ts +1 -0
- package/dist/types/model/json/BitJson.d.ts.map +1 -1
- package/dist/types/parser/json/JsonParser.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -44,6 +44,10 @@ const BITS = {
|
|
|
44
44
|
type: BitTagType.group,
|
|
45
45
|
configKey: GroupConfigKey.group_standardTags,
|
|
46
46
|
},
|
|
47
|
+
{
|
|
48
|
+
type: BitTagType.group,
|
|
49
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
50
|
+
},
|
|
47
51
|
{
|
|
48
52
|
type: BitTagType.group,
|
|
49
53
|
configKey: GroupConfigKey.group_resourceAppLink,
|
|
@@ -78,6 +82,16 @@ const BITS = {
|
|
|
78
82
|
},
|
|
79
83
|
[BitType.standardArticleNormative]: { since: '1.16.0', baseBitType: BitType.article },
|
|
80
84
|
[BitType.standardArticleNonNormative]: { since: '1.16.0', baseBitType: BitType.article },
|
|
85
|
+
[BitType.smartStandardArticleNormative]: { since: '1.28.0', baseBitType: BitType.standardArticleNormative },
|
|
86
|
+
[BitType.smartStandardArticleNonNormative]: { since: '1.28.0', baseBitType: BitType.standardArticleNonNormative },
|
|
87
|
+
[BitType.smartStandardArticleNormativeCollapsible]: {
|
|
88
|
+
since: '1.28.0',
|
|
89
|
+
baseBitType: BitType.smartStandardArticleNormative,
|
|
90
|
+
},
|
|
91
|
+
[BitType.smartStandardArticleNonNormativeCollapsible]: {
|
|
92
|
+
since: '1.28.0',
|
|
93
|
+
baseBitType: BitType.smartStandardArticleNonNormative,
|
|
94
|
+
},
|
|
81
95
|
[BitType.statement]: { since: '1.3.0', baseBitType: BitType.article },
|
|
82
96
|
[BitType.pageArticle]: { since: '1.15.0', baseBitType: BitType.article },
|
|
83
97
|
[BitType.pageArticleAlt]: { since: '1.15.0', baseBitType: BitType.article },
|
|
@@ -155,6 +169,10 @@ const BITS = {
|
|
|
155
169
|
type: BitTagType.group,
|
|
156
170
|
configKey: GroupConfigKey.group_standardTags,
|
|
157
171
|
},
|
|
172
|
+
{
|
|
173
|
+
type: BitTagType.group,
|
|
174
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
175
|
+
},
|
|
158
176
|
{
|
|
159
177
|
type: BitTagType.group,
|
|
160
178
|
configKey: GroupConfigKey.group_resourceArticleEmbed,
|
|
@@ -170,6 +188,10 @@ const BITS = {
|
|
|
170
188
|
type: BitTagType.group,
|
|
171
189
|
configKey: GroupConfigKey.group_standardTags,
|
|
172
190
|
},
|
|
191
|
+
{
|
|
192
|
+
type: BitTagType.group,
|
|
193
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
194
|
+
},
|
|
173
195
|
{
|
|
174
196
|
type: BitTagType.group,
|
|
175
197
|
configKey: GroupConfigKey.group_resourceArticleLink,
|
|
@@ -185,6 +207,10 @@ const BITS = {
|
|
|
185
207
|
type: BitTagType.group,
|
|
186
208
|
configKey: GroupConfigKey.group_standardTags,
|
|
187
209
|
},
|
|
210
|
+
{
|
|
211
|
+
type: BitTagType.group,
|
|
212
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
213
|
+
},
|
|
188
214
|
{
|
|
189
215
|
type: BitTagType.group,
|
|
190
216
|
configKey: GroupConfigKey.group_resourceAudio,
|
|
@@ -200,6 +226,10 @@ const BITS = {
|
|
|
200
226
|
type: BitTagType.group,
|
|
201
227
|
configKey: GroupConfigKey.group_standardTags,
|
|
202
228
|
},
|
|
229
|
+
{
|
|
230
|
+
type: BitTagType.group,
|
|
231
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
232
|
+
},
|
|
203
233
|
{
|
|
204
234
|
type: BitTagType.group,
|
|
205
235
|
configKey: GroupConfigKey.group_resourceAudioEmbed,
|
|
@@ -215,6 +245,10 @@ const BITS = {
|
|
|
215
245
|
type: BitTagType.group,
|
|
216
246
|
configKey: GroupConfigKey.group_standardTags,
|
|
217
247
|
},
|
|
248
|
+
{
|
|
249
|
+
type: BitTagType.group,
|
|
250
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
251
|
+
},
|
|
218
252
|
{
|
|
219
253
|
type: BitTagType.group,
|
|
220
254
|
configKey: GroupConfigKey.group_resourceAudioLink,
|
|
@@ -570,6 +604,10 @@ const BITS = {
|
|
|
570
604
|
type: BitTagType.group,
|
|
571
605
|
configKey: GroupConfigKey.group_standardTags,
|
|
572
606
|
},
|
|
607
|
+
{
|
|
608
|
+
type: BitTagType.group,
|
|
609
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
610
|
+
},
|
|
573
611
|
{
|
|
574
612
|
type: BitTagType.group,
|
|
575
613
|
configKey: GroupConfigKey.group_resourceDocument,
|
|
@@ -585,6 +623,10 @@ const BITS = {
|
|
|
585
623
|
type: BitTagType.group,
|
|
586
624
|
configKey: GroupConfigKey.group_standardTags,
|
|
587
625
|
},
|
|
626
|
+
{
|
|
627
|
+
type: BitTagType.group,
|
|
628
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
629
|
+
},
|
|
588
630
|
{
|
|
589
631
|
type: BitTagType.group,
|
|
590
632
|
configKey: GroupConfigKey.group_resourceDocumentDownload,
|
|
@@ -600,6 +642,10 @@ const BITS = {
|
|
|
600
642
|
type: BitTagType.group,
|
|
601
643
|
configKey: GroupConfigKey.group_standardTags,
|
|
602
644
|
},
|
|
645
|
+
{
|
|
646
|
+
type: BitTagType.group,
|
|
647
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
648
|
+
},
|
|
603
649
|
{
|
|
604
650
|
type: BitTagType.group,
|
|
605
651
|
configKey: GroupConfigKey.group_resourceDocumentEmbed,
|
|
@@ -615,6 +661,10 @@ const BITS = {
|
|
|
615
661
|
type: BitTagType.group,
|
|
616
662
|
configKey: GroupConfigKey.group_standardTags,
|
|
617
663
|
},
|
|
664
|
+
{
|
|
665
|
+
type: BitTagType.group,
|
|
666
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
667
|
+
},
|
|
618
668
|
{
|
|
619
669
|
type: BitTagType.group,
|
|
620
670
|
configKey: GroupConfigKey.group_resourceDocumentLink,
|
|
@@ -674,6 +724,16 @@ const BITS = {
|
|
|
674
724
|
[BitType.exampleAlt]: { since: '1.16.0', baseBitType: BitType.example },
|
|
675
725
|
[BitType.standardExampleNormative]: { since: '1.16.0', baseBitType: BitType.example },
|
|
676
726
|
[BitType.standardExampleNonNormative]: { since: '1.16.0', baseBitType: BitType.example },
|
|
727
|
+
[BitType.smartStandardExampleNormative]: { since: '1.28.0', baseBitType: BitType.standardExampleNormative },
|
|
728
|
+
[BitType.smartStandardExampleNonNormative]: { since: '1.28.0', baseBitType: BitType.standardExampleNonNormative },
|
|
729
|
+
[BitType.smartStandardExampleNormativeCollapsible]: {
|
|
730
|
+
since: '1.28.0',
|
|
731
|
+
baseBitType: BitType.smartStandardExampleNormative,
|
|
732
|
+
},
|
|
733
|
+
[BitType.smartStandardExampleNonNormativeCollapsible]: {
|
|
734
|
+
since: '1.28.0',
|
|
735
|
+
baseBitType: BitType.smartStandardExampleNonNormative,
|
|
736
|
+
},
|
|
677
737
|
[BitType.appAiPrompt]: { since: '1.3.0', baseBitType: BitType.article },
|
|
678
738
|
[BitType.aiPrompt]: { since: '1.3.0', baseBitType: BitType.article },
|
|
679
739
|
[BitType.articleAi]: { since: '1.3.0', baseBitType: BitType.article },
|
|
@@ -724,12 +784,21 @@ const BITS = {
|
|
|
724
784
|
[BitType.langTeacherPronunciation]: { since: '1.3.0', baseBitType: BitType.article },
|
|
725
785
|
[BitType.list]: { since: '1.22.0', baseBitType: BitType.article },
|
|
726
786
|
[BitType.standardList]: { since: '1.22.0', baseBitType: BitType.article },
|
|
787
|
+
[BitType.smartStandardList]: { since: '1.28.0', baseBitType: BitType.standardList },
|
|
788
|
+
[BitType.smartStandardListCollapsible]: { since: '1.28.0', baseBitType: BitType.smartStandardList },
|
|
727
789
|
[BitType.message]: { since: '1.3.0', baseBitType: BitType.article },
|
|
728
790
|
[BitType.newspaperArticle]: { since: '1.3.0', baseBitType: BitType.article },
|
|
729
791
|
[BitType.note]: { since: '1.3.0', baseBitType: BitType.article },
|
|
730
792
|
[BitType.noteAlt]: { since: '1.16.0', baseBitType: BitType.note },
|
|
731
793
|
[BitType.standardNoteNormative]: { since: '1.16.0', baseBitType: BitType.note },
|
|
732
794
|
[BitType.standardNoteNonNormative]: { since: '1.16.0', baseBitType: BitType.note },
|
|
795
|
+
[BitType.smartStandardNoteNormative]: { since: '1.28.0', baseBitType: BitType.standardNoteNormative },
|
|
796
|
+
[BitType.smartStandardNoteNonNormative]: { since: '1.28.0', baseBitType: BitType.standardNoteNonNormative },
|
|
797
|
+
[BitType.smartStandardNoteNormativeCollapsible]: { since: '1.28.0', baseBitType: BitType.smartStandardNoteNormative },
|
|
798
|
+
[BitType.smartStandardNoteNonNormativeCollapsible]: {
|
|
799
|
+
since: '1.28.0',
|
|
800
|
+
baseBitType: BitType.smartStandardNoteNonNormative,
|
|
801
|
+
},
|
|
733
802
|
[BitType.noteAi]: { since: '1.3.0', baseBitType: BitType.note },
|
|
734
803
|
[BitType.notebookArticle]: { since: '1.3.0', baseBitType: BitType.article },
|
|
735
804
|
[BitType.preparationNote]: { since: '1.3.0', baseBitType: BitType.article },
|
|
@@ -738,6 +807,16 @@ const BITS = {
|
|
|
738
807
|
[BitType.remarkAlt]: { since: '1.16.0', baseBitType: BitType.remark },
|
|
739
808
|
[BitType.standardRemarkNormative]: { since: '1.16.0', baseBitType: BitType.article },
|
|
740
809
|
[BitType.standardRemarkNonNormative]: { since: '1.16.0', baseBitType: BitType.article },
|
|
810
|
+
[BitType.smartStandardRemarkNormative]: { since: '1.28.0', baseBitType: BitType.standardRemarkNormative },
|
|
811
|
+
[BitType.smartStandardRemarkNonNormative]: { since: '1.28.0', baseBitType: BitType.standardRemarkNonNormative },
|
|
812
|
+
[BitType.smartStandardRemarkNormativeCollapsible]: {
|
|
813
|
+
since: '1.28.0',
|
|
814
|
+
baseBitType: BitType.smartStandardRemarkNormative,
|
|
815
|
+
},
|
|
816
|
+
[BitType.smartStandardRemarkNonNormativeCollapsible]: {
|
|
817
|
+
since: '1.28.0',
|
|
818
|
+
baseBitType: BitType.smartStandardRemarkNonNormative,
|
|
819
|
+
},
|
|
741
820
|
[BitType.selfAssessment]: { since: '1.3.0', baseBitType: BitType.article },
|
|
742
821
|
[BitType.separator]: { since: '1.4.15', baseBitType: BitType.article },
|
|
743
822
|
[BitType.separatorAlt]: { since: '1.16.0', baseBitType: BitType.separator },
|
|
@@ -1002,6 +1081,10 @@ const BITS = {
|
|
|
1002
1081
|
type: BitTagType.property,
|
|
1003
1082
|
configKey: PropertyConfigKey.backgroundWallpaper,
|
|
1004
1083
|
},
|
|
1084
|
+
{
|
|
1085
|
+
type: BitTagType.group,
|
|
1086
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1087
|
+
},
|
|
1005
1088
|
{
|
|
1006
1089
|
type: BitTagType.group,
|
|
1007
1090
|
configKey: GroupConfigKey.group_resourceImage,
|
|
@@ -1027,6 +1110,19 @@ const BITS = {
|
|
|
1027
1110
|
[BitType.imageFigureAlt]: { since: '1.16.0', baseBitType: BitType.imageFigure },
|
|
1028
1111
|
[BitType.standardImageFigureNormative]: { since: '1.16.0', baseBitType: BitType.imageFigure },
|
|
1029
1112
|
[BitType.standardImageFigureNonNormative]: { since: '1.16.0', baseBitType: BitType.imageFigure },
|
|
1113
|
+
[BitType.smartStandardImageFigureNormative]: { since: '1.28.0', baseBitType: BitType.standardImageFigureNormative },
|
|
1114
|
+
[BitType.smartStandardImageFigureNonNormative]: {
|
|
1115
|
+
since: '1.28.0',
|
|
1116
|
+
baseBitType: BitType.standardImageFigureNonNormative,
|
|
1117
|
+
},
|
|
1118
|
+
[BitType.smartStandardImageFigureNormativeCollapsible]: {
|
|
1119
|
+
since: '1.28.0',
|
|
1120
|
+
baseBitType: BitType.smartStandardImageFigureNormative,
|
|
1121
|
+
},
|
|
1122
|
+
[BitType.smartStandardImageFigureNonNormativeCollapsible]: {
|
|
1123
|
+
since: '1.28.0',
|
|
1124
|
+
baseBitType: BitType.smartStandardImageFigureNonNormative,
|
|
1125
|
+
},
|
|
1030
1126
|
[BitType.imageLandscape]: { since: '1.3.0', baseBitType: BitType.image },
|
|
1031
1127
|
[BitType.imageMood]: { since: '1.3.0', baseBitType: BitType.image },
|
|
1032
1128
|
[BitType.imagePortrait]: { since: '1.3.0', baseBitType: BitType.image },
|
|
@@ -1066,6 +1162,35 @@ const BITS = {
|
|
|
1066
1162
|
[BitType.standardTableImageNonNormative]: { since: '1.16.0', baseBitType: BitType.tableImage },
|
|
1067
1163
|
[BitType.standardRemarkTableImageNormative]: { since: '1.17.0', baseBitType: BitType.tableImage },
|
|
1068
1164
|
[BitType.standardRemarkTableImageNonNormative]: { since: '1.17.0', baseBitType: BitType.tableImage },
|
|
1165
|
+
[BitType.smartStandardTableImageNormative]: { since: '1.28.0', baseBitType: BitType.standardTableImageNormative },
|
|
1166
|
+
[BitType.smartStandardTableImageNonNormative]: {
|
|
1167
|
+
since: '1.28.0',
|
|
1168
|
+
baseBitType: BitType.standardTableImageNonNormative,
|
|
1169
|
+
},
|
|
1170
|
+
[BitType.smartStandardRemarkTableImageNormative]: {
|
|
1171
|
+
since: '1.28.0',
|
|
1172
|
+
baseBitType: BitType.standardRemarkTableImageNormative,
|
|
1173
|
+
},
|
|
1174
|
+
[BitType.smartStandardRemarkTableImageNonNormative]: {
|
|
1175
|
+
since: '1.28.0',
|
|
1176
|
+
baseBitType: BitType.standardRemarkTableImageNonNormative,
|
|
1177
|
+
},
|
|
1178
|
+
[BitType.smartStandardTableImageNormativeCollapsible]: {
|
|
1179
|
+
since: '1.28.0',
|
|
1180
|
+
baseBitType: BitType.smartStandardTableImageNormative,
|
|
1181
|
+
},
|
|
1182
|
+
[BitType.smartStandardTableImageNonNormativeCollapsible]: {
|
|
1183
|
+
since: '1.28.0',
|
|
1184
|
+
baseBitType: BitType.smartStandardTableImageNonNormative,
|
|
1185
|
+
},
|
|
1186
|
+
[BitType.smartStandardRemarkTableImageNormativeCollapsible]: {
|
|
1187
|
+
since: '1.28.0',
|
|
1188
|
+
baseBitType: BitType.smartStandardRemarkTableImageNormative,
|
|
1189
|
+
},
|
|
1190
|
+
[BitType.smartStandardRemarkTableImageNonNormativeCollapsible]: {
|
|
1191
|
+
since: '1.28.0',
|
|
1192
|
+
baseBitType: BitType.smartStandardRemarkTableImageNonNormative,
|
|
1193
|
+
},
|
|
1069
1194
|
[BitType.imageLink]: {
|
|
1070
1195
|
since: '1.3.0',
|
|
1071
1196
|
tags: [
|
|
@@ -1073,6 +1198,10 @@ const BITS = {
|
|
|
1073
1198
|
type: BitTagType.group,
|
|
1074
1199
|
configKey: GroupConfigKey.group_standardTags,
|
|
1075
1200
|
},
|
|
1201
|
+
{
|
|
1202
|
+
type: BitTagType.group,
|
|
1203
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1204
|
+
},
|
|
1076
1205
|
{
|
|
1077
1206
|
type: BitTagType.group,
|
|
1078
1207
|
configKey: GroupConfigKey.group_resourceImageLink,
|
|
@@ -1088,6 +1217,10 @@ const BITS = {
|
|
|
1088
1217
|
type: BitTagType.group,
|
|
1089
1218
|
configKey: GroupConfigKey.group_standardTags,
|
|
1090
1219
|
},
|
|
1220
|
+
{
|
|
1221
|
+
type: BitTagType.group,
|
|
1222
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1223
|
+
},
|
|
1091
1224
|
{
|
|
1092
1225
|
type: BitTagType.group,
|
|
1093
1226
|
configKey: GroupConfigKey.group_resourceImage,
|
|
@@ -1106,6 +1239,10 @@ const BITS = {
|
|
|
1106
1239
|
type: BitTagType.group,
|
|
1107
1240
|
configKey: GroupConfigKey.group_standardTags,
|
|
1108
1241
|
},
|
|
1242
|
+
{
|
|
1243
|
+
type: BitTagType.group,
|
|
1244
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1245
|
+
},
|
|
1109
1246
|
{
|
|
1110
1247
|
// Combo resource
|
|
1111
1248
|
type: BitTagType.group,
|
|
@@ -1121,6 +1258,10 @@ const BITS = {
|
|
|
1121
1258
|
type: BitTagType.group,
|
|
1122
1259
|
configKey: GroupConfigKey.group_standardTags,
|
|
1123
1260
|
},
|
|
1261
|
+
{
|
|
1262
|
+
type: BitTagType.group,
|
|
1263
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1264
|
+
},
|
|
1124
1265
|
{
|
|
1125
1266
|
// Image resource
|
|
1126
1267
|
type: BitTagType.group,
|
|
@@ -1302,6 +1443,52 @@ const BITS = {
|
|
|
1302
1443
|
},
|
|
1303
1444
|
],
|
|
1304
1445
|
},
|
|
1446
|
+
[BitType.leRead]: { since: '1.27.0', baseBitType: BitType.lePreparationTask },
|
|
1447
|
+
[BitType.leTask]: { since: '1.27.0', baseBitType: BitType.lePreparationTask },
|
|
1448
|
+
[BitType.leTodo]: { since: '1.27.0', baseBitType: BitType.lePreparationTask },
|
|
1449
|
+
[BitType.leFollowUpTask]: { since: '1.27.0', baseBitType: BitType.lePreparationTask },
|
|
1450
|
+
[BitType.leFinishingTask]: { since: '1.27.0', baseBitType: BitType.lePreparationTask },
|
|
1451
|
+
[BitType.leAssignment]: { since: '1.27.0', baseBitType: BitType.lePreparationTask },
|
|
1452
|
+
[BitType.leWatchVideoEmbed]: {
|
|
1453
|
+
since: '1.27.0',
|
|
1454
|
+
baseBitType: BitType.learningPathBook,
|
|
1455
|
+
tags: [
|
|
1456
|
+
{
|
|
1457
|
+
type: BitTagType.property,
|
|
1458
|
+
configKey: PropertyConfigKey.activityType,
|
|
1459
|
+
},
|
|
1460
|
+
{
|
|
1461
|
+
type: BitTagType.group,
|
|
1462
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
type: BitTagType.group,
|
|
1466
|
+
configKey: GroupConfigKey.group_resourceVideoEmbed,
|
|
1467
|
+
minCount: 1,
|
|
1468
|
+
},
|
|
1469
|
+
],
|
|
1470
|
+
resourceAttachmentAllowed: false,
|
|
1471
|
+
},
|
|
1472
|
+
[BitType.leListenAudioEmbed]: {
|
|
1473
|
+
since: '1.27.0',
|
|
1474
|
+
baseBitType: BitType.learningPathBook,
|
|
1475
|
+
tags: [
|
|
1476
|
+
{
|
|
1477
|
+
type: BitTagType.property,
|
|
1478
|
+
configKey: PropertyConfigKey.activityType,
|
|
1479
|
+
},
|
|
1480
|
+
{
|
|
1481
|
+
type: BitTagType.group,
|
|
1482
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1483
|
+
},
|
|
1484
|
+
{
|
|
1485
|
+
type: BitTagType.group,
|
|
1486
|
+
configKey: GroupConfigKey.group_resourceAudioEmbed,
|
|
1487
|
+
minCount: 1,
|
|
1488
|
+
},
|
|
1489
|
+
],
|
|
1490
|
+
resourceAttachmentAllowed: false,
|
|
1491
|
+
},
|
|
1305
1492
|
[BitType.listItem]: {
|
|
1306
1493
|
since: '1.22.0',
|
|
1307
1494
|
baseBitType: BitType.article,
|
|
@@ -1313,6 +1500,8 @@ const BITS = {
|
|
|
1313
1500
|
],
|
|
1314
1501
|
},
|
|
1315
1502
|
[BitType.standardListItem]: { since: '1.22.0', baseBitType: BitType.listItem },
|
|
1503
|
+
[BitType.smartStandardListItem]: { since: '1.28.0', baseBitType: BitType.standardListItem },
|
|
1504
|
+
[BitType.smartStandardListItemCollapsible]: { since: '1.28.0', baseBitType: BitType.smartStandardListItem },
|
|
1316
1505
|
[BitType.mark]: {
|
|
1317
1506
|
since: '1.3.0',
|
|
1318
1507
|
tags: [
|
|
@@ -1720,6 +1909,10 @@ const BITS = {
|
|
|
1720
1909
|
type: BitTagType.group,
|
|
1721
1910
|
configKey: GroupConfigKey.group_standardTags,
|
|
1722
1911
|
},
|
|
1912
|
+
{
|
|
1913
|
+
type: BitTagType.group,
|
|
1914
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1915
|
+
},
|
|
1723
1916
|
{
|
|
1724
1917
|
// Combo resource
|
|
1725
1918
|
type: BitTagType.group,
|
|
@@ -1735,6 +1928,10 @@ const BITS = {
|
|
|
1735
1928
|
type: BitTagType.group,
|
|
1736
1929
|
configKey: GroupConfigKey.group_standardTags,
|
|
1737
1930
|
},
|
|
1931
|
+
{
|
|
1932
|
+
type: BitTagType.group,
|
|
1933
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1934
|
+
},
|
|
1738
1935
|
{
|
|
1739
1936
|
type: BitTagType.group,
|
|
1740
1937
|
configKey: GroupConfigKey.group_resourceStillImageFilmEmbed,
|
|
@@ -1750,6 +1947,10 @@ const BITS = {
|
|
|
1750
1947
|
type: BitTagType.group,
|
|
1751
1948
|
configKey: GroupConfigKey.group_standardTags,
|
|
1752
1949
|
},
|
|
1950
|
+
{
|
|
1951
|
+
type: BitTagType.group,
|
|
1952
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
1953
|
+
},
|
|
1753
1954
|
{
|
|
1754
1955
|
type: BitTagType.group,
|
|
1755
1956
|
configKey: GroupConfigKey.group_resourceStillImageFilmLink,
|
|
@@ -1918,6 +2119,29 @@ const BITS = {
|
|
|
1918
2119
|
[BitType.standardTableNonNormative]: { since: '1.16.0', baseBitType: BitType.table },
|
|
1919
2120
|
[BitType.standardRemarkTableNormative]: { since: '1.17.0', baseBitType: BitType.table },
|
|
1920
2121
|
[BitType.standardRemarkTableNonNormative]: { since: '1.17.0', baseBitType: BitType.table },
|
|
2122
|
+
[BitType.smartStandardTableNormative]: { since: '1.28.0', baseBitType: BitType.standardTableNormative },
|
|
2123
|
+
[BitType.smartStandardTableNonNormative]: { since: '1.28.0', baseBitType: BitType.standardTableNonNormative },
|
|
2124
|
+
[BitType.smartStandardRemarkTableNormative]: { since: '1.28.0', baseBitType: BitType.standardRemarkTableNormative },
|
|
2125
|
+
[BitType.smartStandardRemarkTableNonNormative]: {
|
|
2126
|
+
since: '1.28.0',
|
|
2127
|
+
baseBitType: BitType.standardRemarkTableNonNormative,
|
|
2128
|
+
},
|
|
2129
|
+
[BitType.smartStandardTableNormativeCollapsible]: {
|
|
2130
|
+
since: '1.28.0',
|
|
2131
|
+
baseBitType: BitType.smartStandardTableNormative,
|
|
2132
|
+
},
|
|
2133
|
+
[BitType.smartStandardTableNonNormativeCollapsible]: {
|
|
2134
|
+
since: '1.28.0',
|
|
2135
|
+
baseBitType: BitType.smartStandardTableNonNormative,
|
|
2136
|
+
},
|
|
2137
|
+
[BitType.smartStandardRemarkTableNormativeCollapsible]: {
|
|
2138
|
+
since: '1.28.0',
|
|
2139
|
+
baseBitType: BitType.smartStandardRemarkTableNormative,
|
|
2140
|
+
},
|
|
2141
|
+
[BitType.smartStandardRemarkTableNonNormativeCollapsible]: {
|
|
2142
|
+
since: '1.28.0',
|
|
2143
|
+
baseBitType: BitType.smartStandardRemarkTableNonNormative,
|
|
2144
|
+
},
|
|
1921
2145
|
[BitType.parameters]: { since: '1.18.0', baseBitType: BitType.table },
|
|
1922
2146
|
[BitType.toc]: {
|
|
1923
2147
|
since: '1.3.0',
|
|
@@ -2108,6 +2332,10 @@ const BITS = {
|
|
|
2108
2332
|
type: BitTagType.group,
|
|
2109
2333
|
configKey: GroupConfigKey.group_standardTags,
|
|
2110
2334
|
},
|
|
2335
|
+
{
|
|
2336
|
+
type: BitTagType.group,
|
|
2337
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
2338
|
+
},
|
|
2111
2339
|
{
|
|
2112
2340
|
type: BitTagType.group,
|
|
2113
2341
|
configKey: GroupConfigKey.group_resourceVideo,
|
|
@@ -2125,6 +2353,10 @@ const BITS = {
|
|
|
2125
2353
|
type: BitTagType.group,
|
|
2126
2354
|
configKey: GroupConfigKey.group_standardTags,
|
|
2127
2355
|
},
|
|
2356
|
+
{
|
|
2357
|
+
type: BitTagType.group,
|
|
2358
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
2359
|
+
},
|
|
2128
2360
|
{
|
|
2129
2361
|
type: BitTagType.group,
|
|
2130
2362
|
configKey: GroupConfigKey.group_resourceVideoEmbed,
|
|
@@ -2142,6 +2374,10 @@ const BITS = {
|
|
|
2142
2374
|
type: BitTagType.group,
|
|
2143
2375
|
configKey: GroupConfigKey.group_standardTags,
|
|
2144
2376
|
},
|
|
2377
|
+
{
|
|
2378
|
+
type: BitTagType.group,
|
|
2379
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
2380
|
+
},
|
|
2145
2381
|
{
|
|
2146
2382
|
type: BitTagType.group,
|
|
2147
2383
|
configKey: GroupConfigKey.group_resourceVideoLink,
|
|
@@ -2159,6 +2395,10 @@ const BITS = {
|
|
|
2159
2395
|
type: BitTagType.group,
|
|
2160
2396
|
configKey: GroupConfigKey.group_standardTags,
|
|
2161
2397
|
},
|
|
2398
|
+
{
|
|
2399
|
+
type: BitTagType.group,
|
|
2400
|
+
configKey: GroupConfigKey.group_resourceBitTags,
|
|
2401
|
+
},
|
|
2162
2402
|
{
|
|
2163
2403
|
type: BitTagType.group,
|
|
2164
2404
|
configKey: GroupConfigKey.group_resourceWebsiteLink,
|