cspace-ui-plugin-profile-pahma
Version:
PAHMA profile plugin for the CollectionSpace UI
55 lines (52 loc) • 1.16 kB
JavaScript
export default (configContext) => {
const {
TextInput,
} = configContext.inputComponents;
const {
configKey: config,
} = configContext.configHelpers;
return {
measuredPartGroupList: {
measuredPartGroup: {
measuredPart: {
[config]: {
view: {
type: TextInput,
props: null,
},
},
},
dimensionSubGroupList: {
dimensionSubGroup: {
dimension: {
[config]: {
view: {
props: {
source: 'pahmaDimensions',
},
},
},
},
measurementMethod: {
[config]: {
view: {
type: TextInput,
props: null,
},
},
},
measurementUnit: {
[config]: {
view: {
props: {
source: 'pahmaMeasurementUnits',
},
},
},
},
},
},
},
},
};
};