UNPKG

cspace-ui

Version:
44 lines (43 loc) 1.61 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.IntlAwareDateInput = IntlAwareDateInput; exports.default = void 0; var _react = _interopRequireDefault(require("react")); var _reactIntl = require("react-intl"); var _cspaceInput = require("cspace-input"); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } const { DateInput } = _cspaceInput.components; const propTypes = { intl: _reactIntl.intlShape }; const messages = (0, _reactIntl.defineMessages)({ tooltip: { "id": "dateInput.tooltip", "defaultMessage": "Use the down arrow key or mouse to open the calendar" } }); function IntlAwareDateInput(props) { const { intl, ...remainingProps } = props; const { locale } = intl; const tooltip = intl.formatMessage(messages.tooltip); return /*#__PURE__*/_react.default.createElement(DateInput // eslint-disable-next-line react/jsx-props-no-spreading , _extends({}, remainingProps, { locale: locale, tooltip: tooltip })); } IntlAwareDateInput.propTypes = propTypes; const IntlizedDateInput = (0, _reactIntl.injectIntl)(IntlAwareDateInput); IntlizedDateInput.propTypes = DateInput.propTypes; var _default = exports.default = IntlizedDateInput;