chore(vscode-ide-companion): tailwind base

This commit is contained in:
yiliang114
2025-11-23 17:33:10 +08:00
parent 38fd303b07
commit 8ac38aad92
14 changed files with 5333 additions and 604 deletions

View File

@@ -0,0 +1,42 @@
// Type declarations for tailwindUtils.js
export function buttonClasses(
variant?: 'primary' | 'secondary' | 'ghost' | 'icon',
disabled?: boolean,
): string;
export function inputClasses(): string;
export function cardClasses(): string;
export function dialogClasses(): string;
export function qwenColorClasses(
color: 'orange' | 'clay-orange' | 'ivory' | 'slate' | 'green',
): string;
export function spacingClasses(
size?: 'small' | 'medium' | 'large' | 'xlarge',
direction?: 'all' | 'x' | 'y' | 't' | 'r' | 'b' | 'l',
): string;
export function borderRadiusClasses(
size?: 'small' | 'medium' | 'large',
): string;
export const commonClasses: {
flexCenter: string;
flexBetween: string;
flexCol: string;
textMuted: string;
textSmall: string;
textLarge: string;
fontWeightMedium: string;
fontWeightSemibold: string;
marginAuto: string;
fullWidth: string;
fullHeight: string;
truncate: string;
srOnly: string;
transition: string;
};