vplan 0.1.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/core/index.ts +140 -0
- package/dist/index.js +474 -0
- package/dist/index.js.map +1 -0
- package/package.json +52 -0
- package/runtime/Layout.tsx +17 -0
- package/runtime/components/Callout.tsx +38 -0
- package/runtime/components/Chart.tsx +112 -0
- package/runtime/components/Checklist.tsx +34 -0
- package/runtime/components/Compare.tsx +51 -0
- package/runtime/components/ExpandButton.tsx +20 -0
- package/runtime/components/FileTree.tsx +101 -0
- package/runtime/components/Mermaid.tsx +52 -0
- package/runtime/components/Phase.tsx +34 -0
- package/runtime/components/Questions.tsx +30 -0
- package/runtime/components/validate.ts +21 -0
- package/runtime/css.d.ts +1 -0
- package/runtime/fullscreen.ts +218 -0
- package/runtime/index.html +12 -0
- package/runtime/index.tsx +42 -0
- package/runtime/main.tsx +4 -0
- package/runtime/theme.css +789 -0
- package/runtime/virtual-plan.d.ts +11 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The user's plan file, injected at build time via a Vite alias
|
|
3
|
+
* (`virtual:plan` -> the absolute path of the .mdx being rendered).
|
|
4
|
+
*/
|
|
5
|
+
declare module 'virtual:plan' {
|
|
6
|
+
import type { ComponentType } from 'react'
|
|
7
|
+
|
|
8
|
+
const Plan: ComponentType
|
|
9
|
+
export default Plan
|
|
10
|
+
export const frontmatter: Record<string, unknown> | undefined
|
|
11
|
+
}
|