@designfever/web-review-kit 0.8.0 → 0.8.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/README.md +2 -1
- package/dist/react-shell.cjs +724 -436
- package/dist/react-shell.cjs.map +1 -1
- package/dist/react-shell.d.cts +1 -0
- package/dist/react-shell.d.ts +1 -0
- package/dist/react-shell.js +590 -298
- package/dist/react-shell.js.map +1 -1
- package/docs/README.md +1 -0
- package/docs/installation.md +23 -0
- package/docs/release-notes-0.8.1.md +23 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,7 +30,7 @@ This package does not own internal operator tools, private admin keys, or produc
|
|
|
30
30
|
- [Architecture and runtime logic](docs/architecture.md): core runtime, React shell, coordinate, anchor, and extension boundaries.
|
|
31
31
|
- [Figma overlay](docs/figma-overlay.md): how the shell toggles a host Figma overlay.
|
|
32
32
|
- [Grid overlay](docs/grid-overlay.md): how the shell toggles a host grid/helper overlay.
|
|
33
|
-
- [Release notes 0.8.
|
|
33
|
+
- [Release notes 0.8.1](docs/release-notes-0.8.1.md): QA prompt prefix, QA filtering, counters, tooltip, long-content, and outside marker fixes.
|
|
34
34
|
|
|
35
35
|
## Quick Start
|
|
36
36
|
|
|
@@ -80,6 +80,7 @@ mountReviewShell({
|
|
|
80
80
|
remove: (id) => local.remove(id),
|
|
81
81
|
},
|
|
82
82
|
],
|
|
83
|
+
qaPrompt: 'Follow this project coding style before fixing the copied QA item.',
|
|
83
84
|
reviewPathPrefix: '/review',
|
|
84
85
|
});
|
|
85
86
|
```
|