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

24 lines
612 B

import { isNumber } from './util.mjs';
const isValidWidthUnit = (val) => {
if (isNumber(val)) {
return true;
}
return ["px", "rem", "em", "vw", "%", "vmin", "vmax"].some((unit) => val.endsWith(unit)) || val.startsWith("calc");
};
const isValidComponentSize = (val) => ["", "large", "default", "small"].includes(val);
const isValidDatePickType = (val) => [
"year",
"month",
"date",
"dates",
"week",
"datetime",
"datetimerange",
"daterange",
"monthrange"
].includes(val);
export { isValidComponentSize, isValidDatePickType, isValidWidthUnit };
//# sourceMappingURL=validators.mjs.map