@tenerife.music/ui 1.0.15 → 1.1.0
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/README.md +1 -1
- package/dist/{colors-BZtZJBBm.d.cts → colors-BrFmCQv-.d.cts} +5 -0
- package/dist/{colors-BZtZJBBm.d.ts → colors-BrFmCQv-.d.ts} +5 -0
- package/dist/{index-CP_dmFn4.d.cts → index-Cj8oRSOc.d.cts} +426 -207
- package/dist/{index-CP_dmFn4.d.ts → index-Cj8oRSOc.d.ts} +426 -207
- package/dist/index.cjs +5023 -7193
- package/dist/index.d.cts +1537 -1612
- package/dist/index.d.ts +1537 -1612
- package/dist/index.mjs +4998 -7142
- package/dist/preset.cjs +34 -63
- package/dist/preset.mjs +34 -63
- package/dist/styles.css +3498 -58
- package/dist/theme/index.cjs +1817 -639
- package/dist/theme/index.d.cts +2 -2
- package/dist/theme/index.d.ts +2 -2
- package/dist/theme/index.mjs +1816 -638
- package/dist/tokens/index.cjs +463 -440
- package/dist/tokens/index.d.cts +2 -2
- package/dist/tokens/index.d.ts +2 -2
- package/dist/tokens/index.mjs +464 -440
- package/package.json +27 -19
|
@@ -112,9 +112,23 @@ type AlertVariant = keyof typeof ALERT_TOKENS.variant;
|
|
|
112
112
|
* Button Component Tokens
|
|
113
113
|
*
|
|
114
114
|
* Component-level design tokens for Button component.
|
|
115
|
-
* Maps foundation tokens (spacing, typography, radius, shadows) to button-specific usage.
|
|
115
|
+
* Maps foundation tokens (spacing, typography, radius, shadows, motion) to button-specific usage.
|
|
116
116
|
*
|
|
117
117
|
* All values reference foundation tokens to ensure consistency across the design system.
|
|
118
|
+
*
|
|
119
|
+
* Authority Compliance:
|
|
120
|
+
* - Motion Authority: Uses MOTION_TOKENS.transitionPreset.colors
|
|
121
|
+
* - Radius Authority: References componentRadius.button.md
|
|
122
|
+
* - Typography Authority: References fontSize tokens
|
|
123
|
+
* - Spacing Authority: References semanticSpacing tokens
|
|
124
|
+
* - State Authority: Uses State Matrix CSS variables
|
|
125
|
+
* - Interaction Authority: Follows Interaction Authority Contract
|
|
126
|
+
*
|
|
127
|
+
* @enforcement TUNG_TOKEN_AUTHORITY_EXPANSION_PLAN
|
|
128
|
+
* @see docs/architecture/MOTION_AUTHORITY_CONTRACT.md
|
|
129
|
+
* @see docs/architecture/RADIUS_AUTHORITY_CONTRACT.md
|
|
130
|
+
* @see docs/architecture/TYPOGRAPHY_AUTHORITY_CONTRACT.md
|
|
131
|
+
* @see docs/architecture/SPACING_AUTHORITY_CONTRACT.md
|
|
118
132
|
*/
|
|
119
133
|
/**
|
|
120
134
|
* Button Component Tokens
|
|
@@ -146,20 +160,37 @@ declare const BUTTON_TOKENS: {
|
|
|
146
160
|
readonly vertical: {
|
|
147
161
|
readonly sm: "py-xs";
|
|
148
162
|
readonly md: "py-sm";
|
|
163
|
+
readonly lg: "py-md";
|
|
149
164
|
};
|
|
150
165
|
};
|
|
151
166
|
/**
|
|
152
|
-
* Gap between icon and text
|
|
167
|
+
* Gap between icon and text by size
|
|
168
|
+
* Scales with button size for visual consistency
|
|
153
169
|
*/
|
|
154
|
-
readonly gap:
|
|
170
|
+
readonly gap: {
|
|
171
|
+
readonly sm: "gap-xs";
|
|
172
|
+
readonly md: "gap-sm";
|
|
173
|
+
readonly lg: "gap-md";
|
|
174
|
+
};
|
|
155
175
|
/**
|
|
156
176
|
* Border radius for all button sizes
|
|
177
|
+
* Consistent radius across sizes for visual harmony
|
|
178
|
+
*
|
|
179
|
+
* @enforcement TUNG_TOKEN_AUTHORITY_EXPANSION_PLAN
|
|
180
|
+
* @rule References componentRadius.button.md (6px / 0.375rem) from Radius Authority
|
|
181
|
+
* @see docs/architecture/RADIUS_AUTHORITY_CONTRACT.md
|
|
157
182
|
*/
|
|
158
183
|
readonly radius: "rounded-md";
|
|
159
184
|
/**
|
|
160
|
-
* Icon size within buttons
|
|
185
|
+
* Icon size within buttons by button size
|
|
186
|
+
* Scales proportionally with button size for visual balance
|
|
161
187
|
*/
|
|
162
|
-
readonly iconSize:
|
|
188
|
+
readonly iconSize: {
|
|
189
|
+
readonly sm: "size-3.5";
|
|
190
|
+
readonly md: "size-4";
|
|
191
|
+
readonly lg: "size-5";
|
|
192
|
+
readonly icon: "size-4";
|
|
193
|
+
};
|
|
163
194
|
/**
|
|
164
195
|
* Width tokens
|
|
165
196
|
*/
|
|
@@ -168,12 +199,16 @@ declare const BUTTON_TOKENS: {
|
|
|
168
199
|
};
|
|
169
200
|
/**
|
|
170
201
|
* Font sizes by button size
|
|
171
|
-
*
|
|
202
|
+
* References foundation typography fontSize tokens from Typography Authority
|
|
203
|
+
*
|
|
204
|
+
* @enforcement TUNG_TOKEN_AUTHORITY_EXPANSION_PLAN
|
|
205
|
+
* @rule All fontSize values reference Typography Authority tokens
|
|
206
|
+
* @see docs/architecture/TYPOGRAPHY_AUTHORITY_CONTRACT.md
|
|
172
207
|
*/
|
|
173
208
|
readonly fontSize: {
|
|
174
209
|
readonly sm: "text-xs";
|
|
175
210
|
readonly md: "text-sm";
|
|
176
|
-
readonly lg: "text-
|
|
211
|
+
readonly lg: "text-base";
|
|
177
212
|
};
|
|
178
213
|
/**
|
|
179
214
|
* Shadow tokens by variant
|
|
@@ -186,48 +221,181 @@ declare const BUTTON_TOKENS: {
|
|
|
186
221
|
/**
|
|
187
222
|
* Color tokens for button variants
|
|
188
223
|
* Uses semantic color tokens that map to CSS variables
|
|
224
|
+
*
|
|
225
|
+
* State tokens (hover, active, disabled) use CSS variables from State Matrix.
|
|
226
|
+
* All states are injected via updateStateMatrixFromTokens() and consumed via arbitrary values.
|
|
227
|
+
* States react to Color Authority changes automatically through State Matrix.
|
|
228
|
+
*
|
|
229
|
+
* Interaction Authority Rules:
|
|
230
|
+
* - Hover (Priority 4): hover: prefix - ONLY when !disabled && !loading && pointer-events:auto
|
|
231
|
+
* - Active (Priority 3): active: prefix - ONLY when !disabled && !loading && mousedown
|
|
232
|
+
* - Focus (Priority 5): focus-visible: prefix - ONLY when !disabled && keyboard navigation
|
|
233
|
+
* - Disabled (Priority 1): disabled: prefix - Blocks ALL interactions
|
|
234
|
+
* - Loading (Priority 2): loading: prefix - Blocks hover/active (when implemented)
|
|
235
|
+
* - Base (Priority 6): No prefix - Default state, pointer-events: auto
|
|
236
|
+
*
|
|
237
|
+
* @enforcement TUNG_STATE_AUTHORITY_FOUNDATION_LOCK
|
|
238
|
+
* @enforcement TUNG_INTERACTION_AUTHORITY_FOUNDATION
|
|
239
|
+
* @rule States use CSS variables, not Tailwind variants
|
|
240
|
+
* @rule All state variables follow pattern: --{component}-{variant}-{state}-{property}
|
|
241
|
+
* @rule Visual states (colors) are SEPARATE from interaction states (pointer-events)
|
|
242
|
+
* @rule Hover MUST work with real mouse cursor, NOT just DevTools force state
|
|
243
|
+
* @rule Active MUST activate only on mousedown, NOT on hover
|
|
244
|
+
* @rule Focus MUST activate only on keyboard navigation, NOT on mouse click
|
|
245
|
+
*
|
|
246
|
+
* @see docs/architecture/INTERACTION_AUTHORITY_CONTRACT.md
|
|
189
247
|
*/
|
|
190
248
|
readonly variant: {
|
|
191
249
|
readonly primary: {
|
|
192
|
-
readonly background: "bg-primary";
|
|
250
|
+
readonly background: "bg-[hsl(var(--button-primary-base-bg))]";
|
|
193
251
|
readonly text: "text-primary-foreground";
|
|
194
|
-
readonly hover: "hover:bg-primary
|
|
252
|
+
readonly hover: "hover:bg-[hsl(var(--button-primary-hover-bg))]";
|
|
253
|
+
readonly active: "active:bg-[hsl(var(--button-primary-active-bg))]";
|
|
254
|
+
readonly focus: "focus-visible:bg-[hsl(var(--button-primary-focus-bg))]";
|
|
255
|
+
readonly disabled: {
|
|
256
|
+
readonly background: "disabled:bg-[hsl(var(--button-primary-disabled-bg))]";
|
|
257
|
+
readonly text: "disabled:text-[hsl(var(--button-primary-disabled-text))]";
|
|
258
|
+
};
|
|
259
|
+
readonly loading: "bg-[hsl(var(--button-primary-loading-bg))]";
|
|
195
260
|
};
|
|
196
261
|
readonly secondary: {
|
|
197
262
|
readonly background: "bg-secondary";
|
|
198
263
|
readonly text: "text-secondary-foreground";
|
|
199
|
-
readonly hover: "hover:bg-secondary
|
|
264
|
+
readonly hover: "hover:bg-[hsl(var(--button-secondary-hover-bg))]";
|
|
265
|
+
readonly active: "active:bg-[hsl(var(--button-secondary-active-bg))]";
|
|
266
|
+
readonly disabled: {
|
|
267
|
+
readonly background: "disabled:bg-[hsl(var(--button-secondary-disabled-bg))]";
|
|
268
|
+
readonly text: "disabled:text-[hsl(var(--button-secondary-disabled-text))]";
|
|
269
|
+
};
|
|
200
270
|
};
|
|
201
271
|
readonly accent: {
|
|
202
272
|
readonly background: "bg-accent";
|
|
203
273
|
readonly text: "text-accent-foreground";
|
|
204
|
-
readonly hover: "hover:bg-accent
|
|
274
|
+
readonly hover: "hover:bg-[hsl(var(--button-accent-hover-bg))]";
|
|
275
|
+
readonly active: "active:bg-[hsl(var(--button-accent-active-bg))]";
|
|
276
|
+
readonly disabled: {
|
|
277
|
+
readonly background: "disabled:bg-[hsl(var(--button-accent-disabled-bg))]";
|
|
278
|
+
readonly text: "disabled:text-[hsl(var(--button-accent-disabled-text))]";
|
|
279
|
+
};
|
|
205
280
|
};
|
|
206
281
|
readonly outline: {
|
|
207
282
|
readonly border: "border border-input";
|
|
208
283
|
readonly background: "bg-background";
|
|
284
|
+
readonly text: "text-foreground";
|
|
209
285
|
readonly hover: {
|
|
210
|
-
readonly background: "hover:bg-
|
|
211
|
-
readonly text: "hover:text-
|
|
286
|
+
readonly background: "hover:bg-[hsl(var(--button-outline-hover-bg))]";
|
|
287
|
+
readonly text: "hover:text-[hsl(var(--button-outline-hover-text))]";
|
|
288
|
+
readonly border: "hover:border-[hsl(var(--button-outline-hover-border))]";
|
|
289
|
+
};
|
|
290
|
+
readonly active: {
|
|
291
|
+
readonly background: "active:bg-[hsl(var(--button-outline-active-bg))]";
|
|
292
|
+
readonly text: "active:text-[hsl(var(--button-outline-active-text))]";
|
|
293
|
+
readonly border: "active:border-[hsl(var(--button-outline-active-border))]";
|
|
294
|
+
};
|
|
295
|
+
readonly disabled: {
|
|
296
|
+
readonly background: "disabled:bg-[hsl(var(--button-outline-disabled-bg))]";
|
|
297
|
+
readonly text: "disabled:text-[hsl(var(--button-outline-disabled-text))]";
|
|
298
|
+
readonly border: "disabled:border-[hsl(var(--button-outline-disabled-border))]";
|
|
212
299
|
};
|
|
213
300
|
};
|
|
214
301
|
readonly ghost: {
|
|
302
|
+
readonly background: "bg-transparent";
|
|
303
|
+
readonly text: "text-foreground";
|
|
215
304
|
readonly hover: {
|
|
216
|
-
readonly background: "hover:bg-
|
|
217
|
-
readonly text: "hover:text-
|
|
305
|
+
readonly background: "hover:bg-[hsl(var(--button-ghost-hover-bg))]";
|
|
306
|
+
readonly text: "hover:text-[hsl(var(--button-ghost-hover-text))]";
|
|
307
|
+
};
|
|
308
|
+
readonly active: {
|
|
309
|
+
readonly background: "active:bg-[hsl(var(--button-ghost-active-bg))]";
|
|
310
|
+
readonly text: "active:text-[hsl(var(--button-ghost-active-text))]";
|
|
311
|
+
};
|
|
312
|
+
readonly disabled: {
|
|
313
|
+
readonly background: "disabled:bg-[hsl(var(--button-ghost-disabled-bg))]";
|
|
314
|
+
readonly text: "disabled:text-[hsl(var(--button-ghost-disabled-text))]";
|
|
218
315
|
};
|
|
219
316
|
};
|
|
220
317
|
readonly destructive: {
|
|
221
318
|
readonly background: "bg-destructive";
|
|
222
319
|
readonly text: "text-destructive-foreground";
|
|
223
|
-
readonly hover: "hover:bg-destructive
|
|
320
|
+
readonly hover: "hover:bg-[hsl(var(--button-destructive-hover-bg))]";
|
|
321
|
+
readonly active: "active:bg-[hsl(var(--button-destructive-active-bg))]";
|
|
322
|
+
readonly disabled: {
|
|
323
|
+
readonly background: "disabled:bg-[hsl(var(--button-destructive-disabled-bg))]";
|
|
324
|
+
readonly text: "disabled:text-[hsl(var(--button-destructive-disabled-text))]";
|
|
325
|
+
};
|
|
224
326
|
};
|
|
225
327
|
};
|
|
226
328
|
/**
|
|
227
329
|
* Transition tokens
|
|
330
|
+
* References Motion Authority tokens for consistent motion behavior
|
|
331
|
+
*
|
|
332
|
+
* @enforcement TUNG_TOKEN_AUTHORITY_EXPANSION_PLAN
|
|
333
|
+
* @rule Uses MOTION_TOKENS.transitionPreset.colors from Motion Authority
|
|
334
|
+
* @rule Motion transitions MUST use canonical motion tokens only
|
|
335
|
+
* @see docs/architecture/MOTION_AUTHORITY_CONTRACT.md
|
|
228
336
|
*/
|
|
229
337
|
readonly transition: {
|
|
230
|
-
readonly colors: "transition-colors";
|
|
338
|
+
readonly colors: "transition-colors duration-normal ease-out";
|
|
339
|
+
};
|
|
340
|
+
/**
|
|
341
|
+
* Global state tokens
|
|
342
|
+
* Shared state tokens that apply across all variants
|
|
343
|
+
* Variant-specific states are defined in variant.*.active and variant.*.disabled
|
|
344
|
+
*
|
|
345
|
+
* @enforcement TUNG_INTERACTION_AUTHORITY_FOUNDATION
|
|
346
|
+
* @rule All interaction states MUST follow Interaction Authority Contract
|
|
347
|
+
* @rule State priority: disabled > loading > active > hover > focus-visible > base
|
|
348
|
+
* @rule Visual states (colors) are SEPARATE from interaction states (pointer-events, cursor)
|
|
349
|
+
* @rule All states MUST be browser-native (CSS pseudo-classes), NOT JavaScript-managed
|
|
350
|
+
*/
|
|
351
|
+
readonly state: {
|
|
352
|
+
/**
|
|
353
|
+
* Disabled state tokens
|
|
354
|
+
* Global disabled state tokens (variant-specific overrides in variant.*.disabled)
|
|
355
|
+
*
|
|
356
|
+
* Interaction Authority Rules:
|
|
357
|
+
* - Priority: 1 (Highest) - Blocks ALL interactions
|
|
358
|
+
* - MUST block hover, active, and focus states
|
|
359
|
+
* - MUST use disabled: prefix (never in base state)
|
|
360
|
+
* - Base state MUST have pointer-events: auto (default) for hover to work
|
|
361
|
+
*
|
|
362
|
+
* @enforcement TUNG_INTERACTION_AUTHORITY_FOUNDATION
|
|
363
|
+
* @enforcement TUNG_BUTTON_INTERACTION_FIX
|
|
364
|
+
* @rule Interaction Authority: pointer-events is NOT a visual token
|
|
365
|
+
* @rule pointer-events-none MUST use disabled: prefix (never in base state)
|
|
366
|
+
* @rule Base state MUST have pointer-events: auto (default) for hover to work
|
|
367
|
+
* @rule These tokens are applied in base but only activate when element is disabled
|
|
368
|
+
* @rule Hover is FORBIDDEN when disabled={true}
|
|
369
|
+
* @rule Active is FORBIDDEN when disabled={true}
|
|
370
|
+
* @rule Focus is FORBIDDEN when disabled={true} (for interactions)
|
|
371
|
+
*
|
|
372
|
+
* @see docs/architecture/INTERACTION_AUTHORITY_CONTRACT.md
|
|
373
|
+
*/
|
|
374
|
+
readonly disabled: {
|
|
375
|
+
readonly cursor: "disabled:cursor-not-allowed";
|
|
376
|
+
readonly pointerEvents: "disabled:pointer-events-none";
|
|
377
|
+
};
|
|
378
|
+
/**
|
|
379
|
+
* Focus state tokens
|
|
380
|
+
* Focus ring for keyboard navigation
|
|
381
|
+
*
|
|
382
|
+
* Interaction Authority Rules:
|
|
383
|
+
* - Priority: 5 - Lower than active and hover
|
|
384
|
+
* - MUST activate only on keyboard navigation (focus-visible: prefix)
|
|
385
|
+
* - MUST NOT activate on mouse click (use :focus-visible, not :focus)
|
|
386
|
+
* - MUST be blocked by disabled state
|
|
387
|
+
*
|
|
388
|
+
* @enforcement TUNG_INTERACTION_AUTHORITY_FOUNDATION
|
|
389
|
+
* @rule Focus MUST use focus-visible: prefix (keyboard navigation only)
|
|
390
|
+
* @rule Focus MUST be blocked when disabled={true}
|
|
391
|
+
* @rule Focus MUST NOT activate on mouse click
|
|
392
|
+
*
|
|
393
|
+
* @see docs/architecture/INTERACTION_AUTHORITY_CONTRACT.md
|
|
394
|
+
*/
|
|
395
|
+
readonly focus: {
|
|
396
|
+
readonly ring: "focus-visible:ring-1 focus-visible:ring-ring";
|
|
397
|
+
readonly outline: "focus-visible:outline-none";
|
|
398
|
+
};
|
|
231
399
|
};
|
|
232
400
|
};
|
|
233
401
|
/**
|
|
@@ -1716,6 +1884,10 @@ declare const TEXT_TOKENS: {
|
|
|
1716
1884
|
readonly md: "text-base";
|
|
1717
1885
|
readonly lg: "text-lg";
|
|
1718
1886
|
readonly xl: "text-xl";
|
|
1887
|
+
readonly "2xl": "text-2xl";
|
|
1888
|
+
readonly "3xl": "text-3xl";
|
|
1889
|
+
readonly "4xl": "text-4xl";
|
|
1890
|
+
readonly "5xl": "text-5xl";
|
|
1719
1891
|
};
|
|
1720
1892
|
/**
|
|
1721
1893
|
* Font weights by weight variant
|
|
@@ -1734,6 +1906,7 @@ declare const TEXT_TOKENS: {
|
|
|
1734
1906
|
readonly lineHeight: {
|
|
1735
1907
|
readonly none: "leading-none";
|
|
1736
1908
|
readonly tight: "leading-tight";
|
|
1909
|
+
readonly snug: "leading-snug";
|
|
1737
1910
|
readonly normal: "leading-normal";
|
|
1738
1911
|
readonly relaxed: "leading-relaxed";
|
|
1739
1912
|
readonly loose: "leading-loose";
|
|
@@ -2185,8 +2358,8 @@ declare const TOAST_TOKENS: {
|
|
|
2185
2358
|
readonly states: {
|
|
2186
2359
|
readonly default: "opacity-0";
|
|
2187
2360
|
readonly groupHover: "group-hover:opacity-100";
|
|
2188
|
-
readonly focus: "focus:opacity-100";
|
|
2189
|
-
readonly focusRing: "focus:outline-none focus:ring-1";
|
|
2361
|
+
readonly focus: "focus-visible:opacity-100";
|
|
2362
|
+
readonly focusRing: "focus-visible:outline-none focus-visible:ring-1";
|
|
2190
2363
|
};
|
|
2191
2364
|
};
|
|
2192
2365
|
};
|
|
@@ -2540,7 +2713,7 @@ type NavigationItemPadding = keyof typeof NAVIGATION_TOKENS.spacing.itemPadding;
|
|
|
2540
2713
|
/**
|
|
2541
2714
|
* Menu Component Tokens
|
|
2542
2715
|
*
|
|
2543
|
-
* Component-level design tokens for Menu components (
|
|
2716
|
+
* Component-level design tokens for Menu components (ContextMenu).
|
|
2544
2717
|
* Maps foundation tokens (spacing, radius, shadows, typography, motion) to menu-specific usage.
|
|
2545
2718
|
*
|
|
2546
2719
|
* All values use Tailwind utility classes that map to foundation tokens.
|
|
@@ -2737,160 +2910,6 @@ type PopoverContentWidth = keyof typeof POPOVER_TOKENS.content.width;
|
|
|
2737
2910
|
type PopoverArrowSize = keyof typeof POPOVER_TOKENS.arrow.size;
|
|
2738
2911
|
type PopoverArrowOffset = keyof typeof POPOVER_TOKENS.arrow.offset;
|
|
2739
2912
|
|
|
2740
|
-
/**
|
|
2741
|
-
* Dropdown Component Tokens
|
|
2742
|
-
*
|
|
2743
|
-
* Component-level design tokens for Dropdown component.
|
|
2744
|
-
* Maps foundation tokens (spacing, radius, shadows, typography) to dropdown-specific usage.
|
|
2745
|
-
*
|
|
2746
|
-
* All values use Tailwind utility classes that map to foundation tokens.
|
|
2747
|
-
*/
|
|
2748
|
-
/**
|
|
2749
|
-
* Dropdown Component Tokens
|
|
2750
|
-
*
|
|
2751
|
-
* Defines tokens for trigger, menu, and item variants.
|
|
2752
|
-
* Values are mapped to Tailwind utility classes for direct use.
|
|
2753
|
-
*/
|
|
2754
|
-
declare const DROPDOWN_TOKENS: {
|
|
2755
|
-
/**
|
|
2756
|
-
* Trigger tokens by size
|
|
2757
|
-
* Button element that opens/closes the dropdown
|
|
2758
|
-
*/
|
|
2759
|
-
readonly trigger: {
|
|
2760
|
-
readonly height: {
|
|
2761
|
-
readonly sm: "h-8";
|
|
2762
|
-
readonly md: "h-9";
|
|
2763
|
-
readonly lg: "h-10";
|
|
2764
|
-
};
|
|
2765
|
-
readonly padding: {
|
|
2766
|
-
readonly horizontal: {
|
|
2767
|
-
readonly sm: "px-sm";
|
|
2768
|
-
readonly md: "px-md";
|
|
2769
|
-
readonly lg: "px-lg";
|
|
2770
|
-
};
|
|
2771
|
-
readonly vertical: {
|
|
2772
|
-
readonly sm: "py-xs";
|
|
2773
|
-
readonly md: "py-xs";
|
|
2774
|
-
readonly lg: "py-sm";
|
|
2775
|
-
};
|
|
2776
|
-
};
|
|
2777
|
-
readonly radius: {
|
|
2778
|
-
readonly sm: "rounded-md";
|
|
2779
|
-
readonly md: "rounded-md";
|
|
2780
|
-
readonly lg: "rounded-md";
|
|
2781
|
-
};
|
|
2782
|
-
readonly fontSize: {
|
|
2783
|
-
readonly sm: "text-sm";
|
|
2784
|
-
readonly md: "text-base";
|
|
2785
|
-
readonly lg: "text-base";
|
|
2786
|
-
};
|
|
2787
|
-
readonly shadow: "shadow-sm";
|
|
2788
|
-
/**
|
|
2789
|
-
* Icon spacing for trigger
|
|
2790
|
-
*/
|
|
2791
|
-
readonly icon: {
|
|
2792
|
-
readonly spacing: "ml-sm";
|
|
2793
|
-
};
|
|
2794
|
-
};
|
|
2795
|
-
/**
|
|
2796
|
-
* Variant-based tokens
|
|
2797
|
-
* Border, background, text, and focus colors for different variants
|
|
2798
|
-
*/
|
|
2799
|
-
readonly variant: {
|
|
2800
|
-
readonly neutral: {
|
|
2801
|
-
readonly border: "border border-[hsl(var(--border))]";
|
|
2802
|
-
readonly background: "bg-[hsl(var(--popover))]";
|
|
2803
|
-
readonly text: "text-[hsl(var(--popover-foreground))]";
|
|
2804
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2";
|
|
2805
|
-
};
|
|
2806
|
-
readonly tinted: {
|
|
2807
|
-
readonly border: "border border-[hsl(var(--border))]";
|
|
2808
|
-
readonly background: "bg-[hsl(var(--muted))]";
|
|
2809
|
-
readonly text: "text-[hsl(var(--popover-foreground))]";
|
|
2810
|
-
readonly focus: "focus-visible:ring-2 focus-visible:ring-[hsl(var(--ring))] focus-visible:ring-offset-2";
|
|
2811
|
-
};
|
|
2812
|
-
};
|
|
2813
|
-
/**
|
|
2814
|
-
* Menu tokens by size
|
|
2815
|
-
* Container for the dropdown items
|
|
2816
|
-
*/
|
|
2817
|
-
readonly menu: {
|
|
2818
|
-
readonly border: {
|
|
2819
|
-
readonly default: "border border-[hsl(var(--border))]";
|
|
2820
|
-
};
|
|
2821
|
-
readonly background: {
|
|
2822
|
-
readonly neutral: "bg-[hsl(var(--popover))]";
|
|
2823
|
-
readonly tinted: "bg-[hsl(var(--muted))]";
|
|
2824
|
-
};
|
|
2825
|
-
readonly text: {
|
|
2826
|
-
readonly default: "text-[hsl(var(--popover-foreground))]";
|
|
2827
|
-
};
|
|
2828
|
-
readonly padding: {
|
|
2829
|
-
readonly sm: "p-sm";
|
|
2830
|
-
readonly md: "p-md";
|
|
2831
|
-
readonly lg: "p-lg";
|
|
2832
|
-
};
|
|
2833
|
-
readonly radius: {
|
|
2834
|
-
readonly sm: "rounded-md";
|
|
2835
|
-
readonly md: "rounded-lg";
|
|
2836
|
-
readonly lg: "rounded-lg";
|
|
2837
|
-
};
|
|
2838
|
-
readonly shadow: {
|
|
2839
|
-
readonly sm: "shadow-md";
|
|
2840
|
-
readonly md: "shadow-lg";
|
|
2841
|
-
readonly lg: "shadow-xl";
|
|
2842
|
-
};
|
|
2843
|
-
readonly minWidth: {
|
|
2844
|
-
readonly sm: "min-w-32";
|
|
2845
|
-
readonly md: "min-w-48";
|
|
2846
|
-
readonly lg: "min-w-64";
|
|
2847
|
-
};
|
|
2848
|
-
};
|
|
2849
|
-
/**
|
|
2850
|
-
* Width tokens
|
|
2851
|
-
* Common width utilities
|
|
2852
|
-
*/
|
|
2853
|
-
readonly width: {
|
|
2854
|
-
readonly full: "w-full";
|
|
2855
|
-
};
|
|
2856
|
-
/**
|
|
2857
|
-
* Item tokens by size
|
|
2858
|
-
* Individual menu item
|
|
2859
|
-
*/
|
|
2860
|
-
readonly item: {
|
|
2861
|
-
readonly background: {
|
|
2862
|
-
readonly focus: "focus:bg-[hsl(var(--accent))]";
|
|
2863
|
-
readonly selected: "bg-[hsl(var(--accent))]";
|
|
2864
|
-
};
|
|
2865
|
-
readonly text: {
|
|
2866
|
-
readonly focus: "focus:text-[hsl(var(--accent-foreground))]";
|
|
2867
|
-
readonly selected: "text-[hsl(var(--accent-foreground))]";
|
|
2868
|
-
};
|
|
2869
|
-
readonly padding: {
|
|
2870
|
-
readonly sm: "px-sm py-xs";
|
|
2871
|
-
readonly md: "px-md py-xs";
|
|
2872
|
-
readonly lg: "px-lg py-sm";
|
|
2873
|
-
};
|
|
2874
|
-
readonly radius: {
|
|
2875
|
-
readonly sm: "rounded-sm";
|
|
2876
|
-
readonly md: "rounded-md";
|
|
2877
|
-
readonly lg: "rounded-md";
|
|
2878
|
-
};
|
|
2879
|
-
readonly fontSize: {
|
|
2880
|
-
readonly sm: "text-sm";
|
|
2881
|
-
readonly md: "text-sm";
|
|
2882
|
-
readonly lg: "text-base";
|
|
2883
|
-
};
|
|
2884
|
-
};
|
|
2885
|
-
};
|
|
2886
|
-
/**
|
|
2887
|
-
* Type exports for Dropdown tokens
|
|
2888
|
-
*/
|
|
2889
|
-
type DropdownTriggerSize = keyof typeof DROPDOWN_TOKENS.trigger.height;
|
|
2890
|
-
type DropdownVariant = keyof typeof DROPDOWN_TOKENS.variant;
|
|
2891
|
-
type DropdownMenuSize = keyof typeof DROPDOWN_TOKENS.menu.padding;
|
|
2892
|
-
type DropdownItemSize = keyof typeof DROPDOWN_TOKENS.item.padding;
|
|
2893
|
-
|
|
2894
2913
|
/**
|
|
2895
2914
|
* Tooltip Component Tokens
|
|
2896
2915
|
*
|
|
@@ -3070,8 +3089,8 @@ declare const SELECT_TOKENS: {
|
|
|
3070
3089
|
readonly position: "left-sm";
|
|
3071
3090
|
};
|
|
3072
3091
|
readonly focus: {
|
|
3073
|
-
readonly background: "focus:bg-[hsl(var(--accent))]";
|
|
3074
|
-
readonly text: "focus:text-[hsl(var(--accent-foreground))]";
|
|
3092
|
+
readonly background: "focus-visible:bg-[hsl(var(--accent))]";
|
|
3093
|
+
readonly text: "focus-visible:text-[hsl(var(--accent-foreground))]";
|
|
3075
3094
|
};
|
|
3076
3095
|
readonly selected: {
|
|
3077
3096
|
readonly background: "bg-[hsl(var(--accent))]";
|
|
@@ -5043,118 +5062,118 @@ declare const transitions: {
|
|
|
5043
5062
|
declare const keyframes: {
|
|
5044
5063
|
readonly fadeIn: {
|
|
5045
5064
|
readonly from: {
|
|
5046
|
-
readonly opacity: 0;
|
|
5065
|
+
readonly opacity: "0";
|
|
5047
5066
|
};
|
|
5048
5067
|
readonly to: {
|
|
5049
|
-
readonly opacity: 1;
|
|
5068
|
+
readonly opacity: "1";
|
|
5050
5069
|
};
|
|
5051
5070
|
};
|
|
5052
5071
|
readonly fadeOut: {
|
|
5053
5072
|
readonly from: {
|
|
5054
|
-
readonly opacity: 1;
|
|
5073
|
+
readonly opacity: "1";
|
|
5055
5074
|
};
|
|
5056
5075
|
readonly to: {
|
|
5057
|
-
readonly opacity: 0;
|
|
5076
|
+
readonly opacity: "0";
|
|
5058
5077
|
};
|
|
5059
5078
|
};
|
|
5060
5079
|
readonly slideInUp: {
|
|
5061
5080
|
readonly from: {
|
|
5062
5081
|
readonly transform: "translateY(100%)";
|
|
5063
|
-
readonly opacity: 0;
|
|
5082
|
+
readonly opacity: "0";
|
|
5064
5083
|
};
|
|
5065
5084
|
readonly to: {
|
|
5066
5085
|
readonly transform: "translateY(0)";
|
|
5067
|
-
readonly opacity: 1;
|
|
5086
|
+
readonly opacity: "1";
|
|
5068
5087
|
};
|
|
5069
5088
|
};
|
|
5070
5089
|
readonly slideInDown: {
|
|
5071
5090
|
readonly from: {
|
|
5072
5091
|
readonly transform: "translateY(-100%)";
|
|
5073
|
-
readonly opacity: 0;
|
|
5092
|
+
readonly opacity: "0";
|
|
5074
5093
|
};
|
|
5075
5094
|
readonly to: {
|
|
5076
5095
|
readonly transform: "translateY(0)";
|
|
5077
|
-
readonly opacity: 1;
|
|
5096
|
+
readonly opacity: "1";
|
|
5078
5097
|
};
|
|
5079
5098
|
};
|
|
5080
5099
|
readonly slideInLeft: {
|
|
5081
5100
|
readonly from: {
|
|
5082
5101
|
readonly transform: "translateX(-100%)";
|
|
5083
|
-
readonly opacity: 0;
|
|
5102
|
+
readonly opacity: "0";
|
|
5084
5103
|
};
|
|
5085
5104
|
readonly to: {
|
|
5086
5105
|
readonly transform: "translateX(0)";
|
|
5087
|
-
readonly opacity: 1;
|
|
5106
|
+
readonly opacity: "1";
|
|
5088
5107
|
};
|
|
5089
5108
|
};
|
|
5090
5109
|
readonly slideInRight: {
|
|
5091
5110
|
readonly from: {
|
|
5092
5111
|
readonly transform: "translateX(100%)";
|
|
5093
|
-
readonly opacity: 0;
|
|
5112
|
+
readonly opacity: "0";
|
|
5094
5113
|
};
|
|
5095
5114
|
readonly to: {
|
|
5096
5115
|
readonly transform: "translateX(0)";
|
|
5097
|
-
readonly opacity: 1;
|
|
5116
|
+
readonly opacity: "1";
|
|
5098
5117
|
};
|
|
5099
5118
|
};
|
|
5100
5119
|
readonly slideOutUp: {
|
|
5101
5120
|
readonly from: {
|
|
5102
5121
|
readonly transform: "translateY(0)";
|
|
5103
|
-
readonly opacity: 1;
|
|
5122
|
+
readonly opacity: "1";
|
|
5104
5123
|
};
|
|
5105
5124
|
readonly to: {
|
|
5106
5125
|
readonly transform: "translateY(-100%)";
|
|
5107
|
-
readonly opacity: 0;
|
|
5126
|
+
readonly opacity: "0";
|
|
5108
5127
|
};
|
|
5109
5128
|
};
|
|
5110
5129
|
readonly slideOutDown: {
|
|
5111
5130
|
readonly from: {
|
|
5112
5131
|
readonly transform: "translateY(0)";
|
|
5113
|
-
readonly opacity: 1;
|
|
5132
|
+
readonly opacity: "1";
|
|
5114
5133
|
};
|
|
5115
5134
|
readonly to: {
|
|
5116
5135
|
readonly transform: "translateY(100%)";
|
|
5117
|
-
readonly opacity: 0;
|
|
5136
|
+
readonly opacity: "0";
|
|
5118
5137
|
};
|
|
5119
5138
|
};
|
|
5120
5139
|
readonly slideOutLeft: {
|
|
5121
5140
|
readonly from: {
|
|
5122
5141
|
readonly transform: "translateX(0)";
|
|
5123
|
-
readonly opacity: 1;
|
|
5142
|
+
readonly opacity: "1";
|
|
5124
5143
|
};
|
|
5125
5144
|
readonly to: {
|
|
5126
5145
|
readonly transform: "translateX(-100%)";
|
|
5127
|
-
readonly opacity: 0;
|
|
5146
|
+
readonly opacity: "0";
|
|
5128
5147
|
};
|
|
5129
5148
|
};
|
|
5130
5149
|
readonly slideOutRight: {
|
|
5131
5150
|
readonly from: {
|
|
5132
5151
|
readonly transform: "translateX(0)";
|
|
5133
|
-
readonly opacity: 1;
|
|
5152
|
+
readonly opacity: "1";
|
|
5134
5153
|
};
|
|
5135
5154
|
readonly to: {
|
|
5136
5155
|
readonly transform: "translateX(100%)";
|
|
5137
|
-
readonly opacity: 0;
|
|
5156
|
+
readonly opacity: "0";
|
|
5138
5157
|
};
|
|
5139
5158
|
};
|
|
5140
5159
|
readonly scaleIn: {
|
|
5141
5160
|
readonly from: {
|
|
5142
5161
|
readonly transform: "scale(0.95)";
|
|
5143
|
-
readonly opacity: 0;
|
|
5162
|
+
readonly opacity: "0";
|
|
5144
5163
|
};
|
|
5145
5164
|
readonly to: {
|
|
5146
5165
|
readonly transform: "scale(1)";
|
|
5147
|
-
readonly opacity: 1;
|
|
5166
|
+
readonly opacity: "1";
|
|
5148
5167
|
};
|
|
5149
5168
|
};
|
|
5150
5169
|
readonly scaleOut: {
|
|
5151
5170
|
readonly from: {
|
|
5152
5171
|
readonly transform: "scale(1)";
|
|
5153
|
-
readonly opacity: 1;
|
|
5172
|
+
readonly opacity: "1";
|
|
5154
5173
|
};
|
|
5155
5174
|
readonly to: {
|
|
5156
5175
|
readonly transform: "scale(0.95)";
|
|
5157
|
-
readonly opacity: 0;
|
|
5176
|
+
readonly opacity: "0";
|
|
5158
5177
|
};
|
|
5159
5178
|
};
|
|
5160
5179
|
readonly scaleUp: {
|
|
@@ -5191,10 +5210,10 @@ declare const keyframes: {
|
|
|
5191
5210
|
};
|
|
5192
5211
|
readonly pulse: {
|
|
5193
5212
|
readonly "0%, 100%": {
|
|
5194
|
-
readonly opacity: 1;
|
|
5213
|
+
readonly opacity: "1";
|
|
5195
5214
|
};
|
|
5196
5215
|
readonly "50%": {
|
|
5197
|
-
readonly opacity: 0.5;
|
|
5216
|
+
readonly opacity: "0.5";
|
|
5198
5217
|
};
|
|
5199
5218
|
};
|
|
5200
5219
|
readonly bounce: {
|
|
@@ -5221,7 +5240,7 @@ declare const keyframes: {
|
|
|
5221
5240
|
readonly ping: {
|
|
5222
5241
|
readonly "75%, 100%": {
|
|
5223
5242
|
readonly transform: "scale(2)";
|
|
5224
|
-
readonly opacity: 0;
|
|
5243
|
+
readonly opacity: "0";
|
|
5225
5244
|
};
|
|
5226
5245
|
};
|
|
5227
5246
|
readonly "accordion-down": {
|
|
@@ -5416,7 +5435,207 @@ declare const tailwindMotionConfig: {
|
|
|
5416
5435
|
readonly all: "all";
|
|
5417
5436
|
readonly none: "none";
|
|
5418
5437
|
};
|
|
5419
|
-
readonly keyframes:
|
|
5438
|
+
readonly keyframes: {
|
|
5439
|
+
readonly fadeIn: {
|
|
5440
|
+
readonly from: {
|
|
5441
|
+
readonly opacity: "0";
|
|
5442
|
+
};
|
|
5443
|
+
readonly to: {
|
|
5444
|
+
readonly opacity: "1";
|
|
5445
|
+
};
|
|
5446
|
+
};
|
|
5447
|
+
readonly fadeOut: {
|
|
5448
|
+
readonly from: {
|
|
5449
|
+
readonly opacity: "1";
|
|
5450
|
+
};
|
|
5451
|
+
readonly to: {
|
|
5452
|
+
readonly opacity: "0";
|
|
5453
|
+
};
|
|
5454
|
+
};
|
|
5455
|
+
readonly slideInUp: {
|
|
5456
|
+
readonly from: {
|
|
5457
|
+
readonly transform: "translateY(100%)";
|
|
5458
|
+
readonly opacity: "0";
|
|
5459
|
+
};
|
|
5460
|
+
readonly to: {
|
|
5461
|
+
readonly transform: "translateY(0)";
|
|
5462
|
+
readonly opacity: "1";
|
|
5463
|
+
};
|
|
5464
|
+
};
|
|
5465
|
+
readonly slideInDown: {
|
|
5466
|
+
readonly from: {
|
|
5467
|
+
readonly transform: "translateY(-100%)";
|
|
5468
|
+
readonly opacity: "0";
|
|
5469
|
+
};
|
|
5470
|
+
readonly to: {
|
|
5471
|
+
readonly transform: "translateY(0)";
|
|
5472
|
+
readonly opacity: "1";
|
|
5473
|
+
};
|
|
5474
|
+
};
|
|
5475
|
+
readonly slideInLeft: {
|
|
5476
|
+
readonly from: {
|
|
5477
|
+
readonly transform: "translateX(-100%)";
|
|
5478
|
+
readonly opacity: "0";
|
|
5479
|
+
};
|
|
5480
|
+
readonly to: {
|
|
5481
|
+
readonly transform: "translateX(0)";
|
|
5482
|
+
readonly opacity: "1";
|
|
5483
|
+
};
|
|
5484
|
+
};
|
|
5485
|
+
readonly slideInRight: {
|
|
5486
|
+
readonly from: {
|
|
5487
|
+
readonly transform: "translateX(100%)";
|
|
5488
|
+
readonly opacity: "0";
|
|
5489
|
+
};
|
|
5490
|
+
readonly to: {
|
|
5491
|
+
readonly transform: "translateX(0)";
|
|
5492
|
+
readonly opacity: "1";
|
|
5493
|
+
};
|
|
5494
|
+
};
|
|
5495
|
+
readonly slideOutUp: {
|
|
5496
|
+
readonly from: {
|
|
5497
|
+
readonly transform: "translateY(0)";
|
|
5498
|
+
readonly opacity: "1";
|
|
5499
|
+
};
|
|
5500
|
+
readonly to: {
|
|
5501
|
+
readonly transform: "translateY(-100%)";
|
|
5502
|
+
readonly opacity: "0";
|
|
5503
|
+
};
|
|
5504
|
+
};
|
|
5505
|
+
readonly slideOutDown: {
|
|
5506
|
+
readonly from: {
|
|
5507
|
+
readonly transform: "translateY(0)";
|
|
5508
|
+
readonly opacity: "1";
|
|
5509
|
+
};
|
|
5510
|
+
readonly to: {
|
|
5511
|
+
readonly transform: "translateY(100%)";
|
|
5512
|
+
readonly opacity: "0";
|
|
5513
|
+
};
|
|
5514
|
+
};
|
|
5515
|
+
readonly slideOutLeft: {
|
|
5516
|
+
readonly from: {
|
|
5517
|
+
readonly transform: "translateX(0)";
|
|
5518
|
+
readonly opacity: "1";
|
|
5519
|
+
};
|
|
5520
|
+
readonly to: {
|
|
5521
|
+
readonly transform: "translateX(-100%)";
|
|
5522
|
+
readonly opacity: "0";
|
|
5523
|
+
};
|
|
5524
|
+
};
|
|
5525
|
+
readonly slideOutRight: {
|
|
5526
|
+
readonly from: {
|
|
5527
|
+
readonly transform: "translateX(0)";
|
|
5528
|
+
readonly opacity: "1";
|
|
5529
|
+
};
|
|
5530
|
+
readonly to: {
|
|
5531
|
+
readonly transform: "translateX(100%)";
|
|
5532
|
+
readonly opacity: "0";
|
|
5533
|
+
};
|
|
5534
|
+
};
|
|
5535
|
+
readonly scaleIn: {
|
|
5536
|
+
readonly from: {
|
|
5537
|
+
readonly transform: "scale(0.95)";
|
|
5538
|
+
readonly opacity: "0";
|
|
5539
|
+
};
|
|
5540
|
+
readonly to: {
|
|
5541
|
+
readonly transform: "scale(1)";
|
|
5542
|
+
readonly opacity: "1";
|
|
5543
|
+
};
|
|
5544
|
+
};
|
|
5545
|
+
readonly scaleOut: {
|
|
5546
|
+
readonly from: {
|
|
5547
|
+
readonly transform: "scale(1)";
|
|
5548
|
+
readonly opacity: "1";
|
|
5549
|
+
};
|
|
5550
|
+
readonly to: {
|
|
5551
|
+
readonly transform: "scale(0.95)";
|
|
5552
|
+
readonly opacity: "0";
|
|
5553
|
+
};
|
|
5554
|
+
};
|
|
5555
|
+
readonly scaleUp: {
|
|
5556
|
+
readonly from: {
|
|
5557
|
+
readonly transform: "scale(1)";
|
|
5558
|
+
};
|
|
5559
|
+
readonly to: {
|
|
5560
|
+
readonly transform: "scale(1.05)";
|
|
5561
|
+
};
|
|
5562
|
+
};
|
|
5563
|
+
readonly scaleDown: {
|
|
5564
|
+
readonly from: {
|
|
5565
|
+
readonly transform: "scale(1.05)";
|
|
5566
|
+
};
|
|
5567
|
+
readonly to: {
|
|
5568
|
+
readonly transform: "scale(1)";
|
|
5569
|
+
};
|
|
5570
|
+
};
|
|
5571
|
+
readonly spin: {
|
|
5572
|
+
readonly from: {
|
|
5573
|
+
readonly transform: "rotate(0deg)";
|
|
5574
|
+
};
|
|
5575
|
+
readonly to: {
|
|
5576
|
+
readonly transform: "rotate(360deg)";
|
|
5577
|
+
};
|
|
5578
|
+
};
|
|
5579
|
+
readonly spinReverse: {
|
|
5580
|
+
readonly from: {
|
|
5581
|
+
readonly transform: "rotate(360deg)";
|
|
5582
|
+
};
|
|
5583
|
+
readonly to: {
|
|
5584
|
+
readonly transform: "rotate(0deg)";
|
|
5585
|
+
};
|
|
5586
|
+
};
|
|
5587
|
+
readonly pulse: {
|
|
5588
|
+
readonly "0%, 100%": {
|
|
5589
|
+
readonly opacity: "1";
|
|
5590
|
+
};
|
|
5591
|
+
readonly "50%": {
|
|
5592
|
+
readonly opacity: "0.5";
|
|
5593
|
+
};
|
|
5594
|
+
};
|
|
5595
|
+
readonly bounce: {
|
|
5596
|
+
readonly "0%, 100%": {
|
|
5597
|
+
readonly transform: "translateY(-25%)";
|
|
5598
|
+
readonly animationTimingFunction: "cubic-bezier(0.8, 0, 1, 1)";
|
|
5599
|
+
};
|
|
5600
|
+
readonly "50%": {
|
|
5601
|
+
readonly transform: "translateY(0)";
|
|
5602
|
+
readonly animationTimingFunction: "cubic-bezier(0, 0, 0.2, 1)";
|
|
5603
|
+
};
|
|
5604
|
+
};
|
|
5605
|
+
readonly shake: {
|
|
5606
|
+
readonly "0%, 100%": {
|
|
5607
|
+
readonly transform: "translateX(0)";
|
|
5608
|
+
};
|
|
5609
|
+
readonly "10%, 30%, 50%, 70%, 90%": {
|
|
5610
|
+
readonly transform: "translateX(-4px)";
|
|
5611
|
+
};
|
|
5612
|
+
readonly "20%, 40%, 60%, 80%": {
|
|
5613
|
+
readonly transform: "translateX(4px)";
|
|
5614
|
+
};
|
|
5615
|
+
};
|
|
5616
|
+
readonly ping: {
|
|
5617
|
+
readonly "75%, 100%": {
|
|
5618
|
+
readonly transform: "scale(2)";
|
|
5619
|
+
readonly opacity: "0";
|
|
5620
|
+
};
|
|
5621
|
+
};
|
|
5622
|
+
readonly "accordion-down": {
|
|
5623
|
+
readonly from: {
|
|
5624
|
+
readonly height: "0";
|
|
5625
|
+
};
|
|
5626
|
+
readonly to: {
|
|
5627
|
+
readonly height: "var(--radix-accordion-content-height)";
|
|
5628
|
+
};
|
|
5629
|
+
};
|
|
5630
|
+
readonly "accordion-up": {
|
|
5631
|
+
readonly from: {
|
|
5632
|
+
readonly height: "var(--radix-accordion-content-height)";
|
|
5633
|
+
};
|
|
5634
|
+
readonly to: {
|
|
5635
|
+
readonly height: "0";
|
|
5636
|
+
};
|
|
5637
|
+
};
|
|
5638
|
+
};
|
|
5420
5639
|
readonly animation: {
|
|
5421
5640
|
readonly none: "none";
|
|
5422
5641
|
readonly spin: "spin 1s linear infinite";
|
|
@@ -6764,8 +6983,8 @@ declare const CONTEXT_MENU_TOKENS: {
|
|
|
6764
6983
|
readonly item: {
|
|
6765
6984
|
readonly radius: "rounded-sm";
|
|
6766
6985
|
readonly focus: {
|
|
6767
|
-
readonly background: "focus:bg-[hsl(var(--accent))]";
|
|
6768
|
-
readonly text: "focus:text-[hsl(var(--accent-foreground))]";
|
|
6986
|
+
readonly background: "focus-visible:bg-[hsl(var(--accent))]";
|
|
6987
|
+
readonly text: "focus-visible:text-[hsl(var(--accent-foreground))]";
|
|
6769
6988
|
};
|
|
6770
6989
|
readonly disabled: {
|
|
6771
6990
|
readonly opacity: "opacity-50";
|
|
@@ -7102,4 +7321,4 @@ type ResponsiveContextMenuSize = Responsive<ContextMenuSizeToken>;
|
|
|
7102
7321
|
*/
|
|
7103
7322
|
type ResponsiveContextMenuWidth = Responsive<ContextMenuWidthToken>;
|
|
7104
7323
|
|
|
7105
|
-
export { type
|
|
7324
|
+
export { type InputPaddingHorizontal as $, ALERT_TOKENS as A, BUTTON_TOKENS as B, CARD_TOKENS as C, DATA_TOKENS as D, type DomainCardBadge as E, type DomainCardImage as F, type DomainCardLayout as G, type DomainCardMetadata as H, ICON_TOKENS as I, type DomainCardMotion as J, type DomainCardPriceCapacity as K, type DomainCardSkeleton as L, MENU_TOKENS as M, NAVIGATION_TOKENS as N, OVERLAY_TOKENS as O, POPOVER_TOKENS as P, type DomainCardSkeletonContentWidth as Q, RADIO_TOKENS as R, SECTION_TOKENS as S, TEXT_TOKENS as T, type DomainCardSurface as U, type EmptyStateIconSize as V, type IconColor as W, type IconSize as X, type IconStroke as Y, type InputFontSize as Z, type InputHeight as _, CHECKBOX_TOKENS as a, type SurfaceVariant as a$, type InputPaddingVertical as a0, type InputRadius as a1, type InputSize as a2, type MenuContentMinWidth as a3, type MenuContentPadding as a4, type MenuContentRadius as a5, type MenuContentShadow as a6, type MenuIndicatorOffset as a7, type MenuIndicatorSize as a8, type MenuItemGap as a9, type RadioSize as aA, type RadioState as aB, type RadioVariant as aC, type SectionGap as aD, type SectionPadding as aE, type SelectContentPadding as aF, type SelectContentRadius as aG, type SelectItemFontSize as aH, type SelectItemPaddingHorizontal as aI, type SelectItemPaddingVertical as aJ, type SelectItemRadius as aK, type SelectLabelFontSize as aL, type SelectLabelPaddingHorizontal as aM, type SelectLabelPaddingVertical as aN, type SelectSeparatorMarginHorizontal as aO, type SelectSeparatorMarginVertical as aP, type SelectTriggerFontSize as aQ, type SelectTriggerHeight as aR, type SelectTriggerPaddingHorizontal as aS, type SelectTriggerPaddingVertical as aT, type SelectTriggerRadius as aU, type SkeletonAnimation as aV, type SkeletonBackground as aW, type SkeletonVariant as aX, type SurfacePadding as aY, type SurfaceRadius as aZ, type SurfaceShadow as a_, type MenuItemHeight as aa, type MenuItemPadding as ab, type MenuItemRadius as ac, type MenuLabelPadding as ad, type MenuSeparatorMargin as ae, type MotionAnimation as af, type MotionDuration as ag, type MotionEasing as ah, type MotionTransition as ai, type MotionTransitionPreset as aj, type NavigationItemPadding as ak, type NavigationListGap as al, type NavigationRadius as am, type NavigationShadow as an, type NavigationSize as ao, type NavigationState as ap, type NotificationPanelWidth as aq, type NotificationVariant as ar, type OverlayBackdropVariant as as, type OverlayModalSize as at, type PopoverArrowOffset as au, type PopoverArrowSize as av, type PopoverContentPadding as aw, type PopoverContentRadius as ax, type PopoverContentShadow as ay, type PopoverContentWidth as az, DOMAIN_TOKENS as b, primaryColoredShadows as b$, type SwitchSize as b0, type SwitchState as b1, type SwitchVariant as b2, type TableCellPadding as b3, type TableGap as b4, type TableHeaderPadding as b5, type TableRowHeight as b6, type TableShadow as b7, type TextFontSize as b8, type TextFontWeight as b9, type MotionV2Easing as bA, type MotionV2SlideDirection as bB, type MotionV2Transition as bC, motionV2CSSVariables as bD, motionV2Combined as bE, motionV2Durations as bF, motionV2Easings as bG, motionV2Fade as bH, motionV2Scale as bI, motionV2Slide as bJ, motionV2TailwindConfig as bK, motionV2Transitions as bL, type BorderRadius as bM, type ComponentRadius as bN, borderRadius as bO, componentRadius as bP, radiusCSSVariables as bQ, tailwindRadiusConfig as bR, type ColoredShadow as bS, type ElevationShadow as bT, type FocusRing as bU, type GlowEffect as bV, accentColoredShadows as bW, componentShadowMapping as bX, elevationShadows as bY, focusRings as bZ, glowEffects as b_, type TextLetterSpacing as ba, type TextLineHeight as bb, type ToastVariant as bc, type TooltipContentRadius as bd, type TooltipContentShadow as be, allCSSVariables as bf, allCSSVariablesCSS as bg, generateCSSVariablesCSS as bh, tokenSystemSummary as bi, type Animation as bj, type Duration as bk, type Easing as bl, type Keyframe as bm, type Spring as bn, type Transition as bo, animations as bp, durations as bq, easings as br, keyframes as bs, motionCSSVariables as bt, reducedMotion as bu, springs as bv, tailwindMotionConfig as bw, transitions as bx, type MotionV2CombinedType as by, type MotionV2Duration as bz, INPUT_TOKENS as c, type ResponsiveModalHeight as c$, shadowBase as c0, shadowCSSVariables as c1, shadowOpacity as c2, tailwindShadowConfig as c3, type ComponentSpacing as c4, type ContainerSpacing as c5, type GridSpacing as c6, type SectionSpacing as c7, type SemanticSpacing as c8, type Spacing as c9, typographyCSSVariables as cA, type AlignOffsetToken as cB, type AnimationPresetToken as cC, type AspectRatioToken as cD, type ColorToken as cE, type ContainerMaxWidthToken as cF, type ContainerPaddingToken as cG, type DelayToken as cH, type FlexBasisToken as cI, type LayoutSpaceToken as cJ, type ModalFooterAlignToken as cK, type ModalHeightToken as cL, type ModalSizeToken as cM, type ModalWidthToken as cN, type MotionDurationToken as cO, type MotionEasingToken as cP, type MotionToken as cQ, type MotionTransitionToken as cR, type RadiusToken as cS, type ResponsiveAlignOffset as cT, type ResponsiveAnimationPreset as cU, type ResponsiveAspectRatio as cV, type ResponsiveColor as cW, type ResponsiveContainerMaxWidth as cX, type ResponsiveContainerPadding as cY, type ResponsiveDelay as cZ, type ResponsiveFlexBasis as c_, type StackSpacing as ca, layoutSpacing as cb, semanticSpacing as cc, spacing as cd, spacingCSSVariables as ce, tailwindSpacingConfig as cf, UI_COLORS as cg, type CanonicalFontSize as ch, type CanonicalFontWeight as ci, type CanonicalLetterSpacing as cj, type CanonicalLineHeight as ck, type CanonicalTextColor as cl, type FontFamily as cm, type FontSize as cn, type FontWeight as co, type LetterSpacing as cp, type LineHeight as cq, type TextStyle as cr, fontFamily as cs, fontSize as ct, fontSizeWithMd as cu, fontWeight as cv, letterSpacing as cw, lineHeight as cx, tailwindTypographyConfig as cy, textStyles as cz, MOTION_TOKENS as d, type ResponsiveModalSize as d0, type ResponsiveModalWidth as d1, type ResponsiveMotion as d2, type ResponsiveRadius as d3, type ResponsiveSelectSize as d4, type ResponsiveSelectWidth as d5, type ResponsiveShadow as d6, type ResponsiveSideOffset as d7, type ResponsiveSpace as d8, type ResponsiveSurface as d9, type ResponsiveTextLineHeight as da, type ResponsiveTextSize as db, type ResponsiveTextWeight as dc, type SelectSizeToken as dd, type SelectStateToken as de, type SelectVariantToken as df, type SelectWidthToken as dg, type ShadowToken as dh, type SideOffsetToken as di, type SpaceToken as dj, type SpacingToken as dk, type SurfaceToken as dl, type TextLetterSpacingToken as dm, type TextLineHeightToken as dn, type TextSizeToken as dp, type TextWeightToken as dq, type Responsive as dr, type ResponsiveContextMenuSize as ds, type ResponsiveContextMenuWidth as dt, type ContextMenuItemToneToken as du, type ResponsiveTabsSize as dv, type TabsVariantToken as dw, type TabsToneToken as dx, type Breakpoint as dy, NOTIFICATION_TOKENS as e, SELECT_TOKENS as f, SURFACE_TOKENS as g, SWITCH_TOKENS as h, TOAST_TOKENS as i, TOOLTIP_TOKENS as j, type AlertVariant as k, type ButtonFontSize as l, type ButtonHeight as m, type ButtonPaddingHorizontal as n, type ButtonPaddingVertical as o, type ButtonShadow as p, type CardPadding as q, type CardRadius as r, type CardShadow as s, type CardSize as t, type CardSpacingVertical as u, type CheckboxSize as v, type CheckboxState as w, type CheckboxVariant as x, type DataListLabelWidth as y, type DataListRowPadding as z };
|