@aurea-uds/react 0.2.0 → 0.3.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.
Files changed (49) hide show
  1. package/README.md +34 -2
  2. package/dist/actions.d.ts +10 -3
  3. package/dist/actions.js +55 -6
  4. package/dist/code-client.d.ts +6 -0
  5. package/dist/code-client.js +24 -0
  6. package/dist/code.d.ts +2 -13
  7. package/dist/code.js +5 -34
  8. package/dist/data-display-client.d.ts +14 -0
  9. package/dist/data-display-client.js +22 -0
  10. package/dist/data-display.d.ts +2 -23
  11. package/dist/data-display.js +5 -14
  12. package/dist/feedback-client.d.ts +64 -0
  13. package/dist/feedback-client.js +110 -0
  14. package/dist/feedback.d.ts +2 -63
  15. package/dist/feedback.js +5 -101
  16. package/dist/file-input.js +57 -9
  17. package/dist/identity-client.d.ts +9 -0
  18. package/dist/identity-client.js +12 -0
  19. package/dist/identity.d.ts +2 -17
  20. package/dist/identity.js +5 -25
  21. package/dist/index.d.ts +2 -1
  22. package/dist/index.js +19 -3
  23. package/dist/inputs-client.d.ts +105 -0
  24. package/dist/inputs-client.js +264 -0
  25. package/dist/inputs.d.ts +2 -91
  26. package/dist/inputs.js +9 -126
  27. package/dist/internal.d.ts +20 -5
  28. package/dist/internal.js +91 -10
  29. package/dist/layout-client.d.ts +9 -0
  30. package/dist/layout-client.js +72 -0
  31. package/dist/layout.d.ts +2 -15
  32. package/dist/layout.js +5 -76
  33. package/dist/markup.d.ts +72 -0
  34. package/dist/markup.js +87 -0
  35. package/dist/media-client.d.ts +36 -0
  36. package/dist/media-client.js +239 -0
  37. package/dist/media.d.ts +2 -9
  38. package/dist/media.js +5 -99
  39. package/dist/navigation-client.d.ts +94 -0
  40. package/dist/navigation-client.js +154 -0
  41. package/dist/navigation.d.ts +2 -85
  42. package/dist/navigation.js +5 -138
  43. package/dist/overlays.d.ts +23 -0
  44. package/dist/overlays.js +45 -1
  45. package/dist/pure.d.ts +30 -0
  46. package/dist/pure.js +26 -2
  47. package/dist/system.d.ts +9 -0
  48. package/dist/system.js +46 -0
  49. package/package.json +180 -176
package/package.json CHANGED
@@ -1,176 +1,180 @@
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
- }
1
+ {
2
+ "name": "@aurea-uds/react",
3
+ "version": "0.3.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
+ "./agents": {
108
+ "types": "./dist/agents.d.ts",
109
+ "import": "./dist/agents.js"
110
+ }
111
+ },
112
+ "files": [
113
+ "dist"
114
+ ],
115
+ "scripts": {
116
+ "build": "tsc"
117
+ },
118
+ "dependencies": {
119
+ "@base-ui/react": "^1.6.0"
120
+ },
121
+ "peerDependencies": {
122
+ "@codemirror/language": "^6.12.4",
123
+ "@codemirror/state": "^6.7.1",
124
+ "@codemirror/view": "^6.43.6",
125
+ "@lezer/highlight": "^1.2.3",
126
+ "@tanstack/react-table": "^8.21.3",
127
+ "@xyflow/react": "^12.11.2",
128
+ "codemirror": "^6.0.2",
129
+ "qr": "^0.6.0",
130
+ "react": ">=19",
131
+ "react-day-picker": "^10.0.1",
132
+ "react-dom": ">=19",
133
+ "recharts": "^3.10.1"
134
+ },
135
+ "peerDependenciesMeta": {
136
+ "@codemirror/language": {
137
+ "optional": true
138
+ },
139
+ "@codemirror/state": {
140
+ "optional": true
141
+ },
142
+ "@codemirror/view": {
143
+ "optional": true
144
+ },
145
+ "@lezer/highlight": {
146
+ "optional": true
147
+ },
148
+ "@tanstack/react-table": {
149
+ "optional": true
150
+ },
151
+ "react-day-picker": {
152
+ "optional": true
153
+ },
154
+ "recharts": {
155
+ "optional": true
156
+ },
157
+ "codemirror": {
158
+ "optional": true
159
+ },
160
+ "qr": {
161
+ "optional": true
162
+ },
163
+ "@xyflow/react": {
164
+ "optional": true
165
+ }
166
+ },
167
+ "devDependencies": {
168
+ "@codemirror/language": "^6.12.4",
169
+ "@codemirror/state": "^6.7.1",
170
+ "@codemirror/view": "^6.43.6",
171
+ "@lezer/highlight": "^1.2.3",
172
+ "@tanstack/react-table": "8.21.3",
173
+ "codemirror": "^6.0.2",
174
+ "qr": "^0.6.0",
175
+ "react": "^19.2.0",
176
+ "react-day-picker": "^10.0.1",
177
+ "react-dom": "^19.2.0",
178
+ "recharts": "^3.10.1"
179
+ }
180
+ }