create-skybridge 0.0.0-dev.3581704 → 0.0.0-dev.35a7b38

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 (88) hide show
  1. package/dist/index.js +46 -24
  2. package/package.json +4 -4
  3. package/templates/blank/Dockerfile +3 -3
  4. package/templates/blank/_gitignore +2 -1
  5. package/templates/blank/node_modules/.bin/alpic +2 -2
  6. package/templates/blank/node_modules/.bin/tsc +2 -2
  7. package/templates/blank/node_modules/.bin/tsserver +2 -2
  8. package/templates/blank/node_modules/.bin/tsx +21 -0
  9. package/templates/blank/node_modules/.bin/vite +2 -2
  10. package/templates/blank/package.json +8 -7
  11. package/templates/blank/src/server.ts +0 -5
  12. package/templates/demo/Dockerfile +3 -3
  13. package/templates/demo/_gitignore +2 -1
  14. package/templates/demo/node_modules/.bin/alpic +2 -2
  15. package/templates/demo/node_modules/.bin/tsc +2 -2
  16. package/templates/demo/node_modules/.bin/tsserver +2 -2
  17. package/templates/demo/node_modules/.bin/tsx +2 -2
  18. package/templates/demo/node_modules/.bin/vite +2 -2
  19. package/templates/demo/package.json +17 -17
  20. package/templates/demo/src/server.ts +0 -5
  21. package/templates/ecom/.dockerignore +4 -0
  22. package/templates/ecom/.env.template +2 -0
  23. package/templates/ecom/.ladle/components.tsx +26 -0
  24. package/templates/ecom/.ladle/config.mjs +11 -0
  25. package/templates/ecom/.ladle/vite.config.ts +11 -0
  26. package/templates/ecom/AGENTS.md +2 -0
  27. package/templates/ecom/Dockerfile +53 -0
  28. package/templates/ecom/README.md +92 -0
  29. package/templates/ecom/_gitignore +9 -0
  30. package/templates/ecom/alpic.json +3 -0
  31. package/templates/ecom/node_modules/.bin/alpic +21 -0
  32. package/templates/ecom/node_modules/.bin/ladle +21 -0
  33. package/templates/ecom/node_modules/.bin/sb +21 -0
  34. package/templates/ecom/node_modules/.bin/skybridge +21 -0
  35. package/templates/ecom/node_modules/.bin/tsc +21 -0
  36. package/templates/ecom/node_modules/.bin/tsserver +21 -0
  37. package/templates/ecom/node_modules/.bin/tsx +21 -0
  38. package/templates/ecom/node_modules/.bin/vite +21 -0
  39. package/templates/ecom/package.json +41 -0
  40. package/templates/ecom/src/components/chip.css.ts +56 -0
  41. package/templates/ecom/src/components/chip.stories.tsx +26 -0
  42. package/templates/ecom/src/components/chip.tsx +41 -0
  43. package/templates/ecom/src/components/empty-state.stories.tsx +3 -0
  44. package/templates/ecom/src/components/empty-state.tsx +12 -0
  45. package/templates/ecom/src/components/expandable-text.css.ts +49 -0
  46. package/templates/ecom/src/components/expandable-text.stories.tsx +20 -0
  47. package/templates/ecom/src/components/expandable-text.tsx +53 -0
  48. package/templates/ecom/src/components/image-gallery.css.ts +172 -0
  49. package/templates/ecom/src/components/image-gallery.stories.tsx +30 -0
  50. package/templates/ecom/src/components/image-gallery.tsx +162 -0
  51. package/templates/ecom/src/components/product-card.css.ts +155 -0
  52. package/templates/ecom/src/components/product-card.stories.tsx +58 -0
  53. package/templates/ecom/src/components/product-card.tsx +101 -0
  54. package/templates/ecom/src/components/product-carousel.css.ts +134 -0
  55. package/templates/ecom/src/components/product-carousel.stories.tsx +64 -0
  56. package/templates/ecom/src/components/product-carousel.tsx +202 -0
  57. package/templates/ecom/src/components/variant-picker.css.ts +27 -0
  58. package/templates/ecom/src/components/variant-picker.stories.tsx +64 -0
  59. package/templates/ecom/src/components/variant-picker.tsx +82 -0
  60. package/templates/ecom/src/components/view-frame.css.ts +22 -0
  61. package/templates/ecom/src/components/view-frame.tsx +27 -0
  62. package/templates/ecom/src/config.ts +12 -0
  63. package/templates/ecom/src/design/contract.css.ts +39 -0
  64. package/templates/ecom/src/design/fonts.css +15 -0
  65. package/templates/ecom/src/design/primitives.css.ts +101 -0
  66. package/templates/ecom/src/design/recipes/typography.css.ts +75 -0
  67. package/templates/ecom/src/design/sprinkles.css.ts +128 -0
  68. package/templates/ecom/src/design/themes/dark.css.ts +36 -0
  69. package/templates/ecom/src/design/themes/light.css.ts +36 -0
  70. package/templates/ecom/src/design/tokens.ts +8 -0
  71. package/templates/ecom/src/helpers.ts +4 -0
  72. package/templates/ecom/src/i18n.ts +34 -0
  73. package/templates/ecom/src/index.css +9 -0
  74. package/templates/ecom/src/lib/cx.ts +9 -0
  75. package/templates/ecom/src/lib/format.ts +9 -0
  76. package/templates/ecom/src/lib/variants.ts +79 -0
  77. package/templates/ecom/src/server.ts +43 -0
  78. package/templates/ecom/src/tools/render-carousel.ts +242 -0
  79. package/templates/ecom/src/tools/search-products.ts +182 -0
  80. package/templates/ecom/src/types.ts +13 -0
  81. package/templates/ecom/src/views/carousel/detail/detail.css.ts +100 -0
  82. package/templates/ecom/src/views/carousel/detail/detail.stories.tsx +114 -0
  83. package/templates/ecom/src/views/carousel/detail/index.tsx +215 -0
  84. package/templates/ecom/src/views/carousel/index.tsx +234 -0
  85. package/templates/ecom/tsconfig.json +11 -0
  86. package/templates/ecom/vite.config.ts +8 -0
  87. package/templates/blank/src/vite-manifest.d.ts +0 -4
  88. package/templates/demo/src/vite-manifest.d.ts +0 -4
