@atelier-ui/create-workspace 0.0.17 → 0.0.19
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/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,25 @@
|
|
|
1
|
+
## 0.0.19 (2026-04-23)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- **tokens:** point --ui-color-error-text at the AA-safe darker danger ([#991](https://github.com/DominikPieper/atelier-ui/issues/991))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Claude Opus 4.7 (1M context)
|
|
10
|
+
- Dominik Pieper @DominikPieper
|
|
11
|
+
|
|
12
|
+
## 0.0.18 (2026-04-23)
|
|
13
|
+
|
|
14
|
+
### 🚀 Features
|
|
15
|
+
|
|
16
|
+
- **tokens:** add semantic-bg + semantic-text pairs for AA-safe Badge/Alert ([#22](https://github.com/DominikPieper/atelier-ui/issues/22), [#166534](https://github.com/DominikPieper/atelier-ui/issues/166534), [#854](https://github.com/DominikPieper/atelier-ui/issues/854), [#991](https://github.com/DominikPieper/atelier-ui/issues/991), [#0](https://github.com/DominikPieper/atelier-ui/issues/0))
|
|
17
|
+
|
|
18
|
+
### ❤️ Thank You
|
|
19
|
+
|
|
20
|
+
- Claude Opus 4.7 (1M context)
|
|
21
|
+
- Dominik Pieper @DominikPieper
|
|
22
|
+
|
|
1
23
|
## 0.0.17 (2026-04-23)
|
|
2
24
|
|
|
3
25
|
### 🩹 Fixes
|
package/package.json
CHANGED
|
@@ -44,6 +44,16 @@
|
|
|
44
44
|
--ui-color-warning: #f59e0b;
|
|
45
45
|
--ui-color-info: #06b6d4;
|
|
46
46
|
|
|
47
|
+
/* Semantic — AA-safe dark-text-on-tinted-bg pairs (for Badge, Alert, Toast) */
|
|
48
|
+
--ui-color-success-bg: #dcfce7;
|
|
49
|
+
--ui-color-success-text: #166534;
|
|
50
|
+
--ui-color-warning-bg: #fef9c3;
|
|
51
|
+
--ui-color-warning-text: #854d0e;
|
|
52
|
+
--ui-color-danger-bg: #fee2e2;
|
|
53
|
+
--ui-color-danger-text: #991b1b;
|
|
54
|
+
--ui-color-info-bg: #e0f2fe;
|
|
55
|
+
--ui-color-info-text: #0c4a6e;
|
|
56
|
+
|
|
47
57
|
/* Colors — Surfaces */
|
|
48
58
|
--ui-color-surface: #ffffff;
|
|
49
59
|
--ui-color-surface-raised: #fafafa;
|
|
@@ -128,7 +138,7 @@
|
|
|
128
138
|
--ui-color-input-border-focus: var(--ui-color-primary);
|
|
129
139
|
--ui-color-input-border-invalid: var(--ui-color-danger);
|
|
130
140
|
--ui-color-placeholder: #4b5563;
|
|
131
|
-
--ui-color-error-text: var(--ui-color-danger);
|
|
141
|
+
--ui-color-error-text: var(--ui-color-danger-text);
|
|
132
142
|
|
|
133
143
|
/* Z-index scale */
|
|
134
144
|
--ui-z-base: 0;
|
|
@@ -157,6 +167,15 @@
|
|
|
157
167
|
--ui-color-warning: #fbbf24;
|
|
158
168
|
--ui-color-info: #22d3ee;
|
|
159
169
|
|
|
170
|
+
--ui-color-success-bg: #14532d;
|
|
171
|
+
--ui-color-success-text: #86efac;
|
|
172
|
+
--ui-color-warning-bg: #78350f;
|
|
173
|
+
--ui-color-warning-text: #fde68a;
|
|
174
|
+
--ui-color-danger-bg: #7f1d1d;
|
|
175
|
+
--ui-color-danger-text: #fecaca;
|
|
176
|
+
--ui-color-info-bg: #0c4a6e;
|
|
177
|
+
--ui-color-info-text: #bae6fd;
|
|
178
|
+
|
|
160
179
|
--ui-color-surface: #28283c;
|
|
161
180
|
--ui-color-surface-raised: #2f2f45;
|
|
162
181
|
--ui-color-surface-sunken: #22222f;
|
|
@@ -205,6 +224,15 @@
|
|
|
205
224
|
--ui-color-warning: #fbbf24;
|
|
206
225
|
--ui-color-info: #22d3ee;
|
|
207
226
|
|
|
227
|
+
--ui-color-success-bg: #14532d;
|
|
228
|
+
--ui-color-success-text: #86efac;
|
|
229
|
+
--ui-color-warning-bg: #78350f;
|
|
230
|
+
--ui-color-warning-text: #fde68a;
|
|
231
|
+
--ui-color-danger-bg: #7f1d1d;
|
|
232
|
+
--ui-color-danger-text: #fecaca;
|
|
233
|
+
--ui-color-info-bg: #0c4a6e;
|
|
234
|
+
--ui-color-info-text: #bae6fd;
|
|
235
|
+
|
|
208
236
|
--ui-color-surface: #28283c;
|
|
209
237
|
--ui-color-surface-raised: #2f2f45;
|
|
210
238
|
--ui-color-surface-sunken: #22222f;
|
|
@@ -249,6 +277,15 @@
|
|
|
249
277
|
--ui-color-success: #22c55e;
|
|
250
278
|
--ui-color-warning: #f59e0b;
|
|
251
279
|
--ui-color-info: #06b6d4;
|
|
280
|
+
/* Semantic — AA-safe dark-text-on-tinted-bg pairs (for Badge, Alert, Toast) */
|
|
281
|
+
--ui-color-success-bg: #dcfce7;
|
|
282
|
+
--ui-color-success-text: #166534;
|
|
283
|
+
--ui-color-warning-bg: #fef9c3;
|
|
284
|
+
--ui-color-warning-text: #854d0e;
|
|
285
|
+
--ui-color-danger-bg: #fee2e2;
|
|
286
|
+
--ui-color-danger-text: #991b1b;
|
|
287
|
+
--ui-color-info-bg: #e0f2fe;
|
|
288
|
+
--ui-color-info-text: #0c4a6e;
|
|
252
289
|
--ui-color-surface: #ffffff;
|
|
253
290
|
--ui-color-surface-raised: #fafafa;
|
|
254
291
|
--ui-color-surface-sunken: #f5f5f5;
|