@xpack/doxygen2docusaurus 2.1.0 → 2.2.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/README.md +2 -1
- package/bin/doxygen2docusaurus.js +4 -4
- package/dist/docusaurus/renderers/conceptparts.d.ts +9 -0
- package/dist/docusaurus/renderers/conceptparts.d.ts.map +1 -0
- package/dist/docusaurus/renderers/conceptparts.js +21 -0
- package/dist/docusaurus/renderers/conceptparts.js.map +1 -0
- package/dist/docusaurus/renderers/renderers.d.ts.map +1 -1
- package/dist/docusaurus/renderers/renderers.js +11 -2
- package/dist/docusaurus/renderers/renderers.js.map +1 -1
- package/dist/docusaurus/view-model/concepts-vm.d.ts +1 -0
- package/dist/docusaurus/view-model/concepts-vm.d.ts.map +1 -1
- package/dist/docusaurus/view-model/concepts-vm.js +11 -3
- package/dist/docusaurus/view-model/concepts-vm.js.map +1 -1
- package/dist/docusaurus/view-model/namespaces-vm.d.ts +1 -0
- package/dist/docusaurus/view-model/namespaces-vm.d.ts.map +1 -1
- package/dist/docusaurus/view-model/namespaces-vm.js +8 -2
- package/dist/docusaurus/view-model/namespaces-vm.js.map +1 -1
- package/dist/docusaurus/view-model/pages-vm.d.ts.map +1 -1
- package/dist/docusaurus/view-model/pages-vm.js +39 -0
- package/dist/docusaurus/view-model/pages-vm.js.map +1 -1
- package/dist/doxygen/data-model/compounds/compounddef-dm.d.ts +2 -0
- package/dist/doxygen/data-model/compounds/compounddef-dm.d.ts.map +1 -1
- package/dist/doxygen/data-model/compounds/compounddef-dm.js +5 -0
- package/dist/doxygen/data-model/compounds/compounddef-dm.js.map +1 -1
- package/dist/doxygen/data-model/compounds/concepts-dm.d.ts +23 -0
- package/dist/doxygen/data-model/compounds/concepts-dm.d.ts.map +1 -0
- package/dist/doxygen/data-model/compounds/concepts-dm.js +94 -0
- package/dist/doxygen/data-model/compounds/concepts-dm.js.map +1 -0
- package/dist/doxygen/data-model/compounds/descriptiontype-dm.d.ts.map +1 -1
- package/dist/doxygen/data-model/compounds/descriptiontype-dm.js.map +1 -1
- package/dist/doxygen/data-model/compounds/memberdeftype-dm.d.ts.map +1 -1
- package/dist/doxygen/data-model/compounds/memberdeftype-dm.js.map +1 -1
- package/dist/doxygen/data-model/compounds/requirements-dm.d.ts +2 -0
- package/dist/doxygen/data-model/compounds/requirements-dm.d.ts.map +1 -0
- package/dist/doxygen/data-model/compounds/requirements-dm.js +2 -0
- package/dist/doxygen/data-model/compounds/requirements-dm.js.map +1 -0
- package/dist/doxygen/data-model/compounds/tableofcontentstype-dm.d.ts.map +1 -1
- package/dist/doxygen/data-model/compounds/tableofcontentstype-dm.js.map +1 -1
- package/dist/doxygen/data-model/data-model.d.ts.map +1 -1
- package/dist/doxygen/data-model/data-model.js +4 -3
- package/dist/doxygen/data-model/data-model.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -1
- package/dist/index.js.map +1 -1
- package/package.json +8 -5
- package/src/cli/main.ts +4 -4
- package/src/docusaurus/cli-options.ts +4 -4
- package/src/docusaurus/generator.ts +4 -4
- package/src/docusaurus/renderers/conceptparts.ts +119 -0
- package/src/docusaurus/renderers/descriptiontype.ts +4 -4
- package/src/docusaurus/renderers/docinternalstype.ts +4 -4
- package/src/docusaurus/renderers/doclisttype.ts +4 -4
- package/src/docusaurus/renderers/doctabletype.ts +4 -4
- package/src/docusaurus/renderers/doctitletype.ts +4 -4
- package/src/docusaurus/renderers/docvariablelisttype.ts +4 -4
- package/src/docusaurus/renderers/docxrefsecttype.ts +4 -4
- package/src/docusaurus/renderers/element-renderer-base.ts +4 -4
- package/src/docusaurus/renderers/inctype.ts +4 -4
- package/src/docusaurus/renderers/linkedtexttype.ts +4 -4
- package/src/docusaurus/renderers/listingtype.ts +4 -4
- package/src/docusaurus/renderers/paramtype.ts +4 -4
- package/src/docusaurus/renderers/referencetype.ts +4 -4
- package/src/docusaurus/renderers/reftexttype.ts +4 -4
- package/src/docusaurus/renderers/reftype.ts +4 -4
- package/src/docusaurus/renderers/renderers.ts +66 -10
- package/src/docusaurus/renderers/substringtype.ts +4 -4
- package/src/docusaurus/renderers/tableofcontentstype.ts +4 -4
- package/src/docusaurus/types.ts +4 -4
- package/src/docusaurus/utils.ts +4 -4
- package/src/docusaurus/view-model/classes-vm.ts +4 -4
- package/src/docusaurus/view-model/collection-base.ts +4 -4
- package/src/docusaurus/view-model/compound-base-vm.ts +4 -4
- package/src/docusaurus/view-model/concepts-vm.ts +37 -7
- package/src/docusaurus/view-model/description-anchors.ts +4 -4
- package/src/docusaurus/view-model/files-and-folders-vm.ts +4 -4
- package/src/docusaurus/view-model/groups-vm.ts +4 -4
- package/src/docusaurus/view-model/members-vm.ts +4 -4
- package/src/docusaurus/view-model/namespaces-vm.ts +25 -6
- package/src/docusaurus/view-model/options.ts +4 -4
- package/src/docusaurus/view-model/pages-vm.ts +53 -6
- package/src/docusaurus/view-model/tree-entries-vm.ts +4 -4
- package/src/docusaurus/view-model/view-model.ts +4 -4
- package/src/docusaurus/workspace.ts +4 -4
- package/src/doxygen/data-model/compounds/compounddef-dm.ts +78 -4
- package/src/doxygen/data-model/compounds/compoundreftype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/concepts-dm.ts +362 -0
- package/src/doxygen/data-model/compounds/descriptiontype-dm.ts +12 -5
- package/src/doxygen/data-model/compounds/docvarlistentrytype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/doxygentype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/enumvaluetype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/inctype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/linkedtexttype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/listofallmemberstype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/locationtype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/memberdeftype-dm.ts +11 -4
- package/src/doxygen/data-model/compounds/memberreftype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/membertype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/paramtype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/referencetype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/reftexttype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/reftype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/reimplementtype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/requirements-dm.ts +50 -0
- package/src/doxygen/data-model/compounds/sectiondeftype-dm.ts +4 -4
- package/src/doxygen/data-model/compounds/tableofcontentstype-dm.ts +6 -5
- package/src/doxygen/data-model/compounds/templateparamlisttype-dm.ts +4 -4
- package/src/doxygen/data-model/data-model.ts +9 -8
- package/src/doxygen/data-model/doxyfile/doxyfileoptiontype-dm.ts +4 -4
- package/src/doxygen/data-model/doxyfile/doxyfiletype-dm.ts +4 -4
- package/src/doxygen/data-model/doxygen-xml-parser.ts +4 -4
- package/src/doxygen/data-model/index/indexcompoundtype-dm.ts +4 -4
- package/src/doxygen/data-model/index/indexdoxygentype-dm.ts +4 -4
- package/src/doxygen/data-model/index/indexmembertype-dm.ts +4 -4
- package/src/doxygen/data-model/types.ts +4 -4
- package/src/doxygen/data-model/xsds/README.md +3 -3
- package/src/doxygen/data-model/xsds/compound.xsd +91 -2
- package/src/doxygen/data-model/xsds/doxyfile.xsd +11 -1
- package/src/doxygen/data-model/xsds/index.xsd +3 -1
- package/src/index.ts +10 -4
- package/src/tsconfig.json +3 -1
|
@@ -38,14 +38,18 @@
|
|
|
38
38
|
<xsd:element name="tableofcontents" type="tableofcontentsType" minOccurs="0" maxOccurs="1" />
|
|
39
39
|
<xsd:element name="requiresclause" type="linkedTextType" minOccurs="0" />
|
|
40
40
|
<xsd:element name="initializer" type="linkedTextType" minOccurs="0" />
|
|
41
|
+
<xsd:element name="conceptparts" type="conceptParts" minOccurs="0" />
|
|
41
42
|
<xsd:element name="briefdescription" type="descriptionType" minOccurs="0" />
|
|
42
43
|
<xsd:element name="detaileddescription" type="descriptionType" minOccurs="0" />
|
|
43
44
|
<xsd:element name="exports" type="exportsType" minOccurs="0" maxOccurs="1"/>
|
|
44
45
|
<xsd:element name="inheritancegraph" type="graphType" minOccurs="0" />
|
|
45
46
|
<xsd:element name="collaborationgraph" type="graphType" minOccurs="0" />
|
|
46
47
|
<xsd:element name="programlisting" type="listingType" minOccurs="0" />
|
|
48
|
+
<xsd:element name="satisfies" type="requirementRefsType" minOccurs="0" maxOccurs="1" />
|
|
49
|
+
<xsd:element name="verifies" type="requirementRefsType" minOccurs="0" maxOccurs="1" />
|
|
47
50
|
<xsd:element name="location" type="locationType" minOccurs="0" />
|
|
48
51
|
<xsd:element name="listofallmembers" type="listofallmembersType" minOccurs="0" />
|
|
52
|
+
<xsd:element name="requirementslist" type="requirementslistType" minOccurs="0" />
|
|
49
53
|
</xsd:sequence>
|
|
50
54
|
<xsd:attribute name="id" type="xsd:string" />
|
|
51
55
|
<xsd:attribute name="kind" type="DoxCompoundKind" />
|
|
@@ -63,6 +67,24 @@
|
|
|
63
67
|
</xsd:sequence>
|
|
64
68
|
</xsd:complexType>
|
|
65
69
|
|
|
70
|
+
<xsd:complexType name="requirementslistType">
|
|
71
|
+
<xsd:sequence>
|
|
72
|
+
<xsd:element name="requirement" type="requirementType" minOccurs="1" maxOccurs="unbounded" />
|
|
73
|
+
</xsd:sequence>
|
|
74
|
+
</xsd:complexType>
|
|
75
|
+
|
|
76
|
+
<xsd:complexType name="requirementType">
|
|
77
|
+
<xsd:sequence>
|
|
78
|
+
<xsd:element name="title" type="docTitleType" />
|
|
79
|
+
<xsd:element name="location" type="locationType" />
|
|
80
|
+
<xsd:element name="satisfiedby" type="compoundRefType" minOccurs="0" maxOccurs="unbounded" />
|
|
81
|
+
<xsd:element name="verifiedby" type="compoundRefType" minOccurs="0" maxOccurs="unbounded" />
|
|
82
|
+
</xsd:sequence>
|
|
83
|
+
<xsd:attribute name="refid" type="xsd:string" />
|
|
84
|
+
<xsd:attribute name="tagfile" type="xsd:string" use="optional" />
|
|
85
|
+
<xsd:attribute name="page" type="xsd:string" use="optional" />
|
|
86
|
+
</xsd:complexType>
|
|
87
|
+
|
|
66
88
|
<xsd:complexType name="memberRefType">
|
|
67
89
|
<xsd:sequence>
|
|
68
90
|
<xsd:element name="scope" type="xsd:string" />
|
|
@@ -201,6 +223,8 @@
|
|
|
201
223
|
<xsd:element name="requiresclause" type="linkedTextType" minOccurs="0" />
|
|
202
224
|
<xsd:element name="initializer" type="linkedTextType" minOccurs="0" />
|
|
203
225
|
<xsd:element name="exceptions" type="linkedTextType" minOccurs="0" />
|
|
226
|
+
<xsd:element name="satisfies" type="requirementRefsType" minOccurs="0" maxOccurs="1" />
|
|
227
|
+
<xsd:element name="verifies" type="requirementRefsType" minOccurs="0" maxOccurs="1" />
|
|
204
228
|
<xsd:element name="briefdescription" type="descriptionType" minOccurs="0" />
|
|
205
229
|
<xsd:element name="detaileddescription" type="descriptionType" minOccurs="0" />
|
|
206
230
|
<xsd:element name="inbodydescription" type="descriptionType" minOccurs="0" />
|
|
@@ -221,6 +245,7 @@
|
|
|
221
245
|
<xsd:attribute name="virt" type="DoxVirtualKind" use="optional"/>
|
|
222
246
|
<xsd:attribute name="volatile" type="DoxBool" use="optional"/>
|
|
223
247
|
<xsd:attribute name="mutable" type="DoxBool" use="optional"/>
|
|
248
|
+
<xsd:attribute name="thread_local" type="DoxBool" use="optional"/>
|
|
224
249
|
<xsd:attribute name="noexcept" type="DoxBool" use="optional"/>
|
|
225
250
|
<xsd:attribute name="noexceptexpression" type="xsd:string" use="optional"/>
|
|
226
251
|
<xsd:attribute name="nodiscard" type="DoxBool" use="optional"/>
|
|
@@ -292,6 +317,31 @@
|
|
|
292
317
|
</xsd:sequence>
|
|
293
318
|
</xsd:complexType>
|
|
294
319
|
|
|
320
|
+
<xsd:complexType name="conceptParts">
|
|
321
|
+
<xsd:sequence>
|
|
322
|
+
<xsd:choice minOccurs="0" maxOccurs="unbounded">
|
|
323
|
+
<xsd:element name="codepart" type="conceptCodePart"/>
|
|
324
|
+
<xsd:element name="docpart" type="conceptDocPart"/>
|
|
325
|
+
</xsd:choice>
|
|
326
|
+
</xsd:sequence>
|
|
327
|
+
</xsd:complexType>
|
|
328
|
+
|
|
329
|
+
<xsd:complexType name="conceptCodePart">
|
|
330
|
+
<xsd:sequence>
|
|
331
|
+
<xsd:element name="programlisting" type="listingType"/>
|
|
332
|
+
</xsd:sequence>
|
|
333
|
+
<xsd:attribute name="line" type="xsd:integer"/>
|
|
334
|
+
</xsd:complexType>
|
|
335
|
+
|
|
336
|
+
<xsd:complexType name="conceptDocPart">
|
|
337
|
+
<xsd:complexContent>
|
|
338
|
+
<xsd:extension base="descriptionType">
|
|
339
|
+
<xsd:attribute name="line" type="xsd:integer"/>
|
|
340
|
+
<xsd:attribute name="col" type="xsd:integer"/>
|
|
341
|
+
</xsd:extension>
|
|
342
|
+
</xsd:complexContent>
|
|
343
|
+
</xsd:complexType>
|
|
344
|
+
|
|
295
345
|
<xsd:complexType name="paramType">
|
|
296
346
|
<xsd:sequence>
|
|
297
347
|
<xsd:element name="attributes" type="xsd:string" minOccurs="0" />
|
|
@@ -496,7 +546,7 @@
|
|
|
496
546
|
<xsd:complexType name="docInternalS5Type" mixed="true">
|
|
497
547
|
<xsd:sequence>
|
|
498
548
|
<xsd:element name="para" type="docParaType" minOccurs="0" maxOccurs="unbounded" />
|
|
499
|
-
<xsd:element name="
|
|
549
|
+
<xsd:element name="sect6" type="docSect6Type" minOccurs="0" maxOccurs="unbounded" />
|
|
500
550
|
</xsd:sequence>
|
|
501
551
|
</xsd:complexType>
|
|
502
552
|
|
|
@@ -532,6 +582,7 @@
|
|
|
532
582
|
<xsd:element name="dot" type="docDotMscType" />
|
|
533
583
|
<xsd:element name="msc" type="docDotMscType" />
|
|
534
584
|
<xsd:element name="plantuml" type="docPlantumlType" />
|
|
585
|
+
<xsd:element name="mermaid" type="docMermaidType" />
|
|
535
586
|
<xsd:element name="anchor" type="docAnchorType" />
|
|
536
587
|
<xsd:element name="formula" type="docFormulaType" />
|
|
537
588
|
<xsd:element name="ref" type="docRefTextType" />
|
|
@@ -826,6 +877,7 @@
|
|
|
826
877
|
<xsd:element name="dot" type="docDotMscType" />
|
|
827
878
|
<xsd:element name="msc" type="docDotMscType" />
|
|
828
879
|
<xsd:element name="plantuml" type="docPlantumlType" />
|
|
880
|
+
<xsd:element name="mermaid" type="docMermaidType" />
|
|
829
881
|
<xsd:element name="anchor" type="docAnchorType" />
|
|
830
882
|
<xsd:element name="formula" type="docFormulaType" />
|
|
831
883
|
<xsd:element name="ref" type="docRefTextType" />
|
|
@@ -1099,6 +1151,7 @@
|
|
|
1099
1151
|
<xsd:element name="mscfile" type="docImageFileType" />
|
|
1100
1152
|
<xsd:element name="diafile" type="docImageFileType" />
|
|
1101
1153
|
<xsd:element name="plantumlfile" type="docImageFileType" />
|
|
1154
|
+
<xsd:element name="mermaidfile" type="docImageFileType" />
|
|
1102
1155
|
<xsd:element name="toclist" type="docTocListType" />
|
|
1103
1156
|
<xsd:element name="language" type="docLanguageType" />
|
|
1104
1157
|
<xsd:element name="parameterlist" type="docParamListType" />
|
|
@@ -1276,6 +1329,14 @@
|
|
|
1276
1329
|
<xsd:attribute name="engine" type="DoxPlantumlEngine" use="optional"/>
|
|
1277
1330
|
</xsd:complexType>
|
|
1278
1331
|
|
|
1332
|
+
<xsd:complexType name="docMermaidType" mixed="true">
|
|
1333
|
+
<xsd:group ref="docTitleCmdGroup" minOccurs="0" maxOccurs="unbounded" />
|
|
1334
|
+
<xsd:attribute name="name" type="xsd:string" use="optional"/>
|
|
1335
|
+
<xsd:attribute name="width" type="xsd:string" use="optional"/>
|
|
1336
|
+
<xsd:attribute name="height" type="xsd:string" use="optional"/>
|
|
1337
|
+
<xsd:attribute name="caption" type="xsd:string" use="optional"/>
|
|
1338
|
+
</xsd:complexType>
|
|
1339
|
+
|
|
1279
1340
|
<xsd:complexType name="docTocItemType" mixed="true">
|
|
1280
1341
|
<xsd:group ref="docTitleCmdGroup" minOccurs="0" maxOccurs="unbounded" />
|
|
1281
1342
|
<xsd:attribute name="id" type="xsd:string" />
|
|
@@ -1375,9 +1436,16 @@
|
|
|
1375
1436
|
</xsd:sequence>
|
|
1376
1437
|
</xsd:complexType>
|
|
1377
1438
|
|
|
1439
|
+
<xsd:complexType name="tableofcontentsNameType">
|
|
1440
|
+
<xsd:sequence>
|
|
1441
|
+
<xsd:element name="para" type="docParaType" minOccurs="0" maxOccurs="unbounded" />
|
|
1442
|
+
</xsd:sequence>
|
|
1443
|
+
</xsd:complexType>
|
|
1444
|
+
|
|
1378
1445
|
<xsd:complexType name="tableofcontentsKindType">
|
|
1379
1446
|
<xsd:sequence>
|
|
1380
|
-
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
1447
|
+
<xsd:element name="name" type="xsd:string" minOccurs="1" maxOccurs="1"/> <!-- obsolete, use docs instead! -->
|
|
1448
|
+
<xsd:element name="docs" type="tableofcontentsNameType" minOccurs="1" maxOccurs="1"/>
|
|
1381
1449
|
<xsd:element name="reference" type="xsd:string" minOccurs="1" maxOccurs="1"/>
|
|
1382
1450
|
<xsd:element name="tableofcontents" type="tableofcontentsType" minOccurs="0" maxOccurs="unbounded" />
|
|
1383
1451
|
</xsd:sequence>
|
|
@@ -1388,6 +1456,20 @@
|
|
|
1388
1456
|
<xsd:attribute name="unicode" type="xsd:string"/>
|
|
1389
1457
|
</xsd:complexType>
|
|
1390
1458
|
|
|
1459
|
+
<xsd:complexType name="requirementRefsType">
|
|
1460
|
+
<xsd:sequence>
|
|
1461
|
+
<xsd:element name="requirement" type="requirementRefType" minOccurs="1" maxOccurs="unbounded"/>
|
|
1462
|
+
</xsd:sequence>
|
|
1463
|
+
</xsd:complexType>
|
|
1464
|
+
|
|
1465
|
+
<xsd:complexType name="requirementRefType">
|
|
1466
|
+
<xsd:simpleContent>
|
|
1467
|
+
<xsd:extension base="xsd:string">
|
|
1468
|
+
<xsd:attribute name="refid" type="xsd:string" use="required"/>
|
|
1469
|
+
</xsd:extension>
|
|
1470
|
+
</xsd:simpleContent>
|
|
1471
|
+
</xsd:complexType>
|
|
1472
|
+
|
|
1391
1473
|
<!-- Simple types -->
|
|
1392
1474
|
|
|
1393
1475
|
<xsd:simpleType name="DoxBool">
|
|
@@ -1501,6 +1583,8 @@
|
|
|
1501
1583
|
<xsd:enumeration value="example" />
|
|
1502
1584
|
<xsd:enumeration value="dir" />
|
|
1503
1585
|
<xsd:enumeration value="concept" />
|
|
1586
|
+
<xsd:enumeration value="requirement" />
|
|
1587
|
+
<xsd:enumeration value="requirements" />
|
|
1504
1588
|
</xsd:restriction>
|
|
1505
1589
|
</xsd:simpleType>
|
|
1506
1590
|
|
|
@@ -1632,6 +1716,11 @@
|
|
|
1632
1716
|
<xsd:enumeration value="regex"/>
|
|
1633
1717
|
<xsd:enumeration value="ebnf"/>
|
|
1634
1718
|
<xsd:enumeration value="files"/>
|
|
1719
|
+
<xsd:enumeration value="chart"/>
|
|
1720
|
+
<xsd:enumeration value="nwdiag"/>
|
|
1721
|
+
<xsd:enumeration value="packetdiag"/>
|
|
1722
|
+
<xsd:enumeration value="project"/>
|
|
1723
|
+
<xsd:enumeration value="sprites"/>
|
|
1635
1724
|
</xsd:restriction>
|
|
1636
1725
|
</xsd:simpleType>
|
|
1637
1726
|
|
|
@@ -64,6 +64,7 @@
|
|
|
64
64
|
<xsd:enumeration value="OPTIMIZE_OUTPUT_SLICE"/>
|
|
65
65
|
<xsd:enumeration value="EXTENSION_MAPPING"/>
|
|
66
66
|
<xsd:enumeration value="MARKDOWN_SUPPORT"/>
|
|
67
|
+
<xsd:enumeration value="MARKDOWN_STRICT"/>
|
|
67
68
|
<xsd:enumeration value="TOC_INCLUDE_HEADINGS"/>
|
|
68
69
|
<xsd:enumeration value="MARKDOWN_ID_STYLE"/>
|
|
69
70
|
<xsd:enumeration value="AUTOLINK_SUPPORT"/>
|
|
@@ -114,6 +115,8 @@
|
|
|
114
115
|
<xsd:enumeration value="GENERATE_TESTLIST"/>
|
|
115
116
|
<xsd:enumeration value="GENERATE_BUGLIST"/>
|
|
116
117
|
<xsd:enumeration value="GENERATE_DEPRECATEDLIST"/>
|
|
118
|
+
<xsd:enumeration value="GENERATE_REQUIREMENTS"/>
|
|
119
|
+
<xsd:enumeration value="REQ_TRACEABILITY_INFO"/>
|
|
117
120
|
<xsd:enumeration value="ENABLED_SECTIONS"/>
|
|
118
121
|
<xsd:enumeration value="MAX_INITIALIZER_LINES"/>
|
|
119
122
|
<xsd:enumeration value="SHOW_USED_FILES"/>
|
|
@@ -214,6 +217,7 @@
|
|
|
214
217
|
<xsd:enumeration value="ECLIPSE_DOC_ID"/>
|
|
215
218
|
<xsd:enumeration value="DISABLE_INDEX"/>
|
|
216
219
|
<xsd:enumeration value="GENERATE_TREEVIEW"/>
|
|
220
|
+
<xsd:enumeration value="PAGE_OUTLINE_PANEL"/>
|
|
217
221
|
<xsd:enumeration value="FULL_SIDEBAR"/>
|
|
218
222
|
<xsd:enumeration value="ENUM_VALUES_PER_LINE"/>
|
|
219
223
|
<xsd:enumeration value="SHOW_ENUM_VALUES"/>
|
|
@@ -297,6 +301,7 @@
|
|
|
297
301
|
<xsd:enumeration value="HIDE_UNDOC_RELATIONS"/>
|
|
298
302
|
<xsd:enumeration value="HAVE_DOT"/>
|
|
299
303
|
<xsd:enumeration value="DOT_NUM_THREADS"/>
|
|
304
|
+
<xsd:enumeration value="DOT_BATCH_SIZE"/>
|
|
300
305
|
<xsd:enumeration value="DOT_COMMON_ATTR"/>
|
|
301
306
|
<xsd:enumeration value="DOT_EDGE_ATTR"/>
|
|
302
307
|
<xsd:enumeration value="DOT_NODE_ATTR"/>
|
|
@@ -306,6 +311,7 @@
|
|
|
306
311
|
<xsd:enumeration value="GROUP_GRAPHS"/>
|
|
307
312
|
<xsd:enumeration value="UML_LOOK"/>
|
|
308
313
|
<xsd:enumeration value="UML_LIMIT_NUM_FIELDS"/>
|
|
314
|
+
<xsd:enumeration value="UML_MAX_EDGE_LABELS"/>
|
|
309
315
|
<xsd:enumeration value="DOT_UML_DETAILS"/>
|
|
310
316
|
<xsd:enumeration value="DOT_WRAP_THRESHOLD"/>
|
|
311
317
|
<xsd:enumeration value="TEMPLATE_RELATIONS"/>
|
|
@@ -326,9 +332,13 @@
|
|
|
326
332
|
<xsd:enumeration value="PLANTUML_CFG_FILE"/>
|
|
327
333
|
<xsd:enumeration value="PLANTUML_INCLUDE_PATH"/>
|
|
328
334
|
<xsd:enumeration value="PLANTUMLFILE_DIRS"/>
|
|
335
|
+
<xsd:enumeration value="MERMAID_PATH"/>
|
|
336
|
+
<xsd:enumeration value="MERMAID_CONFIG_FILE"/>
|
|
337
|
+
<xsd:enumeration value="MERMAID_RENDER_MODE"/>
|
|
338
|
+
<xsd:enumeration value="MERMAID_JS_URL"/>
|
|
339
|
+
<xsd:enumeration value="MERMAIDFILE_DIRS"/>
|
|
329
340
|
<xsd:enumeration value="DOT_GRAPH_MAX_NODES"/>
|
|
330
341
|
<xsd:enumeration value="MAX_DOT_GRAPH_DEPTH"/>
|
|
331
|
-
<xsd:enumeration value="DOT_MULTI_TARGETS"/>
|
|
332
342
|
<xsd:enumeration value="GENERATE_LEGEND"/>
|
|
333
343
|
<xsd:enumeration value="DOT_CLEANUP"/>
|
|
334
344
|
<xsd:enumeration value="MSCGEN_TOOL"/>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<xsd:attribute name="refid" type="xsd:string" use="required"/>
|
|
29
29
|
<xsd:attribute name="kind" type="MemberKind" use="required"/>
|
|
30
30
|
</xsd:complexType>
|
|
31
|
-
|
|
31
|
+
|
|
32
32
|
<xsd:simpleType name="CompoundKind">
|
|
33
33
|
<xsd:restriction base="xsd:string">
|
|
34
34
|
<xsd:enumeration value="class"/>
|
|
@@ -47,6 +47,8 @@
|
|
|
47
47
|
<xsd:enumeration value="type"/>
|
|
48
48
|
<xsd:enumeration value="concept"/>
|
|
49
49
|
<xsd:enumeration value="module"/>
|
|
50
|
+
<xsd:enumeration value="requirement"/>
|
|
51
|
+
<xsd:enumeration value="requirements"/>
|
|
50
52
|
</xsd:restriction>
|
|
51
53
|
</xsd:simpleType>
|
|
52
54
|
|
package/src/index.ts
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
* This file is part of the xPack project (http://xpack.github.io).
|
|
3
3
|
* Copyright (c) 2025-2026 Liviu Ionescu. All rights reserved.
|
|
4
4
|
*
|
|
5
|
-
* Permission to use, copy, modify, and/or distribute this software
|
|
6
|
-
*
|
|
5
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
|
6
|
+
* purpose is hereby granted, under the terms of the MIT license.
|
|
7
7
|
*
|
|
8
|
-
* If a copy of the license was not distributed with this file, it can
|
|
9
|
-
*
|
|
8
|
+
* If a copy of the license was not distributed with this file, it can be
|
|
9
|
+
* obtained from https://opensource.org/licenses/mit.
|
|
10
10
|
*/
|
|
11
11
|
|
|
12
12
|
/**
|
|
@@ -159,6 +159,10 @@ import {
|
|
|
159
159
|
EnumValueDataModel,
|
|
160
160
|
AbstractEnumValueType,
|
|
161
161
|
} from './doxygen/data-model/compounds/enumvaluetype-dm.js'
|
|
162
|
+
import {
|
|
163
|
+
AbstractConceptParts,
|
|
164
|
+
ConceptPartsDataModel,
|
|
165
|
+
} from './doxygen/data-model/compounds/concepts-dm.js'
|
|
162
166
|
|
|
163
167
|
export * from './cli/main.js'
|
|
164
168
|
|
|
@@ -227,6 +231,8 @@ export {
|
|
|
227
231
|
AbstractHighlightType,
|
|
228
232
|
AbstractReferenceType,
|
|
229
233
|
AbstractReimplementType,
|
|
234
|
+
AbstractConceptParts,
|
|
235
|
+
ConceptPartsDataModel,
|
|
230
236
|
|
|
231
237
|
// Description types
|
|
232
238
|
BriefDescriptionDataModel,
|
package/src/tsconfig.json
CHANGED