mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* Add overlay component; Dialog component almost done * feat(dialog): add use-lockscreen * feat(dialog): coding completed awaiting tests * feat(dialog): finish writing test cases * fix test failures * Address PR comments * fallback some changes
5 lines
139 B
TypeScript
5 lines
139 B
TypeScript
export const isValidWidthUnit = (val: string) =>
|
|
['px', 'rem', 'em', 'vw', '%', 'vmin', 'vmax'].some(unit =>
|
|
val.endsWith(unit),
|
|
)
|