@@ -0,0 +1,92 @@
1
+ # Skybridge Boilerplate
2
+
3
+ A minimal TypeScript boilerplate for building MCP and ChatGPT Apps with the [Skybridge](https://docs.skybridge.tech) framework.
4
+
5
+ ## Getting Started
6
+
7
+ ### Prerequisites
8
+
9
+ - Node.js 24+
10
+
11
+ ### Local Development
12
+
13
+ #### 1. Install
14
+
15
+ ```bash
16
+ npm install
17
+ # or
18
+ pnpm install
19
+ # or
20
+ bun install
21
+ # or
22
+ deno install
23
+ # or
24
+ yarn install
25
+ ```
26
+
27
+ #### 2. Start your local server
28
+
29
+ Run the development server from the root directory:
30
+
31
+ ```bash
32
+ npm run dev
33
+ # or
34
+ pnpm dev
35
+ # or
36
+ bun dev
37
+ # or
38
+ deno task dev
39
+ # or
40
+ yarn dev
41
+ ```
42
+
43
+ This command starts:
44
+ - Your MCP server at `http://localhost:3000/mcp`.
45
+ - Skybridge DevTools UI at `http://localhost:3000`.
46
+
47
+ #### 3. Project structure
48
+
49
+ ```
50
+ ├── src/
51
+ │ ├── server.ts # Server entry point
52
+ │ └── helpers.ts # Shared utilities
53
+ ├── vite.config.ts
54
+ ├── alpic.json # Deployment config
55
+ └── package.json
56
+ ```
57
+
58
+ ### Create your first view
59
+
60
+ #### 1. Add a new view
61
+
62
+ - Register a tool in `src/server.ts` with a unique name (e.g., `my-view`) using [`registerTool`](https://docs.skybridge.tech/api-reference/register-tool) and a `view` config.
63
+ - Create a matching React component at `src/views/my-view.tsx`. **The file name must match the view name exactly**.
64
+
65
+ #### 2. Edit views with Hot Module Replacement (HMR)
66
+
67
+ Edit and save components in `src/views/` — changes will appear instantly inside your App.
68
+
69
+ #### 3. Edit server code
70
+
71
+ Modify files in `src/` and refresh the tool list with your MCP Client to see the changes.
72
+
73
+ ### Testing your App
74
+
75
+ You can test your app locally by using our DevTools UI on `http://localhost:3000` while running the `dev` command.
76
+
77
+ To connect your app with web clients like ChatGPT or Claude, expose your server on the internet by adding the `--tunnel` flag.
78
+ By enabling the tunnel, you'll also be able to access a playground to chat with your app and a real LLM. Learn more by reading the [test guide](https://docs.skybridge.tech/quickstart/test-your-app).
79
+
80
+
81
+ ## Deploy to Production
82
+
83
+ Skybridge is infrastructure vendor agnostic, and your app can be deployed on any cloud platform supporting MCP.
84
+
85
+ The simplest way to deploy your app is by running the `deploy` command, which will push your MCP server to the [Alpic](https://alpic.ai/) cloud for free.
86
+
87
+ ## Resources
88
+ - [Skybridge Documentation](https://docs.skybridge.tech/)
89
+ - [Apps SDK Documentation](https://developers.openai.com/apps-sdk)
90
+ - [MCP Apps Documentation](https://github.com/modelcontextprotocol/ext-apps/tree/main)
91
+ - [Model Context Protocol Documentation](https://modelcontextprotocol.io/)
92
+ - [Alpic Documentation](https://docs.alpic.ai/)
@@ -0,0 +1,9 @@
1
+ node_modules/
2
+ dist/
3
+ build/
4
+ .env*
5
+ !.env.template
6
+ .DS_store
7
+ *.tsbuildinfo
8
+ .skybridge/
9
+ .vercel/
@@ -0,0 +1,3 @@
1
+ {
2
+ "$schema": "https://assets.alpic.ai/alpic.json"
3
+ }
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.148.1_@opentelemetry+api@1.9.1_@opentelemetry+core@2.8.0_@opentelemetry+api@1.9_dc7708ba103efafb508db02d69c9f925/node_modules/alpic/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.148.1_@opentelemetry+api@1.9.1_@opentelemetry+core@2.8.0_@opentelemetry+api@1.9_dc7708ba103efafb508db02d69c9f925/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.148.1_@opentelemetry+api@1.9.1_@opentelemetry+core@2.8.0_@opentelemetry+api@1.9_dc7708ba103efafb508db02d69c9f925/node_modules/alpic/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/alpic@1.148.1_@opentelemetry+api@1.9.1_@opentelemetry+core@2.8.0_@opentelemetry+api@1.9_dc7708ba103efafb508db02d69c9f925/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../alpic/bin/run.js" "$@"
19
+ else
20
+ exec node "$basedir/../alpic/bin/run.js" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@ladle+react@5.1.1_@types+node@24.13.2_@types+react@19.2.17_jiti@2.7.0_lightningcss@1.3_87a889c60e4b1fe9d02c5a43786e65ce/node_modules/@ladle/react/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@ladle+react@5.1.1_@types+node@24.13.2_@types+react@19.2.17_jiti@2.7.0_lightningcss@1.3_87a889c60e4b1fe9d02c5a43786e65ce/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@ladle+react@5.1.1_@types+node@24.13.2_@types+react@19.2.17_jiti@2.7.0_lightningcss@1.3_87a889c60e4b1fe9d02c5a43786e65ce/node_modules/@ladle/react/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/@ladle+react@5.1.1_@types+node@24.13.2_@types+react@19.2.17_jiti@2.7.0_lightningcss@1.3_87a889c60e4b1fe9d02c5a43786e65ce/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../@ladle/react/lib/cli/cli.js" "$@"
19
+ else
20
+ exec node "$basedir/../@ladle/react/lib/cli/cli.js" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../skybridge/bin/run.js" "$@"
19
+ else
20
+ exec node "$basedir/../skybridge/bin/run.js" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../skybridge/bin/run.js" "$@"
19
+ else
20
+ exec node "$basedir/../skybridge/bin/run.js" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../typescript/bin/tsc" "$@"
19
+ else
20
+ exec node "$basedir/../typescript/bin/tsc" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules/typescript/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/typescript@6.0.3/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../typescript/bin/tsserver" "$@"
19
+ else
20
+ exec node "$basedir/../typescript/bin/tsserver" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.23.0/node_modules/tsx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.23.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.23.0/node_modules/tsx/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/tsx@4.23.0/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../tsx/dist/cli.mjs" "$@"
19
+ else
20
+ exec node "$basedir/../tsx/dist/cli.mjs" "$@"
21
+ fi
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
3
+
4
+ case `uname` in
5
+ *CYGWIN*|*MINGW*|*MSYS*)
6
+ if command -v cygpath > /dev/null 2>&1; then
7
+ basedir=`cygpath -w "$basedir"`
8
+ fi
9
+ ;;
10
+ esac
11
+
12
+ if [ -z "$NODE_PATH" ]; then
13
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.1.3_@types+node@24.13.2_esbuild@0.28.1_jiti@2.7.0_terser@5.44.1_tsx@4.23.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.1.3_@types+node@24.13.2_esbuild@0.28.1_jiti@2.7.0_terser@5.44.1_tsx@4.23.0_yaml@2.8.2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules"
14
+ else
15
+ export NODE_PATH="/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.1.3_@types+node@24.13.2_esbuild@0.28.1_jiti@2.7.0_terser@5.44.1_tsx@4.23.0_yaml@2.8.2/node_modules/vite/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/vite@8.1.3_@types+node@24.13.2_esbuild@0.28.1_jiti@2.7.0_terser@5.44.1_tsx@4.23.0_yaml@2.8.2/node_modules:/home/runner/work/skybridge/skybridge/node_modules/.pnpm/node_modules:$NODE_PATH"
16
+ fi
17
+ if [ -x "$basedir/node" ]; then
18
+ exec "$basedir/node" "$basedir/../vite/bin/vite.js" "$@"
19
+ else
20
+ exec node "$basedir/../vite/bin/vite.js" "$@"
21
+ fi
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "skybridge-ecom",
3
+ "version": "0.0.1",
4
+ "private": true,
5
+ "description": "Skybridge MCP ecommerce template",
6
+ "type": "module",
7
+ "scripts": {
8
+ "dev": "skybridge dev",
9
+ "dev:tunnel": "skybridge dev --tunnel",
10
+ "build": "skybridge build",
11
+ "start": "skybridge start",
12
+ "deploy": "alpic deploy",
13
+ "ladle": "ladle serve",
14
+ "ladle:build": "ladle build"
15
+ },
16
+ "dependencies": {
17
+ "react": "^19.2.4",
18
+ "react-dom": "^19.2.4",
19
+ "skybridge": "^0.0.0-dev.35a7b38",
20
+ "vite": "^8.1.3",
21
+ "zod": "^4.4.3"
22
+ },
23
+ "devDependencies": {
24
+ "@ladle/react": "^5.1.1",
25
+ "@skybridge/devtools": "^1.2.4",
26
+ "@types/node": "^24.13.2",
27
+ "@types/react": "^19.2.14",
28
+ "@types/react-dom": "^19.2.3",
29
+ "@vanilla-extract/css": "^1.20.1",
30
+ "@vanilla-extract/recipes": "^0.5.7",
31
+ "@vanilla-extract/sprinkles": "^1.6.5",
32
+ "@vanilla-extract/vite-plugin": "^5.2.2",
33
+ "@vitejs/plugin-react": "^6.0.1",
34
+ "alpic": "^1.147.1",
35
+ "tsx": "^4.23.0",
36
+ "typescript": "^6.0.3"
37
+ },
38
+ "engines": {
39
+ "node": ">=24.18.0"
40
+ }
41
+ }
@@ -0,0 +1,56 @@
1
+ import { style } from "@vanilla-extract/css";
2
+ import { recipe } from "@vanilla-extract/recipes";
3
+ import { colors, primitives } from "../design/tokens";
4
+
5
+ // A selectable pill used for option values (sizes, colors…). `selected` and
6
+ // `disabled` are driven by the variant picker from the sparse variant list.
7
+ // @todo: tune the chip to your brand (radius, borders, selected treatment).
8
+ export const chip = recipe({
9
+ base: {
10
+ display: "inline-flex",
11
+ alignItems: "center",
12
+ gap: primitives.space["4xs"],
13
+ minHeight: "44px", // touch target
14
+ padding: `${primitives.space["4xs"]} ${primitives.space["3xs"]}`,
15
+ borderRadius: primitives.radius.m,
16
+ border: `${primitives.stroke.thin} solid ${colors.border.subtle}`,
17
+ backgroundColor: colors.surface.extraLight,
18
+ color: colors.content.intense,
19
+ fontFamily: primitives.font.family.primary,
20
+ fontSize: primitives.font.size.s,
21
+ cursor: "pointer",
22
+ transition: "border-color 150ms ease",
23
+ "@media": {
24
+ "(prefers-reduced-motion: reduce)": { transition: "none" },
25
+ },
26
+ },
27
+ variants: {
28
+ selected: {
29
+ true: {
30
+ borderColor: colors.common.accent,
31
+ borderWidth: primitives.stroke.medium,
32
+ },
33
+ false: {},
34
+ },
35
+ disabled: {
36
+ // Unreachable value given the other choices: greyed and struck, but kept
37
+ // visible so the client sees the axis exists (never silently hidden).
38
+ true: {
39
+ cursor: "not-allowed",
40
+ opacity: 0.4,
41
+ textDecoration: "line-through",
42
+ },
43
+ false: {},
44
+ },
45
+ },
46
+ defaultVariants: { selected: false, disabled: false },
47
+ });
48
+
49
+ // Small color/material swatch shown before the label on image chips.
50
+ export const swatch = style({
51
+ width: "20px",
52
+ height: "20px",
53
+ borderRadius: primitives.radius.full,
54
+ objectFit: "cover",
55
+ display: "block",
56
+ });
@@ -0,0 +1,26 @@
1
+ import { Chip } from "./chip";
2
+
3
+ const SWATCH =
4
+ "data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Crect width='20' height='20' fill='%233b6cf0'/%3E%3C/svg%3E";
5
+
6
+ const row = {
7
+ display: "flex",
8
+ gap: 8,
9
+ flexWrap: "wrap" as const,
10
+ maxWidth: 320,
11
+ };
12
+
13
+ export const States = () => (
14
+ <div style={row}>
15
+ <Chip label="M" />
16
+ <Chip label="L" selected />
17
+ <Chip label="XL" disabled />
18
+ </div>
19
+ );
20
+
21
+ export const WithSwatch = () => (
22
+ <div style={row}>
23
+ <Chip label="Blue" media={SWATCH} selected />
24
+ <Chip label="Black" media={SWATCH} />
25
+ </div>
26
+ );
@@ -0,0 +1,41 @@
1
+ import * as styles from "./chip.css";
2
+
3
+ type ChipProps = {
4
+ label: string;
5
+ selected?: boolean;
6
+ disabled?: boolean;
7
+ onSelect?: () => void;
8
+ // Optional swatch image (e.g. one per color); omit for a plain text chip.
9
+ media?: string;
10
+ };
11
+
12
+ /**
13
+ * One option value as a selectable pill. Rendered as a `radio` inside the
14
+ * variant picker's `radiogroup`; the picker owns selection state and passes
15
+ * `selected`/`disabled` computed from the sparse variant list.
16
+ */
17
+ export function Chip({
18
+ label,
19
+ selected,
20
+ disabled,
21
+ onSelect,
22
+ media,
23
+ }: ChipProps) {
24
+ return (
25
+ // biome-ignore lint/a11y/useSemanticElements: custom radio; a styled button carries the swatch and disabled state a native radio cannot, inside the picker radiogroup.
26
+ <button
27
+ type="button"
28
+ role="radio"
29
+ aria-checked={selected ?? false}
30
+ aria-disabled={disabled ?? false}
31
+ disabled={disabled}
32
+ className={styles.chip({ selected, disabled })}
33
+ onClick={disabled ? undefined : onSelect}
34
+ >
35
+ {media ? (
36
+ <img className={styles.swatch} src={media} alt="" draggable={false} />
37
+ ) : null}
38
+ {label}
39
+ </button>
40
+ );
41
+ }
@@ -0,0 +1,3 @@
1
+ import { EmptyState } from "./empty-state";
2
+
3
+ export const NoResults = () => <EmptyState message="No products to show." />;
@@ -0,0 +1,12 @@
1
+ import { sprinkles, text } from "../design/tokens";
2
+
3
+ /** Centered message shown when there is nothing to render (e.g. no results). */
4
+ export function EmptyState({ message }: { message: string }) {
5
+ return (
6
+ <div
7
+ className={sprinkles({ p: "l", textAlign: "center", color: "subtle" })}
8
+ >
9
+ <p className={text({ style: "bodyM" })}>{message}</p>
10
+ </div>
11
+ );
12
+ }
@@ -0,0 +1,49 @@
1
+ import { style } from "@vanilla-extract/css";
2
+ import { recipe } from "@vanilla-extract/recipes";
3
+ import { colors, primitives } from "../design/tokens";
4
+
5
+ // @todo: collapsed height before "read more" appears. Tune to your type scale.
6
+ const COLLAPSED_MAX_HEIGHT = "6em";
7
+
8
+ export const container = style({
9
+ display: "flex",
10
+ flexDirection: "column",
11
+ alignItems: "flex-start",
12
+ gap: primitives.space["4xs"],
13
+ });
14
+
15
+ // `clamp` caps the height (applied whenever collapsed, so overflow can be
16
+ // measured); `fade` masks the last line to a soft cutoff instead of an ellipsis
17
+ // and is applied only when the text actually overflows (never on short copy).
18
+ export const body = recipe({
19
+ base: {
20
+ color: colors.content.intense,
21
+ whiteSpace: "pre-line", // preserve paragraph breaks from the source
22
+ },
23
+ variants: {
24
+ clamp: {
25
+ true: { maxHeight: COLLAPSED_MAX_HEIGHT, overflow: "hidden" },
26
+ false: {},
27
+ },
28
+ fade: {
29
+ true: {
30
+ maskImage:
31
+ "linear-gradient(to bottom, black 0%, black 55%, transparent 100%)",
32
+ WebkitMaskImage:
33
+ "linear-gradient(to bottom, black 0%, black 55%, transparent 100%)",
34
+ },
35
+ false: {},
36
+ },
37
+ },
38
+ defaultVariants: { clamp: false, fade: false },
39
+ });
40
+
41
+ export const toggle = style({
42
+ padding: 0,
43
+ border: "none",
44
+ background: "none",
45
+ color: colors.common.accent,
46
+ fontFamily: primitives.font.family.primary,
47
+ fontSize: primitives.font.size.s,
48
+ cursor: "pointer",
49
+ });
@@ -0,0 +1,20 @@
1
+ import { ExpandableText } from "./expandable-text";
2
+
3
+ const frame = { maxWidth: 360 };
4
+
5
+ const LONG =
6
+ "A relaxed-fit jacket in water-repellent cotton.\n\nDropped shoulders, a two-way zip, and ribbed cuffs. Fully lined, with two zip pockets at the front and one inside. Designed to layer over a knit through the cooler months, and cut long enough to sit past the hip.";
7
+
8
+ export const Long = () => (
9
+ <div style={frame}>
10
+ <ExpandableText>{LONG}</ExpandableText>
11
+ </div>
12
+ );
13
+
14
+ export const Short = () => (
15
+ <div style={frame}>
16
+ <ExpandableText>
17
+ A short description that never needs a toggle.
18
+ </ExpandableText>
19
+ </div>
20
+ );
@@ -0,0 +1,53 @@
1
+ import { useLayoutEffect, useRef, useState } from "react";
2
+ import { text } from "../design/tokens";
3
+ import { useLabels } from "../i18n";
4
+ import { cx } from "../lib/cx";
5
+ import * as styles from "./expandable-text.css";
6
+
7
+ /**
8
+ * Clamps long copy to a few lines with a "read more" toggle. Truncation is
9
+ * measured, not assumed: the toggle only appears when the text actually
10
+ * overflows the collapsed height, so short copy shows no button.
11
+ */
12
+ export function ExpandableText({ children }: { children: string }) {
13
+ const labels = useLabels();
14
+ const bodyRef = useRef<HTMLParagraphElement>(null);
15
+ const [expanded, setExpanded] = useState(false);
16
+ const [overflows, setOverflows] = useState(false);
17
+
18
+ const collapsed = !expanded;
19
+
20
+ // Measure against the collapsed height (the clamp is applied whenever
21
+ // collapsed, so scrollHeight vs clientHeight is meaningful). Re-run when the
22
+ // text changes (e.g. the client switches variant) so the toggle tracks it.
23
+ // biome-ignore lint/correctness/useExhaustiveDependencies: children re-triggers the measure, it is not read in the body.
24
+ useLayoutEffect(() => {
25
+ const el = bodyRef.current;
26
+ if (el && collapsed) {
27
+ setOverflows(el.scrollHeight > el.clientHeight + 1);
28
+ }
29
+ }, [children, collapsed]);
30
+
31
+ return (
32
+ <div className={styles.container}>
33
+ <p
34
+ ref={bodyRef}
35
+ className={cx(
36
+ text({ style: "bodyS" }),
37
+ styles.body({ clamp: collapsed, fade: collapsed && overflows }),
38
+ )}
39
+ >
40
+ {children}
41
+ </p>
42
+ {overflows ? (
43
+ <button
44
+ type="button"
45
+ className={styles.toggle}
46
+ onClick={() => setExpanded((v) => !v)}
47
+ >
48
+ {expanded ? labels.readLess : labels.readMore}
49
+ </button>
50
+ ) : null}
51
+ </div>
52
+ );
53
+ }