@dryui/wizard 0.0.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.
Files changed (35) hide show
  1. package/dist/app/_app/env.js +1 -0
  2. package/dist/app/_app/immutable/assets/0.DuShIRXe.css +1 -0
  3. package/dist/app/_app/immutable/chunks/CtGZ12rY.js +1 -0
  4. package/dist/app/_app/immutable/chunks/CylA_QuH.js +301 -0
  5. package/dist/app/_app/immutable/chunks/DOlHNFLc.js +3 -0
  6. package/dist/app/_app/immutable/chunks/Di6zslmw.js +1 -0
  7. package/dist/app/_app/immutable/chunks/DslunMlz.js +1 -0
  8. package/dist/app/_app/immutable/chunks/RHaY3jvT.js +1 -0
  9. package/dist/app/_app/immutable/chunks/cUpOkCva.js +1 -0
  10. package/dist/app/_app/immutable/chunks/mKsxY4vH.js +1 -0
  11. package/dist/app/_app/immutable/entry/app.CiOBuL1e.js +2 -0
  12. package/dist/app/_app/immutable/entry/start.BxD3Cl0i.js +1 -0
  13. package/dist/app/_app/immutable/nodes/0.B2K_dGeT.js +1 -0
  14. package/dist/app/_app/immutable/nodes/1.Br47VULm.js +1 -0
  15. package/dist/app/_app/immutable/nodes/2.BIQmDbKj.js +5 -0
  16. package/dist/app/_app/immutable/nodes/3.DYEEY9dv.js +1 -0
  17. package/dist/app/_app/immutable/nodes/4.Dz0Fgkf9.js +2 -0
  18. package/dist/app/_app/immutable/nodes/5.DD7T7i0r.js +7 -0
  19. package/dist/app/_app/immutable/nodes/6.DAnKIGNq.js +1 -0
  20. package/dist/app/_app/immutable/nodes/7.vjgrswDV.js +7 -0
  21. package/dist/app/_app/version.json +1 -0
  22. package/dist/app/follow-up.html +183 -0
  23. package/dist/app/index.html +1 -0
  24. package/dist/app/step-1.html +189 -0
  25. package/dist/app/step-2.html +183 -0
  26. package/dist/app/step-3.html +201 -0
  27. package/dist/cli.js +25935 -0
  28. package/dist/components.js +25245 -0
  29. package/dist/index.js +25804 -0
  30. package/dist/layouts.js +53 -0
  31. package/dist/protocol.js +44 -0
  32. package/dist/server.js +25774 -0
  33. package/dist/state.js +25486 -0
  34. package/dist/types.js +14 -0
  35. package/package.json +59 -0
package/dist/types.js ADDED
@@ -0,0 +1,14 @@
1
+ // @bun
2
+ // src/types.ts
3
+ var WIZARD_LAYOUT_IDS = [
4
+ "sidebar-main",
5
+ "header-content-footer",
6
+ "header-sidebar-main"
7
+ ];
8
+ var WIZARD_REGION_IDS = ["sidebar", "header", "main", "footer"];
9
+ var WIZARD_QUESTION_TYPES = ["multi-choice", "text", "confirm"];
10
+ export {
11
+ WIZARD_REGION_IDS,
12
+ WIZARD_QUESTION_TYPES,
13
+ WIZARD_LAYOUT_IDS
14
+ };
package/package.json ADDED
@@ -0,0 +1,59 @@
1
+ {
2
+ "name": "@dryui/wizard",
3
+ "version": "0.0.2",
4
+ "author": "Rob Balfre",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/rob-balfre/dryui.git",
9
+ "directory": "packages/wizard"
10
+ },
11
+ "homepage": "https://github.com/rob-balfre/dryui#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/rob-balfre/dryui/issues"
14
+ },
15
+ "type": "module",
16
+ "bin": {
17
+ "dryui-wizard": "./dist/cli.js"
18
+ },
19
+ "exports": {
20
+ ".": {
21
+ "default": "./dist/index.js"
22
+ },
23
+ "./components": {
24
+ "default": "./dist/components.js"
25
+ },
26
+ "./layouts": {
27
+ "default": "./dist/layouts.js"
28
+ },
29
+ "./protocol": {
30
+ "default": "./dist/protocol.js"
31
+ },
32
+ "./server": {
33
+ "default": "./dist/server.js"
34
+ },
35
+ "./state": {
36
+ "default": "./dist/state.js"
37
+ },
38
+ "./types": {
39
+ "default": "./dist/types.js"
40
+ }
41
+ },
42
+ "files": [
43
+ "dist"
44
+ ],
45
+ "publishConfig": {
46
+ "access": "public"
47
+ },
48
+ "scripts": {
49
+ "build": "rm -rf dist && bun run --cwd ../.. --filter '@dryui/wizard-app' build && mkdir -p dist/app && cp -R ../../apps/wizard/build/. dist/app && bun build src/index.ts src/cli.ts src/components.ts src/layouts.ts src/protocol.ts src/server.ts src/state.ts src/types.ts --outdir dist --target bun",
50
+ "check": "bunx tsc -p ./tsconfig.json --noEmit"
51
+ },
52
+ "dependencies": {
53
+ "@dryui/mcp": "workspace:*"
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^25.5.0",
57
+ "typescript": "^5.9.3"
58
+ }
59
+ }