@chekinapp/tokens 0.2.3 → 0.2.5
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 +35 -1
package/package.json
CHANGED
package/src/base/components.css
CHANGED
|
@@ -120,15 +120,37 @@
|
|
|
120
120
|
|
|
121
121
|
/* ── AlertBox ──────────────────────────────────────────────────────── */
|
|
122
122
|
--alert-box-radius: 10px;
|
|
123
|
+
--alert-box-border-width: 1px;
|
|
124
|
+
|
|
123
125
|
--alert-box-info-bg: var(--chekin-blue-50);
|
|
126
|
+
--alert-box-info-border: transparent;
|
|
127
|
+
--alert-box-info-text: inherit;
|
|
124
128
|
--alert-box-info-icon: #2563eb;
|
|
129
|
+
--alert-box-info-icon-fill: none;
|
|
130
|
+
|
|
125
131
|
--alert-box-warning-bg: rgba(250, 204, 21, 0.3);
|
|
132
|
+
--alert-box-warning-border: transparent;
|
|
133
|
+
--alert-box-warning-text: inherit;
|
|
126
134
|
--alert-box-warning-icon: var(--chekin-amber-500);
|
|
135
|
+
--alert-box-warning-icon-fill: none;
|
|
136
|
+
|
|
127
137
|
--alert-box-success-bg: var(--chekin-green-50);
|
|
128
|
-
--alert-box-success-
|
|
138
|
+
--alert-box-success-border: transparent;
|
|
129
139
|
--alert-box-success-text: var(--chekin-neutral-600);
|
|
140
|
+
--alert-box-success-icon: var(--chekin-green-600);
|
|
141
|
+
--alert-box-success-icon-fill: none;
|
|
142
|
+
|
|
130
143
|
--alert-box-error-bg: var(--chekin-red-100);
|
|
144
|
+
--alert-box-error-border: transparent;
|
|
145
|
+
--alert-box-error-text: inherit;
|
|
131
146
|
--alert-box-error-icon: var(--chekin-red-500);
|
|
147
|
+
--alert-box-error-icon-fill: none;
|
|
148
|
+
|
|
149
|
+
--alert-box-light-bg: var(--chekin-neutral-0);
|
|
150
|
+
--alert-box-light-border: var(--chekin-border-default);
|
|
151
|
+
--alert-box-light-text: var(--chekin-text-primary);
|
|
152
|
+
--alert-box-light-icon: var(--chekin-amber-500);
|
|
153
|
+
--alert-box-light-icon-fill: none;
|
|
132
154
|
|
|
133
155
|
/* ── AudioPlayer ─────────────────────────────────────────────────────── */
|
|
134
156
|
--audio-player-button-bg: var(--chekin-color-brand-blue);
|
|
@@ -165,6 +187,12 @@
|
|
|
165
187
|
--breadcrumbs-current-color: var(--chekin-color-brand-navy);
|
|
166
188
|
--breadcrumbs-separator-color: var(--chekin-color-brand-navy);
|
|
167
189
|
|
|
190
|
+
/* ── Link (dashboard-only, minimal tokens) ──────────────────────────── */
|
|
191
|
+
--link-text-color: var(--button-link-text);
|
|
192
|
+
--link-disabled-text-color: var(--chekin-neutral-400);
|
|
193
|
+
--link-font-weight: inherit;
|
|
194
|
+
--link-text-decoration: none;
|
|
195
|
+
|
|
168
196
|
/* ── Checkbox ──────────────────────────────────────────────────────── */
|
|
169
197
|
--checkbox-border: var(--chekin-color-brand-blue);
|
|
170
198
|
--checkbox-bg: transparent;
|
|
@@ -206,6 +234,12 @@
|
|
|
206
234
|
--section-group-title-color: var(--chekin-color-brand-navy);
|
|
207
235
|
--section-group-muted-text: var(--chekin-color-gray-1);
|
|
208
236
|
|
|
237
|
+
/* ── Section (dashboard-only, migrated from ui-kit-2) ───────────────── */
|
|
238
|
+
--section-title-color: var(--chekin-color-brand-navy);
|
|
239
|
+
--section-subtitle-color: var(--chekin-color-gray-1);
|
|
240
|
+
--section-tooltip-color: var(--chekin-color-gray-1);
|
|
241
|
+
--section-link-color: var(--chekin-color-brand-blue);
|
|
242
|
+
|
|
209
243
|
/* ── SignatureCanvas (dashboard-only, migrated from ui-kit-2) ───────── */
|
|
210
244
|
--signature-canvas-border: var(--chekin-color-brand-blue);
|
|
211
245
|
--signature-canvas-placeholder-bg: var(--chekin-blue-tint-bright);
|