ra-core
Version:
Core components of react-admin, a frontend Framework for building admin applications on top of REST services, using ES6, React
72 lines • 3.51 kB
JavaScript
;
var __assign = (this && this.__assign) || function () {
__assign = Object.assign || function(t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
t[p] = s[p];
}
return t;
};
return __assign.apply(this, arguments);
};
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
var desc = Object.getOwnPropertyDescriptor(m, k);
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
desc = { enumerable: true, get: function() { return m[k]; } };
}
Object.defineProperty(o, k2, desc);
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || (function () {
var ownKeys = function(o) {
ownKeys = Object.getOwnPropertyNames || function (o) {
var ar = [];
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
return ar;
};
return ownKeys(o);
};
return function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
__setModuleDefault(result, mod);
return result;
};
})();
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextInput = void 0;
var React = __importStar(require("react"));
var __1 = require("..//index.cjs");
var TextInput = function (_a) {
var multiline = _a.multiline, _b = _a.type, type = _b === void 0 ? 'text' : _b, props = __rest(_a, ["multiline", "type"]);
var _c = (0, __1.useInput)(props), id = _c.id, field = _c.field, fieldState = _c.fieldState;
return (React.createElement("div", null,
React.createElement("label", { htmlFor: id },
React.createElement(__1.FieldTitle, { label: props.label, source: props.source, resource: props.resource, isRequired: (0, __1.isRequired)(props.validate) })),
React.createElement("br", null),
multiline ? (React.createElement("textarea", __assign({ id: id }, field, { "aria-describedby": fieldState.error ? "error-".concat(id) : undefined }))) : (React.createElement("input", __assign({ id: id }, field, { type: type, "aria-describedby": fieldState.error ? "error-".concat(id) : undefined }))),
fieldState.error ? (React.createElement("p", { style: { color: 'red' }, id: "error-".concat(id) }, fieldState.error.message)) : null));
};
exports.TextInput = TextInput;
//# sourceMappingURL=TextInput.js.map