@entryscape/rdforms 10.14.1 → 10.15.1

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.
@@ -96,8 +96,8 @@ const rdfjson_namespaceObject = require("@entryscape/rdfjson");
96
96
  ;// external "moment"
97
97
  const external_moment_namespaceObject = require("moment");
98
98
  var external_moment_default = /*#__PURE__*/__webpack_require__.n(external_moment_namespaceObject);
99
- ;// external "lodash-es"
100
- const external_lodash_es_namespaceObject = require("lodash-es");
99
+ ;// external "lodash"
100
+ const external_lodash_namespaceObject = require("lodash");
101
101
  ;// ./src/model/system.js
102
102
  /* eslint-disable no-unused-vars */
103
103
 
@@ -324,7 +324,7 @@ const cloneArrayWithLabels = (objects, noSort) => {
324
324
  obj.top = true;
325
325
  }
326
326
  if (o.children != null) {
327
- obj.children = (0,external_lodash_es_namespaceObject.cloneDeep)(o.children);
327
+ obj.children = (0,external_lodash_namespaceObject.cloneDeep)(o.children);
328
328
  }
329
329
  if (o.selectable === false) {
330
330
  obj.selectable = false;
@@ -1285,7 +1285,7 @@ class OntologyStore {
1285
1285
  if (ontologyChoiceArr != null) {
1286
1286
  for (let ind = 0; ind < ontologyChoiceArr.length; ind++) {
1287
1287
  const obj = ontologyChoiceArr[ind];
1288
- if ((0,external_lodash_es_namespaceObject.isEqual)(obj.constraints, item.getConstraints()) && item.getParentProperty() === obj.parentProperty && item.getHierarchyProperty() === obj.hierarchyProperty && item.isParentPropertyInverted() === (obj.isParentPropertyInverted || false) && item.isHierarchyPropertyInverted() === (obj.isHierarchyPropertyInverted || false)) {
1288
+ if ((0,external_lodash_namespaceObject.isEqual)(obj.constraints, item.getConstraints()) && item.getParentProperty() === obj.parentProperty && item.getHierarchyProperty() === obj.hierarchyProperty && item.isParentPropertyInverted() === (obj.isParentPropertyInverted || false) && item.isHierarchyPropertyInverted() === (obj.isHierarchyPropertyInverted || false)) {
1289
1289
  return obj.choices;
1290
1290
  }
1291
1291
  }