mirror of
https://github.com/ant-design/ant-design.git
synced 2024-12-05 01:19:45 +08:00
91f9fc2ff9
* fix: token update * refactor: font map token * chore: code clean * chore: code clean * chore: code clean * chore: update snapshot * chore: menu style
34 lines
1.0 KiB
TypeScript
34 lines
1.0 KiB
TypeScript
import type { ColorPalettes } from '../presetColors';
|
|
import type { SeedToken } from '../seeds';
|
|
import type { SizeMapToken, HeightMapToken } from './size';
|
|
import type { ColorMapToken } from './colors';
|
|
import type { StyleMapToken } from './style';
|
|
import type { FontMapToken } from './font';
|
|
|
|
export * from './colors';
|
|
export * from './style';
|
|
export * from './size';
|
|
export * from './font';
|
|
|
|
export interface CommonMapToken extends StyleMapToken {
|
|
// Motion
|
|
motionDurationFast: string;
|
|
motionDurationMid: string;
|
|
motionDurationSlow: string;
|
|
}
|
|
|
|
// ======================================================================
|
|
// == Map Token ==
|
|
// ======================================================================
|
|
// 🔥🔥🔥🔥🔥🔥🔥 DO NOT MODIFY THIS. PLEASE CONTACT DESIGNER. 🔥🔥🔥🔥🔥🔥🔥
|
|
|
|
export interface MapToken
|
|
extends SeedToken,
|
|
ColorPalettes,
|
|
ColorMapToken,
|
|
SizeMapToken,
|
|
HeightMapToken,
|
|
StyleMapToken,
|
|
FontMapToken,
|
|
CommonMapToken {}
|