@chekinapp/tokens 0.0.22 → 0.0.24
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 +1 -1
- package/src/base/components.css +19 -0
- package/src/surfaces/guest.css +1 -0
package/package.json
CHANGED
package/src/base/components.css
CHANGED
|
@@ -82,6 +82,13 @@
|
|
|
82
82
|
--circular-loader-color: var(--chekin-color-brand-blue);
|
|
83
83
|
--circular-loader-label-color: var(--chekin-color-gray-1);
|
|
84
84
|
|
|
85
|
+
/* ── Counter ──────────────────────────────────────────────────────── */
|
|
86
|
+
--counter-button-border: var(--chekin-color-brand-blue);
|
|
87
|
+
--counter-icon-color: var(--chekin-color-brand-blue);
|
|
88
|
+
--counter-text: #152946;
|
|
89
|
+
--counter-error-border: #f84b7a;
|
|
90
|
+
--counter-error-text: #f84b7a;
|
|
91
|
+
|
|
85
92
|
/* ── Accordion ────────────────────────────────────────────────────── */
|
|
86
93
|
--accordion-item-radius: 8px;
|
|
87
94
|
--accordion-item-border: #e5e6ee;
|
|
@@ -106,6 +113,11 @@
|
|
|
106
113
|
--accordion-content-line-height: 22px;
|
|
107
114
|
--accordion-content-color: var(--chekin-color-gray-1);
|
|
108
115
|
|
|
116
|
+
/* ── Alert (guest-app specific, shadcn-compatible API) ────────────── */
|
|
117
|
+
--alert-radius: 8px;
|
|
118
|
+
--alert-default-text: var(--chekin-color-brand-navy);
|
|
119
|
+
--alert-destructive-text: hsl(0 84.2% 60.2%);
|
|
120
|
+
|
|
109
121
|
/* ── AlertBox ──────────────────────────────────────────────────────── */
|
|
110
122
|
--alert-box-radius: 10px;
|
|
111
123
|
--alert-box-info-bg: #eff6ff;
|
|
@@ -175,6 +187,11 @@
|
|
|
175
187
|
/* ── RotateArrow (dashboard-only, migrated from ui-kit-2) ───────────── */
|
|
176
188
|
--rotate-arrow-color: var(--brand-color, var(--chekin-color-brand-blue));
|
|
177
189
|
|
|
190
|
+
/* ── RatingRadioGroup ──────────────────────────────────────────────── */
|
|
191
|
+
--rating-radio-group-star-selected-color: #facc15;
|
|
192
|
+
--rating-radio-group-star-unselected-color: #e6e6e6;
|
|
193
|
+
--rating-radio-group-star-focus-color: var(--chekin-color-brand-blue);
|
|
194
|
+
|
|
178
195
|
/* ── SectionGroup (dashboard-only, migrated from ui-kit-2) ──────────── */
|
|
179
196
|
--section-group-bg: var(--chekin-color-white);
|
|
180
197
|
--section-group-border: #e5e6ee;
|
|
@@ -296,4 +313,6 @@
|
|
|
296
313
|
/* ── Radio (dashboard-only, minimal tokens) ────────────────────────────────── */
|
|
297
314
|
--radio-border: var(--chekin-color-brand-blue);
|
|
298
315
|
--radio-indicator: var(--chekin-color-brand-blue);
|
|
316
|
+
|
|
317
|
+
--field-max-width: 296px;
|
|
299
318
|
}
|