@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
|
@@ -47,6 +47,10 @@ const BITS = {
|
|
|
47
47
|
type: BitTagType_1.BitTagType.group,
|
|
48
48
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
49
49
|
},
|
|
50
|
+
{
|
|
51
|
+
type: BitTagType_1.BitTagType.group,
|
|
52
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
53
|
+
},
|
|
50
54
|
{
|
|
51
55
|
type: BitTagType_1.BitTagType.group,
|
|
52
56
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAppLink,
|
|
@@ -81,6 +85,16 @@ const BITS = {
|
|
|
81
85
|
},
|
|
82
86
|
[BitType_1.BitType.standardArticleNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.article },
|
|
83
87
|
[BitType_1.BitType.standardArticleNonNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.article },
|
|
88
|
+
[BitType_1.BitType.smartStandardArticleNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardArticleNormative },
|
|
89
|
+
[BitType_1.BitType.smartStandardArticleNonNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardArticleNonNormative },
|
|
90
|
+
[BitType_1.BitType.smartStandardArticleNormativeCollapsible]: {
|
|
91
|
+
since: '1.28.0',
|
|
92
|
+
baseBitType: BitType_1.BitType.smartStandardArticleNormative,
|
|
93
|
+
},
|
|
94
|
+
[BitType_1.BitType.smartStandardArticleNonNormativeCollapsible]: {
|
|
95
|
+
since: '1.28.0',
|
|
96
|
+
baseBitType: BitType_1.BitType.smartStandardArticleNonNormative,
|
|
97
|
+
},
|
|
84
98
|
[BitType_1.BitType.statement]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
85
99
|
[BitType_1.BitType.pageArticle]: { since: '1.15.0', baseBitType: BitType_1.BitType.article },
|
|
86
100
|
[BitType_1.BitType.pageArticleAlt]: { since: '1.15.0', baseBitType: BitType_1.BitType.article },
|
|
@@ -158,6 +172,10 @@ const BITS = {
|
|
|
158
172
|
type: BitTagType_1.BitTagType.group,
|
|
159
173
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
160
174
|
},
|
|
175
|
+
{
|
|
176
|
+
type: BitTagType_1.BitTagType.group,
|
|
177
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
178
|
+
},
|
|
161
179
|
{
|
|
162
180
|
type: BitTagType_1.BitTagType.group,
|
|
163
181
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceArticleEmbed,
|
|
@@ -173,6 +191,10 @@ const BITS = {
|
|
|
173
191
|
type: BitTagType_1.BitTagType.group,
|
|
174
192
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
175
193
|
},
|
|
194
|
+
{
|
|
195
|
+
type: BitTagType_1.BitTagType.group,
|
|
196
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
197
|
+
},
|
|
176
198
|
{
|
|
177
199
|
type: BitTagType_1.BitTagType.group,
|
|
178
200
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceArticleLink,
|
|
@@ -188,6 +210,10 @@ const BITS = {
|
|
|
188
210
|
type: BitTagType_1.BitTagType.group,
|
|
189
211
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
190
212
|
},
|
|
213
|
+
{
|
|
214
|
+
type: BitTagType_1.BitTagType.group,
|
|
215
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
216
|
+
},
|
|
191
217
|
{
|
|
192
218
|
type: BitTagType_1.BitTagType.group,
|
|
193
219
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAudio,
|
|
@@ -203,6 +229,10 @@ const BITS = {
|
|
|
203
229
|
type: BitTagType_1.BitTagType.group,
|
|
204
230
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
205
231
|
},
|
|
232
|
+
{
|
|
233
|
+
type: BitTagType_1.BitTagType.group,
|
|
234
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
235
|
+
},
|
|
206
236
|
{
|
|
207
237
|
type: BitTagType_1.BitTagType.group,
|
|
208
238
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAudioEmbed,
|
|
@@ -218,6 +248,10 @@ const BITS = {
|
|
|
218
248
|
type: BitTagType_1.BitTagType.group,
|
|
219
249
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
220
250
|
},
|
|
251
|
+
{
|
|
252
|
+
type: BitTagType_1.BitTagType.group,
|
|
253
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
254
|
+
},
|
|
221
255
|
{
|
|
222
256
|
type: BitTagType_1.BitTagType.group,
|
|
223
257
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAudioLink,
|
|
@@ -573,6 +607,10 @@ const BITS = {
|
|
|
573
607
|
type: BitTagType_1.BitTagType.group,
|
|
574
608
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
575
609
|
},
|
|
610
|
+
{
|
|
611
|
+
type: BitTagType_1.BitTagType.group,
|
|
612
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
613
|
+
},
|
|
576
614
|
{
|
|
577
615
|
type: BitTagType_1.BitTagType.group,
|
|
578
616
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceDocument,
|
|
@@ -588,6 +626,10 @@ const BITS = {
|
|
|
588
626
|
type: BitTagType_1.BitTagType.group,
|
|
589
627
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
590
628
|
},
|
|
629
|
+
{
|
|
630
|
+
type: BitTagType_1.BitTagType.group,
|
|
631
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
632
|
+
},
|
|
591
633
|
{
|
|
592
634
|
type: BitTagType_1.BitTagType.group,
|
|
593
635
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceDocumentDownload,
|
|
@@ -603,6 +645,10 @@ const BITS = {
|
|
|
603
645
|
type: BitTagType_1.BitTagType.group,
|
|
604
646
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
605
647
|
},
|
|
648
|
+
{
|
|
649
|
+
type: BitTagType_1.BitTagType.group,
|
|
650
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
651
|
+
},
|
|
606
652
|
{
|
|
607
653
|
type: BitTagType_1.BitTagType.group,
|
|
608
654
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceDocumentEmbed,
|
|
@@ -618,6 +664,10 @@ const BITS = {
|
|
|
618
664
|
type: BitTagType_1.BitTagType.group,
|
|
619
665
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
620
666
|
},
|
|
667
|
+
{
|
|
668
|
+
type: BitTagType_1.BitTagType.group,
|
|
669
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
670
|
+
},
|
|
621
671
|
{
|
|
622
672
|
type: BitTagType_1.BitTagType.group,
|
|
623
673
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceDocumentLink,
|
|
@@ -677,6 +727,16 @@ const BITS = {
|
|
|
677
727
|
[BitType_1.BitType.exampleAlt]: { since: '1.16.0', baseBitType: BitType_1.BitType.example },
|
|
678
728
|
[BitType_1.BitType.standardExampleNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.example },
|
|
679
729
|
[BitType_1.BitType.standardExampleNonNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.example },
|
|
730
|
+
[BitType_1.BitType.smartStandardExampleNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardExampleNormative },
|
|
731
|
+
[BitType_1.BitType.smartStandardExampleNonNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardExampleNonNormative },
|
|
732
|
+
[BitType_1.BitType.smartStandardExampleNormativeCollapsible]: {
|
|
733
|
+
since: '1.28.0',
|
|
734
|
+
baseBitType: BitType_1.BitType.smartStandardExampleNormative,
|
|
735
|
+
},
|
|
736
|
+
[BitType_1.BitType.smartStandardExampleNonNormativeCollapsible]: {
|
|
737
|
+
since: '1.28.0',
|
|
738
|
+
baseBitType: BitType_1.BitType.smartStandardExampleNonNormative,
|
|
739
|
+
},
|
|
680
740
|
[BitType_1.BitType.appAiPrompt]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
681
741
|
[BitType_1.BitType.aiPrompt]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
682
742
|
[BitType_1.BitType.articleAi]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
@@ -727,12 +787,21 @@ const BITS = {
|
|
|
727
787
|
[BitType_1.BitType.langTeacherPronunciation]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
728
788
|
[BitType_1.BitType.list]: { since: '1.22.0', baseBitType: BitType_1.BitType.article },
|
|
729
789
|
[BitType_1.BitType.standardList]: { since: '1.22.0', baseBitType: BitType_1.BitType.article },
|
|
790
|
+
[BitType_1.BitType.smartStandardList]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardList },
|
|
791
|
+
[BitType_1.BitType.smartStandardListCollapsible]: { since: '1.28.0', baseBitType: BitType_1.BitType.smartStandardList },
|
|
730
792
|
[BitType_1.BitType.message]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
731
793
|
[BitType_1.BitType.newspaperArticle]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
732
794
|
[BitType_1.BitType.note]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
733
795
|
[BitType_1.BitType.noteAlt]: { since: '1.16.0', baseBitType: BitType_1.BitType.note },
|
|
734
796
|
[BitType_1.BitType.standardNoteNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.note },
|
|
735
797
|
[BitType_1.BitType.standardNoteNonNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.note },
|
|
798
|
+
[BitType_1.BitType.smartStandardNoteNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardNoteNormative },
|
|
799
|
+
[BitType_1.BitType.smartStandardNoteNonNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardNoteNonNormative },
|
|
800
|
+
[BitType_1.BitType.smartStandardNoteNormativeCollapsible]: { since: '1.28.0', baseBitType: BitType_1.BitType.smartStandardNoteNormative },
|
|
801
|
+
[BitType_1.BitType.smartStandardNoteNonNormativeCollapsible]: {
|
|
802
|
+
since: '1.28.0',
|
|
803
|
+
baseBitType: BitType_1.BitType.smartStandardNoteNonNormative,
|
|
804
|
+
},
|
|
736
805
|
[BitType_1.BitType.noteAi]: { since: '1.3.0', baseBitType: BitType_1.BitType.note },
|
|
737
806
|
[BitType_1.BitType.notebookArticle]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
738
807
|
[BitType_1.BitType.preparationNote]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
@@ -741,6 +810,16 @@ const BITS = {
|
|
|
741
810
|
[BitType_1.BitType.remarkAlt]: { since: '1.16.0', baseBitType: BitType_1.BitType.remark },
|
|
742
811
|
[BitType_1.BitType.standardRemarkNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.article },
|
|
743
812
|
[BitType_1.BitType.standardRemarkNonNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.article },
|
|
813
|
+
[BitType_1.BitType.smartStandardRemarkNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardRemarkNormative },
|
|
814
|
+
[BitType_1.BitType.smartStandardRemarkNonNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardRemarkNonNormative },
|
|
815
|
+
[BitType_1.BitType.smartStandardRemarkNormativeCollapsible]: {
|
|
816
|
+
since: '1.28.0',
|
|
817
|
+
baseBitType: BitType_1.BitType.smartStandardRemarkNormative,
|
|
818
|
+
},
|
|
819
|
+
[BitType_1.BitType.smartStandardRemarkNonNormativeCollapsible]: {
|
|
820
|
+
since: '1.28.0',
|
|
821
|
+
baseBitType: BitType_1.BitType.smartStandardRemarkNonNormative,
|
|
822
|
+
},
|
|
744
823
|
[BitType_1.BitType.selfAssessment]: { since: '1.3.0', baseBitType: BitType_1.BitType.article },
|
|
745
824
|
[BitType_1.BitType.separator]: { since: '1.4.15', baseBitType: BitType_1.BitType.article },
|
|
746
825
|
[BitType_1.BitType.separatorAlt]: { since: '1.16.0', baseBitType: BitType_1.BitType.separator },
|
|
@@ -1005,6 +1084,10 @@ const BITS = {
|
|
|
1005
1084
|
type: BitTagType_1.BitTagType.property,
|
|
1006
1085
|
configKey: PropertyConfigKey_1.PropertyConfigKey.backgroundWallpaper,
|
|
1007
1086
|
},
|
|
1087
|
+
{
|
|
1088
|
+
type: BitTagType_1.BitTagType.group,
|
|
1089
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1090
|
+
},
|
|
1008
1091
|
{
|
|
1009
1092
|
type: BitTagType_1.BitTagType.group,
|
|
1010
1093
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
|
|
@@ -1030,6 +1113,19 @@ const BITS = {
|
|
|
1030
1113
|
[BitType_1.BitType.imageFigureAlt]: { since: '1.16.0', baseBitType: BitType_1.BitType.imageFigure },
|
|
1031
1114
|
[BitType_1.BitType.standardImageFigureNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.imageFigure },
|
|
1032
1115
|
[BitType_1.BitType.standardImageFigureNonNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.imageFigure },
|
|
1116
|
+
[BitType_1.BitType.smartStandardImageFigureNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardImageFigureNormative },
|
|
1117
|
+
[BitType_1.BitType.smartStandardImageFigureNonNormative]: {
|
|
1118
|
+
since: '1.28.0',
|
|
1119
|
+
baseBitType: BitType_1.BitType.standardImageFigureNonNormative,
|
|
1120
|
+
},
|
|
1121
|
+
[BitType_1.BitType.smartStandardImageFigureNormativeCollapsible]: {
|
|
1122
|
+
since: '1.28.0',
|
|
1123
|
+
baseBitType: BitType_1.BitType.smartStandardImageFigureNormative,
|
|
1124
|
+
},
|
|
1125
|
+
[BitType_1.BitType.smartStandardImageFigureNonNormativeCollapsible]: {
|
|
1126
|
+
since: '1.28.0',
|
|
1127
|
+
baseBitType: BitType_1.BitType.smartStandardImageFigureNonNormative,
|
|
1128
|
+
},
|
|
1033
1129
|
[BitType_1.BitType.imageLandscape]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
|
|
1034
1130
|
[BitType_1.BitType.imageMood]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
|
|
1035
1131
|
[BitType_1.BitType.imagePortrait]: { since: '1.3.0', baseBitType: BitType_1.BitType.image },
|
|
@@ -1069,6 +1165,35 @@ const BITS = {
|
|
|
1069
1165
|
[BitType_1.BitType.standardTableImageNonNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.tableImage },
|
|
1070
1166
|
[BitType_1.BitType.standardRemarkTableImageNormative]: { since: '1.17.0', baseBitType: BitType_1.BitType.tableImage },
|
|
1071
1167
|
[BitType_1.BitType.standardRemarkTableImageNonNormative]: { since: '1.17.0', baseBitType: BitType_1.BitType.tableImage },
|
|
1168
|
+
[BitType_1.BitType.smartStandardTableImageNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardTableImageNormative },
|
|
1169
|
+
[BitType_1.BitType.smartStandardTableImageNonNormative]: {
|
|
1170
|
+
since: '1.28.0',
|
|
1171
|
+
baseBitType: BitType_1.BitType.standardTableImageNonNormative,
|
|
1172
|
+
},
|
|
1173
|
+
[BitType_1.BitType.smartStandardRemarkTableImageNormative]: {
|
|
1174
|
+
since: '1.28.0',
|
|
1175
|
+
baseBitType: BitType_1.BitType.standardRemarkTableImageNormative,
|
|
1176
|
+
},
|
|
1177
|
+
[BitType_1.BitType.smartStandardRemarkTableImageNonNormative]: {
|
|
1178
|
+
since: '1.28.0',
|
|
1179
|
+
baseBitType: BitType_1.BitType.standardRemarkTableImageNonNormative,
|
|
1180
|
+
},
|
|
1181
|
+
[BitType_1.BitType.smartStandardTableImageNormativeCollapsible]: {
|
|
1182
|
+
since: '1.28.0',
|
|
1183
|
+
baseBitType: BitType_1.BitType.smartStandardTableImageNormative,
|
|
1184
|
+
},
|
|
1185
|
+
[BitType_1.BitType.smartStandardTableImageNonNormativeCollapsible]: {
|
|
1186
|
+
since: '1.28.0',
|
|
1187
|
+
baseBitType: BitType_1.BitType.smartStandardTableImageNonNormative,
|
|
1188
|
+
},
|
|
1189
|
+
[BitType_1.BitType.smartStandardRemarkTableImageNormativeCollapsible]: {
|
|
1190
|
+
since: '1.28.0',
|
|
1191
|
+
baseBitType: BitType_1.BitType.smartStandardRemarkTableImageNormative,
|
|
1192
|
+
},
|
|
1193
|
+
[BitType_1.BitType.smartStandardRemarkTableImageNonNormativeCollapsible]: {
|
|
1194
|
+
since: '1.28.0',
|
|
1195
|
+
baseBitType: BitType_1.BitType.smartStandardRemarkTableImageNonNormative,
|
|
1196
|
+
},
|
|
1072
1197
|
[BitType_1.BitType.imageLink]: {
|
|
1073
1198
|
since: '1.3.0',
|
|
1074
1199
|
tags: [
|
|
@@ -1076,6 +1201,10 @@ const BITS = {
|
|
|
1076
1201
|
type: BitTagType_1.BitTagType.group,
|
|
1077
1202
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1078
1203
|
},
|
|
1204
|
+
{
|
|
1205
|
+
type: BitTagType_1.BitTagType.group,
|
|
1206
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1207
|
+
},
|
|
1079
1208
|
{
|
|
1080
1209
|
type: BitTagType_1.BitTagType.group,
|
|
1081
1210
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImageLink,
|
|
@@ -1091,6 +1220,10 @@ const BITS = {
|
|
|
1091
1220
|
type: BitTagType_1.BitTagType.group,
|
|
1092
1221
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1093
1222
|
},
|
|
1223
|
+
{
|
|
1224
|
+
type: BitTagType_1.BitTagType.group,
|
|
1225
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1226
|
+
},
|
|
1094
1227
|
{
|
|
1095
1228
|
type: BitTagType_1.BitTagType.group,
|
|
1096
1229
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceImage,
|
|
@@ -1109,6 +1242,10 @@ const BITS = {
|
|
|
1109
1242
|
type: BitTagType_1.BitTagType.group,
|
|
1110
1243
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1111
1244
|
},
|
|
1245
|
+
{
|
|
1246
|
+
type: BitTagType_1.BitTagType.group,
|
|
1247
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1248
|
+
},
|
|
1112
1249
|
{
|
|
1113
1250
|
// Combo resource
|
|
1114
1251
|
type: BitTagType_1.BitTagType.group,
|
|
@@ -1124,6 +1261,10 @@ const BITS = {
|
|
|
1124
1261
|
type: BitTagType_1.BitTagType.group,
|
|
1125
1262
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1126
1263
|
},
|
|
1264
|
+
{
|
|
1265
|
+
type: BitTagType_1.BitTagType.group,
|
|
1266
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1267
|
+
},
|
|
1127
1268
|
{
|
|
1128
1269
|
// Image resource
|
|
1129
1270
|
type: BitTagType_1.BitTagType.group,
|
|
@@ -1305,6 +1446,52 @@ const BITS = {
|
|
|
1305
1446
|
},
|
|
1306
1447
|
],
|
|
1307
1448
|
},
|
|
1449
|
+
[BitType_1.BitType.leRead]: { since: '1.27.0', baseBitType: BitType_1.BitType.lePreparationTask },
|
|
1450
|
+
[BitType_1.BitType.leTask]: { since: '1.27.0', baseBitType: BitType_1.BitType.lePreparationTask },
|
|
1451
|
+
[BitType_1.BitType.leTodo]: { since: '1.27.0', baseBitType: BitType_1.BitType.lePreparationTask },
|
|
1452
|
+
[BitType_1.BitType.leFollowUpTask]: { since: '1.27.0', baseBitType: BitType_1.BitType.lePreparationTask },
|
|
1453
|
+
[BitType_1.BitType.leFinishingTask]: { since: '1.27.0', baseBitType: BitType_1.BitType.lePreparationTask },
|
|
1454
|
+
[BitType_1.BitType.leAssignment]: { since: '1.27.0', baseBitType: BitType_1.BitType.lePreparationTask },
|
|
1455
|
+
[BitType_1.BitType.leWatchVideoEmbed]: {
|
|
1456
|
+
since: '1.27.0',
|
|
1457
|
+
baseBitType: BitType_1.BitType.learningPathBook,
|
|
1458
|
+
tags: [
|
|
1459
|
+
{
|
|
1460
|
+
type: BitTagType_1.BitTagType.property,
|
|
1461
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.activityType,
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
type: BitTagType_1.BitTagType.group,
|
|
1465
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1466
|
+
},
|
|
1467
|
+
{
|
|
1468
|
+
type: BitTagType_1.BitTagType.group,
|
|
1469
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceVideoEmbed,
|
|
1470
|
+
minCount: 1,
|
|
1471
|
+
},
|
|
1472
|
+
],
|
|
1473
|
+
resourceAttachmentAllowed: false,
|
|
1474
|
+
},
|
|
1475
|
+
[BitType_1.BitType.leListenAudioEmbed]: {
|
|
1476
|
+
since: '1.27.0',
|
|
1477
|
+
baseBitType: BitType_1.BitType.learningPathBook,
|
|
1478
|
+
tags: [
|
|
1479
|
+
{
|
|
1480
|
+
type: BitTagType_1.BitTagType.property,
|
|
1481
|
+
configKey: PropertyConfigKey_1.PropertyConfigKey.activityType,
|
|
1482
|
+
},
|
|
1483
|
+
{
|
|
1484
|
+
type: BitTagType_1.BitTagType.group,
|
|
1485
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1486
|
+
},
|
|
1487
|
+
{
|
|
1488
|
+
type: BitTagType_1.BitTagType.group,
|
|
1489
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceAudioEmbed,
|
|
1490
|
+
minCount: 1,
|
|
1491
|
+
},
|
|
1492
|
+
],
|
|
1493
|
+
resourceAttachmentAllowed: false,
|
|
1494
|
+
},
|
|
1308
1495
|
[BitType_1.BitType.listItem]: {
|
|
1309
1496
|
since: '1.22.0',
|
|
1310
1497
|
baseBitType: BitType_1.BitType.article,
|
|
@@ -1316,6 +1503,8 @@ const BITS = {
|
|
|
1316
1503
|
],
|
|
1317
1504
|
},
|
|
1318
1505
|
[BitType_1.BitType.standardListItem]: { since: '1.22.0', baseBitType: BitType_1.BitType.listItem },
|
|
1506
|
+
[BitType_1.BitType.smartStandardListItem]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardListItem },
|
|
1507
|
+
[BitType_1.BitType.smartStandardListItemCollapsible]: { since: '1.28.0', baseBitType: BitType_1.BitType.smartStandardListItem },
|
|
1319
1508
|
[BitType_1.BitType.mark]: {
|
|
1320
1509
|
since: '1.3.0',
|
|
1321
1510
|
tags: [
|
|
@@ -1723,6 +1912,10 @@ const BITS = {
|
|
|
1723
1912
|
type: BitTagType_1.BitTagType.group,
|
|
1724
1913
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1725
1914
|
},
|
|
1915
|
+
{
|
|
1916
|
+
type: BitTagType_1.BitTagType.group,
|
|
1917
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1918
|
+
},
|
|
1726
1919
|
{
|
|
1727
1920
|
// Combo resource
|
|
1728
1921
|
type: BitTagType_1.BitTagType.group,
|
|
@@ -1738,6 +1931,10 @@ const BITS = {
|
|
|
1738
1931
|
type: BitTagType_1.BitTagType.group,
|
|
1739
1932
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1740
1933
|
},
|
|
1934
|
+
{
|
|
1935
|
+
type: BitTagType_1.BitTagType.group,
|
|
1936
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1937
|
+
},
|
|
1741
1938
|
{
|
|
1742
1939
|
type: BitTagType_1.BitTagType.group,
|
|
1743
1940
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceStillImageFilmEmbed,
|
|
@@ -1753,6 +1950,10 @@ const BITS = {
|
|
|
1753
1950
|
type: BitTagType_1.BitTagType.group,
|
|
1754
1951
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
1755
1952
|
},
|
|
1953
|
+
{
|
|
1954
|
+
type: BitTagType_1.BitTagType.group,
|
|
1955
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
1956
|
+
},
|
|
1756
1957
|
{
|
|
1757
1958
|
type: BitTagType_1.BitTagType.group,
|
|
1758
1959
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceStillImageFilmLink,
|
|
@@ -1921,6 +2122,29 @@ const BITS = {
|
|
|
1921
2122
|
[BitType_1.BitType.standardTableNonNormative]: { since: '1.16.0', baseBitType: BitType_1.BitType.table },
|
|
1922
2123
|
[BitType_1.BitType.standardRemarkTableNormative]: { since: '1.17.0', baseBitType: BitType_1.BitType.table },
|
|
1923
2124
|
[BitType_1.BitType.standardRemarkTableNonNormative]: { since: '1.17.0', baseBitType: BitType_1.BitType.table },
|
|
2125
|
+
[BitType_1.BitType.smartStandardTableNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardTableNormative },
|
|
2126
|
+
[BitType_1.BitType.smartStandardTableNonNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardTableNonNormative },
|
|
2127
|
+
[BitType_1.BitType.smartStandardRemarkTableNormative]: { since: '1.28.0', baseBitType: BitType_1.BitType.standardRemarkTableNormative },
|
|
2128
|
+
[BitType_1.BitType.smartStandardRemarkTableNonNormative]: {
|
|
2129
|
+
since: '1.28.0',
|
|
2130
|
+
baseBitType: BitType_1.BitType.standardRemarkTableNonNormative,
|
|
2131
|
+
},
|
|
2132
|
+
[BitType_1.BitType.smartStandardTableNormativeCollapsible]: {
|
|
2133
|
+
since: '1.28.0',
|
|
2134
|
+
baseBitType: BitType_1.BitType.smartStandardTableNormative,
|
|
2135
|
+
},
|
|
2136
|
+
[BitType_1.BitType.smartStandardTableNonNormativeCollapsible]: {
|
|
2137
|
+
since: '1.28.0',
|
|
2138
|
+
baseBitType: BitType_1.BitType.smartStandardTableNonNormative,
|
|
2139
|
+
},
|
|
2140
|
+
[BitType_1.BitType.smartStandardRemarkTableNormativeCollapsible]: {
|
|
2141
|
+
since: '1.28.0',
|
|
2142
|
+
baseBitType: BitType_1.BitType.smartStandardRemarkTableNormative,
|
|
2143
|
+
},
|
|
2144
|
+
[BitType_1.BitType.smartStandardRemarkTableNonNormativeCollapsible]: {
|
|
2145
|
+
since: '1.28.0',
|
|
2146
|
+
baseBitType: BitType_1.BitType.smartStandardRemarkTableNonNormative,
|
|
2147
|
+
},
|
|
1924
2148
|
[BitType_1.BitType.parameters]: { since: '1.18.0', baseBitType: BitType_1.BitType.table },
|
|
1925
2149
|
[BitType_1.BitType.toc]: {
|
|
1926
2150
|
since: '1.3.0',
|
|
@@ -2111,6 +2335,10 @@ const BITS = {
|
|
|
2111
2335
|
type: BitTagType_1.BitTagType.group,
|
|
2112
2336
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2113
2337
|
},
|
|
2338
|
+
{
|
|
2339
|
+
type: BitTagType_1.BitTagType.group,
|
|
2340
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
2341
|
+
},
|
|
2114
2342
|
{
|
|
2115
2343
|
type: BitTagType_1.BitTagType.group,
|
|
2116
2344
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceVideo,
|
|
@@ -2128,6 +2356,10 @@ const BITS = {
|
|
|
2128
2356
|
type: BitTagType_1.BitTagType.group,
|
|
2129
2357
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2130
2358
|
},
|
|
2359
|
+
{
|
|
2360
|
+
type: BitTagType_1.BitTagType.group,
|
|
2361
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
2362
|
+
},
|
|
2131
2363
|
{
|
|
2132
2364
|
type: BitTagType_1.BitTagType.group,
|
|
2133
2365
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceVideoEmbed,
|
|
@@ -2145,6 +2377,10 @@ const BITS = {
|
|
|
2145
2377
|
type: BitTagType_1.BitTagType.group,
|
|
2146
2378
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2147
2379
|
},
|
|
2380
|
+
{
|
|
2381
|
+
type: BitTagType_1.BitTagType.group,
|
|
2382
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
2383
|
+
},
|
|
2148
2384
|
{
|
|
2149
2385
|
type: BitTagType_1.BitTagType.group,
|
|
2150
2386
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceVideoLink,
|
|
@@ -2162,6 +2398,10 @@ const BITS = {
|
|
|
2162
2398
|
type: BitTagType_1.BitTagType.group,
|
|
2163
2399
|
configKey: GroupConfigKey_1.GroupConfigKey.group_standardTags,
|
|
2164
2400
|
},
|
|
2401
|
+
{
|
|
2402
|
+
type: BitTagType_1.BitTagType.group,
|
|
2403
|
+
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceBitTags,
|
|
2404
|
+
},
|
|
2165
2405
|
{
|
|
2166
2406
|
type: BitTagType_1.BitTagType.group,
|
|
2167
2407
|
configKey: GroupConfigKey_1.GroupConfigKey.group_resourceWebsiteLink,
|