cspace-ui-plugin-profile-bonsai 5.0.2 → 5.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (28) hide show
  1. package/dist/cspaceUIPluginProfileBonsai.js +495 -478
  2. package/dist/cspaceUIPluginProfileBonsai.min.js +1 -1
  3. package/lib/index.js +0 -11
  4. package/lib/plugins/index.js +0 -3
  5. package/lib/plugins/recordTypes/collectionobject/advancedSearch.js +0 -2
  6. package/lib/plugins/recordTypes/collectionobject/fields.js +0 -3
  7. package/lib/plugins/recordTypes/collectionobject/forms/default.js +0 -3
  8. package/lib/plugins/recordTypes/collectionobject/forms/index.js +0 -4
  9. package/lib/plugins/recordTypes/collectionobject/index.js +0 -8
  10. package/lib/plugins/recordTypes/collectionobject/messages.js +0 -3
  11. package/lib/plugins/recordTypes/collectionobject/optionLists.js +0 -2
  12. package/lib/plugins/recordTypes/conditioncheck/forms/default.js +0 -3
  13. package/lib/plugins/recordTypes/conditioncheck/forms/index.js +0 -4
  14. package/lib/plugins/recordTypes/conditioncheck/index.js +0 -4
  15. package/lib/plugins/recordTypes/conservation/advancedSearch.js +0 -2
  16. package/lib/plugins/recordTypes/conservation/fields.js +0 -3
  17. package/lib/plugins/recordTypes/conservation/forms/default.js +0 -3
  18. package/lib/plugins/recordTypes/conservation/forms/index.js +0 -4
  19. package/lib/plugins/recordTypes/conservation/index.js +0 -7
  20. package/lib/plugins/recordTypes/conservation/messages.js +0 -2
  21. package/lib/plugins/recordTypes/exhibition/forms/default.js +0 -3
  22. package/lib/plugins/recordTypes/exhibition/forms/index.js +0 -4
  23. package/lib/plugins/recordTypes/exhibition/index.js +0 -4
  24. package/lib/plugins/recordTypes/index.js +0 -8
  25. package/lib/plugins/recordTypes/iterationreport/index.js +0 -2
  26. package/lib/plugins/recordTypes/objectexit/index.js +0 -4
  27. package/lib/plugins/recordTypes/objectexit/optionLists.js +0 -2
  28. package/package.json +23 -24
