mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-05 05:28:20 +08:00
5f1dd427df
* feat: css variables theme * chore: temp * chore temp * chore: temp * chore: temp * chore: tmp * chore: temp * feat: full css variables * feat: css var * chore: code clean * chore: code clean * chore: bump cssinjs * test: fix lint * feat: better key logic * feat: useStyle add param rootCls for cssVar scope * chore: fix lint * chore: code clean * chore: fix lint * perf: minimize component token size * chore: make useId compatible * chore: code clean * chore: fix lint * chore: code clean * chore: update test case * feat: genCSSVarRegister * feat: RPN Calculator * chore: add test for css var * chore: code clean * test: add test for calc * feat: better calc type * chore: code clean * chore: update size limit * feat: better useCSSVar * chore: better useCSSVar * test: add cov * feat: better calc logic * test: add test case * chore: code clean --------- Signed-off-by: MadCcc <madccc@foxmail.com>
42 lines
1.2 KiB
TypeScript
42 lines
1.2 KiB
TypeScript
import type { CSSInterpolation, DerivativeFunc } from '@ant-design/cssinjs';
|
|
import type { AliasToken } from './alias';
|
|
import type { ComponentTokenMap } from './components';
|
|
import type { MapToken } from './maps';
|
|
import type { SeedToken } from './seeds';
|
|
|
|
export type MappingAlgorithm = DerivativeFunc<SeedToken, MapToken>;
|
|
|
|
export type OverrideToken = {
|
|
[key in keyof ComponentTokenMap]: Partial<ComponentTokenMap[key]> & Partial<AliasToken>;
|
|
};
|
|
|
|
/** Final token which contains the components level override */
|
|
export type GlobalToken = AliasToken & ComponentTokenMap;
|
|
|
|
export type { AliasToken } from './alias';
|
|
export type { ComponentTokenMap } from './components';
|
|
export type {
|
|
ColorMapToken,
|
|
ColorNeutralMapToken,
|
|
CommonMapToken,
|
|
FontMapToken,
|
|
HeightMapToken,
|
|
MapToken,
|
|
SizeMapToken,
|
|
StyleMapToken,
|
|
} from './maps';
|
|
export { PresetColors } from './presetColors';
|
|
export type {
|
|
ColorPalettes,
|
|
PresetColorKey,
|
|
PresetColorType,
|
|
} from './presetColors';
|
|
export type { SeedToken } from './seeds';
|
|
|
|
export type UseComponentStyleResult = [(node: React.ReactNode) => React.ReactElement, string];
|
|
|
|
export type GenerateStyle<
|
|
ComponentToken extends object = AliasToken,
|
|
ReturnType = CSSInterpolation,
|
|
> = (token: ComponentToken) => ReturnType;
|