inkbridge 0.1.0-beta.27 → 0.1.0-beta.28
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 +1 -1
- package/code.js +14 -14
- package/package.json +7 -2
- package/scanner/component-scanner.ts +172 -3
- package/scanner/derive-title-from-path-regression.ts +97 -0
- package/scanner/fraction-width-zero-regression.ts +100 -0
- package/scanner/input-range-regression.ts +53 -19
- package/scanner/section-folder-tree-regression.ts +217 -0
- package/scanner/section-prefix-grouping-regression.ts +227 -0
- package/scanner/types.ts +12 -0
- package/scanner/use-state-binding-regression.ts +211 -0
- package/src/design-system/design-system.ts +295 -34
- package/src/design-system/generated-node.ts +17 -0
- package/src/design-system/section-grouping.ts +241 -0
- package/src/design-system/story-builder.ts +405 -191
- package/src/layout/deferred-layout.ts +12 -2
- package/src/main.ts +2 -0
- package/src/render-engine-version.ts +1 -1
- package/src/tailwind/node-ir.ts +27 -8
- package/ui.html +44 -1
package/README.md
CHANGED
|
@@ -23,7 +23,7 @@ Generates native Figma frames and reusable Figma component instances from your T
|
|
|
23
23
|
|
|
24
24
|
- **Figma Desktop** (not the browser — the plugin needs localhost access)
|
|
25
25
|
- **Node.js 18+** and **pnpm**
|
|
26
|
-
- A project with Next.js, Tailwind CSS
|
|
26
|
+
- A project with Next.js (App Router), **Tailwind CSS v4**, **React 18+**, and Storybook stories (`.stories.tsx` or `.stories.ts`)
|
|
27
27
|
|
|
28
28
|
---
|
|
29
29
|
|