You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
651 B
TypeScript

/** 对齐枚举 */
export enum AlignEnum {
CENTER = 'center',
START = 'start',
END = 'end',
}
export type Placement =
| 'top-start'
| 'top'
| 'top-end'
| 'right-start'
| 'right'
| 'right-end'
| 'bottom-start'
| 'bottom'
| 'bottom-end'
| 'left-start'
| 'left'
| 'left-end'
/** 位置枚举 */
export enum PlacementEnum {
TOP_START = 'top-start',
TOP = 'top',
TOP_END = 'top-end',
RIGHT_START = 'right-start',
RIGHT = 'right',
RIGHT_END = 'right-end',
BOTTOM_START = 'bottom-start',
BOTTOM = 'bottom',
BOTTOM_END = 'bottom-end',
LEFT_START = 'left-start',
LEFT = 'left',
LEFT_END = 'left-end',
}