@qualcomm-ui/mdx-vite 3.5.0 → 3.6.1
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/cli.js +6 -2
- package/dist/cli.js.map +2 -2
- package/dist/docs-plugin/markdown/knowledge/plugins/doc-props-plugin.d.ts +2 -0
- package/dist/docs-plugin/markdown/knowledge/plugins/doc-props-plugin.d.ts.map +1 -1
- package/dist/docs-plugin/markdown/knowledge/section-extractor.d.ts.map +1 -1
- package/dist/docs-plugin/markdown/knowledge/types.d.ts +1 -0
- package/dist/docs-plugin/markdown/knowledge/types.d.ts.map +1 -1
- package/dist/index.js +19 -4
- package/dist/index.js.map +2 -2
- package/dist/tsbuildinfo +1 -1
- package/package.json +5 -5
package/dist/cli.js
CHANGED
|
@@ -4858,8 +4858,12 @@ var SectionExtractor = class {
|
|
|
4858
4858
|
if (node.type === "code") {
|
|
4859
4859
|
const codeNode = node;
|
|
4860
4860
|
if (codeNode.data?.typeDocProps) {
|
|
4861
|
-
const { name, props } = codeNode.data.typeDocProps;
|
|
4862
|
-
sectionTypes.push({
|
|
4861
|
+
const { name, props, since } = codeNode.data.typeDocProps;
|
|
4862
|
+
sectionTypes.push({
|
|
4863
|
+
props,
|
|
4864
|
+
since,
|
|
4865
|
+
type: name
|
|
4866
|
+
});
|
|
4863
4867
|
}
|
|
4864
4868
|
codeExamples.push({
|
|
4865
4869
|
code: codeNode.value,
|