@schemavaults/ui 0.11.128 → 0.11.129

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.
@@ -0,0 +1,11 @@
1
+ ARG BUN_VERSION=latest
2
+ FROM oven/bun:${BUN_VERSION}
3
+
4
+ RUN apt-get update \
5
+ && apt-get -y install --no-install-recommends \
6
+ ca-certificates \
7
+ git \
8
+ && apt-get auto-remove -y \
9
+ && apt-get clean -y
10
+
11
+ USER bun
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "Bun + Storybook",
3
+ "build": {
4
+ "dockerfile": "Dockerfile",
5
+ "args": {
6
+ "BUN_VERSION": "1.3.1"
7
+ }
8
+ },
9
+ "postCreateCommand": "bun install",
10
+ "postAttachCommand": {
11
+ "server": "bun run preview"
12
+ },
13
+ "forwardPorts": [6006],
14
+ "portsAttributes": {
15
+ "6006": {
16
+ "label": "Storybook",
17
+ "onAutoForward": "openPreview"
18
+ }
19
+ },
20
+ "customizations": {
21
+ "codespaces": {
22
+ "openFiles": [".storybook/main.ts"]
23
+ },
24
+ "vscode": {
25
+ "extensions": []
26
+ }
27
+ }
28
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@schemavaults/ui",
3
- "version": "0.11.128",
3
+ "version": "0.11.129",
4
4
  "private": false,
5
5
  "license": "UNLICENSED",
6
6
  "description": "React.js UI components for SchemaVaults frontend applications",
@@ -34,13 +34,14 @@
34
34
  "clsx": "2.1.1",
35
35
  "cmdk": "1.1.1",
36
36
  "eslint": "9.17.0",
37
- "framer-motion": "12.23.12",
37
+ "framer-motion": "12.23.24",
38
38
  "lucide-react": "0.508.0",
39
39
  "next-themes": "0.4.6",
40
40
  "react": "19.0.0",
41
41
  "react-dom": "19.0.0",
42
42
  "react-hook-form": "7.58.1",
43
- "tailwind-merge": "3.0.2"
43
+ "tailwind-merge": "3.0.2",
44
+ "@emotion/is-prop-valid": "1.4.0"
44
45
  },
45
46
  "devDependencies": {
46
47
  "@storybook/addon-essentials": "8.6.14",
@@ -55,7 +56,7 @@
55
56
  "autoprefixer": "10.4.21",
56
57
  "base64url": "3.0.1",
57
58
  "buffer": "6.0.3",
58
- "bun-types": "1.2.22",
59
+ "bun-types": "1.3.1",
59
60
  "eslint-plugin-storybook": "0.12.0",
60
61
  "ignore-loader": "0.1.2",
61
62
  "postcss": "8.5.6",
@@ -63,7 +64,7 @@
63
64
  "storybook": "8.6.14",
64
65
  "tailwindcss": "3.4.17",
65
66
  "tsc-alias": "1.8.16",
66
- "typescript": "5.9.2",
67
+ "typescript": "5.9.3",
67
68
  "webpack": "5.102.0"
68
69
  },
69
70
  "scripts": {
@@ -119,7 +120,7 @@
119
120
  "publishConfig": {
120
121
  "access": "public"
121
122
  },
122
- "packageManager": "bun@1.2.22",
123
+ "packageManager": "bun@1.3.1",
123
124
  "eslintConfig": {
124
125
  "extends": [
125
126
  "plugin:storybook/recommended"