mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-21 17:27:54 +00:00
chore(vscode-ide-companion): tailwind base
This commit is contained in:
42
packages/vscode-ide-companion/src/lib/tailwindUtils.d.ts
vendored
Normal file
42
packages/vscode-ide-companion/src/lib/tailwindUtils.d.ts
vendored
Normal 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;
|
||||
};
|
||||
Reference in New Issue
Block a user