mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-12-02 03:59:01 +08:00
96fa23ea7c
* feat: Tooltip, Popover, Dropdown, Tour support css var * chore: update snapshot * chore: code clean * chore: code clean * chore: update snapshot * chore: update snapshot * chore: update snapshot * chore: add test
15 lines
402 B
TypeScript
15 lines
402 B
TypeScript
import { unit } from '@ant-design/cssinjs';
|
|
|
|
export default function genMaxMin(type: 'css' | 'js') {
|
|
if (type === 'js') {
|
|
return {
|
|
max: Math.max,
|
|
min: Math.min,
|
|
};
|
|
}
|
|
return {
|
|
max: (...args: (string | number)[]) => `max(${args.map((value) => unit(value)).join(',')})`,
|
|
min: (...args: (string | number)[]) => `min(${args.map((value) => unit(value)).join(',')})`,
|
|
};
|
|
}
|