@qualcomm-ui/mdx-vite 3.5.0 → 3.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/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({ props, type: name });
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,