@gbmtech/aurora-ui 0.0.2 → 0.0.4

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.
@@ -4,8 +4,8 @@
4
4
  ::before,
5
5
  ::backdrop,
6
6
  ::file-selector-button {
7
- border-color: var(--color-border);
8
- outline-color: color-mix(in oklab, var(--ring) 20%, transparent);
7
+ border-color: var(--color-stroke);
8
+ outline-color: color-mix(in oklab, var(--color-gbm-sky) 20%, transparent);
9
9
  }
10
10
 
11
11
  html,
@@ -40,7 +40,7 @@
40
40
  * (e.g., background, border, highlights).
41
41
  */
42
42
  @theme inline {
43
- --color-gbm: #1154FF;
43
+ --color-gbm-sky: #1154FF;
44
44
  --color-gbm-ocean: #0A3EC2;
45
45
  --color-gbm-blue: #033278;
46
46
 
@@ -4,8 +4,8 @@
4
4
  ::before,
5
5
  ::backdrop,
6
6
  ::file-selector-button {
7
- border-color: var(--color-border);
8
- outline-color: color-mix(in oklab, var(--ring) 20%, transparent);
7
+ border-color: var(--color-stroke);
8
+ outline-color: color-mix(in oklab, var(--color-gbm-sky) 20%, transparent);
9
9
  }
10
10
 
11
11
  html,
@@ -40,7 +40,7 @@
40
40
  * (e.g., background, border, highlights).
41
41
  */
42
42
  @theme inline {
43
- --color-gbm: #1154FF;
43
+ --color-gbm-sky: #1154FF;
44
44
  --color-gbm-ocean: #0A3EC2;
45
45
  --color-gbm-blue: #033278;
46
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gbmtech/aurora-ui",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "main": "./dist/cjs/index.cjs",
5
5
  "module": "./dist/esm/index.js",
6
6
  "types": "./dist/types/index.d.ts",
@@ -21,7 +21,17 @@
21
21
  "default": "./dist/cjs/index.cjs"
22
22
  }
23
23
  },
24
- "./styles.css": "./dist/esm/index.css"
24
+ "./styles.css": "./dist/esm/index.css",
25
+ "./button": {
26
+ "import": {
27
+ "types": "./dist/types/components/button.d.ts",
28
+ "default": "./dist/esm/components/button.js"
29
+ },
30
+ "require": {
31
+ "types": "./dist/types/components/button.d.ts",
32
+ "default": "./dist/cjs/components/button.cjs"
33
+ }
34
+ }
25
35
  },
26
36
  "devDependencies": {
27
37
  "@rsbuild/plugin-react": "^1.2.0",
@@ -67,6 +77,24 @@
67
77
  "tailwindcss-animate": "^1.0.6",
68
78
  "zod": "^3.24.1"
69
79
  },
80
+ "peerDependencies": {
81
+ "@types/react": "^19",
82
+ "@types/react-dom": "^19",
83
+ "react": "^19",
84
+ "react-dom": "^19",
85
+ "react-hook-form": "^7"
86
+ },
87
+ "peerDependenciesMeta": {
88
+ "@types/react": {
89
+ "optional": true
90
+ },
91
+ "@types/react-dom": {
92
+ "optional": true
93
+ },
94
+ "react-hook-form": {
95
+ "optional": true
96
+ }
97
+ },
70
98
  "scripts": {
71
99
  "build": "rslib build",
72
100
  "dev": "rslib build --watch",