add all frontend files

This commit is contained in:
2026-01-17 15:16:36 -05:00
parent ff16ae7858
commit e40287e4aa
25704 changed files with 1935289 additions and 0 deletions

71
node_modules/antd/lib/switch/style/index.d.ts generated vendored Normal file
View File

@@ -0,0 +1,71 @@
import type { GetDefaultToken } from '../../theme/internal';
export interface ComponentToken {
/**
* @desc 开关高度
* @descEN Height of Switch
*/
trackHeight: number | string;
/**
* @desc 小号开关高度
* @descEN Height of small Switch
*/
trackHeightSM: number | string;
/**
* @desc 开关最小宽度
* @descEN Minimum width of Switch
*/
trackMinWidth: number | string;
/**
* @desc 小号开关最小宽度
* @descEN Minimum width of small Switch
*/
trackMinWidthSM: number | string;
/**
* @desc 开关内边距
* @descEN Padding of Switch
*/
trackPadding: number;
/**
* @desc 开关把手背景色
* @descEN Background color of Switch handle
*/
handleBg: string;
/**
* @desc 开关把手阴影
* @descEN Shadow of Switch handle
*/
handleShadow: string;
/**
* @desc 开关把手大小
* @descEN Size of Switch handle
*/
handleSize: number;
/**
* @desc 小号开关把手大小
* @descEN Size of small Switch handle
*/
handleSizeSM: number;
/**
* @desc 内容区域最小边距
* @descEN Minimum margin of content area
*/
innerMinMargin: number;
/**
* @desc 内容区域最大边距
* @descEN Maximum margin of content area
*/
innerMaxMargin: number;
/**
* @desc 小号开关内容区域最小边距
* @descEN Minimum margin of content area of small Switch
*/
innerMinMarginSM: number;
/**
* @desc 小号开关内容区域最大边距
* @descEN Maximum margin of content area of small Switch
*/
innerMaxMarginSM: number;
}
export declare const prepareComponentToken: GetDefaultToken<'Switch'>;
declare const _default: (prefixCls: string, rootCls?: string) => readonly [(node: React.ReactElement) => React.ReactElement, string, string];
export default _default;