@chekinapp/tokens 0.0.20 → 0.0.21

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@chekinapp/tokens",
3
- "version": "0.0.20",
3
+ "version": "0.0.21",
4
4
  "description": "Chekin design tokens — CSS variables, JSON, and Tailwind preset",
5
5
  "private": false,
6
6
  "license": "UNLICENSED",
@@ -77,6 +77,7 @@
77
77
 
78
78
  /* ── Circular Loader ──────────────────────────────────────────────── */
79
79
  --circular-loader-color: var(--chekin-color-brand-blue);
80
+ --circular-loader-label-color: var(--chekin-color-gray-1);
80
81
 
81
82
  /* ── Accordion ────────────────────────────────────────────────────── */
82
83
  --accordion-item-radius: 8px;
@@ -245,4 +246,44 @@
245
246
  --error-message-color: var(--chekin-color-brand-red);
246
247
 
247
248
  --modal-background: var(--chekin-color-white);
249
+
250
+ /* ── Tabs (dashboard-only, minimal tokens) ─────────────────────────────── */
251
+ --tabs-list-border: var(--chekin-color-gray-3);
252
+ --tabs-list-bg: var(--chekin-color-surface-input-empty);
253
+ --tabs-list-separator: var(--chekin-color-gray-3);
254
+ --tabs-trigger-text: var(--chekin-color-gray-1);
255
+ --tabs-trigger-active-bg: var(--chekin-color-brand-blue);
256
+ --tabs-trigger-active-text: var(--chekin-color-white);
257
+ --tabs-trigger-hover-bg: var(--chekin-color-brand-blue);
258
+ --tabs-trigger-hover-text: var(--chekin-color-white);
259
+ --tabs-trigger-active-border: var(--chekin-color-brand-blue);
260
+ --tabs-trigger-hover-border-opacity: 0.3;
261
+
262
+ /* ── Switch (dashboard-only, minimal tokens) ─────────────────────────────── */
263
+ --switch-checked-bg: var(--chekin-color-brand-blue);
264
+ --switch-unchecked-bg: var(--chekin-color-gray-2);
265
+ --switch-thumb-bg: var(--chekin-color-white);
266
+
267
+ /* ── ToggleGroup (dashboard-only, minimal tokens) ──────────────────────────── */
268
+ --toggle-group-border: var(--chekin-color-gray-3);
269
+ --toggle-group-bg: var(--chekin-color-surface-input-empty);
270
+ --toggle-focus-ring: var(--chekin-color-brand-blue);
271
+ --toggle-border: var(--chekin-color-gray-3);
272
+ --toggle-bg: var(--chekin-color-surface-input-empty);
273
+ --toggle-text: var(--chekin-color-gray-1);
274
+ --toggle-hover-border: var(--chekin-color-brand-blue);
275
+ --toggle-hover-bg: var(--chekin-color-brand-blue);
276
+ --toggle-hover-text: var(--chekin-color-white);
277
+ --toggle-active-border: var(--chekin-color-brand-blue);
278
+ --toggle-active-bg: var(--chekin-color-white);
279
+ --toggle-active-text: var(--chekin-color-brand-blue);
280
+ --toggle-tab-active-bg: var(--chekin-color-brand-blue);
281
+ --toggle-tab-active-text: var(--chekin-color-white);
282
+ --toggle-sky-blue-active-bg: var(--chekin-color-surface-autocomplete);
283
+ --toggle-sky-blue-hover-bg: var(--chekin-color-surface-input-empty);
284
+ --toggles-label-text: var(--chekin-color-brand-navy);
285
+
286
+ /* ── Radio (dashboard-only, minimal tokens) ────────────────────────────────── */
287
+ --radio-border: var(--chekin-color-brand-blue);
288
+ --radio-indicator: var(--chekin-color-brand-blue);
248
289
  }
@@ -28,4 +28,24 @@
28
28
  --numbered-list-marker-bg: var(--chekin-host-sdk-color-brand);
29
29
 
30
30
  --circular-loader-color: var(--chekin-host-sdk-color-brand);
31
+
32
+ /* ── Tabs (dashboard-only, minimal tokens) ─────────────────────────────── */
33
+ --tabs-trigger-active-bg: var(--chekin-host-sdk-color-brand);
34
+ --tabs-trigger-hover-bg: var(--chekin-host-sdk-color-brand);
35
+ --tabs-trigger-active-border: var(--chekin-host-sdk-color-brand);
36
+
37
+ /* ── Switch (dashboard-only, minimal tokens) ─────────────────────────────── */
38
+ --switch-checked-bg: var(--chekin-host-sdk-color-brand);
39
+
40
+ /* ── ToggleGroup (dashboard-only, minimal tokens) ──────────────────────────── */
41
+ --toggle-focus-ring: var(--chekin-host-sdk-color-brand);
42
+ --toggle-hover-border: var(--chekin-host-sdk-color-brand);
43
+ --toggle-hover-bg: var(--chekin-host-sdk-color-brand);
44
+ --toggle-active-border: var(--chekin-host-sdk-color-brand);
45
+ --toggle-active-text: var(--chekin-host-sdk-color-brand);
46
+ --toggle-tab-active-bg: var(--chekin-host-sdk-color-brand);
47
+
48
+ /* ── Radio (dashboard-only, minimal tokens) ────────────────────────────────── */
49
+ --radio-border: var(--chekin-host-sdk-color-brand);
50
+ --radio-indicator: var(--chekin-host-sdk-color-brand);
31
51
  }