ghostfill 0.1.1 → 0.1.2
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 +3 -3
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# GhostFill
|
|
2
2
|
|
|
3
|
-
Dev tool that fills form fields with
|
|
3
|
+
Dev tool that fills form fields with sample data. Select a block, click fill — done.
|
|
4
4
|
|
|
5
5
|
Works with any framework (React, Vue, Angular, vanilla). Detects inputs, textareas, selects, checkboxes, radios, date pickers, and custom dropdowns (Headless UI, Radix).
|
|
6
6
|
|
|
@@ -50,7 +50,7 @@ await fill({ container: document.querySelector("form") });
|
|
|
50
50
|
1. A ghost icon appears on the page (starts minimized)
|
|
51
51
|
2. Click it to enter selection mode — hover and click a form area
|
|
52
52
|
3. Click the sparkles button to fill all detected fields
|
|
53
|
-
4. By default, generates random
|
|
53
|
+
4. By default, generates random sample data locally (no API needed)
|
|
54
54
|
5. Optionally enable AI mode in settings for context-aware data generation
|
|
55
55
|
|
|
56
56
|
## Settings
|
|
@@ -66,7 +66,7 @@ Click the gear icon to configure:
|
|
|
66
66
|
|
|
67
67
|
## Features
|
|
68
68
|
|
|
69
|
-
- **Zero config** — works out of the box with random
|
|
69
|
+
- **Zero config** — works out of the box with random sample data
|
|
70
70
|
- **Shadow DOM** — styles don't leak into your app
|
|
71
71
|
- **Framework-aware** — uses native value setters so React/Vue/Angular pick up changes
|
|
72
72
|
- **Smart detection** — labels from `<label>`, `aria-label`, placeholder, preceding siblings
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ghostfill",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Dev tool that fills form fields with relevant sample data — select a block, click fill, done",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.ts",
|