UNPKG

react-day-picker

Version:

Customizable Date Picker for React

19 lines 752 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.getDataAttributes = getDataAttributes; /** Return the `data-` attributes from the props. */ function getDataAttributes(props) { const dataAttributes = { "data-mode": props.mode ?? undefined, "data-required": "required" in props ? props.required : undefined, "data-multiple-months": (props.numberOfMonths && props.numberOfMonths > 1) || undefined, "data-week-numbers": props.showWeekNumber || undefined }; Object.entries(props).forEach(([key, val]) => { if (key.startsWith("data-")) { dataAttributes[key] = val; } }); return dataAttributes; } //# sourceMappingURL=getDataAttributes.js.map