@parhelia/page-wizard 0.1.11845 → 0.1.11852
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 -0
- package/package.json +4 -4
- package/styles.css +9 -0
package/README.md
CHANGED
|
@@ -15,6 +15,8 @@ import { PageWizard, usePageWizard } from '@parhelia/page-wizard';
|
|
|
15
15
|
import '@parhelia/page-wizard/styles.css';
|
|
16
16
|
```
|
|
17
17
|
|
|
18
|
+
Note: `@parhelia/page-wizard` does not ship a Tailwind utilities bundle. Your app must include Tailwind (v4) processing and generate utilities from sources that include this package (the package’s `styles.css` declares an `@source` pointing at `dist/**/*.js`).
|
|
19
|
+
|
|
18
20
|
## Features
|
|
19
21
|
|
|
20
22
|
- Step-by-step page creation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@parhelia/page-wizard",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.11852",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -14,17 +14,18 @@
|
|
|
14
14
|
"types": "./dist/index.d.ts",
|
|
15
15
|
"import": "./dist/index.js"
|
|
16
16
|
},
|
|
17
|
-
"./styles.css": "./
|
|
17
|
+
"./styles.css": "./styles.css",
|
|
18
18
|
"./dev-styles.css": "./dev.css"
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
21
|
"dist/",
|
|
22
22
|
"dev.css",
|
|
23
|
+
"styles.css",
|
|
23
24
|
"README.md",
|
|
24
25
|
"LICENSE"
|
|
25
26
|
],
|
|
26
27
|
"scripts": {
|
|
27
|
-
"build": "
|
|
28
|
+
"build": "tsc -p tsconfig.build.json",
|
|
28
29
|
"lint": "eslint . --max-warnings 0",
|
|
29
30
|
"generate:component": "turbo gen react-component",
|
|
30
31
|
"check-types": "tsc --noEmit"
|
|
@@ -32,7 +33,6 @@
|
|
|
32
33
|
"devDependencies": {
|
|
33
34
|
"@repo/eslint-config": "*",
|
|
34
35
|
"@repo/typescript-config": "*",
|
|
35
|
-
"@tailwindcss/cli": "^4.1.10",
|
|
36
36
|
"@turbo/gen": "^2.4.4",
|
|
37
37
|
"@types/node": "^22.13.9",
|
|
38
38
|
"@types/react": "19.2.2",
|
package/styles.css
ADDED