element-plus/packages/utils/validators.ts

28 lines
592 B
TypeScript
Raw Normal View History

2021-04-09 13:45:21 +08:00
import { isNumber } from './util'
export const isValidWidthUnit = (val: string | number): boolean =>{
if(isNumber(val)){
return true
} else {
return ['px', 'rem', 'em', 'vw', '%', 'vmin', 'vmax'].some(unit =>
(val as string).endsWith(unit),
)
}
}
2020-10-30 23:26:33 +08:00
export const isValidComponentSize = (val: string) =>
['', 'large', 'medium', 'small', 'mini'].includes(val)
export const isValidDatePickType = (val: string) =>
[
'year',
'month',
'date',
'dates',
'week',
'datetime',
'datetimerange',
'daterange',
'monthrange',
].includes(val)