@chekinapp/tokens 0.0.21 → 0.0.22

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.21",
3
+ "version": "0.0.22",
4
4
  "description": "Chekin design tokens — CSS variables, JSON, and Tailwind preset",
5
5
  "private": false,
6
6
  "license": "UNLICENSED",
@@ -72,8 +72,11 @@
72
72
  --dialog-content-border: var(--chekin-color-gray-3);
73
73
  --dialog-content-radius: 16px;
74
74
  --dialog-content-text: var(--chekin-color-brand-navy);
75
+ --dialog-title-font-size: 18px;
76
+ --dialog-title-font-weight: var(--chekin-font-weight-semibold);
75
77
  --dialog-description-text: var(--chekin-color-gray-1);
76
78
  --dialog-close-radius: var(--chekin-radius-small);
79
+ --dialog-footer-gap: 16px;
77
80
 
78
81
  /* ── Circular Loader ──────────────────────────────────────────────── */
79
82
  --circular-loader-color: var(--chekin-color-brand-blue);
@@ -185,9 +188,16 @@
185
188
  --signature-canvas-placeholder-text: var(--chekin-color-brand-blue);
186
189
  --signature-canvas-shadow: 0 16px 16px #2699fb12;
187
190
 
188
- /* ── Slider (dashboard-only, migrated from ui-kit-2) ───────────────── */
189
- --slider-control-bg: #e9f5ff;
190
- --slider-control-color: var(--chekin-color-brand-blue);
191
+ /* ── Carousel (image carousel controls) ─────────────────────────────── */
192
+ --carousel-control-bg: #e9f5ff;
193
+ --carousel-control-color: var(--chekin-color-brand-blue);
194
+
195
+ /* ── Slider (range input) ─────────────────────────────────────────── */
196
+ --slider-track-bg: color-mix(in srgb, var(--chekin-color-brand-blue) 20%, transparent);
197
+ --slider-range-bg: var(--chekin-color-brand-blue);
198
+ --slider-thumb-bg: #e5e7eb;
199
+ --slider-thumb-border: var(--chekin-color-brand-blue);
200
+ --slider-focus-ring: var(--chekin-color-brand-blue);
191
201
 
192
202
  /* ── Table (dashboard-only, minimal tokens) ──────────────────────────── */
193
203
  --table-border: #e5e6ee;
@@ -45,4 +45,9 @@
45
45
  --button-outline-hover-bg: rgba(0, 0, 0, 0.04);
46
46
  --circular-loader-color: var(--chekin-color-brand-blue);
47
47
  --error-message-color: #f84b7a;
48
+
49
+ /* Dialog: rounder corners and tighter footer for guest */
50
+ --dialog-content-radius: 20px;
51
+
52
+ --alert-box-info-bg: #e3efff;
48
53
  }