@@ -1,3 +1,11 @@
1
+ /*
2
+ * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
3
+ * This devtool is neither made for production nor for readable output files.
4
+ * It uses "eval()" calls to create a separate source file in the browser devtools.
5
+ * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
6
+ * or disable the default devtool with "devtool: false".
7
+ * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
8
+ */
1
9
  (function webpackUniversalModuleDefinition(root, factory) {
2
10
  if(typeof exports === 'object' && typeof module === 'object')
3
11
  module.exports = factory();
@@ -7,104 +15,314 @@
7
15
  exports["cspaceUIPluginProfileBonsai"] = factory();
8
16
  else
9
17
  root["cspaceUIPluginProfileBonsai"] = factory();
10
- })(window, function() {
11
- return /******/ (function(modules) { // webpackBootstrap
12
- /******/ // The module cache
13
- /******/ var installedModules = {};
14
- /******/
15
- /******/ // The require function
16
- /******/ function __webpack_require__(moduleId) {
17
- /******/
18
- /******/ // Check if module is in cache
19
- /******/ if(installedModules[moduleId]) {
20
- /******/ return installedModules[moduleId].exports;
21
- /******/ }
22
- /******/ // Create a new module (and put it into the cache)
23
- /******/ var module = installedModules[moduleId] = {
24
- /******/ i: moduleId,
25
- /******/ l: false,
26
- /******/ exports: {}
27
- /******/ };
28
- /******/
29
- /******/ // Execute the module function
30
- /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
31
- /******/
32
- /******/ // Flag the module as loaded
33
- /******/ module.l = true;
34
- /******/
35
- /******/ // Return the exports of the module
36
- /******/ return module.exports;
37
- /******/ }
38
- /******/
39
- /******/
40
- /******/ // expose the modules object (__webpack_modules__)
41
- /******/ __webpack_require__.m = modules;
42
- /******/
43
- /******/ // expose the module cache
44
- /******/ __webpack_require__.c = installedModules;
45
- /******/
46
- /******/ // define getter function for harmony exports
47
- /******/ __webpack_require__.d = function(exports, name, getter) {
48
- /******/ if(!__webpack_require__.o(exports, name)) {
49
- /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
50
- /******/ }
51
- /******/ };
52
- /******/
53
- /******/ // define __esModule on exports
54
- /******/ __webpack_require__.r = function(exports) {
55
- /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
56
- /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
57
- /******/ }
58
- /******/ Object.defineProperty(exports, '__esModule', { value: true });
59
- /******/ };
60
- /******/
61
- /******/ // create a fake namespace object
62
- /******/ // mode & 1: value is a module id, require it
63
- /******/ // mode & 2: merge all properties of value into the ns
64
- /******/ // mode & 4: return value when already ns object
65
- /******/ // mode & 8|1: behave like require
66
- /******/ __webpack_require__.t = function(value, mode) {
67
- /******/ if(mode & 1) value = __webpack_require__(value);
68
- /******/ if(mode & 8) return value;
69
- /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
70
- /******/ var ns = Object.create(null);
71
- /******/ __webpack_require__.r(ns);
72
- /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
73
- /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
74
- /******/ return ns;
75
- /******/ };
76
- /******/
77
- /******/ // getDefaultExport function for compatibility with non-harmony modules
78
- /******/ __webpack_require__.n = function(module) {
79
- /******/ var getter = module && module.__esModule ?
80
- /******/ function getDefault() { return module['default']; } :
81
- /******/ function getModuleExports() { return module; };
82
- /******/ __webpack_require__.d(getter, 'a', getter);
83
- /******/ return getter;
84
- /******/ };
85
- /******/
86
- /******/ // Object.prototype.hasOwnProperty.call
87
- /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
88
- /******/
89
- /******/ // __webpack_public_path__
90
- /******/ __webpack_require__.p = "";
91
- /******/
92
- /******/
93
- /******/ // Load entry module and return exports
94
- /******/ return __webpack_require__(__webpack_require__.s = "./src/index.js");
95
- /******/ })
96
- /************************************************************************/
97
- /******/ ({
18
+ })(self, () => {
19
+ return /******/ (() => { // webpackBootstrap
20
+ /******/ var __webpack_modules__ = ({
21
+
22
+ /***/ "./react-intl-stub.js":
23
+ /*!****************************!*\
24
+ !*** ./react-intl-stub.js ***!
25
+ \****************************/
26
+ /***/ ((module) => {
27
+
28
+ eval("module.exports = {\n defineMessages: messages => messages\n};\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./react-intl-stub.js?");
29
+
30
+ /***/ }),
31
+
32
+ /***/ "./src/index.js":
33
+ /*!**********************!*\
34
+ !*** ./src/index.js ***!
35
+ \**********************/
36
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
37
+
38
+ "use strict";
39
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var cspace_ui_plugin_ext_accessionattributes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! cspace-ui-plugin-ext-accessionattributes */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/index.js\");\n/* harmony import */ var cspace_ui_plugin_ext_livingplant__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! cspace-ui-plugin-ext-livingplant */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/index.js\");\n/* harmony import */ var cspace_ui_plugin_record_taxon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! cspace-ui-plugin-record-taxon */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/index.js\");\n/* harmony import */ var _messages__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./messages */ \"./src/messages.js\");\n/* harmony import */ var _plugins__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./plugins */ \"./src/plugins/index.js\");\n/* harmony import */ var _styles_cspace_ui_plugin_profile_bonsai_css__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../styles/cspace-ui-plugin-profile/bonsai.css */ \"./styles/cspace-ui-plugin-profile/bonsai.css\");\n/* global cspaceUIPluginProfileBonsai */\n/* The cspaceUIPluginProfileBonsai global variable is set by webpack (in non-test builds). See\n * webpack.config.js. */\n\n\n\n\n\n\n\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (() => ({\n messages: _messages__WEBPACK_IMPORTED_MODULE_4__[\"default\"],\n className: _styles_cspace_ui_plugin_profile_bonsai_css__WEBPACK_IMPORTED_MODULE_6__[\"default\"].common,\n prettyUrls: true,\n tenantId: '3000',\n pluginInfo: {\n cspaceUIPluginProfileBonsai: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"cspaceUIPluginProfileBonsai.name\",\n \"defaultMessage\": \"Bonsai profile\"\n }\n }),\n version: \"5.0.3\"\n }\n },\n plugins: [(0,cspace_ui_plugin_ext_accessionattributes__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(), (0,cspace_ui_plugin_ext_livingplant__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(), (0,cspace_ui_plugin_record_taxon__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(), ..._plugins__WEBPACK_IMPORTED_MODULE_5__[\"default\"].map(plugin => plugin())]\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/index.js?");
40
+
41
+ /***/ }),
42
+
43
+ /***/ "./src/messages.js":
44
+ /*!*************************!*\
45
+ !*** ./src/messages.js ***!
46
+ \*************************/
47
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
48
+
49
+ "use strict";
50
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({\n 'about.title': 'Welcome to CollectionSpace: Bonsai',\n 'field.conservation_common.conservator.name': 'Performed by'\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/messages.js?");
51
+
52
+ /***/ }),
53
+
54
+ /***/ "./src/plugins/index.js":
55
+ /*!******************************!*\
56
+ !*** ./src/plugins/index.js ***!
57
+ \******************************/
58
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
59
+
60
+ "use strict";
61
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _recordTypes__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./recordTypes */ \"./src/plugins/recordTypes/index.js\");\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ([..._recordTypes__WEBPACK_IMPORTED_MODULE_0__[\"default\"]]);\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/index.js?");
62
+
63
+ /***/ }),
64
+
65
+ /***/ "./src/plugins/recordTypes/collectionobject/advancedSearch.js":
66
+ /*!********************************************************************!*\
67
+ !*** ./src/plugins/recordTypes/collectionobject/advancedSearch.js ***!
68
+ \********************************************************************/
69
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
70
+
71
+ "use strict";
72
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => {\n const {\n OP_EQ,\n OP_CONTAIN\n } = configContext.searchOperators;\n const {\n defaultAdvancedSearchBooleanOp,\n extensions\n } = configContext.config;\n return {\n op: defaultAdvancedSearchBooleanOp,\n value: [{\n op: OP_CONTAIN,\n path: 'ns2:collectionobjects_common/objectNumber'\n }, {\n op: OP_EQ,\n path: 'ns2:collectionobjects_bonsai/taxon'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:collectionobjects_bonsai/commonName'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:collectionobjects_bonsai/japaneseName'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:collectionobjects_bonsai/sponsor'\n }, {\n op: OP_EQ,\n path: 'ns2:collectionobjects_bonsai/treeType'\n }, ...extensions.core.advancedSearch]\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/advancedSearch.js?");
73
+
74
+ /***/ }),
75
+
76
+ /***/ "./src/plugins/recordTypes/collectionobject/fields.js":
77
+ /*!************************************************************!*\
78
+ !*** ./src/plugins/recordTypes/collectionobject/fields.js ***!
79
+ \************************************************************/
80
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
81
+
82
+ "use strict";
83
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => {\n const {\n AutocompleteInput,\n CheckboxInput,\n CompoundInput,\n DateInput,\n TextInput,\n TermPickerInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_BOOL,\n DATA_TYPE_DATE\n } = configContext.dataTypes;\n const {\n extensions\n } = configContext.config;\n return {\n document: {\n 'ns2:collectionobjects_common': {\n contentPlaces: {\n contentPlace: {\n [config]: {\n view: {\n type: AutocompleteInput,\n props: {\n source: 'place/local,place/tgn'\n }\n }\n }\n }\n },\n objectProductionPlaceGroupList: {\n objectProductionPlaceGroup: {\n objectProductionPlace: {\n [config]: {\n view: {\n type: AutocompleteInput,\n props: {\n source: 'place/local,place/tgn'\n }\n }\n }\n }\n }\n }\n },\n 'ns2:collectionobjects_bonsai': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/collectionobject/local/bonsai'\n }\n },\n taxon: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.taxon.name\",\n \"defaultMessage\": \"Scientific name\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'taxon/local,taxon/common'\n }\n }\n }\n },\n commonName: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.commonName.name\",\n \"defaultMessage\": \"Common name\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n japaneseName: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.japaneseName.name\",\n \"defaultMessage\": \"Japanese name\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n nativeSpecies: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.nativeSpecies.name\",\n \"defaultMessage\": \"Native species?\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n sponsor: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.sponsor.name\",\n \"defaultMessage\": \"Sponsor\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n sponsorStartDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.sponsorStartDate.name\",\n \"defaultMessage\": \"Sponsor start date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n sponsorEndDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.sponsorEndDate.name\",\n \"defaultMessage\": \"Sponsor end date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n assignedVolunteers: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n assignedVolunteer: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.assignedVolunteer.name\",\n \"defaultMessage\": \"Assigned volunteer\"\n }\n }),\n repeating: true,\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/ulan'\n }\n }\n }\n }\n },\n potStyle: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.potStyle.name\",\n \"defaultMessage\": \"Pot style\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'potstyle'\n }\n }\n }\n },\n treeType: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.collectionobjects_bonsai.treeType.name\",\n \"defaultMessage\": \"Tree type\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'treetype'\n }\n }\n }\n }\n },\n ...extensions.accessionattributes.collectionobject.fields\n }\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/fields.js?");
84
+
85
+ /***/ }),
86
+
87
+ /***/ "./src/plugins/recordTypes/collectionobject/forms/default.jsx":
88
+ /*!********************************************************************!*\
89
+ !*** ./src/plugins/recordTypes/collectionobject/forms/default.jsx ***!
90
+ \********************************************************************/
91
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
92
+
93
+ "use strict";
94
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Col,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field,\n InputTable\n } = configContext.recordComponents;\n const {\n extensions\n } = configContext.config;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"id\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"objectNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"taxon\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"commonName\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"japaneseName\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"nativeSpecies\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"collection\"\n }), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"namedCollections\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"namedCollection\"\n })))), /*#__PURE__*/React.createElement(Field, {\n name: \"recordStatus\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sponsor\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"sponsorStartDate\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sponsorEndDate\",\n subpath: \"ns2:collectionobjects_bonsai\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"publishToList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"publishTo\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"inventoryStatusList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"inventoryStatus\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"briefDescriptions\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"briefDescription\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"distinguishingFeatures\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"comments\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"comment\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assignedVolunteers\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assignedVolunteer\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"computedCurrentLocation\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"annotationGroupList\",\n subpath: \"ns2:collectionobjects_annotation\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"annotationGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"annotationType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"annotationNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"annotationDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"annotationAuthor\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"titleGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"titleGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"title\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"titleLanguage\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"titleType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"titleTranslationSubGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"titleTranslationSubGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"titleTranslation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"titleTranslationLanguage\"\n }))))))))), /*#__PURE__*/React.createElement(Panel, {\n name: \"desc\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"copyNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"potStyle\",\n subpath: \"ns2:collectionobjects_bonsai\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"treeType\",\n subpath: \"ns2:collectionobjects_bonsai\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"physicalDescription\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"colors\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"color\"\n })), /*#__PURE__*/React.createElement(\"div\", null)), extensions.dimension.form, /*#__PURE__*/React.createElement(Panel, {\n name: \"accessionattributes\",\n collapsible: true,\n collapsed: true\n }, extensions.accessionattributes.collectionobject.forms.flowering, extensions.accessionattributes.collectionobject.forms.fruiting), /*#__PURE__*/React.createElement(Panel, {\n name: \"content\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentDescription\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"contentLanguages\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentLanguage\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentActivities\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentActivity\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentConcepts\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentConcept\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentPositions\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPosition\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentObjectGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentObjectGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentObject\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"contentObjectType\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"contentPeoples\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPeople\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPersons\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPerson\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentPlaces\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPlace\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentScripts\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentScript\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentOrganizations\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentOrganization\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentEventNameGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentEventNameGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentEventName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"contentEventNameType\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"contentOtherGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentOtherGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentOther\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"contentOtherType\"\n }))))), /*#__PURE__*/React.createElement(Field, {\n name: \"contentNote\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"textInscript\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"textualInscriptionGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"textualInscriptionGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContent\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentInscriber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentLanguage\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentDateGroup\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentPosition\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentScript\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentMethod\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentInterpretation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentTranslation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentTransliteration\"\n }))))), /*#__PURE__*/React.createElement(Panel, {\n name: \"nonTextInscript\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"nonTextualInscriptionGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"nonTextualInscriptionGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescription\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionInscriber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionDateGroup\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionPosition\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionMethod\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionInterpretation\"\n })))))), /*#__PURE__*/React.createElement(Panel, {\n name: \"prod\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionDateGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionDateGroup\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"techniqueGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"techniqueGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"technique\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"techniqueType\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPlaceGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPlaceGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPlace\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPlaceRole\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionReasons\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionReason\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPersonGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPersonGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPerson\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPersonRole\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionOrganizationGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionOrganizationGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionOrganization\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionOrganizationRole\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"hist\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"assoc\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivityGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivityGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivity\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivityType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivityNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocObjectGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocObjectGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocObject\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocObjectType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocObjectNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocConceptGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocConceptGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocConcept\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocConceptType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocConceptNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContextGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContextGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContext\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContextType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContextNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganizationGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganizationGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganization\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganizationType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganizationNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeopleGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeopleGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeople\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeopleType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeopleNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPersonGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPersonGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPerson\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPersonType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPersonNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlaceGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlaceGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlace\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlaceType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlaceNote\"\n })))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(InputTable, {\n name: \"assocEvent\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventNameType\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventOrganizations\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventOrganization\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPeoples\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPeople\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPersons\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPerson\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPlaces\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPlace\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocDateGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocDateGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocStructuredDateGroup\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocDateType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocDateNote\"\n })))))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectHistoryNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"usageGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"usageGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"usage\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"usageNote\"\n }))), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"owners\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"owner\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipDateGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipDateGroup\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipCategory\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipPlace\"\n }))), /*#__PURE__*/React.createElement(InputTable, {\n name: \"ownershipExchange\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipExchangeMethod\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipExchangeNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipExchangePriceCurrency\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipExchangePriceValue\"\n }))), /*#__PURE__*/React.createElement(Panel, {\n name: \"owner\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"ownersPersonalExperience\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownersPersonalResponse\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownersReferences\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"ownersReference\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"ownersContributionNote\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"viewer\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"viewersRole\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"viewersPersonalExperience\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"viewersPersonalResponse\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"viewersReferences\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"viewersReference\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"viewersContributionNote\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"reference\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"referenceGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"referenceGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"reference\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"referenceNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"collect\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionDateGroup\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionMethods\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionMethod\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionPlace\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionSources\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionSource\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectors\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollector\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionFeature\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"hierarchy\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"relation-list-item\",\n subpath: \"rel:relations-common-list\"\n })));\n};\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => ({\n template: template(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/forms/default.jsx?");
95
+
96
+ /***/ }),
97
+
98
+ /***/ "./src/plugins/recordTypes/collectionobject/forms/index.js":
99
+ /*!*****************************************************************!*\
100
+ !*** ./src/plugins/recordTypes/collectionobject/forms/index.js ***!
101
+ \*****************************************************************/
102
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
103
+
104
+ "use strict";
105
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _default__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./default */ \"./src/plugins/recordTypes/collectionobject/forms/default.jsx\");\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => ({\n default: (0,_default__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext),\n inventory: {\n disabled: true\n },\n photo: {\n disabled: true\n },\n public: {\n disabled: true\n },\n timebased: {\n disabled: true\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/forms/index.js?");
106
+
107
+ /***/ }),
108
+
109
+ /***/ "./src/plugins/recordTypes/collectionobject/index.js":
110
+ /*!***********************************************************!*\
111
+ !*** ./src/plugins/recordTypes/collectionobject/index.js ***!
112
+ \***********************************************************/
113
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
114
+
115
+ "use strict";
116
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _advancedSearch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./advancedSearch */ \"./src/plugins/recordTypes/collectionobject/advancedSearch.js\");\n/* harmony import */ var _fields__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./fields */ \"./src/plugins/recordTypes/collectionobject/fields.js\");\n/* harmony import */ var _forms__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./forms */ \"./src/plugins/recordTypes/collectionobject/forms/index.js\");\n/* harmony import */ var _messages__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./messages */ \"./src/plugins/recordTypes/collectionobject/messages.js\");\n/* harmony import */ var _optionLists__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./optionLists */ \"./src/plugins/recordTypes/collectionobject/optionLists.js\");\n\n\n\n\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (() => configContext => ({\n optionLists: _optionLists__WEBPACK_IMPORTED_MODULE_4__[\"default\"],\n recordTypes: {\n collectionobject: {\n advancedSearch: (0,_advancedSearch__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext),\n fields: (0,_fields__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(configContext),\n forms: (0,_forms__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(configContext),\n messages: (0,_messages__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(configContext)\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/index.js?");
117
+
118
+ /***/ }),
119
+
120
+ /***/ "./src/plugins/recordTypes/collectionobject/messages.js":
121
+ /*!**************************************************************!*\
122
+ !*** ./src/plugins/recordTypes/collectionobject/messages.js ***!
123
+ \**************************************************************/
124
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
125
+
126
+ "use strict";
127
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => {\n const {\n extensions\n } = configContext.config;\n return {\n inputTable: extensions.accessionattributes.collectionobject.messages.inputTable,\n panel: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n accessionattributes: {\n \"id\": \"panel.collectionobject.accessionattributes\",\n \"defaultMessage\": \"Accession Attributes\"\n }\n })\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/messages.js?");
128
+
129
+ /***/ }),
130
+
131
+ /***/ "./src/plugins/recordTypes/collectionobject/optionLists.js":
132
+ /*!*****************************************************************!*\
133
+ !*** ./src/plugins/recordTypes/collectionobject/optionLists.js ***!
134
+ \*****************************************************************/
135
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
136
+
137
+ "use strict";
138
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({\n collections: {\n values: ['development', 'display', 'library-collection', 'permanent-collection', 'study-collection', 'teaching-collection'],\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n development: {\n \"id\": \"option.collections.development\",\n \"defaultMessage\": \"development\"\n },\n display: {\n \"id\": \"option.collections.display\",\n \"defaultMessage\": \"display\"\n }\n })\n }\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/optionLists.js?");
139
+
140
+ /***/ }),
141
+
142
+ /***/ "./src/plugins/recordTypes/conditioncheck/forms/default.jsx":
143
+ /*!******************************************************************!*\
144
+ !*** ./src/plugins/recordTypes/conditioncheck/forms/default.jsx ***!
145
+ \******************************************************************/
146
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
147
+
148
+ "use strict";
149
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Col,\n Cols,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"conditionCheckAndTechAssessmentInfo\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckRefNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckAssessmentDate\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"conditionChecker\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckNote\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"objectConditionAndTechAssessmentInfo\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"objectAuditCategory\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conservationTreatmentPriority\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"nextConditionCheckDate\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"completenessGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"completenessGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"completeness\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"completenessDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"completenessNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"techAssessmentGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"techAssessmentGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"techAssessment\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"techAssessmentDate\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"condition\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"objectRequirementInfo\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"displayRecommendations\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"handlingRecommendations\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"envRecommendations\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"specialRequirements\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalRequirements\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeld\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldBeginDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldEndDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldRenewDate\"\n }))), /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"salvagePriorityCodeGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"salvagePriorityCodeGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"salvagePriorityCode\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"salvagePriorityCodeDate\"\n })))), /*#__PURE__*/React.createElement(Col, null))));\n};\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => ({\n template: template(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conditioncheck/forms/default.jsx?");
150
+
151
+ /***/ }),
152
+
153
+ /***/ "./src/plugins/recordTypes/conditioncheck/forms/index.js":
154
+ /*!***************************************************************!*\
155
+ !*** ./src/plugins/recordTypes/conditioncheck/forms/index.js ***!
156
+ \***************************************************************/
157
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
158
+
159
+ "use strict";
160
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _default__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./default */ \"./src/plugins/recordTypes/conditioncheck/forms/default.jsx\");\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => ({\n default: (0,_default__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conditioncheck/forms/index.js?");
161
+
162
+ /***/ }),
163
+
164
+ /***/ "./src/plugins/recordTypes/conditioncheck/index.js":
165
+ /*!*********************************************************!*\
166
+ !*** ./src/plugins/recordTypes/conditioncheck/index.js ***!
167
+ \*********************************************************/
168
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
169
+
170
+ "use strict";
171
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _forms__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./forms */ \"./src/plugins/recordTypes/conditioncheck/forms/index.js\");\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (() => configContext => ({\n recordTypes: {\n conditioncheck: {\n forms: (0,_forms__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conditioncheck/index.js?");
172
+
173
+ /***/ }),
174
+
175
+ /***/ "./src/plugins/recordTypes/conservation/advancedSearch.js":
176
+ /*!****************************************************************!*\
177
+ !*** ./src/plugins/recordTypes/conservation/advancedSearch.js ***!
178
+ \****************************************************************/
179
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
180
+
181
+ "use strict";
182
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => {\n const {\n OP_EQ,\n OP_CONTAIN,\n OP_RANGE\n } = configContext.searchOperators;\n const {\n defaultAdvancedSearchBooleanOp,\n extensions\n } = configContext.config;\n return {\n op: defaultAdvancedSearchBooleanOp,\n value: [{\n op: OP_CONTAIN,\n path: 'ns2:conservation_common/conservationNumber'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/conservationStatusGroupList/conservationStatusGroup/status'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/treatmentPurpose'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_bonsai/treatmentsPerformed/treatmentPerformed'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/conservators/conservator'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/approvedBy'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_common/approvedDate'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_common/treatmentStartDate'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_common/treatmentEndDate'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_bonsai/futureTreatmentGroupList/futureTreatmentGroup/futureTreatment'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_bonsai/futureTreatmentGroupList/futureTreatmentGroup/futureTreatmentDate'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/destAnalysisGroupList/destAnalysisGroup/sampleBy'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_livingplant/nextRepotting'\n }, ...extensions.core.advancedSearch]\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/advancedSearch.js?");
183
+
184
+ /***/ }),
185
+
186
+ /***/ "./src/plugins/recordTypes/conservation/fields.js":
187
+ /*!********************************************************!*\
188
+ !*** ./src/plugins/recordTypes/conservation/fields.js ***!
189
+ \********************************************************/
190
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
191
+
192
+ "use strict";
193
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => {\n const {\n CompoundInput,\n DateInput,\n TermPickerInput,\n TextInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_DATE\n } = configContext.dataTypes;\n const {\n extensions\n } = configContext.config;\n return {\n document: {\n 'ns2:conservation_common': {\n conservators: {\n conservator: {\n [config]: {\n // Add a fullName message to disambiguate treatment \"performed by\" from repotting\n // \"performed by\"\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_common.conservator.fullName\",\n \"defaultMessage\": \"Treatment performed by\"\n }\n })\n }\n }\n }\n },\n 'ns2:conservation_bonsai': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/conservation/local/bonsai'\n }\n },\n treatmentsPerformed: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n treatmentPerformed: {\n [config]: {\n repeating: true,\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.conservation_bonsai.treatmentPerformed.name\",\n \"defaultMessage\": \"Treatment performed\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'treatmentperformed'\n }\n }\n }\n }\n },\n futureTreatmentGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n futureTreatmentGroup: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n name: {\n \"id\": \"field.conservation_bonsai.futureTreatmentGroup.name\",\n \"defaultMessage\": \"Future treatment\"\n }\n }),\n repeating: true,\n view: {\n type: CompoundInput,\n props: {\n tabular: true\n }\n }\n },\n futureTreatment: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_bonsai.futureTreatment.fullName\",\n \"defaultMessage\": \"Future treatment\"\n },\n name: {\n \"id\": \"field.conservation_bonsai.futureTreatment.name\",\n \"defaultMessage\": \"Treatment\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'futuretreatment'\n }\n }\n }\n },\n futureTreatmentDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_bonsai.futureTreatmentDate.fullName\",\n \"defaultMessage\": \"Future treatment date\"\n },\n name: {\n \"id\": \"field.conservation_bonsai.futureTreatmentDate.name\",\n \"defaultMessage\": \"Date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n futureTreatmentNote: {\n [config]: {\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_bonsai.futureTreatmentNote.fullName\",\n \"defaultMessage\": \"Future treatment note\"\n },\n name: {\n \"id\": \"field.conservation_bonsai.futureTreatmentNote.name\",\n \"defaultMessage\": \"Note\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n }\n }\n }\n },\n ...extensions.livingplant.conservation.fields\n }\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/fields.js?");
194
+
195
+ /***/ }),
196
+
197
+ /***/ "./src/plugins/recordTypes/conservation/forms/default.jsx":
198
+ /*!****************************************************************!*\
199
+ !*** ./src/plugins/recordTypes/conservation/forms/default.jsx ***!
200
+ \****************************************************************/
201
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
202
+
203
+ "use strict";
204
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Cols,\n Col,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n const {\n extensions\n } = configContext.config;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"info\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"conservationNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conservationStatusGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"conservationStatusGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"status\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"statusDate\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentPurpose\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentsPerformed\",\n subpath: \"ns2:conservation_bonsai\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentPerformed\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"conservators\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"conservator\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"otherPartyGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"otherPartyGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"otherParty\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"otherPartyRole\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"otherPartyNote\"\n }))))), /*#__PURE__*/React.createElement(Field, {\n name: \"proposedTreatment\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"approvedBy\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"approvedDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentStartDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentEndDate\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentSummary\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"objectAnalysisInfo\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentGroupList\",\n subpath: \"ns2:conservation_bonsai\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatment\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"destAnalysisGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"destAnalysisGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"destAnalysisApprovedDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"destAnalysisApprovalNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sampleBy\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sampleDate\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"sampleDescription\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"sampleReturned\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sampleReturnedLocation\"\n }))))), /*#__PURE__*/React.createElement(Field, {\n name: \"analysisMethod\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"analysisResults\"\n })), extensions.livingplant.conservation.form);\n};\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => ({\n template: template(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/forms/default.jsx?");
205
+
206
+ /***/ }),
207
+
208
+ /***/ "./src/plugins/recordTypes/conservation/forms/index.js":
209
+ /*!*************************************************************!*\
210
+ !*** ./src/plugins/recordTypes/conservation/forms/index.js ***!
211
+ \*************************************************************/
212
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
213
+
214
+ "use strict";
215
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _default__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./default */ \"./src/plugins/recordTypes/conservation/forms/default.jsx\");\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => ({\n default: (0,_default__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/forms/index.js?");
216
+
217
+ /***/ }),
218
+
219
+ /***/ "./src/plugins/recordTypes/conservation/index.js":
220
+ /*!*******************************************************!*\
221
+ !*** ./src/plugins/recordTypes/conservation/index.js ***!
222
+ \*******************************************************/
223
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
224
+
225
+ "use strict";
226
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _advancedSearch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./advancedSearch */ \"./src/plugins/recordTypes/conservation/advancedSearch.js\");\n/* harmony import */ var _fields__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./fields */ \"./src/plugins/recordTypes/conservation/fields.js\");\n/* harmony import */ var _forms__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./forms */ \"./src/plugins/recordTypes/conservation/forms/index.js\");\n/* harmony import */ var _messages__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./messages */ \"./src/plugins/recordTypes/conservation/messages.js\");\n\n\n\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (() => configContext => ({\n recordTypes: {\n conservation: {\n advancedSearch: (0,_advancedSearch__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext),\n fields: (0,_fields__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(configContext),\n forms: (0,_forms__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(configContext),\n messages: (0,_messages__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(configContext)\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/index.js?");
227
+
228
+ /***/ }),
229
+
230
+ /***/ "./src/plugins/recordTypes/conservation/messages.js":
231
+ /*!**********************************************************!*\
232
+ !*** ./src/plugins/recordTypes/conservation/messages.js ***!
233
+ \**********************************************************/
234
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
235
+
236
+ "use strict";
237
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => {\n const {\n extensions\n } = configContext.config;\n return extensions.livingplant.conservation.messages;\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/messages.js?");
238
+
239
+ /***/ }),
240
+
241
+ /***/ "./src/plugins/recordTypes/exhibition/forms/default.jsx":
242
+ /*!**************************************************************!*\
243
+ !*** ./src/plugins/recordTypes/exhibition/forms/default.jsx ***!
244
+ \**************************************************************/
245
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
246
+
247
+ "use strict";
248
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Col,\n Cols,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"info\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"type\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"title\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"sponsors\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"sponsor\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"organizers\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"organizer\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"publishToList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"publishTo\"\n })))), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"venueGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"venueGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"venue\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"venueOpeningDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"venueClosingDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"venueAttendance\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"venueUrl\"\n })))), /*#__PURE__*/React.createElement(Field, {\n name: \"workingGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"workingGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"workingGroupTitle\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"workingGroupNote\"\n })), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionPersonGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionPersonGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionPerson\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionPersonRole\"\n }))))))), /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"planningNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"curatorialNote\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"generalNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"boilerplateText\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationStartDateGroup\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationEndDateGroup\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReferenceGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReferenceGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReference\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReferenceType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReferenceNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"planningInfo\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionLocation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionObjects\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatusGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatusGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatus\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatusDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatusNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"exhibitedObjectInformation\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectConsCheckDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectConsTreatment\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectSection\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectCase\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectSeqNum\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectRotation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectNote\"\n })))));\n};\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => ({\n template: template(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/exhibition/forms/default.jsx?");
249
+
250
+ /***/ }),
251
+
252
+ /***/ "./src/plugins/recordTypes/exhibition/forms/index.js":
253
+ /*!***********************************************************!*\
254
+ !*** ./src/plugins/recordTypes/exhibition/forms/index.js ***!
255
+ \***********************************************************/
256
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
257
+
258
+ "use strict";
259
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _default__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./default */ \"./src/plugins/recordTypes/exhibition/forms/default.jsx\");\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (configContext => ({\n default: (0,_default__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/exhibition/forms/index.js?");
260
+
261
+ /***/ }),
262
+
263
+ /***/ "./src/plugins/recordTypes/exhibition/index.js":
264
+ /*!*****************************************************!*\
265
+ !*** ./src/plugins/recordTypes/exhibition/index.js ***!
266
+ \*****************************************************/
267
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
268
+
269
+ "use strict";
270
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _forms__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./forms */ \"./src/plugins/recordTypes/exhibition/forms/index.js\");\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (() => configContext => ({\n recordTypes: {\n exhibition: {\n forms: (0,_forms__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/exhibition/index.js?");
271
+
272
+ /***/ }),
273
+
274
+ /***/ "./src/plugins/recordTypes/index.js":
275
+ /*!******************************************!*\
276
+ !*** ./src/plugins/recordTypes/index.js ***!
277
+ \******************************************/
278
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
279
+
280
+ "use strict";
281
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _collectionobject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./collectionobject */ \"./src/plugins/recordTypes/collectionobject/index.js\");\n/* harmony import */ var _conditioncheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./conditioncheck */ \"./src/plugins/recordTypes/conditioncheck/index.js\");\n/* harmony import */ var _conservation__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./conservation */ \"./src/plugins/recordTypes/conservation/index.js\");\n/* harmony import */ var _exhibition__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./exhibition */ \"./src/plugins/recordTypes/exhibition/index.js\");\n/* harmony import */ var _iterationreport__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./iterationreport */ \"./src/plugins/recordTypes/iterationreport/index.js\");\n/* harmony import */ var _objectexit__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./objectexit */ \"./src/plugins/recordTypes/objectexit/index.js\");\n\n\n\n\n\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ([_collectionobject__WEBPACK_IMPORTED_MODULE_0__[\"default\"], _conditioncheck__WEBPACK_IMPORTED_MODULE_1__[\"default\"], _conservation__WEBPACK_IMPORTED_MODULE_2__[\"default\"], _exhibition__WEBPACK_IMPORTED_MODULE_3__[\"default\"], _iterationreport__WEBPACK_IMPORTED_MODULE_4__[\"default\"], _objectexit__WEBPACK_IMPORTED_MODULE_5__[\"default\"]]);\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/index.js?");
282
+
283
+ /***/ }),
284
+
285
+ /***/ "./src/plugins/recordTypes/iterationreport/index.js":
286
+ /*!**********************************************************!*\
287
+ !*** ./src/plugins/recordTypes/iterationreport/index.js ***!
288
+ \**********************************************************/
289
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
290
+
291
+ "use strict";
292
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (() => ({\n recordTypes: {\n iterationreport: {\n disabled: true\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/iterationreport/index.js?");
293
+
294
+ /***/ }),
295
+
296
+ /***/ "./src/plugins/recordTypes/objectexit/index.js":
297
+ /*!*****************************************************!*\
298
+ !*** ./src/plugins/recordTypes/objectexit/index.js ***!
299
+ \*****************************************************/
300
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
301
+
302
+ "use strict";
303
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _optionLists__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./optionLists */ \"./src/plugins/recordTypes/objectexit/optionLists.js\");\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (() => ({\n optionLists: _optionLists__WEBPACK_IMPORTED_MODULE_0__[\"default\"]\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/objectexit/index.js?");
304
+
305
+ /***/ }),
306
+
307
+ /***/ "./src/plugins/recordTypes/objectexit/optionLists.js":
308
+ /*!***********************************************************!*\
309
+ !*** ./src/plugins/recordTypes/objectexit/optionLists.js ***!
310
+ \***********************************************************/
311
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
312
+
313
+ "use strict";
314
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = ({\n exitMethods: {\n values: ['courier', 'garbage', 'inperson', 'post'],\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n garbage: {\n \"id\": \"option.exitMethods.garbage\",\n \"defaultMessage\": \"garbage\"\n }\n })\n },\n exitReasons: {\n values: ['broken', 'deaccession', 'dead', 'deadandbroken', 'disposal', 'fundraiser', 'missing', 'other', 'returnofloan'],\n messages: (0,react_intl__WEBPACK_IMPORTED_MODULE_0__.defineMessages)({\n broken: {\n \"id\": \"option.exitReasons.broken\",\n \"defaultMessage\": \"broken\"\n },\n dead: {\n \"id\": \"option.exitReasons.dead\",\n \"defaultMessage\": \"dead\"\n },\n deadandbroken: {\n \"id\": \"option.exitReasons.deadandbroken\",\n \"defaultMessage\": \"dead and broken\"\n },\n fundraiser: {\n \"id\": \"option.exitReasons.fundraiser\",\n \"defaultMessage\": \"fundraiser\"\n },\n missing: {\n \"id\": \"option.exitReasons.missing\",\n \"defaultMessage\": \"missing\"\n },\n other: {\n \"id\": \"option.exitReasons.other\",\n \"defaultMessage\": \"other\"\n }\n })\n }\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/objectexit/optionLists.js?");
315
+
316
+ /***/ }),
98
317
 
99
318
  /***/ "./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/fields.js":
100
319
  /*!**********************************************************************************************!*\
101
320
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/fields.js ***!
102
321
  \**********************************************************************************************/
103
- /*! no static exports found */
104
- /***/ (function(module, exports, __webpack_require__) {
322
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
105
323
 
106
324
  "use strict";
107
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = configContext => {\n const {\n CheckboxInput,\n OptionPickerInput,\n TextInput,\n TermPickerInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_BOOL\n } = configContext.dataTypes;\n return {\n 'ns2:collectionobjects_accessionattributes': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/collectionobject/domain/accessionattributes'\n }\n },\n flowerColor: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowerColor.name\",\n \"defaultMessage\": \"Flower color\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n fruitColor: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitColor.name\",\n \"defaultMessage\": \"Fruit color\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n securityRisk: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.securityRisk.name\",\n \"defaultMessage\": \"Security risk\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n propagationHistory: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.propagationHistory.name\",\n \"defaultMessage\": \"Propagation history\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'propagationMethods'\n }\n }\n }\n },\n breedingSystem: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.breedingSystem.name\",\n \"defaultMessage\": \"Breeding system\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'breedingSystems'\n }\n }\n }\n },\n classUse: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.classUse.name\",\n \"defaultMessage\": \"Class use\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n researchUse: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.researchUse.name\",\n \"defaultMessage\": \"Research use\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n distribution: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.distribution.name\",\n \"defaultMessage\": \"Distribution\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n ignoreRedDot: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.ignoreRedDot.name\",\n \"defaultMessage\": \"Ignore red dot\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fragrance: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fragrance.name\",\n \"defaultMessage\": \"Fragrance\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n flowersJan: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersJan.name\",\n \"defaultMessage\": \"Jan\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersJan.fullName\",\n \"defaultMessage\": \"Flowers Jan\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersFeb: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersFeb.name\",\n \"defaultMessage\": \"Feb\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersFeb.fullName\",\n \"defaultMessage\": \"Flowers Feb\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersMar: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersMar.name\",\n \"defaultMessage\": \"Mar\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersMar.fullName\",\n \"defaultMessage\": \"Flowers Mar\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersApr: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersApr.name\",\n \"defaultMessage\": \"Apr\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersApr.fullName\",\n \"defaultMessage\": \"Flowers Apr\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersMay: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersMay.name\",\n \"defaultMessage\": \"May\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersMay.fullName\",\n \"defaultMessage\": \"Flowers May\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersJun: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersJun.name\",\n \"defaultMessage\": \"Jun\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersJun.fullName\",\n \"defaultMessage\": \"Flowers Jun\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersJul: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersJul.name\",\n \"defaultMessage\": \"Jul\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersJul.fullName\",\n \"defaultMessage\": \"Flowers Jul\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersAug: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersAug.name\",\n \"defaultMessage\": \"Aug\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersAug.fullName\",\n \"defaultMessage\": \"Flowers Aug\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersSep: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersSep.name\",\n \"defaultMessage\": \"Sep\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersSep.fullName\",\n \"defaultMessage\": \"Flowers Sep\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersOct: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersOct.name\",\n \"defaultMessage\": \"Oct\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersOct.fullName\",\n \"defaultMessage\": \"Flowers Oct\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersNov: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersNov.name\",\n \"defaultMessage\": \"Nov\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersNov.fullName\",\n \"defaultMessage\": \"Flowers Nov\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersDec: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowersDec.name\",\n \"defaultMessage\": \"Dec\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersDec.fullName\",\n \"defaultMessage\": \"Flowers Dec\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n fruitsJan: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsJan.name\",\n \"defaultMessage\": \"Jan\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsJan.fullName\",\n \"defaultMessage\": \"Fruits Jan\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsFeb: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsFeb.name\",\n \"defaultMessage\": \"Feb\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsFeb.fullName\",\n \"defaultMessage\": \"Fruits Feb\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsMar: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsMar.name\",\n \"defaultMessage\": \"Mar\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsMar.fullName\",\n \"defaultMessage\": \"Fruits Mar\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsApr: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsApr.name\",\n \"defaultMessage\": \"Apr\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsApr.fullName\",\n \"defaultMessage\": \"Fruits Apr\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsMay: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsMay.name\",\n \"defaultMessage\": \"May\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsMay.fullName\",\n \"defaultMessage\": \"Fruits May\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsJun: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsJun.name\",\n \"defaultMessage\": \"Jun\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsJun.fullName\",\n \"defaultMessage\": \"Fruits Jun\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsJul: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsJul.name\",\n \"defaultMessage\": \"Jul\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsJul.fullName\",\n \"defaultMessage\": \"Fruits Jul\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsAug: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsAug.name\",\n \"defaultMessage\": \"Aug\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsAug.fullName\",\n \"defaultMessage\": \"Fruits Aug\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsSep: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsSep.name\",\n \"defaultMessage\": \"Sep\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsSep.fullName\",\n \"defaultMessage\": \"Fruits Sep\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsOct: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsOct.name\",\n \"defaultMessage\": \"Oct\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsOct.fullName\",\n \"defaultMessage\": \"Fruits Oct\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsNov: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsNov.name\",\n \"defaultMessage\": \"Nov\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsNov.fullName\",\n \"defaultMessage\": \"Fruits Nov\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsDec: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsDec.name\",\n \"defaultMessage\": \"Dec\"\n },\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsDec.fullName\",\n \"defaultMessage\": \"Fruits Dec\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n }\n }\n };\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/fields.js?");
325
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = configContext => {\n const {\n CheckboxInput,\n OptionPickerInput,\n TextInput,\n TermPickerInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_BOOL\n } = configContext.dataTypes;\n return {\n 'ns2:collectionobjects_accessionattributes': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/collectionobject/domain/accessionattributes'\n }\n },\n flowerColor: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.flowerColor.name\",\n \"defaultMessage\": \"Flower color\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n fruitColor: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fruitColor.name\",\n \"defaultMessage\": \"Fruit color\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n securityRisk: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.securityRisk.name\",\n \"defaultMessage\": \"Security risk\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n propagationHistory: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.propagationHistory.name\",\n \"defaultMessage\": \"Propagation history\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'propagationMethods'\n }\n }\n }\n },\n breedingSystem: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.breedingSystem.name\",\n \"defaultMessage\": \"Breeding system\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'breedingSystems'\n }\n }\n }\n },\n classUse: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.classUse.name\",\n \"defaultMessage\": \"Class use\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n researchUse: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.researchUse.name\",\n \"defaultMessage\": \"Research use\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n distribution: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.distribution.name\",\n \"defaultMessage\": \"Distribution\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n ignoreRedDot: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.ignoreRedDot.name\",\n \"defaultMessage\": \"Ignore red dot\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fragrance: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.ext.accessionattributes.fragrance.name\",\n \"defaultMessage\": \"Fragrance\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n flowersJan: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersJan.fullName\",\n \"defaultMessage\": \"Flowers Jan\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersJan.name\",\n \"defaultMessage\": \"Jan\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersFeb: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersFeb.fullName\",\n \"defaultMessage\": \"Flowers Feb\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersFeb.name\",\n \"defaultMessage\": \"Feb\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersMar: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersMar.fullName\",\n \"defaultMessage\": \"Flowers Mar\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersMar.name\",\n \"defaultMessage\": \"Mar\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersApr: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersApr.fullName\",\n \"defaultMessage\": \"Flowers Apr\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersApr.name\",\n \"defaultMessage\": \"Apr\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersMay: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersMay.fullName\",\n \"defaultMessage\": \"Flowers May\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersMay.name\",\n \"defaultMessage\": \"May\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersJun: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersJun.fullName\",\n \"defaultMessage\": \"Flowers Jun\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersJun.name\",\n \"defaultMessage\": \"Jun\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersJul: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersJul.fullName\",\n \"defaultMessage\": \"Flowers Jul\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersJul.name\",\n \"defaultMessage\": \"Jul\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersAug: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersAug.fullName\",\n \"defaultMessage\": \"Flowers Aug\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersAug.name\",\n \"defaultMessage\": \"Aug\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersSep: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersSep.fullName\",\n \"defaultMessage\": \"Flowers Sep\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersSep.name\",\n \"defaultMessage\": \"Sep\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersOct: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersOct.fullName\",\n \"defaultMessage\": \"Flowers Oct\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersOct.name\",\n \"defaultMessage\": \"Oct\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersNov: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersNov.fullName\",\n \"defaultMessage\": \"Flowers Nov\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersNov.name\",\n \"defaultMessage\": \"Nov\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n flowersDec: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.flowersDec.fullName\",\n \"defaultMessage\": \"Flowers Dec\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.flowersDec.name\",\n \"defaultMessage\": \"Dec\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'floweringstatus'\n }\n }\n }\n },\n fruitsJan: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsJan.fullName\",\n \"defaultMessage\": \"Fruits Jan\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsJan.name\",\n \"defaultMessage\": \"Jan\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsFeb: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsFeb.fullName\",\n \"defaultMessage\": \"Fruits Feb\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsFeb.name\",\n \"defaultMessage\": \"Feb\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsMar: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsMar.fullName\",\n \"defaultMessage\": \"Fruits Mar\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsMar.name\",\n \"defaultMessage\": \"Mar\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsApr: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsApr.fullName\",\n \"defaultMessage\": \"Fruits Apr\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsApr.name\",\n \"defaultMessage\": \"Apr\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsMay: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsMay.fullName\",\n \"defaultMessage\": \"Fruits May\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsMay.name\",\n \"defaultMessage\": \"May\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsJun: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsJun.fullName\",\n \"defaultMessage\": \"Fruits Jun\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsJun.name\",\n \"defaultMessage\": \"Jun\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsJul: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsJul.fullName\",\n \"defaultMessage\": \"Fruits Jul\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsJul.name\",\n \"defaultMessage\": \"Jul\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsAug: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsAug.fullName\",\n \"defaultMessage\": \"Fruits Aug\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsAug.name\",\n \"defaultMessage\": \"Aug\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsSep: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsSep.fullName\",\n \"defaultMessage\": \"Fruits Sep\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsSep.name\",\n \"defaultMessage\": \"Sep\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsOct: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsOct.fullName\",\n \"defaultMessage\": \"Fruits Oct\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsOct.name\",\n \"defaultMessage\": \"Oct\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsNov: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsNov.fullName\",\n \"defaultMessage\": \"Fruits Nov\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsNov.name\",\n \"defaultMessage\": \"Nov\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n fruitsDec: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.ext.accessionattributes.fruitsDec.fullName\",\n \"defaultMessage\": \"Fruits Dec\"\n },\n name: {\n \"id\": \"field.ext.accessionattributes.fruitsDec.name\",\n \"defaultMessage\": \"Dec\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n }\n }\n };\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/fields.js?");
108
326
 
109
327
  /***/ }),
110
328
 
@@ -112,11 +330,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
112
330
  /*!*****************************************************************************************************!*\
113
331
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/default.js ***!
114
332
  \*****************************************************************************************************/
115
- /*! no static exports found */
116
- /***/ (function(module, exports, __webpack_require__) {
333
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
117
334
 
118
335
  "use strict";
119
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _flowering = _interopRequireDefault(__webpack_require__(/*! ./flowering */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/flowering.js\"));\n\nvar _fruiting = _interopRequireDefault(__webpack_require__(/*! ./fruiting */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/fruiting.js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar _default = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Row,\n Cols,\n Col\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n return React.createElement(\"div\", null, React.createElement(Cols, null, React.createElement(Col, null, React.createElement(Field, {\n name: \"flowerColor\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitColor\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n })), React.createElement(Col, null, React.createElement(Field, {\n name: \"securityRisk\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Row, null, React.createElement(Field, {\n name: \"propagationHistory\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"breedingSystem\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n })))), React.createElement(Row, null, React.createElement(Field, {\n name: \"classUse\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"researchUse\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"distribution\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"ignoreRedDot\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fragrance\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n })), (0, _flowering.default)(configContext), (0, _fruiting.default)(configContext));\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/default.js?");
336
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _flowering = _interopRequireDefault(__webpack_require__(/*! ./flowering */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/flowering.js\"));\nvar _fruiting = _interopRequireDefault(__webpack_require__(/*! ./fruiting */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/fruiting.js\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar _default = configContext => {\n const {\n layoutComponents,\n lib,\n recordComponents\n } = configContext;\n const {\n React\n } = lib;\n const {\n Row,\n Cols,\n Col\n } = layoutComponents;\n const {\n Field\n } = recordComponents;\n return /*#__PURE__*/React.createElement(\"div\", null, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"flowerColor\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitColor\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"securityRisk\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"propagationHistory\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"breedingSystem\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n })))), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"classUse\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"researchUse\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"distribution\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ignoreRedDot\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fragrance\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n })), (0, _flowering.default)(configContext), (0, _fruiting.default)(configContext));\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/default.js?");
120
337
 
121
338
  /***/ }),
122
339
 
@@ -124,11 +341,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
124
341
  /*!*******************************************************************************************************!*\
125
342
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/flowering.js ***!
126
343
  \*******************************************************************************************************/
