first commit

This commit is contained in:
rayd1o
2026-03-05 11:46:58 +08:00
commit e7033775d8
20657 changed files with 1988940 additions and 0 deletions

18
frontend/node_modules/antd/lib/style/compact-item.d.ts generated vendored Normal file
View File

@@ -0,0 +1,18 @@
import type { CSSInterpolation } from '@ant-design/cssinjs';
import type { FullToken, OverrideComponent } from '../theme/internal';
interface CompactItemOptions {
componentCls?: string;
focus?: boolean;
/**
* Some component borders are implemented on child elements
* like `Select`
*/
borderElCls?: string;
/**
* Some components have special `focus` className especially with popovers
* like `Select` and `DatePicker`
*/
focusElCls?: string;
}
export declare function genCompactItemStyle<T extends OverrideComponent>(token: FullToken<T>, options?: CompactItemOptions): CSSInterpolation;
export {};