doccupine 0.0.23 → 0.0.24
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/index.js
CHANGED
|
@@ -749,7 +749,7 @@ export default function Home() {
|
|
|
749
749
|
program
|
|
750
750
|
.name("doccupine")
|
|
751
751
|
.description("Watch MDX files and generate Next.js documentation pages automatically")
|
|
752
|
-
.version("0.0.
|
|
752
|
+
.version("0.0.24");
|
|
753
753
|
program
|
|
754
754
|
.command("watch", { isDefault: true })
|
|
755
755
|
.description("Watch a directory for MDX changes and generate Next.js app")
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const stepsMdxTemplate = "---\ntitle: \"Steps\"\ndescription: \"Guide readers step-by-step using the Steps component.\"\ndate: \"2025-01-15\"\ncategory: \"Components\"\ncategoryOrder: 1\norder: 13\n---\n
|
|
1
|
+
export declare const stepsMdxTemplate = "---\ntitle: \"Steps\"\ndescription: \"Guide readers step-by-step using the Steps component.\"\ndate: \"2025-01-15\"\ncategory: \"Components\"\ncategoryOrder: 1\norder: 13\n---\n# Steps\nGuide readers step-by-step using the Steps component.\n\nThe Steps component is perfect for organizing procedures or workflows in a clear sequence. Include as many individual steps as necessary to outline your process.\n\n## Steps Usage\nYou can use the `Steps` component to create a step-by-step guide. Each step is represented by a `Step` component, which includes a title and content.\n\n```mdx\n<Steps>\n <Step title=\"Step 1\">\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n </Step>\n\n <Step title=\"Step 2\">\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n </Step>\n\n <Step title=\"Step 3\">\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n </Step>\n</Steps>\n```\n\n<Steps>\n <Step title=\"Step 1\">\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n </Step>\n\n <Step title=\"Step 2\">\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n </Step>\n\n <Step title=\"Step 3\">\n Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n </Step>\n</Steps>\n\n\n## Properties\n\n<Field value=\"title\" type=\"string\" required>\n The title of the step.\n</Field>\n\n<Field value=\"children\" type=\"node\" required>\n The content of the step.\n</Field>\n";
|
|
@@ -6,7 +6,6 @@ category: "Components"
|
|
|
6
6
|
categoryOrder: 1
|
|
7
7
|
order: 13
|
|
8
8
|
---
|
|
9
|
-
|
|
10
9
|
# Steps
|
|
11
10
|
Guide readers step-by-step using the Steps component.
|
|
12
11
|
|
|
@@ -16,7 +15,7 @@ The Steps component is perfect for organizing procedures or workflows in a clear
|
|
|
16
15
|
You can use the \`Steps\` component to create a step-by-step guide. Each step is represented by a \`Step\` component, which includes a title and content.
|
|
17
16
|
|
|
18
17
|
\`\`\`mdx
|
|
19
|
-
|
|
18
|
+
<Steps>
|
|
20
19
|
<Step title="Step 1">
|
|
21
20
|
Lorem ipsum dolor sit amet, consectetur adipiscing elit.
|
|
22
21
|
</Step>
|