127
- /*! no static exports found */
128
- /***/ (function(module, exports, __webpack_require__) {
344
+ /***/ ((__unused_webpack_module, exports) => {
129
345
 
130
346
  "use strict";
131
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _default = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Field,\n InputTable\n } = configContext.recordComponents;\n return React.createElement(InputTable, {\n name: \"flowers\"\n }, React.createElement(Field, {\n name: \"flowersJan\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersFeb\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersMar\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersApr\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersMay\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersJun\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersJul\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersAug\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersSep\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersOct\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersNov\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"flowersDec\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }));\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/flowering.js?");
347
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _default = configContext => {\n const {\n lib,\n recordComponents\n } = configContext;\n const {\n React\n } = lib;\n const {\n Field,\n InputTable\n } = recordComponents;\n return /*#__PURE__*/React.createElement(InputTable, {\n name: \"flowers\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"flowersJan\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersFeb\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersMar\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersApr\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersMay\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersJun\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersJul\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersAug\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersSep\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersOct\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersNov\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"flowersDec\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }));\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/flowering.js?");
132
348
 
133
349
  /***/ }),
134
350
 
@@ -136,11 +352,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
136
352
  /*!******************************************************************************************************!*\
137
353
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/fruiting.js ***!
138
354
  \******************************************************************************************************/
139
- /*! no static exports found */
140
- /***/ (function(module, exports, __webpack_require__) {
355
+ /***/ ((__unused_webpack_module, exports) => {
141
356
 
142
357
  "use strict";
143
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _default = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Field,\n InputTable\n } = configContext.recordComponents;\n return React.createElement(InputTable, {\n name: \"fruits\"\n }, React.createElement(Field, {\n name: \"fruitsJan\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsFeb\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsMar\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsApr\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsMay\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsJun\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsJul\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsAug\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsSep\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsOct\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsNov\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), React.createElement(Field, {\n name: \"fruitsDec\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }));\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/fruiting.js?");
358
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _default = configContext => {\n const {\n lib,\n recordComponents\n } = configContext;\n const {\n React\n } = lib;\n const {\n Field,\n InputTable\n } = recordComponents;\n return /*#__PURE__*/React.createElement(InputTable, {\n name: \"fruits\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsJan\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsFeb\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsMar\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsApr\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsMay\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsJun\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsJul\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsAug\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsSep\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsOct\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsNov\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fruitsDec\",\n subpath: \"ns2:collectionobjects_accessionattributes\"\n }));\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/fruiting.js?");
144
359
 
145
360
  /***/ }),
146
361
 
@@ -148,11 +363,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
148
363
  /*!***************************************************************************************************!*\
149
364
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/index.js ***!
150
365
  \***************************************************************************************************/
151
- /*! no static exports found */
152
- /***/ (function(module, exports, __webpack_require__) {
366
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
153
367
 
154
368
  "use strict";
155
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _default2 = _interopRequireDefault(__webpack_require__(/*! ./default */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/default.js\"));\n\nvar _flowering = _interopRequireDefault(__webpack_require__(/*! ./flowering */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/flowering.js\"));\n\nvar _fruiting = _interopRequireDefault(__webpack_require__(/*! ./fruiting */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/fruiting.js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar _default = configContext => ({\n default: (0, _default2.default)(configContext),\n flowering: (0, _flowering.default)(configContext),\n fruiting: (0, _fruiting.default)(configContext)\n});\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/index.js?");
369
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _default2 = _interopRequireDefault(__webpack_require__(/*! ./default */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/default.js\"));\nvar _flowering = _interopRequireDefault(__webpack_require__(/*! ./flowering */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/flowering.js\"));\nvar _fruiting = _interopRequireDefault(__webpack_require__(/*! ./fruiting */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/fruiting.js\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar _default = configContext => ({\n default: (0, _default2.default)(configContext),\n flowering: (0, _flowering.default)(configContext),\n fruiting: (0, _fruiting.default)(configContext)\n});\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/index.js?");
156
370
 
157
371
  /***/ }),
158
372
 
@@ -160,11 +374,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
160
374
  /*!*********************************************************************************************!*\
161
375
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/index.js ***!
162
376
  \*********************************************************************************************/
163
- /*! no static exports found */
164
- /***/ (function(module, exports, __webpack_require__) {
377
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
165
378
 
166
379
  "use strict";
167
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _fields = _interopRequireDefault(__webpack_require__(/*! ./fields */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/fields.js\"));\n\nvar _forms = _interopRequireDefault(__webpack_require__(/*! ./forms */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/index.js\"));\n\nvar _messages = _interopRequireDefault(__webpack_require__(/*! ./messages */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/messages.js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar _default = configContext => {\n const formsConfig = (0, _forms.default)(configContext);\n return {\n messages: _messages.default,\n fields: (0, _fields.default)(configContext),\n form: formsConfig.default,\n forms: formsConfig\n };\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/index.js?");
380
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _fields = _interopRequireDefault(__webpack_require__(/*! ./fields */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/fields.js\"));\nvar _forms = _interopRequireDefault(__webpack_require__(/*! ./forms */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/forms/index.js\"));\nvar _messages = _interopRequireDefault(__webpack_require__(/*! ./messages */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/messages.js\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar _default = configContext => {\n const formsConfig = (0, _forms.default)(configContext);\n return {\n messages: _messages.default,\n fields: (0, _fields.default)(configContext),\n form: formsConfig.default,\n forms: formsConfig\n };\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/index.js?");
168
381
 
169
382
  /***/ }),
170
383
 
@@ -172,11 +385,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
172
385
  /*!************************************************************************************************!*\
173
386
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/messages.js ***!
174
387
  \************************************************************************************************/
175
- /*! no static exports found */
176
- /***/ (function(module, exports, __webpack_require__) {
388
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
177
389
 
178
390
  "use strict";
179
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = {\n inputTable: (0, _reactIntl.defineMessages)({\n flowers: {\n \"id\": \"panel.collectionobject.flowers\",\n \"defaultMessage\": \"Flowers\"\n },\n fruits: {\n \"id\": \"panel.collectionobject.fruits\",\n \"defaultMessage\": \"Fruits\"\n }\n })\n};\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/messages.js?");
391
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = {\n inputTable: (0, _reactIntl.defineMessages)({\n flowers: {\n \"id\": \"panel.collectionobject.flowers\",\n \"defaultMessage\": \"Flowers\"\n },\n fruits: {\n \"id\": \"panel.collectionobject.fruits\",\n \"defaultMessage\": \"Fruits\"\n }\n })\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/messages.js?");
180
392
 
181
393
  /***/ }),
182
394
 
@@ -184,11 +396,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
184
396
  /*!****************************************************************************!*\
185
397
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/index.js ***!
186
398
  \****************************************************************************/
187
- /*! no static exports found */
188
- /***/ (function(module, exports, __webpack_require__) {
399
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
189
400
 
190
401
  "use strict";
191
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _collectionobject = _interopRequireDefault(__webpack_require__(/*! ./collectionobject */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/index.js\"));\n\nvar _optionLists = _interopRequireDefault(__webpack_require__(/*! ./optionLists */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/optionLists.js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar _default = () => configContext => ({\n optionLists: _optionLists.default,\n extensions: {\n accessionattributes: {\n collectionobject: (0, _collectionobject.default)(configContext)\n }\n }\n});\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/index.js?");
402
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _collectionobject = _interopRequireDefault(__webpack_require__(/*! ./collectionobject */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/collectionobject/index.js\"));\nvar _optionLists = _interopRequireDefault(__webpack_require__(/*! ./optionLists */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/optionLists.js\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar _default = () => configContext => ({\n optionLists: _optionLists.default,\n extensions: {\n accessionattributes: {\n collectionobject: (0, _collectionobject.default)(configContext)\n }\n }\n});\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/index.js?");
192
403
 
193
404
  /***/ }),
194
405
 
@@ -196,11 +407,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
196
407
  /*!**********************************************************************************!*\
197
408
  !*** ./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/optionLists.js ***!
198
409
  \**********************************************************************************/
199
- /*! no static exports found */
200
- /***/ (function(module, exports, __webpack_require__) {
410
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
201
411
 
202
412
  "use strict";
203
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = {\n propagationMethods: {\n values: ['apomictic-cloning', 'controlled-breeding', 'derived-asexually', 'individual-wild-plant', 'isolated-self-pollinated', 'open-breeding', 'sexual-reproduction', 'vegetative-reproduction', 'unknown'],\n messages: (0, _reactIntl.defineMessages)({\n 'apomictic-cloning': {\n \"id\": \"option.propagationMethods.apomictic-cloning\",\n \"defaultMessage\": \"apomictic cloning\"\n },\n 'controlled-breeding': {\n \"id\": \"option.propagationMethods.controlled-breeding\",\n \"defaultMessage\": \"controlled breeding\"\n },\n 'derived-asexually': {\n \"id\": \"option.propagationMethods.derived-asexually\",\n \"defaultMessage\": \"derived asexually\"\n },\n 'individual-wild-plant': {\n \"id\": \"option.propagationMethods.individual-wild-plant\",\n \"defaultMessage\": \"individual wild plant\"\n },\n 'isolated-self-pollinated': {\n \"id\": \"option.propagationMethods.isolated-self-pollinated\",\n \"defaultMessage\": \"isolated self-pollinated\"\n },\n 'open-breeding': {\n \"id\": \"option.propagationMethods.open-breeding\",\n \"defaultMessage\": \"open breeding\"\n },\n 'sexual-reproduction': {\n \"id\": \"option.propagationMethods.sexual-reproduction\",\n \"defaultMessage\": \"sexual reproduction\"\n },\n 'vegetative-reproduction': {\n \"id\": \"option.propagationMethods.vegetative-reproduction\",\n \"defaultMessage\": \"vegetative reproduction\"\n },\n unknown: {\n \"id\": \"option.propagationMethods.unknown\",\n \"defaultMessage\": \"unknown\"\n }\n })\n },\n breedingSystems: {\n values: ['agamospermy', 'both', 'female', 'dioecious-and-unknown-sex', 'male', 'monoecious-and-self-compatible', 'monoecious-and-self-incompatible', 'unknown'],\n messages: (0, _reactIntl.defineMessages)({\n agamospermy: {\n \"id\": \"option.breedingSystems.agamospermy\",\n \"defaultMessage\": \"agamospermy\"\n },\n both: {\n \"id\": \"option.breedingSystems.both\",\n \"defaultMessage\": \"both\"\n },\n female: {\n \"id\": \"option.breedingSystems.female\",\n \"defaultMessage\": \"female\"\n },\n 'dioecious-and-unknown-sex': {\n \"id\": \"option.breedingSystems.dioecious-and-unknown-sex\",\n \"defaultMessage\": \"dioecious and unknown sex\"\n },\n male: {\n \"id\": \"option.breedingSystems.male\",\n \"defaultMessage\": \"male\"\n },\n 'monoecious-and-self-compatible': {\n \"id\": \"option.breedingSystems.monoecious-and-self-compatible\",\n \"defaultMessage\": \"monoecious and self-compatible\"\n },\n 'monoecious-and-self-incompatible': {\n \"id\": \"option.breedingSystems.monoecious-and-self-incompatible\",\n \"defaultMessage\": \"monoecious and self-incompatible\"\n },\n unknown: {\n \"id\": \"option.breedingSystems.unknown\",\n \"defaultMessage\": \"unknown\"\n }\n })\n }\n};\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/optionLists.js?");
413
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = {\n propagationMethods: {\n values: ['apomictic-cloning', 'controlled-breeding', 'derived-asexually', 'individual-wild-plant', 'isolated-self-pollinated', 'open-breeding', 'sexual-reproduction', 'vegetative-reproduction', 'unknown'],\n messages: (0, _reactIntl.defineMessages)({\n 'apomictic-cloning': {\n \"id\": \"option.propagationMethods.apomictic-cloning\",\n \"defaultMessage\": \"apomictic cloning\"\n },\n 'controlled-breeding': {\n \"id\": \"option.propagationMethods.controlled-breeding\",\n \"defaultMessage\": \"controlled breeding\"\n },\n 'derived-asexually': {\n \"id\": \"option.propagationMethods.derived-asexually\",\n \"defaultMessage\": \"derived asexually\"\n },\n 'individual-wild-plant': {\n \"id\": \"option.propagationMethods.individual-wild-plant\",\n \"defaultMessage\": \"individual wild plant\"\n },\n 'isolated-self-pollinated': {\n \"id\": \"option.propagationMethods.isolated-self-pollinated\",\n \"defaultMessage\": \"isolated self-pollinated\"\n },\n 'open-breeding': {\n \"id\": \"option.propagationMethods.open-breeding\",\n \"defaultMessage\": \"open breeding\"\n },\n 'sexual-reproduction': {\n \"id\": \"option.propagationMethods.sexual-reproduction\",\n \"defaultMessage\": \"sexual reproduction\"\n },\n 'vegetative-reproduction': {\n \"id\": \"option.propagationMethods.vegetative-reproduction\",\n \"defaultMessage\": \"vegetative reproduction\"\n },\n unknown: {\n \"id\": \"option.propagationMethods.unknown\",\n \"defaultMessage\": \"unknown\"\n }\n })\n },\n breedingSystems: {\n values: ['agamospermy', 'both', 'female', 'dioecious-and-unknown-sex', 'male', 'monoecious-and-self-compatible', 'monoecious-and-self-incompatible', 'unknown'],\n messages: (0, _reactIntl.defineMessages)({\n agamospermy: {\n \"id\": \"option.breedingSystems.agamospermy\",\n \"defaultMessage\": \"agamospermy\"\n },\n both: {\n \"id\": \"option.breedingSystems.both\",\n \"defaultMessage\": \"both\"\n },\n female: {\n \"id\": \"option.breedingSystems.female\",\n \"defaultMessage\": \"female\"\n },\n 'dioecious-and-unknown-sex': {\n \"id\": \"option.breedingSystems.dioecious-and-unknown-sex\",\n \"defaultMessage\": \"dioecious and unknown sex\"\n },\n male: {\n \"id\": \"option.breedingSystems.male\",\n \"defaultMessage\": \"male\"\n },\n 'monoecious-and-self-compatible': {\n \"id\": \"option.breedingSystems.monoecious-and-self-compatible\",\n \"defaultMessage\": \"monoecious and self-compatible\"\n },\n 'monoecious-and-self-incompatible': {\n \"id\": \"option.breedingSystems.monoecious-and-self-incompatible\",\n \"defaultMessage\": \"monoecious and self-incompatible\"\n },\n unknown: {\n \"id\": \"option.breedingSystems.unknown\",\n \"defaultMessage\": \"unknown\"\n }\n })\n }\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/optionLists.js?");
204
414
 
205
415
  /***/ }),
206
416
 
@@ -208,11 +418,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
208
418
  /*!**********************************************************************************!*\
209
419
  !*** ./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/fields.js ***!
210
420
  \**********************************************************************************/
211
- /*! no static exports found */
212
- /***/ (function(module, exports, __webpack_require__) {
421
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
213
422
 
214
423
  "use strict";
215
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = configContext => {\n const {\n AutocompleteInput,\n CompoundInput,\n DateInput,\n TextInput,\n TermPickerInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_DATE,\n DATA_TYPE_FLOAT\n } = configContext.dataTypes;\n return {\n 'ns2:conservation_livingplant': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/conservation/domain/livingplant'\n }\n },\n fertilizationGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n fertilizationGroup: {\n [config]: {\n repeating: true,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.fertilizationGroup.fullName\",\n \"defaultMessage\": \"Fertilization\"\n }\n }),\n view: {\n type: CompoundInput\n }\n },\n fertilizerUsed: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.fertilizerUsed.name\",\n \"defaultMessage\": \"Fertilizer used\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'fertilizerused'\n }\n }\n }\n },\n appliedBy: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.appliedBy.fullName\",\n \"defaultMessage\": \"Fertilizer applied by\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.appliedBy.name\",\n \"defaultMessage\": \"Applied by\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared'\n }\n }\n }\n },\n nitrogenPercent: {\n [config]: {\n dataType: DATA_TYPE_FLOAT,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.nitrogenPercent.fullName\",\n \"defaultMessage\": \"Fertilizer nitrogen %\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.nitrogenPercent.name\",\n \"defaultMessage\": \"Nitrogen %\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n phosphorusPercent: {\n [config]: {\n dataType: DATA_TYPE_FLOAT,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.phosphorusPercent.fullName\",\n \"defaultMessage\": \"Fertilizer phosphorus %\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.phosphorusPercent.name\",\n \"defaultMessage\": \"Phosphorus %\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n potassiumPercent: {\n [config]: {\n dataType: DATA_TYPE_FLOAT,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.potassiumPercent.fullName\",\n \"defaultMessage\": \"Fertilizer potassium %\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.potassiumPercent.name\",\n \"defaultMessage\": \"Potassium %\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n applicationDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.applicationDate.fullName\",\n \"defaultMessage\": \"Fertilizer application date\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.applicationDate.name\",\n \"defaultMessage\": \"Application date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n amountApplied: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.amountApplied.fullName\",\n \"defaultMessage\": \"Fertilizer amount applied\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.amountApplied.name\",\n \"defaultMessage\": \"Amount applied\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n nextApplicationDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.nextApplicationDate.fullName\",\n \"defaultMessage\": \"Fertilizer next application date\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.nextApplicationDate.name\",\n \"defaultMessage\": \"Next application date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n fertilizersToBeUsed: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n fertilizerToBeUsed: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.fertilizerToBeUsed.name\",\n \"defaultMessage\": \"Fertilizer to be used\"\n }\n }),\n repeating: true,\n view: {\n type: TextInput\n }\n }\n }\n },\n fertilizationNotes: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.fertilizationNotes.name\",\n \"defaultMessage\": \"Fertilization note\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n }\n }\n },\n pestsAndDiseaseGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n pestsAndDiseaseGroup: {\n [config]: {\n repeating: true,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.pestsAndDiseaseGroup.fullName\",\n \"defaultMessage\": \"Pest and Disease\"\n }\n }),\n view: {\n type: CompoundInput\n }\n },\n pestOrDiseaseObserved: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.pestOrDiseaseObserved.name\",\n \"defaultMessage\": \"Pest/disease observed\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'pestordiseaseobserved'\n }\n }\n }\n },\n identifiedBy: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.identifiedBy.fullName\",\n \"defaultMessage\": \"Pest/disease identified by\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.identifiedBy.name\",\n \"defaultMessage\": \"Identified by\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared'\n }\n }\n }\n },\n dateObserved: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.dateObserved.fullName\",\n \"defaultMessage\": \"Pest/disease date observed\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.dateObserved.name\",\n \"defaultMessage\": \"Date observed\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n treatedWith: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.treatedWith.fullName\",\n \"defaultMessage\": \"Pest/disease treated with\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.treatedWith.name\",\n \"defaultMessage\": \"Treated with\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n },\n treatedBy: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.treatedBy.fullName\",\n \"defaultMessage\": \"Pest/disease treated by\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.treatedBy.name\",\n \"defaultMessage\": \"Treated by\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared'\n }\n }\n }\n },\n treatmentDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.treatmentDate.fullName\",\n \"defaultMessage\": \"Pest/disease treatment date\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.treatmentDate.name\",\n \"defaultMessage\": \"Treatment date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n futureTreatment: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.futureTreatment.fullName\",\n \"defaultMessage\": \"Pest/disease future treatment\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.futureTreatment.name\",\n \"defaultMessage\": \"Future treatment\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n futureTreatmentDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.futureTreatmentDate.fullName\",\n \"defaultMessage\": \"Pest/disease future treatment date\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.futureTreatmentDate.name\",\n \"defaultMessage\": \"Future treatment date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n futureTreatmentNotes: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.futureTreatmentNotes.fullName\",\n \"defaultMessage\": \"Pest/disease future treatment note\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.futureTreatmentNotes.name\",\n \"defaultMessage\": \"Future treatment note\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n }\n }\n },\n dateRepotted: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.dateRepotted.name\",\n \"defaultMessage\": \"Date repotted\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n performedBy: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.performedBy.fullName\",\n \"defaultMessage\": \"Repotting performed by\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.performedBy.name\",\n \"defaultMessage\": \"Performed by\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared'\n }\n }\n }\n },\n soilMix: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.soilMix.fullName\",\n \"defaultMessage\": \"Repotting soil mix\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.soilMix.name\",\n \"defaultMessage\": \"Soil mix\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'soilmix'\n }\n }\n }\n },\n container: {\n [config]: {\n // This is defined/validated as a float in 4.5. Is this an error?\n dataType: DATA_TYPE_FLOAT,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.container.fullName\",\n \"defaultMessage\": \"Repotting container\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.container.name\",\n \"defaultMessage\": \"Container\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n description: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.description.fullName\",\n \"defaultMessage\": \"Repotting description\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.description.name\",\n \"defaultMessage\": \"Description\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n },\n nextRepotting: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.nextRepotting.name\",\n \"defaultMessage\": \"Next repotting\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n plannedTreatment: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.plannedTreatment.fullName\",\n \"defaultMessage\": \"Repotting planned treatment\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.plannedTreatment.name\",\n \"defaultMessage\": \"Planned treatment\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n }\n }\n };\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/fields.js?");
424
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = configContext => {\n const {\n AutocompleteInput,\n CompoundInput,\n DateInput,\n TextInput,\n TermPickerInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_DATE,\n DATA_TYPE_FLOAT\n } = configContext.dataTypes;\n return {\n 'ns2:conservation_livingplant': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/conservation/domain/livingplant'\n }\n },\n fertilizationGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n fertilizationGroup: {\n [config]: {\n repeating: true,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.fertilizationGroup.fullName\",\n \"defaultMessage\": \"Fertilization\"\n }\n }),\n view: {\n type: CompoundInput\n }\n },\n fertilizerUsed: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.fertilizerUsed.name\",\n \"defaultMessage\": \"Fertilizer used\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'fertilizerused'\n }\n }\n }\n },\n appliedBy: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.appliedBy.fullName\",\n \"defaultMessage\": \"Fertilizer applied by\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.appliedBy.name\",\n \"defaultMessage\": \"Applied by\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared'\n }\n }\n }\n },\n nitrogenPercent: {\n [config]: {\n dataType: DATA_TYPE_FLOAT,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.nitrogenPercent.fullName\",\n \"defaultMessage\": \"Fertilizer nitrogen %\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.nitrogenPercent.name\",\n \"defaultMessage\": \"Nitrogen %\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n phosphorusPercent: {\n [config]: {\n dataType: DATA_TYPE_FLOAT,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.phosphorusPercent.fullName\",\n \"defaultMessage\": \"Fertilizer phosphorus %\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.phosphorusPercent.name\",\n \"defaultMessage\": \"Phosphorus %\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n potassiumPercent: {\n [config]: {\n dataType: DATA_TYPE_FLOAT,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.potassiumPercent.fullName\",\n \"defaultMessage\": \"Fertilizer potassium %\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.potassiumPercent.name\",\n \"defaultMessage\": \"Potassium %\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n applicationDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.applicationDate.fullName\",\n \"defaultMessage\": \"Fertilizer application date\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.applicationDate.name\",\n \"defaultMessage\": \"Application date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n amountApplied: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.amountApplied.fullName\",\n \"defaultMessage\": \"Fertilizer amount applied\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.amountApplied.name\",\n \"defaultMessage\": \"Amount applied\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n nextApplicationDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.nextApplicationDate.fullName\",\n \"defaultMessage\": \"Fertilizer next application date\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.nextApplicationDate.name\",\n \"defaultMessage\": \"Next application date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n fertilizersToBeUsed: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n fertilizerToBeUsed: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.fertilizerToBeUsed.name\",\n \"defaultMessage\": \"Fertilizer to be used\"\n }\n }),\n repeating: true,\n view: {\n type: TextInput\n }\n }\n }\n },\n fertilizationNotes: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.fertilizationNotes.name\",\n \"defaultMessage\": \"Fertilization note\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n }\n }\n },\n pestsAndDiseaseGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n pestsAndDiseaseGroup: {\n [config]: {\n repeating: true,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.pestsAndDiseaseGroup.fullName\",\n \"defaultMessage\": \"Pest and Disease\"\n }\n }),\n view: {\n type: CompoundInput\n }\n },\n pestOrDiseaseObserved: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.pestOrDiseaseObserved.name\",\n \"defaultMessage\": \"Pest/disease observed\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'pestordiseaseobserved'\n }\n }\n }\n },\n identifiedBy: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.identifiedBy.fullName\",\n \"defaultMessage\": \"Pest/disease identified by\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.identifiedBy.name\",\n \"defaultMessage\": \"Identified by\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared'\n }\n }\n }\n },\n dateObserved: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.dateObserved.fullName\",\n \"defaultMessage\": \"Pest/disease date observed\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.dateObserved.name\",\n \"defaultMessage\": \"Date observed\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n treatedWith: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.treatedWith.fullName\",\n \"defaultMessage\": \"Pest/disease treated with\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.treatedWith.name\",\n \"defaultMessage\": \"Treated with\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n },\n treatedBy: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.treatedBy.fullName\",\n \"defaultMessage\": \"Pest/disease treated by\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.treatedBy.name\",\n \"defaultMessage\": \"Treated by\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared'\n }\n }\n }\n },\n treatmentDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.treatmentDate.fullName\",\n \"defaultMessage\": \"Pest/disease treatment date\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.treatmentDate.name\",\n \"defaultMessage\": \"Treatment date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n futureTreatment: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.futureTreatment.fullName\",\n \"defaultMessage\": \"Pest/disease future treatment\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.futureTreatment.name\",\n \"defaultMessage\": \"Future treatment\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n futureTreatmentDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.futureTreatmentDate.fullName\",\n \"defaultMessage\": \"Pest/disease future treatment date\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.futureTreatmentDate.name\",\n \"defaultMessage\": \"Future treatment date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n futureTreatmentNotes: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.futureTreatmentNotes.fullName\",\n \"defaultMessage\": \"Pest/disease future treatment note\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.futureTreatmentNotes.name\",\n \"defaultMessage\": \"Future treatment note\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n }\n }\n },\n dateRepotted: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.dateRepotted.name\",\n \"defaultMessage\": \"Date repotted\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n performedBy: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.performedBy.fullName\",\n \"defaultMessage\": \"Repotting performed by\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.performedBy.name\",\n \"defaultMessage\": \"Performed by\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared'\n }\n }\n }\n },\n soilMix: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.soilMix.fullName\",\n \"defaultMessage\": \"Repotting soil mix\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.soilMix.name\",\n \"defaultMessage\": \"Soil mix\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'soilmix'\n }\n }\n }\n },\n container: {\n [config]: {\n // This is defined/validated as a float in 4.5. Is this an error?\n dataType: DATA_TYPE_FLOAT,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.container.fullName\",\n \"defaultMessage\": \"Repotting container\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.container.name\",\n \"defaultMessage\": \"Container\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n description: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.description.fullName\",\n \"defaultMessage\": \"Repotting description\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.description.name\",\n \"defaultMessage\": \"Description\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n },\n nextRepotting: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.conservation_livingplant.nextRepotting.name\",\n \"defaultMessage\": \"Next repotting\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n plannedTreatment: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.conservation_livingplant.plannedTreatment.fullName\",\n \"defaultMessage\": \"Repotting planned treatment\"\n },\n name: {\n \"id\": \"field.conservation_livingplant.plannedTreatment.name\",\n \"defaultMessage\": \"Planned treatment\"\n }\n }),\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n }\n }\n };\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/fields.js?");
216
425
 
217
426
  /***/ }),
218
427
 
@@ -220,11 +429,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
220
429
  /*!********************************************************************************!*\
221
430
  !*** ./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/form.js ***!
222
431
  \********************************************************************************/
223
- /*! no static exports found */
224
- /***/ (function(module, exports, __webpack_require__) {
432
+ /***/ ((__unused_webpack_module, exports) => {
225
433
 
226
434
  "use strict";
227
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _default = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Cols,\n Col,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n return React.createElement(Panel, {\n name: \"livingplant\",\n collapsible: true,\n collapsed: true\n }, React.createElement(Panel, {\n name: \"fertilization\",\n collapsible: true,\n collapsed: true\n }, React.createElement(Field, {\n name: \"fertilizationGroupList\",\n subpath: \"ns2:conservation_livingplant\"\n }, React.createElement(Field, {\n name: \"fertilizationGroup\"\n }, React.createElement(Panel, null, React.createElement(Row, null, React.createElement(Field, {\n name: \"fertilizerUsed\"\n }), React.createElement(Field, {\n name: \"appliedBy\"\n })), React.createElement(Row, null, React.createElement(Field, {\n name: \"nitrogenPercent\"\n }), React.createElement(Field, {\n name: \"phosphorusPercent\"\n }), React.createElement(Field, {\n name: \"potassiumPercent\"\n })), React.createElement(Cols, null, React.createElement(Col, null, React.createElement(Field, {\n name: \"applicationDate\"\n }), React.createElement(Field, {\n name: \"amountApplied\"\n }), React.createElement(Field, {\n name: \"fertilizationNotes\"\n })), React.createElement(Col, null, React.createElement(Field, {\n name: \"nextApplicationDate\"\n }), React.createElement(Field, {\n name: \"fertilizersToBeUsed\"\n }, React.createElement(Field, {\n name: \"fertilizerToBeUsed\"\n })))))))), React.createElement(Panel, {\n name: \"pest\",\n collapsible: true,\n collapsed: true\n }, React.createElement(Field, {\n name: \"pestsAndDiseaseGroupList\",\n subpath: \"ns2:conservation_livingplant\"\n }, React.createElement(Field, {\n name: \"pestsAndDiseaseGroup\"\n }, React.createElement(Panel, null, React.createElement(Row, null, React.createElement(Field, {\n name: \"pestOrDiseaseObserved\"\n }), React.createElement(Field, {\n name: \"identifiedBy\"\n })), React.createElement(Row, null, React.createElement(Field, {\n name: \"dateObserved\"\n }), React.createElement(Field, {\n name: \"treatmentDate\"\n }), React.createElement(Field, {\n name: \"futureTreatmentDate\"\n })), React.createElement(Cols, null, React.createElement(Col, null, React.createElement(Field, {\n name: \"treatedBy\"\n }), React.createElement(Field, {\n name: \"treatedWith\"\n })), React.createElement(Col, null, React.createElement(Field, {\n name: \"futureTreatment\"\n }), React.createElement(Field, {\n name: \"futureTreatmentNotes\"\n }))))))), React.createElement(Panel, {\n name: \"repotting\",\n collapsible: true,\n collapsed: true\n }, React.createElement(Cols, null, React.createElement(Col, null, React.createElement(Row, null, React.createElement(Field, {\n name: \"dateRepotted\",\n subpath: \"ns2:conservation_livingplant\"\n }), React.createElement(Field, {\n name: \"nextRepotting\",\n subpath: \"ns2:conservation_livingplant\"\n })), React.createElement(Field, {\n name: \"soilMix\",\n subpath: \"ns2:conservation_livingplant\"\n }), React.createElement(Field, {\n name: \"description\",\n subpath: \"ns2:conservation_livingplant\"\n })), React.createElement(Col, null, React.createElement(Field, {\n name: \"container\",\n subpath: \"ns2:conservation_livingplant\"\n }), React.createElement(Field, {\n name: \"performedBy\",\n subpath: \"ns2:conservation_livingplant\"\n }), React.createElement(Field, {\n name: \"plannedTreatment\",\n subpath: \"ns2:conservation_livingplant\"\n })))));\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/form.js?");
435
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _default = configContext => {\n const {\n layoutComponents,\n lib,\n recordComponents\n } = configContext;\n const {\n React\n } = lib;\n const {\n Cols,\n Col,\n Panel,\n Row\n } = layoutComponents;\n const {\n Field\n } = recordComponents;\n return /*#__PURE__*/React.createElement(Panel, {\n name: \"livingplant\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"fertilization\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fertilizationGroupList\",\n subpath: \"ns2:conservation_livingplant\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fertilizationGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"fertilizerUsed\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"appliedBy\"\n })), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"nitrogenPercent\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"phosphorusPercent\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"potassiumPercent\"\n })), /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"applicationDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"amountApplied\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fertilizationNotes\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"nextApplicationDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fertilizersToBeUsed\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fertilizerToBeUsed\"\n })))))))), /*#__PURE__*/React.createElement(Panel, {\n name: \"pest\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"pestsAndDiseaseGroupList\",\n subpath: \"ns2:conservation_livingplant\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"pestsAndDiseaseGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"pestOrDiseaseObserved\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"identifiedBy\"\n })), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"dateObserved\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentDate\"\n })), /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"treatedBy\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"treatedWith\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatment\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentNotes\"\n }))))))), /*#__PURE__*/React.createElement(Panel, {\n name: \"repotting\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"dateRepotted\",\n subpath: \"ns2:conservation_livingplant\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"nextRepotting\",\n subpath: \"ns2:conservation_livingplant\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"soilMix\",\n subpath: \"ns2:conservation_livingplant\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"description\",\n subpath: \"ns2:conservation_livingplant\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"container\",\n subpath: \"ns2:conservation_livingplant\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"performedBy\",\n subpath: \"ns2:conservation_livingplant\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"plannedTreatment\",\n subpath: \"ns2:conservation_livingplant\"\n })))));\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/form.js?");
228
436
 
229
437
  /***/ }),
230
438
 
@@ -232,11 +440,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
232
440
  /*!*********************************************************************************!*\
233
441
  !*** ./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/index.js ***!
234
442
  \*********************************************************************************/
235
- /*! no static exports found */
236
- /***/ (function(module, exports, __webpack_require__) {
443
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
237
444
 
238
445
  "use strict";
239
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _fields = _interopRequireDefault(__webpack_require__(/*! ./fields */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/fields.js\"));\n\nvar _form = _interopRequireDefault(__webpack_require__(/*! ./form */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/form.js\"));\n\nvar _messages = _interopRequireDefault(__webpack_require__(/*! ./messages */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/messages.js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar _default = configContext => ({\n messages: _messages.default,\n fields: (0, _fields.default)(configContext),\n form: (0, _form.default)(configContext)\n});\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/index.js?");
446
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _fields = _interopRequireDefault(__webpack_require__(/*! ./fields */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/fields.js\"));\nvar _form = _interopRequireDefault(__webpack_require__(/*! ./form */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/form.js\"));\nvar _messages = _interopRequireDefault(__webpack_require__(/*! ./messages */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/messages.js\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar _default = configContext => ({\n messages: _messages.default,\n fields: (0, _fields.default)(configContext),\n form: (0, _form.default)(configContext)\n});\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/index.js?");
240
447
 
241
448
  /***/ }),
242
449
 
@@ -244,11 +451,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
244
451
  /*!************************************************************************************!*\
245
452
  !*** ./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/messages.js ***!
246
453
  \************************************************************************************/
247
- /*! no static exports found */
248
- /***/ (function(module, exports, __webpack_require__) {
454
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
249
455
 
250
456
  "use strict";
251
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = {\n panel: (0, _reactIntl.defineMessages)({\n livingplant: {\n \"id\": \"panel.conservation.livingplant\",\n \"defaultMessage\": \"Living Plant Information\"\n },\n fertilization: {\n \"id\": \"panel.conservation.fertilization\",\n \"defaultMessage\": \"Fertilization\"\n },\n pest: {\n \"id\": \"panel.conservation.pest\",\n \"defaultMessage\": \"Pest and Disease\"\n },\n repotting: {\n \"id\": \"panel.conservation.repotting\",\n \"defaultMessage\": \"Repotting\"\n }\n })\n};\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/messages.js?");
457
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = {\n panel: (0, _reactIntl.defineMessages)({\n livingplant: {\n \"id\": \"panel.conservation.livingplant\",\n \"defaultMessage\": \"Living Plant Information\"\n },\n fertilization: {\n \"id\": \"panel.conservation.fertilization\",\n \"defaultMessage\": \"Fertilization\"\n },\n pest: {\n \"id\": \"panel.conservation.pest\",\n \"defaultMessage\": \"Pest and Disease\"\n },\n repotting: {\n \"id\": \"panel.conservation.repotting\",\n \"defaultMessage\": \"Repotting\"\n }\n })\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/messages.js?");
252
458
 
253
459
  /***/ }),
254
460
 
@@ -256,11 +462,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
256
462
  /*!********************************************************************!*\
257
463
  !*** ./node_modules/cspace-ui-plugin-ext-livingplant/lib/index.js ***!
258
464
  \********************************************************************/
259
- /*! no static exports found */
260
- /***/ (function(module, exports, __webpack_require__) {
465
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
261
466
 
262
467
  "use strict";
263
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _conservation = _interopRequireDefault(__webpack_require__(/*! ./conservation */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/index.js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar _default = () => configContext => ({\n extensions: {\n livingplant: {\n conservation: (0, _conservation.default)(configContext)\n }\n }\n});\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/index.js?");
468
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _conservation = _interopRequireDefault(__webpack_require__(/*! ./conservation */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/conservation/index.js\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar _default = () => configContext => ({\n extensions: {\n livingplant: {\n conservation: (0, _conservation.default)(configContext)\n }\n }\n});\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-ext-livingplant/lib/index.js?");
264
469
 
265
470
  /***/ }),
266
471
 
@@ -268,11 +473,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
268
473
  /*!**************************************************************************!*\
269
474
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/advancedSearch.js ***!
270
475
  \**************************************************************************/
271
- /*! no static exports found */
272
- /***/ (function(module, exports, __webpack_require__) {
476
+ /***/ ((__unused_webpack_module, exports) => {
273
477
 
274
478
  "use strict";
275
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _default = configContext => {\n const {\n OP_EQ,\n OP_CONTAIN\n } = configContext.searchOperators;\n const {\n defaultAdvancedSearchBooleanOp,\n extensions\n } = configContext.config;\n return {\n op: defaultAdvancedSearchBooleanOp,\n value: [{\n op: OP_CONTAIN,\n path: 'ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termDisplayName'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termStatus'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termFlag'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonTermGroupList/taxonTermGroup/taxonomicStatus'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonRank'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonCurrency'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonAuthorGroupList/taxonAuthorGroup/taxonAuthor'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:taxon_common/taxonYear'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonCitationList/taxonCitation'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:taxon_common/taxonNote'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:taxon_common/commonNameGroupList/commonNameGroup/commonName'\n }, ...extensions.core.advancedSearch]\n };\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/advancedSearch.js?");
479
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _default = configContext => {\n const {\n OP_EQ,\n OP_CONTAIN\n } = configContext.searchOperators;\n const {\n defaultAdvancedSearchBooleanOp,\n extensions\n } = configContext.config;\n return {\n op: defaultAdvancedSearchBooleanOp,\n value: [{\n op: OP_CONTAIN,\n path: 'ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termDisplayName'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termStatus'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonTermGroupList/taxonTermGroup/termFlag'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonTermGroupList/taxonTermGroup/taxonomicStatus'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonRank'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonCurrency'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonAuthorGroupList/taxonAuthorGroup/taxonAuthor'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:taxon_common/taxonYear'\n }, {\n op: OP_EQ,\n path: 'ns2:taxon_common/taxonCitationList/taxonCitation'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:taxon_common/taxonNote'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:taxon_common/commonNameGroupList/commonNameGroup/commonName'\n }, ...extensions.core.advancedSearch]\n };\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/advancedSearch.js?");
276
480
 
277
481
  /***/ }),
278
482
 
@@ -280,11 +484,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
280
484
  /*!*******************************************************************!*\
281
485
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/columns.js ***!
282
486
  \*******************************************************************/
283
- /*! no static exports found */
284
- /***/ (function(module, exports, __webpack_require__) {
487
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
285
488
 
286
489
  "use strict";
287
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = configContext => {\n const {\n formatRefNameAsVocabularyName,\n formatTimestamp,\n formatWorkflowStateIcon\n } = configContext.formatHelpers;\n return {\n default: {\n workflowState: {\n flexGrow: 0,\n flexShrink: 0,\n formatValue: formatWorkflowStateIcon,\n order: 10,\n width: 32\n },\n termDisplayName: {\n messages: (0, _reactIntl.defineMessages)({\n label: {\n \"id\": \"column.taxon.default.termDisplayName\",\n \"defaultMessage\": \"Display name\"\n }\n }),\n order: 20,\n sortBy: 'taxon_common:taxonTermGroupList/0/termDisplayName',\n width: 250\n },\n termStatus: {\n messages: (0, _reactIntl.defineMessages)({\n label: {\n \"id\": \"column.taxon.default.termStatus\",\n \"defaultMessage\": \"Term status\"\n }\n }),\n order: 30,\n sortBy: 'taxon_common:taxonTermGroupList/0/termStatus',\n width: 250\n },\n vocabulary: {\n dataKey: 'refName',\n formatValue: formatRefNameAsVocabularyName,\n messages: (0, _reactIntl.defineMessages)({\n label: {\n \"id\": \"column.taxon.default.vocabulary\",\n \"defaultMessage\": \"Vocabulary\"\n }\n }),\n order: 40,\n width: 150\n },\n updatedAt: {\n formatValue: formatTimestamp,\n messages: (0, _reactIntl.defineMessages)({\n label: {\n \"id\": \"column.taxon.search.updatedAt\",\n \"defaultMessage\": \"Updated\"\n }\n }),\n order: 50,\n sortBy: 'collectionspace_core:updatedAt',\n width: 150\n }\n }\n };\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/columns.js?");
490
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = configContext => {\n const {\n formatRefNameAsVocabularyName,\n formatTimestamp,\n formatWorkflowStateIcon\n } = configContext.formatHelpers;\n return {\n default: {\n workflowState: {\n flexGrow: 0,\n flexShrink: 0,\n formatValue: formatWorkflowStateIcon,\n order: 10,\n width: 32\n },\n termDisplayName: {\n messages: (0, _reactIntl.defineMessages)({\n label: {\n \"id\": \"column.taxon.default.termDisplayName\",\n \"defaultMessage\": \"Display name\"\n }\n }),\n order: 20,\n sortBy: 'taxon_common:taxonTermGroupList/0/termDisplayName',\n width: 250\n },\n termStatus: {\n messages: (0, _reactIntl.defineMessages)({\n label: {\n \"id\": \"column.taxon.default.termStatus\",\n \"defaultMessage\": \"Term status\"\n }\n }),\n order: 30,\n sortBy: 'taxon_common:taxonTermGroupList/0/termStatus',\n width: 250\n },\n vocabulary: {\n dataKey: 'refName',\n formatValue: formatRefNameAsVocabularyName,\n messages: (0, _reactIntl.defineMessages)({\n label: {\n \"id\": \"column.taxon.default.vocabulary\",\n \"defaultMessage\": \"Vocabulary\"\n }\n }),\n order: 40,\n width: 150\n },\n updatedAt: {\n formatValue: formatTimestamp,\n messages: (0, _reactIntl.defineMessages)({\n label: {\n \"id\": \"column.taxon.search.updatedAt\",\n \"defaultMessage\": \"Updated\"\n }\n }),\n order: 50,\n sortBy: 'collectionspace_core:updatedAt',\n width: 150\n }\n }\n };\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/columns.js?");
288
491
 
289
492
  /***/ }),
290
493
 
@@ -292,11 +495,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
292
495
  /*!******************************************************************!*\
293
496
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/fields.js ***!
294
497
  \******************************************************************/
295
- /*! no static exports found */
296
- /***/ (function(module, exports, __webpack_require__) {
498
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
297
499
 
298
500
  "use strict";
299
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nfunction ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); keys.push.apply(keys, symbols); } return keys; }\n\nfunction _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar _default = configContext => {\n const {\n AutocompleteInput,\n CheckboxInput,\n CompoundInput,\n HierarchyInput,\n OptionPickerInput,\n RichTextInput,\n TextInput,\n TermPickerInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_BOOL\n } = configContext.dataTypes;\n const {\n extensions\n } = configContext.config;\n return {\n document: _objectSpread({\n [config]: {\n view: {\n type: CompoundInput,\n props: {\n defaultChildSubpath: 'ns2:taxon_common'\n }\n }\n },\n 'rel:relations-common-list': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/relation'\n }\n },\n 'relation-list-item': {\n [config]: {\n view: {\n type: HierarchyInput,\n props: {\n messages: (0, _reactIntl.defineMessages)({\n parent: {\n \"id\": \"hierarchyInput.taxon.parent\",\n \"defaultMessage\": \"Broader taxon name\"\n },\n children: {\n \"id\": \"hierarchyInput.taxon.children\",\n \"defaultMessage\": \"Narrower taxon names\"\n },\n siblings: {\n \"id\": \"hierarchyInput.taxon.siblings\",\n \"defaultMessage\": \"Adjacent taxon names\"\n }\n })\n }\n }\n }\n }\n }\n }, extensions.core.fields, {\n 'ns2:taxon_common': _objectSpread({\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/taxonomy'\n }\n }\n }, extensions.authItem.fields, {\n taxonTermGroupList: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n required: {\n \"id\": \"field.taxon_common.taxonTermGroupList.required\",\n \"defaultMessage\": \"At least one term display name is required. Please enter a value.\"\n }\n }),\n required: true,\n view: {\n type: CompoundInput\n }\n },\n taxonTermGroup: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonTermGroup.name\",\n \"defaultMessage\": \"Term\"\n }\n }),\n repeating: true,\n view: {\n type: CompoundInput\n }\n },\n termDisplayName: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termDisplayName.fullName\",\n \"defaultMessage\": \"Term display name\"\n },\n name: {\n \"id\": \"field.taxon_common.termDisplayName.name\",\n \"defaultMessage\": \"Display name\"\n }\n }),\n required: true,\n view: {\n type: TextInput\n }\n }\n },\n termName: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termName.fullName\",\n \"defaultMessage\": \"Term name\"\n },\n name: {\n \"id\": \"field.taxon_common.termName.name\",\n \"defaultMessage\": \"Name\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termType: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termType.fullName\",\n \"defaultMessage\": \"Term type\"\n },\n name: {\n \"id\": \"field.taxon_common.termType.name\",\n \"defaultMessage\": \"Type\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonTermTypes'\n }\n }\n }\n },\n termFlag: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termFlag.fullName\",\n \"defaultMessage\": \"Term flag\"\n },\n name: {\n \"id\": \"field.taxon_common.termFlag.name\",\n \"defaultMessage\": \"Flag\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'taxontermflag'\n }\n }\n }\n },\n termStatus: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termStatus.fullName\",\n \"defaultMessage\": \"Term status\"\n },\n name: {\n \"id\": \"field.taxon_common.termStatus.name\",\n \"defaultMessage\": \"Status\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonTermStatuses'\n }\n }\n }\n },\n termQualifier: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termQualifier.fullName\",\n \"defaultMessage\": \"Term qualifier\"\n },\n name: {\n \"id\": \"field.taxon_common.termQualifier.name\",\n \"defaultMessage\": \"Qualifier\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termLanguage: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termLanguage.fullName\",\n \"defaultMessage\": \"Term language\"\n },\n name: {\n \"id\": \"field.taxon_common.termLanguage.name\",\n \"defaultMessage\": \"Language\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'languages'\n }\n }\n }\n },\n termPrefForLang: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termPrefForLang.fullName\",\n \"defaultMessage\": \"Term preferred for lang\"\n },\n name: {\n \"id\": \"field.taxon_common.termPrefForLang.name\",\n \"defaultMessage\": \"Preferred for lang\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n termSource: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termSource.fullName\",\n \"defaultMessage\": \"Term source name\"\n },\n groupName: {\n \"id\": \"field.taxon_common.termSource.groupName\",\n \"defaultMessage\": \"Source name\"\n },\n name: {\n \"id\": \"field.taxon_common.termSource.name\",\n \"defaultMessage\": \"Name\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'citation/local,citation/shared,citation/worldcat'\n }\n }\n }\n },\n termSourceDetail: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termSourceDetail.fullName\",\n \"defaultMessage\": \"Term source detail\"\n },\n groupName: {\n \"id\": \"field.taxon_common.termSourceDetail.groupName\",\n \"defaultMessage\": \"Source detail\"\n },\n name: {\n \"id\": \"field.taxon_common.termSourceDetail.name\",\n \"defaultMessage\": \"Detail\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termSourceID: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termSourceID.fullName\",\n \"defaultMessage\": \"Term source ID\"\n },\n groupName: {\n \"id\": \"field.taxon_common.termSourceID.groupName\",\n \"defaultMessage\": \"Source ID\"\n },\n name: {\n \"id\": \"field.taxon_common.termSourceID.name\",\n \"defaultMessage\": \"ID\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termSourceNote: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termSourceNote.fullName\",\n \"defaultMessage\": \"Term source note\"\n },\n groupName: {\n \"id\": \"field.taxon_common.termSourceNote.groupName\",\n \"defaultMessage\": \"Source note\"\n },\n name: {\n \"id\": \"field.taxon_common.termSourceNote.name\",\n \"defaultMessage\": \"Note\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termFormattedDisplayName: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.termFormattedDisplayName.name\",\n \"defaultMessage\": \"Formatted display name\"\n }\n }),\n view: {\n type: RichTextInput\n }\n }\n },\n taxonomicStatus: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonomicStatus.name\",\n \"defaultMessage\": \"Taxonomic status\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonomicStatuses'\n }\n }\n }\n }\n }\n },\n taxonRank: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonRank.name\",\n \"defaultMessage\": \"Rank\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonRanks'\n }\n }\n }\n },\n taxonCurrency: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonCurrency.name\",\n \"defaultMessage\": \"Currency\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonCurrencies'\n }\n }\n }\n },\n taxonAuthorGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n taxonAuthorGroup: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonAuthorGroup.name\",\n \"defaultMessage\": \"Author\"\n }\n }),\n repeating: true,\n view: {\n type: CompoundInput,\n props: {\n tabular: true\n }\n }\n },\n taxonAuthor: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.taxonAuthor.fullName\",\n \"defaultMessage\": \"Author name\"\n },\n name: {\n \"id\": \"field.taxon_common.taxonAuthor.name\",\n \"defaultMessage\": \"Name\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared,organization/local,organization/shared'\n }\n }\n }\n },\n taxonAuthorType: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.taxonAuthorType.fullName\",\n \"defaultMessage\": \"Author type\"\n },\n name: {\n \"id\": \"field.taxon_common.taxonAuthorType.name\",\n \"defaultMessage\": \"Type\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonAuthorTypes'\n }\n }\n }\n }\n }\n },\n taxonYear: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonYear.name\",\n \"defaultMessage\": \"Year\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n taxonCitationList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n taxonCitation: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonCitation.name\",\n \"defaultMessage\": \"Citation\"\n }\n }),\n repeating: true,\n view: {\n type: AutocompleteInput,\n props: {\n source: 'citation/local,citation/shared,citation/worldcat'\n }\n }\n }\n }\n },\n taxonIsNamedHybrid: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonIsNamedHybrid.name\",\n \"defaultMessage\": \"Is named hybrid\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n taxonNote: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonNote.name\",\n \"defaultMessage\": \"Note\"\n }\n }),\n searchView: {\n type: TextInput\n },\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n },\n commonNameGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n commonNameGroup: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.commonNameGroup.name\",\n \"defaultMessage\": \"Common name\"\n }\n }),\n repeating: true,\n view: {\n type: CompoundInput,\n props: {\n tabular: true\n }\n }\n },\n commonName: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.commonName.fullName\",\n \"defaultMessage\": \"Common name\"\n },\n name: {\n \"id\": \"field.taxon_common.commonName.name\",\n \"defaultMessage\": \"Name\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n commonNameLanguage: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.commonNameLanguage.fullName\",\n \"defaultMessage\": \"Common name language\"\n },\n name: {\n \"id\": \"field.taxon_common.commonNameLanguage.name\",\n \"defaultMessage\": \"Language\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'languages'\n }\n }\n }\n },\n commonNameSource: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.commonNameSource.fullName\",\n \"defaultMessage\": \"Common name source\"\n },\n name: {\n \"id\": \"field.taxon_common.commonNameSource.name\",\n \"defaultMessage\": \"Source\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'citation/local,citation/shared'\n }\n }\n }\n },\n commonNameSourceDetail: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.commonNameSourceDetail.fullName\",\n \"defaultMessage\": \"Common name source detail\"\n },\n name: {\n \"id\": \"field.taxon_common.commonNameSourceDetail.name\",\n \"defaultMessage\": \"Source detail\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n }\n }\n }\n })\n })\n };\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/fields.js?");
501
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = configContext => {\n const {\n AutocompleteInput,\n CheckboxInput,\n CompoundInput,\n HierarchyInput,\n OptionPickerInput,\n RichTextInput,\n TextInput,\n TermPickerInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_BOOL\n } = configContext.dataTypes;\n const {\n extensions\n } = configContext.config;\n return {\n document: {\n [config]: {\n view: {\n type: CompoundInput,\n props: {\n defaultChildSubpath: 'ns2:taxon_common'\n }\n }\n },\n 'rel:relations-common-list': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/relation'\n }\n },\n 'relation-list-item': {\n [config]: {\n view: {\n type: HierarchyInput,\n props: {\n messages: (0, _reactIntl.defineMessages)({\n parent: {\n \"id\": \"hierarchyInput.taxon.parent\",\n \"defaultMessage\": \"Broader taxon name\"\n },\n children: {\n \"id\": \"hierarchyInput.taxon.children\",\n \"defaultMessage\": \"Narrower taxon names\"\n },\n siblings: {\n \"id\": \"hierarchyInput.taxon.siblings\",\n \"defaultMessage\": \"Adjacent taxon names\"\n }\n })\n }\n }\n }\n }\n },\n ...extensions.core.fields,\n 'ns2:taxon_common': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/taxonomy'\n }\n },\n ...extensions.authItem.fields,\n taxonTermGroupList: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n required: {\n \"id\": \"field.taxon_common.taxonTermGroupList.required\",\n \"defaultMessage\": \"At least one term display name is required. Please enter a value.\"\n }\n }),\n required: true,\n view: {\n type: CompoundInput\n }\n },\n taxonTermGroup: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonTermGroup.name\",\n \"defaultMessage\": \"Term\"\n }\n }),\n repeating: true,\n view: {\n type: CompoundInput\n }\n },\n termDisplayName: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termDisplayName.fullName\",\n \"defaultMessage\": \"Term display name\"\n },\n name: {\n \"id\": \"field.taxon_common.termDisplayName.name\",\n \"defaultMessage\": \"Display name\"\n }\n }),\n required: true,\n view: {\n type: TextInput\n }\n }\n },\n termName: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termName.fullName\",\n \"defaultMessage\": \"Term name\"\n },\n name: {\n \"id\": \"field.taxon_common.termName.name\",\n \"defaultMessage\": \"Name\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termType: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termType.fullName\",\n \"defaultMessage\": \"Term type\"\n },\n name: {\n \"id\": \"field.taxon_common.termType.name\",\n \"defaultMessage\": \"Type\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonTermTypes'\n }\n }\n }\n },\n termFlag: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termFlag.fullName\",\n \"defaultMessage\": \"Term flag\"\n },\n name: {\n \"id\": \"field.taxon_common.termFlag.name\",\n \"defaultMessage\": \"Flag\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'taxontermflag'\n }\n }\n }\n },\n termStatus: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termStatus.fullName\",\n \"defaultMessage\": \"Term status\"\n },\n name: {\n \"id\": \"field.taxon_common.termStatus.name\",\n \"defaultMessage\": \"Status\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonTermStatuses'\n }\n }\n }\n },\n termQualifier: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termQualifier.fullName\",\n \"defaultMessage\": \"Term qualifier\"\n },\n name: {\n \"id\": \"field.taxon_common.termQualifier.name\",\n \"defaultMessage\": \"Qualifier\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termLanguage: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termLanguage.fullName\",\n \"defaultMessage\": \"Term language\"\n },\n name: {\n \"id\": \"field.taxon_common.termLanguage.name\",\n \"defaultMessage\": \"Language\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'languages'\n }\n }\n }\n },\n termPrefForLang: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termPrefForLang.fullName\",\n \"defaultMessage\": \"Term preferred for lang\"\n },\n name: {\n \"id\": \"field.taxon_common.termPrefForLang.name\",\n \"defaultMessage\": \"Preferred for lang\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n termSource: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termSource.fullName\",\n \"defaultMessage\": \"Term source name\"\n },\n groupName: {\n \"id\": \"field.taxon_common.termSource.groupName\",\n \"defaultMessage\": \"Source name\"\n },\n name: {\n \"id\": \"field.taxon_common.termSource.name\",\n \"defaultMessage\": \"Name\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'citation/local,citation/shared,citation/worldcat'\n }\n }\n }\n },\n termSourceDetail: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termSourceDetail.fullName\",\n \"defaultMessage\": \"Term source detail\"\n },\n groupName: {\n \"id\": \"field.taxon_common.termSourceDetail.groupName\",\n \"defaultMessage\": \"Source detail\"\n },\n name: {\n \"id\": \"field.taxon_common.termSourceDetail.name\",\n \"defaultMessage\": \"Detail\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termSourceID: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termSourceID.fullName\",\n \"defaultMessage\": \"Term source ID\"\n },\n groupName: {\n \"id\": \"field.taxon_common.termSourceID.groupName\",\n \"defaultMessage\": \"Source ID\"\n },\n name: {\n \"id\": \"field.taxon_common.termSourceID.name\",\n \"defaultMessage\": \"ID\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termSourceNote: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.termSourceNote.fullName\",\n \"defaultMessage\": \"Term source note\"\n },\n groupName: {\n \"id\": \"field.taxon_common.termSourceNote.groupName\",\n \"defaultMessage\": \"Source note\"\n },\n name: {\n \"id\": \"field.taxon_common.termSourceNote.name\",\n \"defaultMessage\": \"Note\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n termFormattedDisplayName: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.termFormattedDisplayName.name\",\n \"defaultMessage\": \"Formatted display name\"\n }\n }),\n view: {\n type: RichTextInput\n }\n }\n },\n taxonomicStatus: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonomicStatus.name\",\n \"defaultMessage\": \"Taxonomic status\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonomicStatuses'\n }\n }\n }\n }\n }\n },\n taxonRank: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonRank.name\",\n \"defaultMessage\": \"Rank\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonRanks'\n }\n }\n }\n },\n taxonCurrency: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonCurrency.name\",\n \"defaultMessage\": \"Currency\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonCurrencies'\n }\n }\n }\n },\n taxonAuthorGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n taxonAuthorGroup: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonAuthorGroup.name\",\n \"defaultMessage\": \"Author\"\n }\n }),\n repeating: true,\n view: {\n type: CompoundInput,\n props: {\n tabular: true\n }\n }\n },\n taxonAuthor: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.taxonAuthor.fullName\",\n \"defaultMessage\": \"Author name\"\n },\n name: {\n \"id\": \"field.taxon_common.taxonAuthor.name\",\n \"defaultMessage\": \"Name\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/shared,organization/local,organization/shared'\n }\n }\n }\n },\n taxonAuthorType: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.taxonAuthorType.fullName\",\n \"defaultMessage\": \"Author type\"\n },\n name: {\n \"id\": \"field.taxon_common.taxonAuthorType.name\",\n \"defaultMessage\": \"Type\"\n }\n }),\n view: {\n type: OptionPickerInput,\n props: {\n source: 'taxonAuthorTypes'\n }\n }\n }\n }\n }\n },\n taxonYear: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonYear.name\",\n \"defaultMessage\": \"Year\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n taxonCitationList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n taxonCitation: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonCitation.name\",\n \"defaultMessage\": \"Citation\"\n }\n }),\n repeating: true,\n view: {\n type: AutocompleteInput,\n props: {\n source: 'citation/local,citation/shared,citation/worldcat'\n }\n }\n }\n }\n },\n taxonIsNamedHybrid: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonIsNamedHybrid.name\",\n \"defaultMessage\": \"Is named hybrid\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n taxonNote: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.taxonNote.name\",\n \"defaultMessage\": \"Note\"\n }\n }),\n searchView: {\n type: TextInput\n },\n view: {\n type: TextInput,\n props: {\n multiline: true\n }\n }\n }\n },\n commonNameGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n commonNameGroup: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"field.taxon_common.commonNameGroup.name\",\n \"defaultMessage\": \"Common name\"\n }\n }),\n repeating: true,\n view: {\n type: CompoundInput,\n props: {\n tabular: true\n }\n }\n },\n commonName: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.commonName.fullName\",\n \"defaultMessage\": \"Common name\"\n },\n name: {\n \"id\": \"field.taxon_common.commonName.name\",\n \"defaultMessage\": \"Name\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n commonNameLanguage: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.commonNameLanguage.fullName\",\n \"defaultMessage\": \"Common name language\"\n },\n name: {\n \"id\": \"field.taxon_common.commonNameLanguage.name\",\n \"defaultMessage\": \"Language\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'languages'\n }\n }\n }\n },\n commonNameSource: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.commonNameSource.fullName\",\n \"defaultMessage\": \"Common name source\"\n },\n name: {\n \"id\": \"field.taxon_common.commonNameSource.name\",\n \"defaultMessage\": \"Source\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'citation/local,citation/shared'\n }\n }\n }\n },\n commonNameSourceDetail: {\n [config]: {\n messages: (0, _reactIntl.defineMessages)({\n fullName: {\n \"id\": \"field.taxon_common.commonNameSourceDetail.fullName\",\n \"defaultMessage\": \"Common name source detail\"\n },\n name: {\n \"id\": \"field.taxon_common.commonNameSourceDetail.name\",\n \"defaultMessage\": \"Source detail\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n }\n }\n }\n }\n }\n };\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/fields.js?");
300
502
 
301
503
  /***/ }),
302
504
 
@@ -304,11 +506,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
304
506
  /*!*************************************************************************!*\
305
507
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/forms/default.js ***!
306
508
  \*************************************************************************/
307
- /*! no static exports found */
308
- /***/ (function(module, exports, __webpack_require__) {
509
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
309
510
 
310
511
  "use strict";
311
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Col,\n Cols,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field,\n InputTable\n } = configContext.recordComponents;\n return React.createElement(Field, {\n name: \"document\"\n }, React.createElement(Panel, {\n name: \"info\",\n collapsible: true\n }, React.createElement(Field, {\n name: \"taxonTermGroupList\"\n }, React.createElement(Field, {\n name: \"taxonTermGroup\"\n }, React.createElement(Panel, null, React.createElement(Row, null, React.createElement(Field, {\n name: \"termDisplayName\"\n }), React.createElement(Field, {\n name: \"termFormattedDisplayName\"\n })), React.createElement(Row, null, React.createElement(Field, {\n name: \"termQualifier\"\n }), React.createElement(Field, {\n name: \"termStatus\"\n }), React.createElement(Field, {\n name: \"termType\"\n }), React.createElement(Field, {\n name: \"termFlag\"\n })), React.createElement(Row, null, React.createElement(Field, {\n name: \"taxonomicStatus\"\n }), React.createElement(Field, {\n name: \"termLanguage\"\n }), React.createElement(Field, {\n name: \"termPrefForLang\"\n })), React.createElement(InputTable, {\n name: \"termSource\"\n }, React.createElement(Field, {\n name: \"termSource\"\n }), React.createElement(Field, {\n name: \"termSourceDetail\"\n }), React.createElement(Field, {\n name: \"termSourceID\"\n }), React.createElement(Field, {\n name: \"termSourceNote\"\n }))))), React.createElement(Row, null, React.createElement(Field, {\n name: \"taxonRank\"\n }), React.createElement(Field, {\n name: \"taxonCurrency\"\n })), React.createElement(Field, {\n name: \"taxonAuthorGroupList\"\n }, React.createElement(Field, {\n name: \"taxonAuthorGroup\"\n }, React.createElement(Field, {\n name: \"taxonAuthor\"\n }), React.createElement(Field, {\n name: \"taxonAuthorType\"\n }))), React.createElement(Cols, null, React.createElement(Col, null, React.createElement(Field, {\n name: \"taxonYear\"\n }), React.createElement(Field, {\n name: \"taxonIsNamedHybrid\"\n })), React.createElement(Col, null, React.createElement(Field, {\n name: \"taxonCitationList\"\n }, React.createElement(Field, {\n name: \"taxonCitation\"\n })))), React.createElement(Field, {\n name: \"taxonNote\"\n }), React.createElement(Field, {\n name: \"commonNameGroupList\"\n }, React.createElement(Field, {\n name: \"commonNameGroup\"\n }, React.createElement(Field, {\n name: \"commonName\"\n }), React.createElement(Field, {\n name: \"commonNameLanguage\"\n }), React.createElement(Field, {\n name: \"commonNameSource\"\n }), React.createElement(Field, {\n name: \"commonNameSourceDetail\"\n })))), React.createElement(Panel, {\n name: \"hierarchy\",\n collapsible: true,\n collapsed: true\n }, React.createElement(Field, {\n name: \"relation-list-item\",\n subpath: \"rel:relations-common-list\"\n })));\n};\n\nvar _default = configContext => ({\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"form.taxon.default.name\",\n \"defaultMessage\": \"Standard Template\"\n }\n }),\n template: template(configContext)\n});\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/forms/default.js?");
512
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Col,\n Cols,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field,\n InputTable\n } = configContext.recordComponents;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"info\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonTermGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonTermGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"termDisplayName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termFormattedDisplayName\"\n })), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"termQualifier\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termStatus\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termFlag\"\n })), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonomicStatus\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termLanguage\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termPrefForLang\"\n })), /*#__PURE__*/React.createElement(InputTable, {\n name: \"termSource\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"termSource\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termSourceDetail\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termSourceID\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"termSourceNote\"\n }))))), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonRank\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"taxonCurrency\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"taxonAuthorGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonAuthorGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonAuthor\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"taxonAuthorType\"\n }))), /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonYear\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"taxonIsNamedHybrid\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonCitationList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonCitation\"\n })))), /*#__PURE__*/React.createElement(Field, {\n name: \"taxonNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"commonNameGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"commonNameGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"commonName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"commonNameLanguage\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"commonNameSource\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"commonNameSourceDetail\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"hierarchy\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"relation-list-item\",\n subpath: \"rel:relations-common-list\"\n })));\n};\nvar _default = configContext => ({\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"form.taxon.default.name\",\n \"defaultMessage\": \"Standard Template\"\n }\n }),\n template: template(configContext)\n});\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/forms/default.js?");
312
513
 
313
514
  /***/ }),
314
515
 
@@ -316,11 +517,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
316
517
  /*!***********************************************************************!*\
317
518
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/forms/index.js ***!
318
519
  \***********************************************************************/
319
- /*! no static exports found */
320
- /***/ (function(module, exports, __webpack_require__) {
520
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
321
521
 
322
522
  "use strict";
323
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _default2 = _interopRequireDefault(__webpack_require__(/*! ./default */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/forms/default.js\"));\n\nvar _mini = _interopRequireDefault(__webpack_require__(/*! ./mini */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/forms/mini.js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar _default = configContext => ({\n default: (0, _default2.default)(configContext),\n mini: (0, _mini.default)(configContext)\n});\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/forms/index.js?");
523
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _default2 = _interopRequireDefault(__webpack_require__(/*! ./default */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/forms/default.js\"));\nvar _mini = _interopRequireDefault(__webpack_require__(/*! ./mini */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/forms/mini.js\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar _default = configContext => ({\n default: (0, _default2.default)(configContext),\n mini: (0, _mini.default)(configContext)\n});\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/forms/index.js?");
324
524
 
325
525
  /***/ }),
326
526
 
@@ -328,11 +528,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
328
528
  /*!**********************************************************************!*\
329
529
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/forms/mini.js ***!
330
530
  \**********************************************************************/
331
- /*! no static exports found */
332
- /***/ (function(module, exports, __webpack_require__) {
531
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
333
532
 
334
533
  "use strict";
335
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n return React.createElement(Field, {\n name: \"document\"\n }, React.createElement(Field, {\n name: \"relation-list-item\",\n subpath: \"rel:relations-common-list\",\n showChildren: false,\n showSiblings: false\n }), React.createElement(Row, null, React.createElement(Field, {\n name: \"taxonRank\"\n }), React.createElement(Field, {\n name: \"taxonCurrency\"\n })), React.createElement(Field, {\n name: \"taxonNote\"\n }));\n};\n\nvar _default = configContext => ({\n disabled: true,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"form.taxon.mini.name\",\n \"defaultMessage\": \"Mini Template\"\n }\n }),\n template: template(configContext)\n});\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/forms/mini.js?");
534
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"relation-list-item\",\n subpath: \"rel:relations-common-list\",\n showChildren: false,\n showSiblings: false\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"taxonRank\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"taxonCurrency\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"taxonNote\"\n }));\n};\nvar _default = configContext => ({\n disabled: true,\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"form.taxon.mini.name\",\n \"defaultMessage\": \"Mini Template\"\n }\n }),\n template: template(configContext)\n});\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/forms/mini.js?");
336
535
 
337
536
  /***/ }),
338
537
 
@@ -340,11 +539,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
340
539
  /*!*****************************************************************!*\
341
540
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/index.js ***!
342
541
  \*****************************************************************/
343
- /*! no static exports found */
344
- /***/ (function(module, exports, __webpack_require__) {
542
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
345
543
 
346
544
  "use strict";
347
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _advancedSearch = _interopRequireDefault(__webpack_require__(/*! ./advancedSearch */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/advancedSearch.js\"));\n\nvar _columns = _interopRequireDefault(__webpack_require__(/*! ./columns */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/columns.js\"));\n\nvar _fields = _interopRequireDefault(__webpack_require__(/*! ./fields */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/fields.js\"));\n\nvar _forms = _interopRequireDefault(__webpack_require__(/*! ./forms */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/forms/index.js\"));\n\nvar _messages = _interopRequireDefault(__webpack_require__(/*! ./messages */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/messages.js\"));\n\nvar _optionLists = _interopRequireDefault(__webpack_require__(/*! ./optionLists */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/optionLists.js\"));\n\nvar _serviceConfig = _interopRequireDefault(__webpack_require__(/*! ./serviceConfig */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/serviceConfig.js\"));\n\nvar _title = _interopRequireDefault(__webpack_require__(/*! ./title */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/title.js\"));\n\nvar _vocabularies = _interopRequireDefault(__webpack_require__(/*! ./vocabularies */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/vocabularies.js\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar _default = () => configContext => ({\n optionLists: _optionLists.default,\n recordTypes: {\n taxon: {\n messages: _messages.default,\n serviceConfig: _serviceConfig.default,\n vocabularies: _vocabularies.default,\n advancedSearch: (0, _advancedSearch.default)(configContext),\n columns: (0, _columns.default)(configContext),\n fields: (0, _fields.default)(configContext),\n forms: (0, _forms.default)(configContext),\n title: (0, _title.default)(configContext)\n }\n }\n});\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/index.js?");
545
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _advancedSearch = _interopRequireDefault(__webpack_require__(/*! ./advancedSearch */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/advancedSearch.js\"));\nvar _columns = _interopRequireDefault(__webpack_require__(/*! ./columns */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/columns.js\"));\nvar _fields = _interopRequireDefault(__webpack_require__(/*! ./fields */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/fields.js\"));\nvar _forms = _interopRequireDefault(__webpack_require__(/*! ./forms */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/forms/index.js\"));\nvar _messages = _interopRequireDefault(__webpack_require__(/*! ./messages */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/messages.js\"));\nvar _optionLists = _interopRequireDefault(__webpack_require__(/*! ./optionLists */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/optionLists.js\"));\nvar _serviceConfig = _interopRequireDefault(__webpack_require__(/*! ./serviceConfig */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/serviceConfig.js\"));\nvar _title = _interopRequireDefault(__webpack_require__(/*! ./title */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/title.js\"));\nvar _vocabularies = _interopRequireDefault(__webpack_require__(/*! ./vocabularies */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/vocabularies.js\"));\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\nvar _default = () => configContext => ({\n optionLists: _optionLists.default,\n recordTypes: {\n taxon: {\n messages: _messages.default,\n serviceConfig: _serviceConfig.default,\n vocabularies: _vocabularies.default,\n advancedSearch: (0, _advancedSearch.default)(configContext),\n columns: (0, _columns.default)(configContext),\n fields: (0, _fields.default)(configContext),\n forms: (0, _forms.default)(configContext),\n title: (0, _title.default)(configContext)\n }\n }\n});\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/index.js?");
348
546
 
349
547
  /***/ }),
350
548
 
@@ -352,11 +550,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
352
550
  /*!********************************************************************!*\
353
551
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/messages.js ***!
354
552
  \********************************************************************/
355
- /*! no static exports found */
356
- /***/ (function(module, exports, __webpack_require__) {
553
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
357
554
 
358
555
  "use strict";
359
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = {\n record: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"record.taxon.name\",\n \"defaultMessage\": \"Taxon\"\n },\n collectionName: {\n \"id\": \"record.taxon.collectionName\",\n \"defaultMessage\": \"Taxon names\"\n }\n }),\n panel: (0, _reactIntl.defineMessages)({\n info: {\n \"id\": \"panel.taxon.info\",\n \"defaultMessage\": \"Taxonomic Name Information\"\n },\n hierarchy: {\n \"id\": \"panel.taxon.hierarchy\",\n \"defaultMessage\": \"Hierarchy\"\n }\n }),\n inputTable: (0, _reactIntl.defineMessages)({\n termSource: {\n \"id\": \"inputTable.taxon.termSource\",\n \"defaultMessage\": \"Source\"\n }\n })\n};\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/messages.js?");
556
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = {\n record: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"record.taxon.name\",\n \"defaultMessage\": \"Taxon\"\n },\n collectionName: {\n \"id\": \"record.taxon.collectionName\",\n \"defaultMessage\": \"Taxon names\"\n }\n }),\n panel: (0, _reactIntl.defineMessages)({\n info: {\n \"id\": \"panel.taxon.info\",\n \"defaultMessage\": \"Taxonomic Name Information\"\n },\n hierarchy: {\n \"id\": \"panel.taxon.hierarchy\",\n \"defaultMessage\": \"Hierarchy\"\n }\n }),\n inputTable: (0, _reactIntl.defineMessages)({\n termSource: {\n \"id\": \"inputTable.taxon.termSource\",\n \"defaultMessage\": \"Source\"\n }\n })\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/messages.js?");
360
557
 
361
558
  /***/ }),
362
559
 
@@ -364,11 +561,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
364
561
  /*!***********************************************************************!*\
365
562
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/optionLists.js ***!
366
563
  \***********************************************************************/
367
- /*! no static exports found */
368
- /***/ (function(module, exports, __webpack_require__) {
564
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
369
565
 
370
566
  "use strict";
371
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = {\n taxonTermTypes: {\n values: ['descriptor', 'alternate descriptor', 'used for term'],\n messages: (0, _reactIntl.defineMessages)({\n descriptor: {\n \"id\": \"option.taxonTermTypes.descriptor\",\n \"defaultMessage\": \"descriptor\"\n },\n 'alternate descriptor': {\n \"id\": \"option.taxonTermTypes.alternate descriptor\",\n \"defaultMessage\": \"alternate descriptor\"\n },\n 'used for term': {\n \"id\": \"option.taxonTermTypes.used for term\",\n \"defaultMessage\": \"used for term\"\n }\n })\n },\n taxonTermStatuses: {\n values: ['provisional', 'under review', 'accepted', 'rejected'],\n messages: (0, _reactIntl.defineMessages)({\n provisional: {\n \"id\": \"option.taxonTermStatuses.provisional\",\n \"defaultMessage\": \"provisional\"\n },\n 'under review': {\n \"id\": \"option.taxonTermStatuses.under review\",\n \"defaultMessage\": \"under review\"\n },\n accepted: {\n \"id\": \"option.taxonTermStatuses.accepted\",\n \"defaultMessage\": \"accepted\"\n },\n rejected: {\n \"id\": \"option.taxonTermStatuses.rejected\",\n \"defaultMessage\": \"rejected\"\n }\n })\n },\n taxonomicStatuses: {\n values: ['valid', 'invalid', 'accepted', 'misapplied name'],\n messages: (0, _reactIntl.defineMessages)({\n valid: {\n \"id\": \"option.taxonomicStatuses.valid\",\n \"defaultMessage\": \"valid\"\n },\n invalid: {\n \"id\": \"option.taxonomicStatuses.invalid\",\n \"defaultMessage\": \"invalid\"\n },\n accepted: {\n \"id\": \"option.taxonomicStatuses.accepted\",\n \"defaultMessage\": \"accepted\"\n },\n 'misapplied name': {\n \"id\": \"option.taxonomicStatuses.misapplied name\",\n \"defaultMessage\": \"misapplied name\"\n }\n })\n },\n taxonRanks: {\n values: ['domain', 'kingdom', 'phylum', 'division', 'family', 'class', 'order', 'genus', 'species'],\n messages: (0, _reactIntl.defineMessages)({\n domain: {\n \"id\": \"option.taxonRanks.domain\",\n \"defaultMessage\": \"domain\"\n },\n kingdom: {\n \"id\": \"option.taxonRanks.kingdom\",\n \"defaultMessage\": \"kingdom\"\n },\n phylum: {\n \"id\": \"option.taxonRanks.phylum\",\n \"defaultMessage\": \"phylum\"\n },\n division: {\n \"id\": \"option.taxonRanks.division\",\n \"defaultMessage\": \"division\"\n },\n family: {\n \"id\": \"option.taxonRanks.family\",\n \"defaultMessage\": \"family\"\n },\n class: {\n \"id\": \"option.taxonRanks.class\",\n \"defaultMessage\": \"class\"\n },\n order: {\n \"id\": \"option.taxonRanks.order\",\n \"defaultMessage\": \"order\"\n },\n genus: {\n \"id\": \"option.taxonRanks.genus\",\n \"defaultMessage\": \"genus\"\n },\n species: {\n \"id\": \"option.taxonRanks.species\",\n \"defaultMessage\": \"species\"\n }\n })\n },\n taxonCurrencies: {\n values: ['current', 'obsolete', 'archaic'],\n messages: (0, _reactIntl.defineMessages)({\n current: {\n \"id\": \"option.taxonCurrencies.current\",\n \"defaultMessage\": \"current\"\n },\n obsolete: {\n \"id\": \"option.taxonCurrencies.obsolete\",\n \"defaultMessage\": \"obsolete\"\n },\n archaic: {\n \"id\": \"option.taxonCurrencies.archaic\",\n \"defaultMessage\": \"archaic\"\n }\n })\n },\n taxonAuthorTypes: {\n values: ['ascribed', 'parenthetical'],\n messages: (0, _reactIntl.defineMessages)({\n ascribed: {\n \"id\": \"option.taxonAuthorTypes.ascribed\",\n \"defaultMessage\": \"ascribed\"\n },\n parenthetical: {\n \"id\": \"option.taxonAuthorTypes.parenthetical\",\n \"defaultMessage\": \"parenthetical\"\n }\n })\n }\n};\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/optionLists.js?");
567
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = {\n taxonTermTypes: {\n values: ['descriptor', 'alternate descriptor', 'used for term'],\n messages: (0, _reactIntl.defineMessages)({\n descriptor: {\n \"id\": \"option.taxonTermTypes.descriptor\",\n \"defaultMessage\": \"descriptor\"\n },\n 'alternate descriptor': {\n \"id\": \"option.taxonTermTypes.alternate descriptor\",\n \"defaultMessage\": \"alternate descriptor\"\n },\n 'used for term': {\n \"id\": \"option.taxonTermTypes.used for term\",\n \"defaultMessage\": \"used for term\"\n }\n })\n },\n taxonTermStatuses: {\n values: ['provisional', 'under review', 'accepted', 'rejected'],\n messages: (0, _reactIntl.defineMessages)({\n provisional: {\n \"id\": \"option.taxonTermStatuses.provisional\",\n \"defaultMessage\": \"provisional\"\n },\n 'under review': {\n \"id\": \"option.taxonTermStatuses.under review\",\n \"defaultMessage\": \"under review\"\n },\n accepted: {\n \"id\": \"option.taxonTermStatuses.accepted\",\n \"defaultMessage\": \"accepted\"\n },\n rejected: {\n \"id\": \"option.taxonTermStatuses.rejected\",\n \"defaultMessage\": \"rejected\"\n }\n })\n },\n taxonomicStatuses: {\n values: ['valid', 'invalid', 'accepted', 'misapplied name'],\n messages: (0, _reactIntl.defineMessages)({\n valid: {\n \"id\": \"option.taxonomicStatuses.valid\",\n \"defaultMessage\": \"valid\"\n },\n invalid: {\n \"id\": \"option.taxonomicStatuses.invalid\",\n \"defaultMessage\": \"invalid\"\n },\n accepted: {\n \"id\": \"option.taxonomicStatuses.accepted\",\n \"defaultMessage\": \"accepted\"\n },\n 'misapplied name': {\n \"id\": \"option.taxonomicStatuses.misapplied name\",\n \"defaultMessage\": \"misapplied name\"\n }\n })\n },\n taxonRanks: {\n values: ['domain', 'kingdom', 'phylum', 'division', 'family', 'class', 'order', 'genus', 'species'],\n messages: (0, _reactIntl.defineMessages)({\n domain: {\n \"id\": \"option.taxonRanks.domain\",\n \"defaultMessage\": \"domain\"\n },\n kingdom: {\n \"id\": \"option.taxonRanks.kingdom\",\n \"defaultMessage\": \"kingdom\"\n },\n phylum: {\n \"id\": \"option.taxonRanks.phylum\",\n \"defaultMessage\": \"phylum\"\n },\n division: {\n \"id\": \"option.taxonRanks.division\",\n \"defaultMessage\": \"division\"\n },\n family: {\n \"id\": \"option.taxonRanks.family\",\n \"defaultMessage\": \"family\"\n },\n class: {\n \"id\": \"option.taxonRanks.class\",\n \"defaultMessage\": \"class\"\n },\n order: {\n \"id\": \"option.taxonRanks.order\",\n \"defaultMessage\": \"order\"\n },\n genus: {\n \"id\": \"option.taxonRanks.genus\",\n \"defaultMessage\": \"genus\"\n },\n species: {\n \"id\": \"option.taxonRanks.species\",\n \"defaultMessage\": \"species\"\n }\n })\n },\n taxonCurrencies: {\n values: ['current', 'obsolete', 'archaic'],\n messages: (0, _reactIntl.defineMessages)({\n current: {\n \"id\": \"option.taxonCurrencies.current\",\n \"defaultMessage\": \"current\"\n },\n obsolete: {\n \"id\": \"option.taxonCurrencies.obsolete\",\n \"defaultMessage\": \"obsolete\"\n },\n archaic: {\n \"id\": \"option.taxonCurrencies.archaic\",\n \"defaultMessage\": \"archaic\"\n }\n })\n },\n taxonAuthorTypes: {\n values: ['ascribed', 'parenthetical'],\n messages: (0, _reactIntl.defineMessages)({\n ascribed: {\n \"id\": \"option.taxonAuthorTypes.ascribed\",\n \"defaultMessage\": \"ascribed\"\n },\n parenthetical: {\n \"id\": \"option.taxonAuthorTypes.parenthetical\",\n \"defaultMessage\": \"parenthetical\"\n }\n })\n }\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/optionLists.js?");
372
568
 
373
569
  /***/ }),
374
570
 
@@ -376,11 +572,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
376
572
  /*!*************************************************************************!*\
377
573
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/serviceConfig.js ***!
378
574
  \*************************************************************************/
379
- /*! no static exports found */
380
- /***/ (function(module, exports, __webpack_require__) {
575
+ /***/ ((__unused_webpack_module, exports) => {
381
576
 
382
577
  "use strict";
383
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\nvar _default = {\n serviceName: 'Taxon',\n servicePath: 'taxonomyauthority',\n serviceType: 'authority',\n objectName: 'Taxon',\n documentName: 'taxon',\n quickAddData: values => ({\n document: {\n 'ns2:taxon_common': {\n '@xmlns:ns2': 'http://collectionspace.org/services/taxonomy',\n taxonTermGroupList: {\n taxonTermGroup: [{\n termDisplayName: values.displayName\n }]\n }\n }\n }\n })\n};\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/serviceConfig.js?");
578
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _default = {\n serviceName: 'Taxon',\n servicePath: 'taxonomyauthority',\n serviceType: 'authority',\n objectName: 'Taxon',\n documentName: 'taxon',\n quickAddData: values => ({\n document: {\n 'ns2:taxon_common': {\n '@xmlns:ns2': 'http://collectionspace.org/services/taxonomy',\n taxonTermGroupList: {\n taxonTermGroup: [{\n termDisplayName: values.displayName\n }]\n }\n }\n }\n })\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/serviceConfig.js?");
384
579
 
385
580
  /***/ }),
386
581
 
@@ -388,11 +583,10 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
388
583
  /*!*****************************************************************!*\
389
584
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/title.js ***!
390
585
  \*****************************************************************/
391
- /*! no static exports found */
392
- /***/ (function(module, exports, __webpack_require__) {
586
+ /***/ ((__unused_webpack_module, exports) => {
393
587
 
394
588
  "use strict";
395
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _default = configContext => data => {\n const {\n deepGet,\n getPart\n } = configContext.recordDataHelpers;\n\n if (!data) {\n return '';\n }\n\n const common = getPart(data, 'taxon_common');\n\n if (!common) {\n return '';\n }\n\n const displayName = deepGet(common, ['taxonTermGroupList', 'taxonTermGroup', 0, 'termDisplayName']);\n const termStatus = deepGet(common, ['taxonTermGroupList', 'taxonTermGroup', 0, 'termStatus']);\n return [displayName, termStatus].filter(part => !!part).join(' – ');\n};\n\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/title.js?");
589
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _default = configContext => data => {\n const {\n deepGet,\n getPart\n } = configContext.recordDataHelpers;\n if (!data) {\n return '';\n }\n const common = getPart(data, 'taxon_common');\n if (!common) {\n return '';\n }\n const displayName = deepGet(common, ['taxonTermGroupList', 'taxonTermGroup', 0, 'termDisplayName']);\n const termStatus = deepGet(common, ['taxonTermGroupList', 'taxonTermGroup', 0, 'termStatus']);\n return [displayName, termStatus].filter(part => !!part).join(' – ');\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/title.js?");
396
590
 
397
591
  /***/ }),
398
592
 
@@ -400,22 +594,21 @@ eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\n
400
594
  /*!************************************************************************!*\
401
595
  !*** ./node_modules/cspace-ui-plugin-record-taxon/lib/vocabularies.js ***!
402
596
  \************************************************************************/
403
- /*! no static exports found */
404
- /***/ (function(module, exports, __webpack_require__) {
597
+ /***/ ((__unused_webpack_module, exports, __webpack_require__) => {
405
598
 
406
599
  "use strict";
407
- eval("\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n\nvar _default = {\n all: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"vocab.taxon.all.name\",\n \"defaultMessage\": \"All\"\n },\n collectionName: {\n \"id\": \"vocab.taxon.all.collectionName\",\n \"defaultMessage\": \"All Taxonomic Names\"\n },\n itemName: {\n \"id\": \"vocab.taxon.all.itemName\",\n \"defaultMessage\": \"Taxonomic Name\"\n }\n }),\n serviceConfig: {\n servicePath: '_ALL_'\n },\n type: 'all'\n },\n local: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"vocab.taxon.local.name\",\n \"defaultMessage\": \"Local\"\n },\n collectionName: {\n \"id\": \"vocab.taxon.local.collectionName\",\n \"defaultMessage\": \"Local Taxonomic Names\"\n },\n itemName: {\n \"id\": \"vocab.taxon.local.itemName\",\n \"defaultMessage\": \"Local Taxonomic Name\"\n }\n }),\n serviceConfig: {\n servicePath: 'urn:cspace:name(taxon)'\n },\n sortOrder: 0\n },\n common: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"vocab.taxon.common.name\",\n \"defaultMessage\": \"Common\"\n },\n collectionName: {\n \"id\": \"vocab.taxon.common.collectionName\",\n \"defaultMessage\": \"Common Taxonomic Names\"\n },\n itemName: {\n \"id\": \"vocab.taxon.common.itemName\",\n \"defaultMessage\": \"Common Taxonomic Name\"\n }\n }),\n serviceConfig: {\n servicePath: 'urn:cspace:name(common_ta)'\n }\n }\n};\nexports.default = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/vocabularies.js?");
600
+ eval("\n\nObject.defineProperty(exports, \"__esModule\", ({\n value: true\n}));\nexports[\"default\"] = void 0;\nvar _reactIntl = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\nvar _default = {\n all: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"vocab.taxon.all.name\",\n \"defaultMessage\": \"All\"\n },\n collectionName: {\n \"id\": \"vocab.taxon.all.collectionName\",\n \"defaultMessage\": \"All Taxonomic Names\"\n },\n itemName: {\n \"id\": \"vocab.taxon.all.itemName\",\n \"defaultMessage\": \"Taxonomic Name\"\n }\n }),\n serviceConfig: {\n servicePath: '_ALL_'\n },\n type: 'all'\n },\n local: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"vocab.taxon.local.name\",\n \"defaultMessage\": \"Local\"\n },\n collectionName: {\n \"id\": \"vocab.taxon.local.collectionName\",\n \"defaultMessage\": \"Local Taxonomic Names\"\n },\n itemName: {\n \"id\": \"vocab.taxon.local.itemName\",\n \"defaultMessage\": \"Local Taxonomic Name\"\n }\n }),\n serviceConfig: {\n servicePath: 'urn:cspace:name(taxon)'\n },\n sortOrder: 0\n },\n common: {\n messages: (0, _reactIntl.defineMessages)({\n name: {\n \"id\": \"vocab.taxon.common.name\",\n \"defaultMessage\": \"Common\"\n },\n collectionName: {\n \"id\": \"vocab.taxon.common.collectionName\",\n \"defaultMessage\": \"Common Taxonomic Names\"\n },\n itemName: {\n \"id\": \"vocab.taxon.common.itemName\",\n \"defaultMessage\": \"Common Taxonomic Name\"\n }\n }),\n serviceConfig: {\n servicePath: 'urn:cspace:name(common_ta)'\n }\n }\n};\nexports[\"default\"] = _default;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/cspace-ui-plugin-record-taxon/lib/vocabularies.js?");
408
601
 
409
602
  /***/ }),
410
603
 
411
- /***/ "./node_modules/css-loader/dist/cjs.js?!./styles/cspace-ui-plugin-profile/bonsai.css":
412
- /*!****************************************************************************************************!*\
413
- !*** ./node_modules/css-loader/dist/cjs.js??ref--5-1!./styles/cspace-ui-plugin-profile/bonsai.css ***!
414
- \****************************************************************************************************/
415
- /*! no static exports found */
416
- /***/ (function(module, exports, __webpack_require__) {
604
+ /***/ "./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./styles/cspace-ui-plugin-profile/bonsai.css":
605
+ /*!**********************************************************************************************************************!*\
606
+ !*** ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./styles/cspace-ui-plugin-profile/bonsai.css ***!
607
+ \**********************************************************************************************************************/
608
+ /***/ ((module, __webpack_exports__, __webpack_require__) => {
417
609
 
418
- eval("exports = module.exports = __webpack_require__(/*! ../../node_modules/css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\")(false);\n// Module\nexports.push([module.i, \"\", \"\"]);\n\n\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./styles/cspace-ui-plugin-profile/bonsai.css?./node_modules/css-loader/dist/cjs.js??ref--5-1");
610
+ "use strict";
611
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ../../node_modules/css-loader/dist/runtime/noSourceMaps.js */ \"./node_modules/css-loader/dist/runtime/noSourceMaps.js\");\n/* harmony import */ var _node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../node_modules/css-loader/dist/runtime/api.js */ \"./node_modules/css-loader/dist/runtime/api.js\");\n/* harmony import */ var _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1__);\n// Imports\n\n\nvar ___CSS_LOADER_EXPORT___ = _node_modules_css_loader_dist_runtime_api_js__WEBPACK_IMPORTED_MODULE_1___default()((_node_modules_css_loader_dist_runtime_noSourceMaps_js__WEBPACK_IMPORTED_MODULE_0___default()));\n// Module\n___CSS_LOADER_EXPORT___.push([module.id, \"\", \"\"]);\n// Exports\n___CSS_LOADER_EXPORT___.locals = {};\n/* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (___CSS_LOADER_EXPORT___);\n\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./styles/cspace-ui-plugin-profile/bonsai.css?./node_modules/css-loader/dist/cjs.js??ruleSet%5B1%5D.rules%5B1%5D.use%5B1%5D");
419
612
 
420
613
  /***/ }),
421
614
 
@@ -423,358 +616,182 @@ eval("exports = module.exports = __webpack_require__(/*! ../../node_modules/css-
423
616
  /*!*****************************************************!*\
424
617
  !*** ./node_modules/css-loader/dist/runtime/api.js ***!
425
618
  \*****************************************************/
426
- /*! no static exports found */
427
- /***/ (function(module, exports, __webpack_require__) {
428
-
429
- "use strict";
430
- eval("\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return '@media ' + item[2] + '{' + content + '}';\n } else {\n return content;\n }\n }).join('');\n }; // import a list of modules into the list\n\n\n list.i = function (modules, mediaQuery) {\n if (typeof modules === 'string') {\n modules = [[null, modules, '']];\n }\n\n var alreadyImportedModules = {};\n\n for (var i = 0; i < this.length; i++) {\n var id = this[i][0];\n\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n\n for (i = 0; i < modules.length; i++) {\n var item = modules[i]; // skip already imported module\n // this implementation is not 100% perfect for weird media query combinations\n // when a module is imported multiple times with different media queries.\n // I hope this will never occur (Hey this way we have smaller bundles)\n\n if (item[0] == null || !alreadyImportedModules[item[0]]) {\n if (mediaQuery && !item[2]) {\n item[2] = mediaQuery;\n } else if (mediaQuery) {\n item[2] = '(' + item[2] + ') and (' + mediaQuery + ')';\n }\n\n list.push(item);\n }\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || '';\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return '/*# sourceURL=' + cssMapping.sourceRoot + source + ' */';\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = 'sourceMappingURL=data:application/json;charset=utf-8;base64,' + base64;\n return '/*# ' + data + ' */';\n}\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/css-loader/dist/runtime/api.js?");
431
-
432
- /***/ }),
433
-
434
- /***/ "./node_modules/style-loader/addStyles.js":
435
- /*!************************************************!*\
436
- !*** ./node_modules/style-loader/addStyles.js ***!
437
- \************************************************/
438
- /*! no static exports found */
439
- /***/ (function(module, exports) {
440
-
441
- eval("/*\n\tMIT License http://www.opensource.org/licenses/mit-license.php\n\tAuthor Tobias Koppers @sokra\n*/\nvar stylesInDom = {},\n\tmemoize = function(fn) {\n\t\tvar memo;\n\t\treturn function () {\n\t\t\tif (typeof memo === \"undefined\") memo = fn.apply(this, arguments);\n\t\t\treturn memo;\n\t\t};\n\t},\n\tisOldIE = memoize(function() {\n\t\treturn /msie [6-9]\\b/.test(self.navigator.userAgent.toLowerCase());\n\t}),\n\tgetHeadElement = memoize(function () {\n\t\treturn document.head || document.getElementsByTagName(\"head\")[0];\n\t}),\n\tsingletonElement = null,\n\tsingletonCounter = 0,\n\tstyleElementsInsertedAtTop = [];\n\nmodule.exports = function(list, options) {\n\tif(typeof DEBUG !== \"undefined\" && DEBUG) {\n\t\tif(typeof document !== \"object\") throw new Error(\"The style-loader cannot be used in a non-browser environment\");\n\t}\n\n\toptions = options || {};\n\t// Force single-tag solution on IE6-9, which has a hard limit on the # of <style>\n\t// tags it will allow on a page\n\tif (typeof options.singleton === \"undefined\") options.singleton = isOldIE();\n\n\t// By default, add <style> tags to the bottom of <head>.\n\tif (typeof options.insertAt === \"undefined\") options.insertAt = \"bottom\";\n\n\tvar styles = listToStyles(list);\n\taddStylesToDom(styles, options);\n\n\treturn function update(newList) {\n\t\tvar mayRemove = [];\n\t\tfor(var i = 0; i < styles.length; i++) {\n\t\t\tvar item = styles[i];\n\t\t\tvar domStyle = stylesInDom[item.id];\n\t\t\tdomStyle.refs--;\n\t\t\tmayRemove.push(domStyle);\n\t\t}\n\t\tif(newList) {\n\t\t\tvar newStyles = listToStyles(newList);\n\t\t\taddStylesToDom(newStyles, options);\n\t\t}\n\t\tfor(var i = 0; i < mayRemove.length; i++) {\n\t\t\tvar domStyle = mayRemove[i];\n\t\t\tif(domStyle.refs === 0) {\n\t\t\t\tfor(var j = 0; j < domStyle.parts.length; j++)\n\t\t\t\t\tdomStyle.parts[j]();\n\t\t\t\tdelete stylesInDom[domStyle.id];\n\t\t\t}\n\t\t}\n\t};\n}\n\nfunction addStylesToDom(styles, options) {\n\tfor(var i = 0; i < styles.length; i++) {\n\t\tvar item = styles[i];\n\t\tvar domStyle = stylesInDom[item.id];\n\t\tif(domStyle) {\n\t\t\tdomStyle.refs++;\n\t\t\tfor(var j = 0; j < domStyle.parts.length; j++) {\n\t\t\t\tdomStyle.parts[j](item.parts[j]);\n\t\t\t}\n\t\t\tfor(; j < item.parts.length; j++) {\n\t\t\t\tdomStyle.parts.push(addStyle(item.parts[j], options));\n\t\t\t}\n\t\t} else {\n\t\t\tvar parts = [];\n\t\t\tfor(var j = 0; j < item.parts.length; j++) {\n\t\t\t\tparts.push(addStyle(item.parts[j], options));\n\t\t\t}\n\t\t\tstylesInDom[item.id] = {id: item.id, refs: 1, parts: parts};\n\t\t}\n\t}\n}\n\nfunction listToStyles(list) {\n\tvar styles = [];\n\tvar newStyles = {};\n\tfor(var i = 0; i < list.length; i++) {\n\t\tvar item = list[i];\n\t\tvar id = item[0];\n\t\tvar css = item[1];\n\t\tvar media = item[2];\n\t\tvar sourceMap = item[3];\n\t\tvar part = {css: css, media: media, sourceMap: sourceMap};\n\t\tif(!newStyles[id])\n\t\t\tstyles.push(newStyles[id] = {id: id, parts: [part]});\n\t\telse\n\t\t\tnewStyles[id].parts.push(part);\n\t}\n\treturn styles;\n}\n\nfunction insertStyleElement(options, styleElement) {\n\tvar head = getHeadElement();\n\tvar lastStyleElementInsertedAtTop = styleElementsInsertedAtTop[styleElementsInsertedAtTop.length - 1];\n\tif (options.insertAt === \"top\") {\n\t\tif(!lastStyleElementInsertedAtTop) {\n\t\t\thead.insertBefore(styleElement, head.firstChild);\n\t\t} else if(lastStyleElementInsertedAtTop.nextSibling) {\n\t\t\thead.insertBefore(styleElement, lastStyleElementInsertedAtTop.nextSibling);\n\t\t} else {\n\t\t\thead.appendChild(styleElement);\n\t\t}\n\t\tstyleElementsInsertedAtTop.push(styleElement);\n\t} else if (options.insertAt === \"bottom\") {\n\t\thead.appendChild(styleElement);\n\t} else {\n\t\tthrow new Error(\"Invalid value for parameter 'insertAt'. Must be 'top' or 'bottom'.\");\n\t}\n}\n\nfunction removeStyleElement(styleElement) {\n\tstyleElement.parentNode.removeChild(styleElement);\n\tvar idx = styleElementsInsertedAtTop.indexOf(styleElement);\n\tif(idx >= 0) {\n\t\tstyleElementsInsertedAtTop.splice(idx, 1);\n\t}\n}\n\nfunction createStyleElement(options) {\n\tvar styleElement = document.createElement(\"style\");\n\tstyleElement.type = \"text/css\";\n\tinsertStyleElement(options, styleElement);\n\treturn styleElement;\n}\n\nfunction createLinkElement(options) {\n\tvar linkElement = document.createElement(\"link\");\n\tlinkElement.rel = \"stylesheet\";\n\tinsertStyleElement(options, linkElement);\n\treturn linkElement;\n}\n\nfunction addStyle(obj, options) {\n\tvar styleElement, update, remove;\n\n\tif (options.singleton) {\n\t\tvar styleIndex = singletonCounter++;\n\t\tstyleElement = singletonElement || (singletonElement = createStyleElement(options));\n\t\tupdate = applyToSingletonTag.bind(null, styleElement, styleIndex, false);\n\t\tremove = applyToSingletonTag.bind(null, styleElement, styleIndex, true);\n\t} else if(obj.sourceMap &&\n\t\ttypeof URL === \"function\" &&\n\t\ttypeof URL.createObjectURL === \"function\" &&\n\t\ttypeof URL.revokeObjectURL === \"function\" &&\n\t\ttypeof Blob === \"function\" &&\n\t\ttypeof btoa === \"function\") {\n\t\tstyleElement = createLinkElement(options);\n\t\tupdate = updateLink.bind(null, styleElement);\n\t\tremove = function() {\n\t\t\tremoveStyleElement(styleElement);\n\t\t\tif(styleElement.href)\n\t\t\t\tURL.revokeObjectURL(styleElement.href);\n\t\t};\n\t} else {\n\t\tstyleElement = createStyleElement(options);\n\t\tupdate = applyToTag.bind(null, styleElement);\n\t\tremove = function() {\n\t\t\tremoveStyleElement(styleElement);\n\t\t};\n\t}\n\n\tupdate(obj);\n\n\treturn function updateStyle(newObj) {\n\t\tif(newObj) {\n\t\t\tif(newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap)\n\t\t\t\treturn;\n\t\t\tupdate(obj = newObj);\n\t\t} else {\n\t\t\tremove();\n\t\t}\n\t};\n}\n\nvar replaceText = (function () {\n\tvar textStore = [];\n\n\treturn function (index, replacement) {\n\t\ttextStore[index] = replacement;\n\t\treturn textStore.filter(Boolean).join('\\n');\n\t};\n})();\n\nfunction applyToSingletonTag(styleElement, index, remove, obj) {\n\tvar css = remove ? \"\" : obj.css;\n\n\tif (styleElement.styleSheet) {\n\t\tstyleElement.styleSheet.cssText = replaceText(index, css);\n\t} else {\n\t\tvar cssNode = document.createTextNode(css);\n\t\tvar childNodes = styleElement.childNodes;\n\t\tif (childNodes[index]) styleElement.removeChild(childNodes[index]);\n\t\tif (childNodes.length) {\n\t\t\tstyleElement.insertBefore(cssNode, childNodes[index]);\n\t\t} else {\n\t\t\tstyleElement.appendChild(cssNode);\n\t\t}\n\t}\n}\n\nfunction applyToTag(styleElement, obj) {\n\tvar css = obj.css;\n\tvar media = obj.media;\n\n\tif(media) {\n\t\tstyleElement.setAttribute(\"media\", media)\n\t}\n\n\tif(styleElement.styleSheet) {\n\t\tstyleElement.styleSheet.cssText = css;\n\t} else {\n\t\twhile(styleElement.firstChild) {\n\t\t\tstyleElement.removeChild(styleElement.firstChild);\n\t\t}\n\t\tstyleElement.appendChild(document.createTextNode(css));\n\t}\n}\n\nfunction updateLink(linkElement, obj) {\n\tvar css = obj.css;\n\tvar sourceMap = obj.sourceMap;\n\n\tif(sourceMap) {\n\t\t// http://stackoverflow.com/a/26603875\n\t\tcss += \"\\n/*# sourceMappingURL=data:application/json;base64,\" + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + \" */\";\n\t}\n\n\tvar blob = new Blob([css], { type: \"text/css\" });\n\n\tvar oldSrc = linkElement.href;\n\n\tlinkElement.href = URL.createObjectURL(blob);\n\n\tif(oldSrc)\n\t\tURL.revokeObjectURL(oldSrc);\n}\n\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/style-loader/addStyles.js?");
442
-
443
- /***/ }),
444
-
445
- /***/ "./react-intl-stub.js":
446
- /*!****************************!*\
447
- !*** ./react-intl-stub.js ***!
448
- \****************************/
449
- /*! no static exports found */
450
- /***/ (function(module, exports) {
451
-
452
- eval("module.exports = {\n defineMessages: messages => messages\n};\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./react-intl-stub.js?");
453
-
454
- /***/ }),
455
-
456
- /***/ "./src/index.js":
457
- /*!**********************!*\
458
- !*** ./src/index.js ***!
459
- \**********************/
460
- /*! exports provided: default */
461
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
619
+ /***/ ((module) => {
462
620
 
463
621
  "use strict";
464
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var cspace_ui_plugin_ext_accessionattributes__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! cspace-ui-plugin-ext-accessionattributes */ \"./node_modules/cspace-ui-plugin-ext-accessionattributes/lib/index.js\");\n/* harmony import */ var cspace_ui_plugin_ext_accessionattributes__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(cspace_ui_plugin_ext_accessionattributes__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var cspace_ui_plugin_ext_livingplant__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! cspace-ui-plugin-ext-livingplant */ \"./node_modules/cspace-ui-plugin-ext-livingplant/lib/index.js\");\n/* harmony import */ var cspace_ui_plugin_ext_livingplant__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(cspace_ui_plugin_ext_livingplant__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var cspace_ui_plugin_record_taxon__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! cspace-ui-plugin-record-taxon */ \"./node_modules/cspace-ui-plugin-record-taxon/lib/index.js\");\n/* harmony import */ var cspace_ui_plugin_record_taxon__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(cspace_ui_plugin_record_taxon__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _messages__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./messages */ \"./src/messages.js\");\n/* harmony import */ var _plugins__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./plugins */ \"./src/plugins/index.js\");\n/* harmony import */ var _styles_cspace_ui_plugin_profile_bonsai_css__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ../styles/cspace-ui-plugin-profile/bonsai.css */ \"./styles/cspace-ui-plugin-profile/bonsai.css\");\n/* harmony import */ var _styles_cspace_ui_plugin_profile_bonsai_css__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(_styles_cspace_ui_plugin_profile_bonsai_css__WEBPACK_IMPORTED_MODULE_6__);\n/* global cspaceUIPluginProfileBonsai */\n\n/* The cspaceUIPluginProfileBonsai global variable is set by webpack (in non-test builds). See\n * webpack.config.js. */\n\n\n\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => ({\n messages: _messages__WEBPACK_IMPORTED_MODULE_4__[\"default\"],\n className: _styles_cspace_ui_plugin_profile_bonsai_css__WEBPACK_IMPORTED_MODULE_6___default.a.common,\n prettyUrls: true,\n tenantId: '3000',\n pluginInfo: {\n cspaceUIPluginProfileBonsai: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"cspaceUIPluginProfileBonsai.name\",\n \"defaultMessage\": \"Bonsai profile\"\n }\n }),\n version: \"5.0.2\"\n }\n },\n plugins: [cspace_ui_plugin_ext_accessionattributes__WEBPACK_IMPORTED_MODULE_1___default()(), cspace_ui_plugin_ext_livingplant__WEBPACK_IMPORTED_MODULE_2___default()(), cspace_ui_plugin_record_taxon__WEBPACK_IMPORTED_MODULE_3___default()(), ..._plugins__WEBPACK_IMPORTED_MODULE_5__[\"default\"].map(plugin => plugin())]\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/index.js?");
622
+ eval("\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\nmodule.exports = function (cssWithMappingToString) {\n var list = [];\n\n // return the list of modules as css string\n list.toString = function toString() {\n return this.map(function (item) {\n var content = \"\";\n var needLayer = typeof item[5] !== \"undefined\";\n if (item[4]) {\n content += \"@supports (\".concat(item[4], \") {\");\n }\n if (item[2]) {\n content += \"@media \".concat(item[2], \" {\");\n }\n if (needLayer) {\n content += \"@layer\".concat(item[5].length > 0 ? \" \".concat(item[5]) : \"\", \" {\");\n }\n content += cssWithMappingToString(item);\n if (needLayer) {\n content += \"}\";\n }\n if (item[2]) {\n content += \"}\";\n }\n if (item[4]) {\n content += \"}\";\n }\n return content;\n }).join(\"\");\n };\n\n // import a list of modules into the list\n list.i = function i(modules, media, dedupe, supports, layer) {\n if (typeof modules === \"string\") {\n modules = [[null, modules, undefined]];\n }\n var alreadyImportedModules = {};\n if (dedupe) {\n for (var k = 0; k < this.length; k++) {\n var id = this[k][0];\n if (id != null) {\n alreadyImportedModules[id] = true;\n }\n }\n }\n for (var _k = 0; _k < modules.length; _k++) {\n var item = [].concat(modules[_k]);\n if (dedupe && alreadyImportedModules[item[0]]) {\n continue;\n }\n if (typeof layer !== \"undefined\") {\n if (typeof item[5] === \"undefined\") {\n item[5] = layer;\n } else {\n item[1] = \"@layer\".concat(item[5].length > 0 ? \" \".concat(item[5]) : \"\", \" {\").concat(item[1], \"}\");\n item[5] = layer;\n }\n }\n if (media) {\n if (!item[2]) {\n item[2] = media;\n } else {\n item[1] = \"@media \".concat(item[2], \" {\").concat(item[1], \"}\");\n item[2] = media;\n }\n }\n if (supports) {\n if (!item[4]) {\n item[4] = \"\".concat(supports);\n } else {\n item[1] = \"@supports (\".concat(item[4], \") {\").concat(item[1], \"}\");\n item[4] = supports;\n }\n }\n list.push(item);\n }\n };\n return list;\n};\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/css-loader/dist/runtime/api.js?");
465
623
 
466
624
  /***/ }),
467
625
 
468
- /***/ "./src/messages.js":
469
- /*!*************************!*\
470
- !*** ./src/messages.js ***!
471
- \*************************/
472
- /*! exports provided: default */
473
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
474
-
475
- "use strict";
476
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n 'about.title': 'Welcome to CollectionSpace: Bonsai',\n 'field.conservation_common.conservator.name': 'Performed by'\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/messages.js?");
477
-
478
- /***/ }),
479
-
480
- /***/ "./src/plugins/index.js":
481
- /*!******************************!*\
482
- !*** ./src/plugins/index.js ***!
483
- \******************************/
484
- /*! exports provided: default */
485
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
626
+ /***/ "./node_modules/css-loader/dist/runtime/noSourceMaps.js":
627
+ /*!**************************************************************!*\
628
+ !*** ./node_modules/css-loader/dist/runtime/noSourceMaps.js ***!
629
+ \**************************************************************/
630
+ /***/ ((module) => {
486
631
 
487
632
  "use strict";
488
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _recordTypes__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./recordTypes */ \"./src/plugins/recordTypes/index.js\");\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ([..._recordTypes__WEBPACK_IMPORTED_MODULE_0__[\"default\"]]);\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/index.js?");
633
+ eval("\n\nmodule.exports = function (i) {\n return i[1];\n};\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/css-loader/dist/runtime/noSourceMaps.js?");
489
634
 
490
635
  /***/ }),
491
636
 
492
- /***/ "./src/plugins/recordTypes/collectionobject/advancedSearch.js":
493
- /*!********************************************************************!*\
494
- !*** ./src/plugins/recordTypes/collectionobject/advancedSearch.js ***!
495
- \********************************************************************/
496
- /*! exports provided: default */
497
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
637
+ /***/ "./styles/cspace-ui-plugin-profile/bonsai.css":
638
+ /*!****************************************************!*\
639
+ !*** ./styles/cspace-ui-plugin-profile/bonsai.css ***!
640
+ \****************************************************/
641
+ /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
498
642
 
499
643
  "use strict";
500
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => {\n const {\n OP_EQ,\n OP_CONTAIN\n } = configContext.searchOperators;\n const {\n defaultAdvancedSearchBooleanOp,\n extensions\n } = configContext.config;\n return {\n op: defaultAdvancedSearchBooleanOp,\n value: [{\n op: OP_CONTAIN,\n path: 'ns2:collectionobjects_common/objectNumber'\n }, {\n op: OP_EQ,\n path: 'ns2:collectionobjects_bonsai/taxon'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:collectionobjects_bonsai/commonName'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:collectionobjects_bonsai/japaneseName'\n }, {\n op: OP_CONTAIN,\n path: 'ns2:collectionobjects_bonsai/sponsor'\n }, {\n op: OP_EQ,\n path: 'ns2:collectionobjects_bonsai/treeType'\n }, ...extensions.core.advancedSearch]\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/advancedSearch.js?");
644
+ eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ \"default\": () => (__WEBPACK_DEFAULT_EXPORT__)\n/* harmony export */ });\n/* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! !../../node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js */ \"./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js\");\n/* harmony import */ var _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! !../../node_modules/style-loader/dist/runtime/styleDomAPI.js */ \"./node_modules/style-loader/dist/runtime/styleDomAPI.js\");\n/* harmony import */ var _node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! !../../node_modules/style-loader/dist/runtime/insertBySelector.js */ \"./node_modules/style-loader/dist/runtime/insertBySelector.js\");\n/* harmony import */ var _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! !../../node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js */ \"./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js\");\n/* harmony import */ var _node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! !../../node_modules/style-loader/dist/runtime/insertStyleElement.js */ \"./node_modules/style-loader/dist/runtime/insertStyleElement.js\");\n/* harmony import */ var _node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var _node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! !../../node_modules/style-loader/dist/runtime/styleTagTransform.js */ \"./node_modules/style-loader/dist/runtime/styleTagTransform.js\");\n/* harmony import */ var _node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_bonsai_css__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! !!../../node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./bonsai.css */ \"./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./styles/cspace-ui-plugin-profile/bonsai.css\");\n\n \n \n \n \n \n \n \n \n \n\nvar options = {};\n\noptions.styleTagTransform = (_node_modules_style_loader_dist_runtime_styleTagTransform_js__WEBPACK_IMPORTED_MODULE_5___default());\noptions.setAttributes = (_node_modules_style_loader_dist_runtime_setAttributesWithoutAttributes_js__WEBPACK_IMPORTED_MODULE_3___default());\n\n options.insert = _node_modules_style_loader_dist_runtime_insertBySelector_js__WEBPACK_IMPORTED_MODULE_2___default().bind(null, \"head\");\n \noptions.domAPI = (_node_modules_style_loader_dist_runtime_styleDomAPI_js__WEBPACK_IMPORTED_MODULE_1___default());\noptions.insertStyleElement = (_node_modules_style_loader_dist_runtime_insertStyleElement_js__WEBPACK_IMPORTED_MODULE_4___default());\n\nvar update = _node_modules_style_loader_dist_runtime_injectStylesIntoStyleTag_js__WEBPACK_IMPORTED_MODULE_0___default()(_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_bonsai_css__WEBPACK_IMPORTED_MODULE_6__[\"default\"], options);\n\n\n\n\n /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (_node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_bonsai_css__WEBPACK_IMPORTED_MODULE_6__[\"default\"] && _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_bonsai_css__WEBPACK_IMPORTED_MODULE_6__[\"default\"].locals ? _node_modules_css_loader_dist_cjs_js_ruleSet_1_rules_1_use_1_bonsai_css__WEBPACK_IMPORTED_MODULE_6__[\"default\"].locals : undefined);\n\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./styles/cspace-ui-plugin-profile/bonsai.css?");
501
645
 
502
646
  /***/ }),
503
647
 
504
- /***/ "./src/plugins/recordTypes/collectionobject/fields.js":
505
- /*!************************************************************!*\
506
- !*** ./src/plugins/recordTypes/collectionobject/fields.js ***!
507
- \************************************************************/
508
- /*! exports provided: default */
509
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
648
+ /***/ "./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js":
649
+ /*!****************************************************************************!*\
650
+ !*** ./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js ***!
651
+ \****************************************************************************/
652
+ /***/ ((module) => {
510
653
 
511
654
  "use strict";
512
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => {\n const {\n AutocompleteInput,\n CheckboxInput,\n CompoundInput,\n DateInput,\n TextInput,\n TermPickerInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_BOOL,\n DATA_TYPE_DATE\n } = configContext.dataTypes;\n const {\n extensions\n } = configContext.config;\n return {\n document: {\n 'ns2:collectionobjects_common': {\n contentPlaces: {\n contentPlace: {\n [config]: {\n view: {\n type: AutocompleteInput,\n props: {\n source: 'place/local,place/tgn'\n }\n }\n }\n }\n },\n objectProductionPlaceGroupList: {\n objectProductionPlaceGroup: {\n objectProductionPlace: {\n [config]: {\n view: {\n type: AutocompleteInput,\n props: {\n source: 'place/local,place/tgn'\n }\n }\n }\n }\n }\n }\n },\n 'ns2:collectionobjects_bonsai': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/collectionobject/local/bonsai'\n }\n },\n taxon: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.taxon.name\",\n \"defaultMessage\": \"Scientific name\"\n }\n }),\n view: {\n type: AutocompleteInput,\n props: {\n source: 'taxon/local,taxon/common'\n }\n }\n }\n },\n commonName: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.commonName.name\",\n \"defaultMessage\": \"Common name\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n japaneseName: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.japaneseName.name\",\n \"defaultMessage\": \"Japanese name\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n nativeSpecies: {\n [config]: {\n dataType: DATA_TYPE_BOOL,\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.nativeSpecies.name\",\n \"defaultMessage\": \"Native species?\"\n }\n }),\n view: {\n type: CheckboxInput\n }\n }\n },\n sponsor: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.sponsor.name\",\n \"defaultMessage\": \"Sponsor\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n },\n sponsorStartDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.sponsorStartDate.name\",\n \"defaultMessage\": \"Sponsor start date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n sponsorEndDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.sponsorEndDate.name\",\n \"defaultMessage\": \"Sponsor end date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n assignedVolunteers: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n assignedVolunteer: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.assignedVolunteer.name\",\n \"defaultMessage\": \"Assigned volunteer\"\n }\n }),\n repeating: true,\n view: {\n type: AutocompleteInput,\n props: {\n source: 'person/local,person/ulan'\n }\n }\n }\n }\n },\n potStyle: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.potStyle.name\",\n \"defaultMessage\": \"Pot style\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'potstyle'\n }\n }\n }\n },\n treeType: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.collectionobjects_bonsai.treeType.name\",\n \"defaultMessage\": \"Tree type\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'treetype'\n }\n }\n }\n }\n },\n ...extensions.accessionattributes.collectionobject.fields\n }\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/fields.js?");
655
+ eval("\n\nvar stylesInDOM = [];\n\nfunction getIndexByIdentifier(identifier) {\n var result = -1;\n\n for (var i = 0; i < stylesInDOM.length; i++) {\n if (stylesInDOM[i].identifier === identifier) {\n result = i;\n break;\n }\n }\n\n return result;\n}\n\nfunction modulesToDom(list, options) {\n var idCountMap = {};\n var identifiers = [];\n\n for (var i = 0; i < list.length; i++) {\n var item = list[i];\n var id = options.base ? item[0] + options.base : item[0];\n var count = idCountMap[id] || 0;\n var identifier = \"\".concat(id, \" \").concat(count);\n idCountMap[id] = count + 1;\n var indexByIdentifier = getIndexByIdentifier(identifier);\n var obj = {\n css: item[1],\n media: item[2],\n sourceMap: item[3],\n supports: item[4],\n layer: item[5]\n };\n\n if (indexByIdentifier !== -1) {\n stylesInDOM[indexByIdentifier].references++;\n stylesInDOM[indexByIdentifier].updater(obj);\n } else {\n var updater = addElementStyle(obj, options);\n options.byIndex = i;\n stylesInDOM.splice(i, 0, {\n identifier: identifier,\n updater: updater,\n references: 1\n });\n }\n\n identifiers.push(identifier);\n }\n\n return identifiers;\n}\n\nfunction addElementStyle(obj, options) {\n var api = options.domAPI(options);\n api.update(obj);\n\n var updater = function updater(newObj) {\n if (newObj) {\n if (newObj.css === obj.css && newObj.media === obj.media && newObj.sourceMap === obj.sourceMap && newObj.supports === obj.supports && newObj.layer === obj.layer) {\n return;\n }\n\n api.update(obj = newObj);\n } else {\n api.remove();\n }\n };\n\n return updater;\n}\n\nmodule.exports = function (list, options) {\n options = options || {};\n list = list || [];\n var lastIdentifiers = modulesToDom(list, options);\n return function update(newList) {\n newList = newList || [];\n\n for (var i = 0; i < lastIdentifiers.length; i++) {\n var identifier = lastIdentifiers[i];\n var index = getIndexByIdentifier(identifier);\n stylesInDOM[index].references--;\n }\n\n var newLastIdentifiers = modulesToDom(newList, options);\n\n for (var _i = 0; _i < lastIdentifiers.length; _i++) {\n var _identifier = lastIdentifiers[_i];\n\n var _index = getIndexByIdentifier(_identifier);\n\n if (stylesInDOM[_index].references === 0) {\n stylesInDOM[_index].updater();\n\n stylesInDOM.splice(_index, 1);\n }\n }\n\n lastIdentifiers = newLastIdentifiers;\n };\n};\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/style-loader/dist/runtime/injectStylesIntoStyleTag.js?");
513
656
 
514
657
  /***/ }),
515
658
 
516
- /***/ "./src/plugins/recordTypes/collectionobject/forms/default.jsx":
659
+ /***/ "./node_modules/style-loader/dist/runtime/insertBySelector.js":
517
660
  /*!********************************************************************!*\
518
- !*** ./src/plugins/recordTypes/collectionobject/forms/default.jsx ***!
661
+ !*** ./node_modules/style-loader/dist/runtime/insertBySelector.js ***!
519
662
  \********************************************************************/
520
- /*! exports provided: default */
521
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
522
-
523
- "use strict";
524
- eval("__webpack_require__.r(__webpack_exports__);\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Col,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field,\n InputTable\n } = configContext.recordComponents;\n const {\n extensions\n } = configContext.config;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"id\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"objectNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"taxon\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"commonName\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"japaneseName\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"nativeSpecies\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"collection\"\n }), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"namedCollections\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"namedCollection\"\n })))), /*#__PURE__*/React.createElement(Field, {\n name: \"recordStatus\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sponsor\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"sponsorStartDate\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sponsorEndDate\",\n subpath: \"ns2:collectionobjects_bonsai\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"publishToList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"publishTo\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"inventoryStatusList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"inventoryStatus\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"briefDescriptions\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"briefDescription\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"distinguishingFeatures\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"comments\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"comment\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assignedVolunteers\",\n subpath: \"ns2:collectionobjects_bonsai\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assignedVolunteer\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"computedCurrentLocation\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"annotationGroupList\",\n subpath: \"ns2:collectionobjects_annotation\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"annotationGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"annotationType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"annotationNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"annotationDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"annotationAuthor\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"titleGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"titleGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"title\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"titleLanguage\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"titleType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"titleTranslationSubGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"titleTranslationSubGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"titleTranslation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"titleTranslationLanguage\"\n }))))))))), /*#__PURE__*/React.createElement(Panel, {\n name: \"desc\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"copyNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"potStyle\",\n subpath: \"ns2:collectionobjects_bonsai\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"treeType\",\n subpath: \"ns2:collectionobjects_bonsai\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"physicalDescription\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"colors\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"color\"\n })), /*#__PURE__*/React.createElement(\"div\", null)), extensions.dimension.form, /*#__PURE__*/React.createElement(Panel, {\n name: \"accessionattributes\",\n collapsible: true,\n collapsed: true\n }, extensions.accessionattributes.collectionobject.forms.flowering, extensions.accessionattributes.collectionobject.forms.fruiting), /*#__PURE__*/React.createElement(Panel, {\n name: \"content\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentDescription\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"contentLanguages\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentLanguage\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentActivities\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentActivity\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentConcepts\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentConcept\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentPositions\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPosition\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentObjectGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentObjectGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentObject\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"contentObjectType\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"contentPeoples\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPeople\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPersons\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPerson\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentPlaces\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentPlace\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentScripts\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentScript\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentOrganizations\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentOrganization\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"contentEventNameGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentEventNameGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentEventName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"contentEventNameType\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"contentOtherGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentOtherGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"contentOther\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"contentOtherType\"\n }))))), /*#__PURE__*/React.createElement(Field, {\n name: \"contentNote\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"textInscript\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"textualInscriptionGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"textualInscriptionGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContent\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentInscriber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentLanguage\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentDateGroup\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentPosition\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentScript\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentMethod\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentInterpretation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentTranslation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionContentTransliteration\"\n }))))), /*#__PURE__*/React.createElement(Panel, {\n name: \"nonTextInscript\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"nonTextualInscriptionGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"nonTextualInscriptionGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescription\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionInscriber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionDateGroup\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionPosition\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionMethod\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"inscriptionDescriptionInterpretation\"\n })))))), /*#__PURE__*/React.createElement(Panel, {\n name: \"prod\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionDateGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionDateGroup\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"techniqueGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"techniqueGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"technique\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"techniqueType\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPlaceGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPlaceGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPlace\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPlaceRole\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionReasons\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionReason\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPersonGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPersonGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPerson\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionPersonRole\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionOrganizationGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionOrganizationGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionOrganization\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionOrganizationRole\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectProductionNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"hist\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"assoc\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivityGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivityGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivity\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivityType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocActivityNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocObjectGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocObjectGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocObject\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocObjectType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocObjectNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocConceptGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocConceptGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocConcept\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocConceptType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocConceptNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContextGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContextGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContext\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContextType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocCulturalContextNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganizationGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganizationGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganization\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganizationType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocOrganizationNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeopleGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeopleGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeople\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeopleType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPeopleNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPersonGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPersonGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPerson\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPersonType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPersonNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlaceGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlaceGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlace\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlaceType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocPlaceNote\"\n })))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(InputTable, {\n name: \"assocEvent\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventNameType\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventOrganizations\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventOrganization\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPeoples\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPeople\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPersons\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPerson\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPlaces\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventPlace\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"assocEventNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocDateGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocDateGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"assocStructuredDateGroup\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocDateType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"assocDateNote\"\n })))))), /*#__PURE__*/React.createElement(Field, {\n name: \"objectHistoryNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"usageGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"usageGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"usage\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"usageNote\"\n }))), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"owners\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"owner\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipDateGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipDateGroup\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipCategory\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipPlace\"\n }))), /*#__PURE__*/React.createElement(InputTable, {\n name: \"ownershipExchange\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipExchangeMethod\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipExchangeNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipExchangePriceCurrency\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownershipExchangePriceValue\"\n }))), /*#__PURE__*/React.createElement(Panel, {\n name: \"owner\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"ownersPersonalExperience\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownersPersonalResponse\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"ownersReferences\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"ownersReference\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"ownersContributionNote\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"viewer\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"viewersRole\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"viewersPersonalExperience\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"viewersPersonalResponse\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"viewersReferences\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"viewersReference\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"viewersContributionNote\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"reference\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"referenceGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"referenceGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"reference\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"referenceNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"collect\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionDateGroup\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionMethods\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionMethod\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionPlace\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionSources\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionSource\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectors\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollector\"\n }))), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionFeature\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"fieldCollectionNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"hierarchy\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"relation-list-item\",\n subpath: \"rel:relations-common-list\"\n })));\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => ({\n template: template(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/forms/default.jsx?");
525
-
526
- /***/ }),
527
-
528
- /***/ "./src/plugins/recordTypes/collectionobject/forms/index.js":
529
- /*!*****************************************************************!*\
530
- !*** ./src/plugins/recordTypes/collectionobject/forms/index.js ***!
531
- \*****************************************************************/
532
- /*! exports provided: default */
533
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
534
-
535
- "use strict";
536
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _default__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./default */ \"./src/plugins/recordTypes/collectionobject/forms/default.jsx\");\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => ({\n default: Object(_default__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext),\n inventory: {\n disabled: true\n },\n photo: {\n disabled: true\n },\n public: {\n disabled: true\n },\n timebased: {\n disabled: true\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/forms/index.js?");
537
-
538
- /***/ }),
539
-
540
- /***/ "./src/plugins/recordTypes/collectionobject/index.js":
541
- /*!***********************************************************!*\
542
- !*** ./src/plugins/recordTypes/collectionobject/index.js ***!
543
- \***********************************************************/
544
- /*! exports provided: default */
545
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
546
-
547
- "use strict";
548
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _advancedSearch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./advancedSearch */ \"./src/plugins/recordTypes/collectionobject/advancedSearch.js\");\n/* harmony import */ var _fields__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./fields */ \"./src/plugins/recordTypes/collectionobject/fields.js\");\n/* harmony import */ var _forms__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./forms */ \"./src/plugins/recordTypes/collectionobject/forms/index.js\");\n/* harmony import */ var _messages__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./messages */ \"./src/plugins/recordTypes/collectionobject/messages.js\");\n/* harmony import */ var _optionLists__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./optionLists */ \"./src/plugins/recordTypes/collectionobject/optionLists.js\");\n\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => configContext => ({\n optionLists: _optionLists__WEBPACK_IMPORTED_MODULE_4__[\"default\"],\n recordTypes: {\n collectionobject: {\n advancedSearch: Object(_advancedSearch__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext),\n fields: Object(_fields__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(configContext),\n forms: Object(_forms__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(configContext),\n messages: Object(_messages__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(configContext)\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/index.js?");
549
-
550
- /***/ }),
551
-
552
- /***/ "./src/plugins/recordTypes/collectionobject/messages.js":
553
- /*!**************************************************************!*\
554
- !*** ./src/plugins/recordTypes/collectionobject/messages.js ***!
555
- \**************************************************************/
556
- /*! exports provided: default */
557
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
663
+ /***/ ((module) => {
558
664
 
559
665
  "use strict";
560
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => {\n const {\n extensions\n } = configContext.config;\n return {\n inputTable: extensions.accessionattributes.collectionobject.messages.inputTable,\n panel: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n accessionattributes: {\n \"id\": \"panel.collectionobject.accessionattributes\",\n \"defaultMessage\": \"Accession Attributes\"\n }\n })\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/messages.js?");
666
+ eval("\n\nvar memo = {};\n/* istanbul ignore next */\n\nfunction getTarget(target) {\n if (typeof memo[target] === \"undefined\") {\n var styleTarget = document.querySelector(target); // Special case to return head of iframe instead of iframe itself\n\n if (window.HTMLIFrameElement && styleTarget instanceof window.HTMLIFrameElement) {\n try {\n // This will throw an exception if access to iframe is blocked\n // due to cross-origin restrictions\n styleTarget = styleTarget.contentDocument.head;\n } catch (e) {\n // istanbul ignore next\n styleTarget = null;\n }\n }\n\n memo[target] = styleTarget;\n }\n\n return memo[target];\n}\n/* istanbul ignore next */\n\n\nfunction insertBySelector(insert, style) {\n var target = getTarget(insert);\n\n if (!target) {\n throw new Error(\"Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.\");\n }\n\n target.appendChild(style);\n}\n\nmodule.exports = insertBySelector;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/style-loader/dist/runtime/insertBySelector.js?");
561
667
 
562
668
  /***/ }),
563
669
 
564
- /***/ "./src/plugins/recordTypes/collectionobject/optionLists.js":
565
- /*!*****************************************************************!*\
566
- !*** ./src/plugins/recordTypes/collectionobject/optionLists.js ***!
567
- \*****************************************************************/
568
- /*! exports provided: default */
569
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
670
+ /***/ "./node_modules/style-loader/dist/runtime/insertStyleElement.js":
671
+ /*!**********************************************************************!*\
672
+ !*** ./node_modules/style-loader/dist/runtime/insertStyleElement.js ***!
673
+ \**********************************************************************/
674
+ /***/ ((module) => {
570
675
 
571
676
  "use strict";
572
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n collections: {\n values: ['development', 'display', 'library-collection', 'permanent-collection', 'study-collection', 'teaching-collection'],\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n development: {\n \"id\": \"option.collections.development\",\n \"defaultMessage\": \"development\"\n },\n display: {\n \"id\": \"option.collections.display\",\n \"defaultMessage\": \"display\"\n }\n })\n }\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/collectionobject/optionLists.js?");
677
+ eval("\n\n/* istanbul ignore next */\nfunction insertStyleElement(options) {\n var element = document.createElement(\"style\");\n options.setAttributes(element, options.attributes);\n options.insert(element, options.options);\n return element;\n}\n\nmodule.exports = insertStyleElement;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/style-loader/dist/runtime/insertStyleElement.js?");
573
678
 
574
679
  /***/ }),
575
680
 
576
- /***/ "./src/plugins/recordTypes/conditioncheck/forms/default.jsx":
577
- /*!******************************************************************!*\
578
- !*** ./src/plugins/recordTypes/conditioncheck/forms/default.jsx ***!
579
- \******************************************************************/
580
- /*! exports provided: default */
581
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
681
+ /***/ "./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js":
682
+ /*!**********************************************************************************!*\
683
+ !*** ./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js ***!
684
+ \**********************************************************************************/
685
+ /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
582
686
 
583
687
  "use strict";
584
- eval("__webpack_require__.r(__webpack_exports__);\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Col,\n Cols,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"conditionCheckAndTechAssessmentInfo\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckRefNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckAssessmentDate\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"conditionChecker\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckNote\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"objectConditionAndTechAssessmentInfo\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"objectAuditCategory\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conservationTreatmentPriority\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"nextConditionCheckDate\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"completenessGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"completenessGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"completeness\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"completenessDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"completenessNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"techAssessmentGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"techAssessmentGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"techAssessment\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"techAssessmentDate\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"conditionCheckGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"condition\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conditionNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"objectRequirementInfo\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"displayRecommendations\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"handlingRecommendations\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"envRecommendations\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"specialRequirements\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalRequirements\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeld\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldBeginDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldEndDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"legalReqsHeldRenewDate\"\n }))), /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"salvagePriorityCodeGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"salvagePriorityCodeGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"salvagePriorityCode\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"salvagePriorityCodeDate\"\n })))), /*#__PURE__*/React.createElement(Col, null))));\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => ({\n template: template(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conditioncheck/forms/default.jsx?");
688
+ eval("\n\n/* istanbul ignore next */\nfunction setAttributesWithoutAttributes(styleElement) {\n var nonce = true ? __webpack_require__.nc : 0;\n\n if (nonce) {\n styleElement.setAttribute(\"nonce\", nonce);\n }\n}\n\nmodule.exports = setAttributesWithoutAttributes;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/style-loader/dist/runtime/setAttributesWithoutAttributes.js?");
585
689
 
586
690
  /***/ }),
587
691
 
588
- /***/ "./src/plugins/recordTypes/conditioncheck/forms/index.js":
692
+ /***/ "./node_modules/style-loader/dist/runtime/styleDomAPI.js":
589
693
  /*!***************************************************************!*\
590
- !*** ./src/plugins/recordTypes/conditioncheck/forms/index.js ***!
694
+ !*** ./node_modules/style-loader/dist/runtime/styleDomAPI.js ***!
591
695
  \***************************************************************/
592
- /*! exports provided: default */
593
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
696
+ /***/ ((module) => {
594
697
 
595
698
  "use strict";
596
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _default__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./default */ \"./src/plugins/recordTypes/conditioncheck/forms/default.jsx\");\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => ({\n default: Object(_default__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conditioncheck/forms/index.js?");
699
+ eval("\n\n/* istanbul ignore next */\nfunction apply(styleElement, options, obj) {\n var css = \"\";\n\n if (obj.supports) {\n css += \"@supports (\".concat(obj.supports, \") {\");\n }\n\n if (obj.media) {\n css += \"@media \".concat(obj.media, \" {\");\n }\n\n var needLayer = typeof obj.layer !== \"undefined\";\n\n if (needLayer) {\n css += \"@layer\".concat(obj.layer.length > 0 ? \" \".concat(obj.layer) : \"\", \" {\");\n }\n\n css += obj.css;\n\n if (needLayer) {\n css += \"}\";\n }\n\n if (obj.media) {\n css += \"}\";\n }\n\n if (obj.supports) {\n css += \"}\";\n }\n\n var sourceMap = obj.sourceMap;\n\n if (sourceMap && typeof btoa !== \"undefined\") {\n css += \"\\n/*# sourceMappingURL=data:application/json;base64,\".concat(btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))), \" */\");\n } // For old IE\n\n /* istanbul ignore if */\n\n\n options.styleTagTransform(css, styleElement, options.options);\n}\n\nfunction removeStyleElement(styleElement) {\n // istanbul ignore if\n if (styleElement.parentNode === null) {\n return false;\n }\n\n styleElement.parentNode.removeChild(styleElement);\n}\n/* istanbul ignore next */\n\n\nfunction domAPI(options) {\n var styleElement = options.insertStyleElement(options);\n return {\n update: function update(obj) {\n apply(styleElement, options, obj);\n },\n remove: function remove() {\n removeStyleElement(styleElement);\n }\n };\n}\n\nmodule.exports = domAPI;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/style-loader/dist/runtime/styleDomAPI.js?");
597
700
 
598
701
  /***/ }),
599
702
 
600
- /***/ "./src/plugins/recordTypes/conditioncheck/index.js":
601
- /*!*********************************************************!*\
602
- !*** ./src/plugins/recordTypes/conditioncheck/index.js ***!
603
- \*********************************************************/
604
- /*! exports provided: default */
605
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
703
+ /***/ "./node_modules/style-loader/dist/runtime/styleTagTransform.js":
704
+ /*!*********************************************************************!*\
705
+ !*** ./node_modules/style-loader/dist/runtime/styleTagTransform.js ***!
706
+ \*********************************************************************/
707
+ /***/ ((module) => {
606
708
 
607
709
  "use strict";
608
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _forms__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./forms */ \"./src/plugins/recordTypes/conditioncheck/forms/index.js\");\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => configContext => ({\n recordTypes: {\n conditioncheck: {\n forms: Object(_forms__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conditioncheck/index.js?");
609
-
610
- /***/ }),
611
-
612
- /***/ "./src/plugins/recordTypes/conservation/advancedSearch.js":
613
- /*!****************************************************************!*\
614
- !*** ./src/plugins/recordTypes/conservation/advancedSearch.js ***!
615
- \****************************************************************/
616
- /*! exports provided: default */
617
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
618
-
619
- "use strict";
620
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => {\n const {\n OP_EQ,\n OP_CONTAIN,\n OP_RANGE\n } = configContext.searchOperators;\n const {\n defaultAdvancedSearchBooleanOp,\n extensions\n } = configContext.config;\n return {\n op: defaultAdvancedSearchBooleanOp,\n value: [{\n op: OP_CONTAIN,\n path: 'ns2:conservation_common/conservationNumber'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/conservationStatusGroupList/conservationStatusGroup/status'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/treatmentPurpose'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_bonsai/treatmentsPerformed/treatmentPerformed'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/conservators/conservator'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/approvedBy'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_common/approvedDate'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_common/treatmentStartDate'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_common/treatmentEndDate'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_bonsai/futureTreatmentGroupList/futureTreatmentGroup/futureTreatment'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_bonsai/futureTreatmentGroupList/futureTreatmentGroup/futureTreatmentDate'\n }, {\n op: OP_EQ,\n path: 'ns2:conservation_common/destAnalysisGroupList/destAnalysisGroup/sampleBy'\n }, {\n op: OP_RANGE,\n path: 'ns2:conservation_livingplant/nextRepotting'\n }, ...extensions.core.advancedSearch]\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/advancedSearch.js?");
621
-
622
- /***/ }),
623
-
624
- /***/ "./src/plugins/recordTypes/conservation/fields.js":
625
- /*!********************************************************!*\
626
- !*** ./src/plugins/recordTypes/conservation/fields.js ***!
627
- \********************************************************/
628
- /*! exports provided: default */
629
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
630
-
631
- "use strict";
632
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => {\n const {\n CompoundInput,\n DateInput,\n TermPickerInput,\n TextInput\n } = configContext.inputComponents;\n const {\n configKey: config\n } = configContext.configHelpers;\n const {\n DATA_TYPE_DATE\n } = configContext.dataTypes;\n const {\n extensions\n } = configContext.config;\n return {\n document: {\n 'ns2:conservation_common': {\n conservators: {\n conservator: {\n [config]: {\n // Add a fullName message to disambiguate treatment \"performed by\" from repotting\n // \"performed by\"\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n fullName: {\n \"id\": \"field.conservation_common.conservator.fullName\",\n \"defaultMessage\": \"Treatment performed by\"\n }\n })\n }\n }\n }\n },\n 'ns2:conservation_bonsai': {\n [config]: {\n service: {\n ns: 'http://collectionspace.org/services/conservation/local/bonsai'\n }\n },\n treatmentsPerformed: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n treatmentPerformed: {\n [config]: {\n repeating: true,\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.conservation_bonsai.treatmentPerformed.name\",\n \"defaultMessage\": \"Treatment performed\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'treatmentperformed'\n }\n }\n }\n }\n },\n futureTreatmentGroupList: {\n [config]: {\n view: {\n type: CompoundInput\n }\n },\n futureTreatmentGroup: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n name: {\n \"id\": \"field.conservation_bonsai.futureTreatmentGroup.name\",\n \"defaultMessage\": \"Future treatment\"\n }\n }),\n repeating: true,\n view: {\n type: CompoundInput,\n props: {\n tabular: true\n }\n }\n },\n futureTreatment: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n fullName: {\n \"id\": \"field.conservation_bonsai.futureTreatment.fullName\",\n \"defaultMessage\": \"Future treatment\"\n },\n name: {\n \"id\": \"field.conservation_bonsai.futureTreatment.name\",\n \"defaultMessage\": \"Treatment\"\n }\n }),\n view: {\n type: TermPickerInput,\n props: {\n source: 'futuretreatment'\n }\n }\n }\n },\n futureTreatmentDate: {\n [config]: {\n dataType: DATA_TYPE_DATE,\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n fullName: {\n \"id\": \"field.conservation_bonsai.futureTreatmentDate.fullName\",\n \"defaultMessage\": \"Future treatment date\"\n },\n name: {\n \"id\": \"field.conservation_bonsai.futureTreatmentDate.name\",\n \"defaultMessage\": \"Date\"\n }\n }),\n view: {\n type: DateInput\n }\n }\n },\n futureTreatmentNote: {\n [config]: {\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n fullName: {\n \"id\": \"field.conservation_bonsai.futureTreatmentNote.fullName\",\n \"defaultMessage\": \"Future treatment note\"\n },\n name: {\n \"id\": \"field.conservation_bonsai.futureTreatmentNote.name\",\n \"defaultMessage\": \"Note\"\n }\n }),\n view: {\n type: TextInput\n }\n }\n }\n }\n }\n },\n ...extensions.livingplant.conservation.fields\n }\n };\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/fields.js?");
633
-
634
- /***/ }),
635
-
636
- /***/ "./src/plugins/recordTypes/conservation/forms/default.jsx":
637
- /*!****************************************************************!*\
638
- !*** ./src/plugins/recordTypes/conservation/forms/default.jsx ***!
639
- \****************************************************************/
640
- /*! exports provided: default */
641
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
642
-
643
- "use strict";
644
- eval("__webpack_require__.r(__webpack_exports__);\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Cols,\n Col,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n const {\n extensions\n } = configContext.config;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"info\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"conservationNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"conservationStatusGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"conservationStatusGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"status\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"statusDate\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentPurpose\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentsPerformed\",\n subpath: \"ns2:conservation_bonsai\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentPerformed\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"conservators\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"conservator\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"otherPartyGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"otherPartyGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"otherParty\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"otherPartyRole\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"otherPartyNote\"\n }))))), /*#__PURE__*/React.createElement(Field, {\n name: \"proposedTreatment\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"approvedBy\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"approvedDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentStartDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentEndDate\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"treatmentSummary\"\n })), /*#__PURE__*/React.createElement(Panel, {\n name: \"objectAnalysisInfo\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentGroupList\",\n subpath: \"ns2:conservation_bonsai\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatment\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"futureTreatmentNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"destAnalysisGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"destAnalysisGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"destAnalysisApprovedDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"destAnalysisApprovalNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sampleBy\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sampleDate\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"sampleDescription\"\n }), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"sampleReturned\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"sampleReturnedLocation\"\n }))))), /*#__PURE__*/React.createElement(Field, {\n name: \"analysisMethod\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"analysisResults\"\n })), extensions.livingplant.conservation.form);\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => ({\n template: template(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/forms/default.jsx?");
645
-
646
- /***/ }),
647
-
648
- /***/ "./src/plugins/recordTypes/conservation/forms/index.js":
649
- /*!*************************************************************!*\
650
- !*** ./src/plugins/recordTypes/conservation/forms/index.js ***!
651
- \*************************************************************/
652
- /*! exports provided: default */
653
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
654
-
655
- "use strict";
656
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _default__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./default */ \"./src/plugins/recordTypes/conservation/forms/default.jsx\");\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => ({\n default: Object(_default__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/forms/index.js?");
657
-
658
- /***/ }),
659
-
660
- /***/ "./src/plugins/recordTypes/conservation/index.js":
661
- /*!*******************************************************!*\
662
- !*** ./src/plugins/recordTypes/conservation/index.js ***!
663
- \*******************************************************/
664
- /*! exports provided: default */
665
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
666
-
667
- "use strict";
668
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _advancedSearch__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./advancedSearch */ \"./src/plugins/recordTypes/conservation/advancedSearch.js\");\n/* harmony import */ var _fields__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./fields */ \"./src/plugins/recordTypes/conservation/fields.js\");\n/* harmony import */ var _forms__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./forms */ \"./src/plugins/recordTypes/conservation/forms/index.js\");\n/* harmony import */ var _messages__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./messages */ \"./src/plugins/recordTypes/conservation/messages.js\");\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => configContext => ({\n recordTypes: {\n conservation: {\n advancedSearch: Object(_advancedSearch__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext),\n fields: Object(_fields__WEBPACK_IMPORTED_MODULE_1__[\"default\"])(configContext),\n forms: Object(_forms__WEBPACK_IMPORTED_MODULE_2__[\"default\"])(configContext),\n messages: Object(_messages__WEBPACK_IMPORTED_MODULE_3__[\"default\"])(configContext)\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/index.js?");
669
-
670
- /***/ }),
671
-
672
- /***/ "./src/plugins/recordTypes/conservation/messages.js":
673
- /*!**********************************************************!*\
674
- !*** ./src/plugins/recordTypes/conservation/messages.js ***!
675
- \**********************************************************/
676
- /*! exports provided: default */
677
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
678
-
679
- "use strict";
680
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => {\n const {\n extensions\n } = configContext.config;\n return extensions.livingplant.conservation.messages;\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/conservation/messages.js?");
681
-
682
- /***/ }),
683
-
684
- /***/ "./src/plugins/recordTypes/exhibition/forms/default.jsx":
685
- /*!**************************************************************!*\
686
- !*** ./src/plugins/recordTypes/exhibition/forms/default.jsx ***!
687
- \**************************************************************/
688
- /*! exports provided: default */
689
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
690
-
691
- "use strict";
692
- eval("__webpack_require__.r(__webpack_exports__);\nconst template = configContext => {\n const {\n React\n } = configContext.lib;\n const {\n Col,\n Cols,\n Panel,\n Row\n } = configContext.layoutComponents;\n const {\n Field\n } = configContext.recordComponents;\n return /*#__PURE__*/React.createElement(Field, {\n name: \"document\"\n }, /*#__PURE__*/React.createElement(Panel, {\n name: \"info\",\n collapsible: true\n }, /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"type\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"title\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"sponsors\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"sponsor\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"organizers\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"organizer\"\n })), /*#__PURE__*/React.createElement(Field, {\n name: \"publishToList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"publishTo\"\n })))), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"venueGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"venueGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"venue\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"venueOpeningDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"venueClosingDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"venueAttendance\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"venueUrl\"\n })))), /*#__PURE__*/React.createElement(Field, {\n name: \"workingGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"workingGroup\"\n }, /*#__PURE__*/React.createElement(Panel, null, /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"workingGroupTitle\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"workingGroupNote\"\n })), /*#__PURE__*/React.createElement(Row, null, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionPersonGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionPersonGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionPerson\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionPersonRole\"\n }))))))), /*#__PURE__*/React.createElement(Cols, null, /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"planningNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"curatorialNote\"\n })), /*#__PURE__*/React.createElement(Col, null, /*#__PURE__*/React.createElement(Field, {\n name: \"generalNote\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"boilerplateText\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationStartDateGroup\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationEndDateGroup\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"galleryRotationNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReferenceGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReferenceGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReference\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReferenceType\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionReferenceNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"planningInfo\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionLocation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionObjects\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionSectionNote\"\n }))), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatusGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatusGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatus\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatusDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionStatusNote\"\n })))), /*#__PURE__*/React.createElement(Panel, {\n name: \"exhibitedObjectInformation\",\n collapsible: true,\n collapsed: true\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectGroupList\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectGroup\"\n }, /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectNumber\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectName\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectConsCheckDate\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectConsTreatment\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectSection\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectCase\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectSeqNum\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectRotation\"\n }), /*#__PURE__*/React.createElement(Field, {\n name: \"exhibitionObjectNote\"\n })))));\n};\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => ({\n template: template(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/exhibition/forms/default.jsx?");
693
-
694
- /***/ }),
695
-
696
- /***/ "./src/plugins/recordTypes/exhibition/forms/index.js":
697
- /*!***********************************************************!*\
698
- !*** ./src/plugins/recordTypes/exhibition/forms/index.js ***!
699
- \***********************************************************/
700
- /*! exports provided: default */
701
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
702
-
703
- "use strict";
704
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _default__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./default */ \"./src/plugins/recordTypes/exhibition/forms/default.jsx\");\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (configContext => ({\n default: Object(_default__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/exhibition/forms/index.js?");
705
-
706
- /***/ }),
707
-
708
- /***/ "./src/plugins/recordTypes/exhibition/index.js":
709
- /*!*****************************************************!*\
710
- !*** ./src/plugins/recordTypes/exhibition/index.js ***!
711
- \*****************************************************/
712
- /*! exports provided: default */
713
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
714
-
715
- "use strict";
716
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _forms__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./forms */ \"./src/plugins/recordTypes/exhibition/forms/index.js\");\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => configContext => ({\n recordTypes: {\n exhibition: {\n forms: Object(_forms__WEBPACK_IMPORTED_MODULE_0__[\"default\"])(configContext)\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/exhibition/index.js?");
717
-
718
- /***/ }),
719
-
720
- /***/ "./src/plugins/recordTypes/index.js":
721
- /*!******************************************!*\
722
- !*** ./src/plugins/recordTypes/index.js ***!
723
- \******************************************/
724
- /*! exports provided: default */
725
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
726
-
727
- "use strict";
728
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _collectionobject__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./collectionobject */ \"./src/plugins/recordTypes/collectionobject/index.js\");\n/* harmony import */ var _conditioncheck__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./conditioncheck */ \"./src/plugins/recordTypes/conditioncheck/index.js\");\n/* harmony import */ var _conservation__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./conservation */ \"./src/plugins/recordTypes/conservation/index.js\");\n/* harmony import */ var _exhibition__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./exhibition */ \"./src/plugins/recordTypes/exhibition/index.js\");\n/* harmony import */ var _iterationreport__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./iterationreport */ \"./src/plugins/recordTypes/iterationreport/index.js\");\n/* harmony import */ var _objectexit__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./objectexit */ \"./src/plugins/recordTypes/objectexit/index.js\");\n\n\n\n\n\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ([_collectionobject__WEBPACK_IMPORTED_MODULE_0__[\"default\"], _conditioncheck__WEBPACK_IMPORTED_MODULE_1__[\"default\"], _conservation__WEBPACK_IMPORTED_MODULE_2__[\"default\"], _exhibition__WEBPACK_IMPORTED_MODULE_3__[\"default\"], _iterationreport__WEBPACK_IMPORTED_MODULE_4__[\"default\"], _objectexit__WEBPACK_IMPORTED_MODULE_5__[\"default\"]]);\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/index.js?");
729
-
730
- /***/ }),
731
-
732
- /***/ "./src/plugins/recordTypes/iterationreport/index.js":
733
- /*!**********************************************************!*\
734
- !*** ./src/plugins/recordTypes/iterationreport/index.js ***!
735
- \**********************************************************/
736
- /*! exports provided: default */
737
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
738
-
739
- "use strict";
740
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => ({\n recordTypes: {\n iterationreport: {\n disabled: true\n }\n }\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/iterationreport/index.js?");
741
-
742
- /***/ }),
743
-
744
- /***/ "./src/plugins/recordTypes/objectexit/index.js":
745
- /*!*****************************************************!*\
746
- !*** ./src/plugins/recordTypes/objectexit/index.js ***!
747
- \*****************************************************/
748
- /*! exports provided: default */
749
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
750
-
751
- "use strict";
752
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _optionLists__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./optionLists */ \"./src/plugins/recordTypes/objectexit/optionLists.js\");\n\n/* harmony default export */ __webpack_exports__[\"default\"] = (() => ({\n optionLists: _optionLists__WEBPACK_IMPORTED_MODULE_0__[\"default\"]\n}));\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/objectexit/index.js?");
753
-
754
- /***/ }),
755
-
756
- /***/ "./src/plugins/recordTypes/objectexit/optionLists.js":
757
- /*!***********************************************************!*\
758
- !*** ./src/plugins/recordTypes/objectexit/optionLists.js ***!
759
- \***********************************************************/
760
- /*! exports provided: default */
761
- /***/ (function(module, __webpack_exports__, __webpack_require__) {
762
-
763
- "use strict";
764
- eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! react-intl */ \"./react-intl-stub.js\");\n/* harmony import */ var react_intl__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(react_intl__WEBPACK_IMPORTED_MODULE_0__);\n\n/* harmony default export */ __webpack_exports__[\"default\"] = ({\n exitMethods: {\n values: ['courier', 'garbage', 'inperson', 'post'],\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n garbage: {\n \"id\": \"option.exitMethods.garbage\",\n \"defaultMessage\": \"garbage\"\n }\n })\n },\n exitReasons: {\n values: ['broken', 'deaccession', 'dead', 'deadandbroken', 'disposal', 'fundraiser', 'missing', 'other', 'returnofloan'],\n messages: Object(react_intl__WEBPACK_IMPORTED_MODULE_0__[\"defineMessages\"])({\n broken: {\n \"id\": \"option.exitReasons.broken\",\n \"defaultMessage\": \"broken\"\n },\n dead: {\n \"id\": \"option.exitReasons.dead\",\n \"defaultMessage\": \"dead\"\n },\n deadandbroken: {\n \"id\": \"option.exitReasons.deadandbroken\",\n \"defaultMessage\": \"dead and broken\"\n },\n fundraiser: {\n \"id\": \"option.exitReasons.fundraiser\",\n \"defaultMessage\": \"fundraiser\"\n },\n missing: {\n \"id\": \"option.exitReasons.missing\",\n \"defaultMessage\": \"missing\"\n },\n other: {\n \"id\": \"option.exitReasons.other\",\n \"defaultMessage\": \"other\"\n }\n })\n }\n});\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./src/plugins/recordTypes/objectexit/optionLists.js?");
765
-
766
- /***/ }),
767
-
768
- /***/ "./styles/cspace-ui-plugin-profile/bonsai.css":
769
- /*!****************************************************!*\
770
- !*** ./styles/cspace-ui-plugin-profile/bonsai.css ***!
771
- \****************************************************/
772
- /*! no static exports found */
773
- /***/ (function(module, exports, __webpack_require__) {
774
-
775
- eval("// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = __webpack_require__(/*! !../../node_modules/css-loader/dist/cjs.js??ref--5-1!./bonsai.css */ \"./node_modules/css-loader/dist/cjs.js?!./styles/cspace-ui-plugin-profile/bonsai.css\");\nif(typeof content === 'string') content = [[module.i, content, '']];\n// add the styles to the DOM\nvar update = __webpack_require__(/*! ../../node_modules/style-loader/addStyles.js */ \"./node_modules/style-loader/addStyles.js\")(content, {});\nif(content.locals) module.exports = content.locals;\n// Hot Module Replacement\nif(false) {}\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./styles/cspace-ui-plugin-profile/bonsai.css?");
710
+ eval("\n\n/* istanbul ignore next */\nfunction styleTagTransform(css, styleElement) {\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = css;\n } else {\n while (styleElement.firstChild) {\n styleElement.removeChild(styleElement.firstChild);\n }\n\n styleElement.appendChild(document.createTextNode(css));\n }\n}\n\nmodule.exports = styleTagTransform;\n\n//# sourceURL=webpack://cspaceUIPluginProfileBonsai/./node_modules/style-loader/dist/runtime/styleTagTransform.js?");
776
711
 
777
712
  /***/ })
778
713
 
779
- /******/ })["default"];
714
+ /******/ });
715
+ /************************************************************************/
716
+ /******/ // The module cache
717
+ /******/ var __webpack_module_cache__ = {};
718
+ /******/
719
+ /******/ // The require function
720
+ /******/ function __webpack_require__(moduleId) {
721
+ /******/ // Check if module is in cache
722
+ /******/ var cachedModule = __webpack_module_cache__[moduleId];
723
+ /******/ if (cachedModule !== undefined) {
724
+ /******/ return cachedModule.exports;
725
+ /******/ }
726
+ /******/ // Create a new module (and put it into the cache)
727
+ /******/ var module = __webpack_module_cache__[moduleId] = {
728
+ /******/ id: moduleId,
729
+ /******/ // no module.loaded needed
730
+ /******/ exports: {}
731
+ /******/ };
732
+ /******/
733
+ /******/ // Execute the module function
734
+ /******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
735
+ /******/
736
+ /******/ // Return the exports of the module
737
+ /******/ return module.exports;
738
+ /******/ }
739
+ /******/
740
+ /************************************************************************/
741
+ /******/ /* webpack/runtime/compat get default export */
742
+ /******/ (() => {
743
+ /******/ // getDefaultExport function for compatibility with non-harmony modules
744
+ /******/ __webpack_require__.n = (module) => {
745
+ /******/ var getter = module && module.__esModule ?
746
+ /******/ () => (module['default']) :
747
+ /******/ () => (module);
748
+ /******/ __webpack_require__.d(getter, { a: getter });
749
+ /******/ return getter;
750
+ /******/ };
751
+ /******/ })();
752
+ /******/
753
+ /******/ /* webpack/runtime/define property getters */
754
+ /******/ (() => {
755
+ /******/ // define getter functions for harmony exports
756
+ /******/ __webpack_require__.d = (exports, definition) => {
757
+ /******/ for(var key in definition) {
758
+ /******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
759
+ /******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
760
+ /******/ }
761
+ /******/ }
762
+ /******/ };
763
+ /******/ })();
764
+ /******/
765
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
766
+ /******/ (() => {
767
+ /******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
768
+ /******/ })();
769
+ /******/
770
+ /******/ /* webpack/runtime/make namespace object */
771
+ /******/ (() => {
772
+ /******/ // define __esModule on exports
773
+ /******/ __webpack_require__.r = (exports) => {
774
+ /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
775
+ /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
776
+ /******/ }
777
+ /******/ Object.defineProperty(exports, '__esModule', { value: true });
778
+ /******/ };
779
+ /******/ })();
780
+ /******/
781
+ /******/ /* webpack/runtime/nonce */
782
+ /******/ (() => {
783
+ /******/ __webpack_require__.nc = undefined;
784
+ /******/ })();
785
+ /******/
786
+ /************************************************************************/
787
+ /******/
788
+ /******/ // startup
789
+ /******/ // Load entry module and return exports
790
+ /******/ // This entry module can't be inlined because the eval devtool is used.
791
+ /******/ var __webpack_exports__ = __webpack_require__("./src/index.js");
792
+ /******/ __webpack_exports__ = __webpack_exports__["default"];
793
+ /******/
794
+ /******/ return __webpack_exports__;
795
+ /******/ })()
796
+ ;
780
797
  });