@aurea-uds/react 0.1.0 → 0.2.0

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/package.json CHANGED
@@ -1,144 +1,176 @@
1
- {
2
- "name": "@aurea-uds/react",
3
- "version": "0.1.0",
4
- "description": "React components for Aurea UDS. Import @aurea-uds/fonts/css and @aurea-uds/core/css alongside.",
5
- "keywords": ["aurea", "design-system", "react", "components", "ui"],
6
- "license": "Apache-2.0",
7
- "repository": {
8
- "type": "git",
9
- "url": "git+https://github.com/victor1mor/aurea-uds.git",
10
- "directory": "packages/react"
11
- },
12
- "publishConfig": {
13
- "access": "public"
14
- },
15
- "type": "module",
16
- "sideEffects": false,
17
- "main": "./dist/index.js",
18
- "module": "./dist/index.js",
19
- "types": "./dist/index.d.ts",
20
- "exports": {
21
- ".": {
22
- "types": "./dist/index.d.ts",
23
- "import": "./dist/index.js"
24
- },
25
- "./actions": {
26
- "types": "./dist/actions.d.ts",
27
- "import": "./dist/actions.js"
28
- },
29
- "./inputs": {
30
- "types": "./dist/inputs.d.ts",
31
- "import": "./dist/inputs.js"
32
- },
33
- "./navigation": {
34
- "types": "./dist/navigation.d.ts",
35
- "import": "./dist/navigation.js"
36
- },
37
- "./overlays": {
38
- "types": "./dist/overlays.d.ts",
39
- "import": "./dist/overlays.js"
40
- },
41
- "./disclosure": {
42
- "types": "./dist/disclosure.d.ts",
43
- "import": "./dist/disclosure.js"
44
- },
45
- "./feedback": {
46
- "types": "./dist/feedback.d.ts",
47
- "import": "./dist/feedback.js"
48
- },
49
- "./data-display": {
50
- "types": "./dist/data-display.d.ts",
51
- "import": "./dist/data-display.js"
52
- },
53
- "./identity": {
54
- "types": "./dist/identity.d.ts",
55
- "import": "./dist/identity.js"
56
- },
57
- "./media": {
58
- "types": "./dist/media.d.ts",
59
- "import": "./dist/media.js"
60
- },
61
- "./code": {
62
- "types": "./dist/code.d.ts",
63
- "import": "./dist/code.js"
64
- },
65
- "./communication": {
66
- "types": "./dist/communication.d.ts",
67
- "import": "./dist/communication.js"
68
- },
69
- "./layout": {
70
- "types": "./dist/layout.d.ts",
71
- "import": "./dist/layout.js"
72
- },
73
- "./system": {
74
- "types": "./dist/system.d.ts",
75
- "import": "./dist/system.js"
76
- },
77
- "./code-editor": {
78
- "types": "./dist/code-editor.d.ts",
79
- "import": "./dist/code-editor.js"
80
- },
81
- "./data-grid": {
82
- "types": "./dist/data-grid.d.ts",
83
- "import": "./dist/data-grid.js"
84
- },
85
- "./qrcode": {
86
- "types": "./dist/qrcode.d.ts",
87
- "import": "./dist/qrcode.js"
88
- }
89
- },
90
- "files": [
91
- "dist"
92
- ],
93
- "scripts": {
94
- "build": "tsc"
95
- },
96
- "dependencies": {
97
- "@base-ui/react": "^1.6.0"
98
- },
99
- "peerDependencies": {
100
- "@codemirror/language": "^6.12.4",
101
- "@codemirror/state": "^6.7.1",
102
- "@codemirror/view": "^6.43.6",
103
- "@lezer/highlight": "^1.2.3",
104
- "@tanstack/react-table": "^8.21.3",
105
- "codemirror": "^6.0.2",
106
- "qr": "^0.6.0",
107
- "react": ">=19",
108
- "react-dom": ">=19"
109
- },
110
- "peerDependenciesMeta": {
111
- "@codemirror/language": {
112
- "optional": true
113
- },
114
- "@codemirror/state": {
115
- "optional": true
116
- },
117
- "@codemirror/view": {
118
- "optional": true
119
- },
120
- "@lezer/highlight": {
121
- "optional": true
122
- },
123
- "@tanstack/react-table": {
124
- "optional": true
125
- },
126
- "codemirror": {
127
- "optional": true
128
- },
129
- "qr": {
130
- "optional": true
131
- }
132
- },
133
- "devDependencies": {
134
- "@codemirror/language": "^6.12.4",
135
- "@codemirror/state": "^6.7.1",
136
- "@codemirror/view": "^6.43.6",
137
- "@lezer/highlight": "^1.2.3",
138
- "@tanstack/react-table": "8.21.3",
139
- "codemirror": "^6.0.2",
140
- "qr": "^0.6.0",
141
- "react": "^19.2.0",
142
- "react-dom": "^19.2.0"
143
- }
144
- }
1
+ {
2
+ "name": "@aurea-uds/react",
3
+ "version": "0.2.0",
4
+ "description": "React components for Aurea UDS. Import @aurea-uds/fonts/css and @aurea-uds/core/css alongside.",
5
+ "keywords": [
6
+ "aurea",
7
+ "design-system",
8
+ "react",
9
+ "components",
10
+ "ui"
11
+ ],
12
+ "license": "Apache-2.0",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/victor1mor/aurea-uds.git",
16
+ "directory": "packages/react"
17
+ },
18
+ "publishConfig": {
19
+ "access": "public"
20
+ },
21
+ "type": "module",
22
+ "sideEffects": false,
23
+ "main": "./dist/index.js",
24
+ "module": "./dist/index.js",
25
+ "types": "./dist/index.d.ts",
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.js"
30
+ },
31
+ "./actions": {
32
+ "types": "./dist/actions.d.ts",
33
+ "import": "./dist/actions.js"
34
+ },
35
+ "./inputs": {
36
+ "types": "./dist/inputs.d.ts",
37
+ "import": "./dist/inputs.js"
38
+ },
39
+ "./navigation": {
40
+ "types": "./dist/navigation.d.ts",
41
+ "import": "./dist/navigation.js"
42
+ },
43
+ "./overlays": {
44
+ "types": "./dist/overlays.d.ts",
45
+ "import": "./dist/overlays.js"
46
+ },
47
+ "./disclosure": {
48
+ "types": "./dist/disclosure.d.ts",
49
+ "import": "./dist/disclosure.js"
50
+ },
51
+ "./feedback": {
52
+ "types": "./dist/feedback.d.ts",
53
+ "import": "./dist/feedback.js"
54
+ },
55
+ "./data-display": {
56
+ "types": "./dist/data-display.d.ts",
57
+ "import": "./dist/data-display.js"
58
+ },
59
+ "./identity": {
60
+ "types": "./dist/identity.d.ts",
61
+ "import": "./dist/identity.js"
62
+ },
63
+ "./media": {
64
+ "types": "./dist/media.d.ts",
65
+ "import": "./dist/media.js"
66
+ },
67
+ "./code": {
68
+ "types": "./dist/code.d.ts",
69
+ "import": "./dist/code.js"
70
+ },
71
+ "./communication": {
72
+ "types": "./dist/communication.d.ts",
73
+ "import": "./dist/communication.js"
74
+ },
75
+ "./layout": {
76
+ "types": "./dist/layout.d.ts",
77
+ "import": "./dist/layout.js"
78
+ },
79
+ "./system": {
80
+ "types": "./dist/system.d.ts",
81
+ "import": "./dist/system.js"
82
+ },
83
+ "./code-editor": {
84
+ "types": "./dist/code-editor.d.ts",
85
+ "import": "./dist/code-editor.js"
86
+ },
87
+ "./data-grid": {
88
+ "types": "./dist/data-grid.d.ts",
89
+ "import": "./dist/data-grid.js"
90
+ },
91
+ "./qrcode": {
92
+ "types": "./dist/qrcode.d.ts",
93
+ "import": "./dist/qrcode.js"
94
+ },
95
+ "./chart": {
96
+ "types": "./dist/chart.d.ts",
97
+ "import": "./dist/chart.js"
98
+ },
99
+ "./calendar": {
100
+ "types": "./dist/calendar.d.ts",
101
+ "import": "./dist/calendar.js"
102
+ },
103
+ "./graph": {
104
+ "types": "./dist/graph.d.ts",
105
+ "import": "./dist/graph.js"
106
+ }
107
+ },
108
+ "files": [
109
+ "dist"
110
+ ],
111
+ "scripts": {
112
+ "build": "tsc"
113
+ },
114
+ "dependencies": {
115
+ "@base-ui/react": "^1.6.0"
116
+ },
117
+ "peerDependencies": {
118
+ "@codemirror/language": "^6.12.4",
119
+ "@codemirror/state": "^6.7.1",
120
+ "@codemirror/view": "^6.43.6",
121
+ "@lezer/highlight": "^1.2.3",
122
+ "@tanstack/react-table": "^8.21.3",
123
+ "@xyflow/react": "^12.11.2",
124
+ "codemirror": "^6.0.2",
125
+ "qr": "^0.6.0",
126
+ "react": ">=19",
127
+ "react-day-picker": "^10.0.1",
128
+ "react-dom": ">=19",
129
+ "recharts": "^3.10.1"
130
+ },
131
+ "peerDependenciesMeta": {
132
+ "@codemirror/language": {
133
+ "optional": true
134
+ },
135
+ "@codemirror/state": {
136
+ "optional": true
137
+ },
138
+ "@codemirror/view": {
139
+ "optional": true
140
+ },
141
+ "@lezer/highlight": {
142
+ "optional": true
143
+ },
144
+ "@tanstack/react-table": {
145
+ "optional": true
146
+ },
147
+ "react-day-picker": {
148
+ "optional": true
149
+ },
150
+ "recharts": {
151
+ "optional": true
152
+ },
153
+ "codemirror": {
154
+ "optional": true
155
+ },
156
+ "qr": {
157
+ "optional": true
158
+ },
159
+ "@xyflow/react": {
160
+ "optional": true
161
+ }
162
+ },
163
+ "devDependencies": {
164
+ "@codemirror/language": "^6.12.4",
165
+ "@codemirror/state": "^6.7.1",
166
+ "@codemirror/view": "^6.43.6",
167
+ "@lezer/highlight": "^1.2.3",
168
+ "@tanstack/react-table": "8.21.3",
169
+ "codemirror": "^6.0.2",
170
+ "qr": "^0.6.0",
171
+ "react": "^19.2.0",
172
+ "react-day-picker": "^10.0.1",
173
+ "react-dom": "^19.2.0",
174
+ "recharts": "^3.10.1"
175
+ }
176
+ }