cspace-ui
Version:
CollectionSpace user interface for browsers
45 lines (44 loc) • 1.2 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _reactIntl = require("react-intl");
var _default = configContext => {
const {
CompoundInput,
AutocompleteInput
} = configContext.inputComponents;
const {
configKey: config
} = configContext.configHelpers;
return {
document: {
[config]: {
view: {
type: CompoundInput
}
},
target: {
[config]: {
messages: (0, _reactIntl.defineMessages)({
name: {
"id": "field.batch.Merge Authority Items.targetCSID.name",
"defaultMessage": "Target record"
}
}),
required: true,
view: {
type: AutocompleteInput,
props: {
disableAltTerms: true,
source: 'citation/local,citation/worldcat,concept/activity,concept/associated,concept/material,organization/local,organization/ulan,person/local,person/ulan,place/local,place/tgn,location/local,location/offsite,work/local',
showQuickAdd: false
}
}
}
}
}
};
};
exports.default = _default;
;