reneco-hierarchized-picker 0.4.0-beta.1 → 0.4.0-beta.2
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.
- package/dist/cjs/reneco-hierarchized-picker_2.cjs.entry.js +1 -1
- package/dist/collection/components/hierarchized-picker/hierarchized-picker.js +1 -1
- package/dist/custom-elements/index.js +1 -1
- package/dist/esm/reneco-hierarchized-picker_2.entry.js +1 -1
- package/dist/esm-es5/reneco-hierarchized-picker_2.entry.js +1 -1
- package/dist/reneco-hierarchized-picker/p-73168a50.system.js +1 -1
- package/dist/reneco-hierarchized-picker/{p-435c916e.system.entry.js → p-78e0db55.system.entry.js} +1 -1
- package/dist/reneco-hierarchized-picker/{p-2a620823.entry.js → p-e0a97733.entry.js} +1 -1
- package/dist/reneco-hierarchized-picker/reneco-hierarchized-picker.esm.js +1 -1
- package/package.json +1 -1
|
@@ -18600,7 +18600,7 @@ const HierarchizedPickerComponent = class {
|
|
|
18600
18600
|
// this.theOptions = newValue;
|
|
18601
18601
|
this.optionsManager.updateOptions(newValue);
|
|
18602
18602
|
this.setDisplayedValue(this.value);
|
|
18603
|
-
const originOrNodeIdAreDifferent = (newValue.origin != oldValue.origin || newValue.options.StartNodeID != oldValue.options.StartNodeID);
|
|
18603
|
+
const originOrNodeIdAreDifferent = !oldValue || (newValue.origin != oldValue.origin || newValue.options.StartNodeID != oldValue.options.StartNodeID);
|
|
18604
18604
|
if (this.optionsManager.getOptions().source != 'file' && (!oldValue || (oldValue && originOrNodeIdAreDifferent))) {
|
|
18605
18605
|
this.rawData = null;
|
|
18606
18606
|
}
|
|
@@ -100,7 +100,7 @@ export class HierarchizedPickerComponent {
|
|
|
100
100
|
// this.theOptions = newValue;
|
|
101
101
|
this.optionsManager.updateOptions(newValue);
|
|
102
102
|
this.setDisplayedValue(this.value);
|
|
103
|
-
const originOrNodeIdAreDifferent = (newValue.origin != oldValue.origin || newValue.options.StartNodeID != oldValue.options.StartNodeID);
|
|
103
|
+
const originOrNodeIdAreDifferent = !oldValue || (newValue.origin != oldValue.origin || newValue.options.StartNodeID != oldValue.options.StartNodeID);
|
|
104
104
|
if (this.optionsManager.getOptions().source != 'file' && (!oldValue || (oldValue && originOrNodeIdAreDifferent))) {
|
|
105
105
|
this.rawData = null;
|
|
106
106
|
}
|
|
@@ -18597,7 +18597,7 @@ const HierarchizedPickerComponent = class extends HTMLElement {
|
|
|
18597
18597
|
// this.theOptions = newValue;
|
|
18598
18598
|
this.optionsManager.updateOptions(newValue);
|
|
18599
18599
|
this.setDisplayedValue(this.value);
|
|
18600
|
-
const originOrNodeIdAreDifferent = (newValue.origin != oldValue.origin || newValue.options.StartNodeID != oldValue.options.StartNodeID);
|
|
18600
|
+
const originOrNodeIdAreDifferent = !oldValue || (newValue.origin != oldValue.origin || newValue.options.StartNodeID != oldValue.options.StartNodeID);
|
|
18601
18601
|
if (this.optionsManager.getOptions().source != 'file' && (!oldValue || (oldValue && originOrNodeIdAreDifferent))) {
|
|
18602
18602
|
this.rawData = null;
|
|
18603
18603
|
}
|
|
@@ -18596,7 +18596,7 @@ const HierarchizedPickerComponent = class {
|
|
|
18596
18596
|
// this.theOptions = newValue;
|
|
18597
18597
|
this.optionsManager.updateOptions(newValue);
|
|
18598
18598
|
this.setDisplayedValue(this.value);
|
|
18599
|
-
const originOrNodeIdAreDifferent = (newValue.origin != oldValue.origin || newValue.options.StartNodeID != oldValue.options.StartNodeID);
|
|
18599
|
+
const originOrNodeIdAreDifferent = !oldValue || (newValue.origin != oldValue.origin || newValue.options.StartNodeID != oldValue.options.StartNodeID);
|
|
18600
18600
|
if (this.optionsManager.getOptions().source != 'file' && (!oldValue || (oldValue && originOrNodeIdAreDifferent))) {
|
|
18601
18601
|
this.rawData = null;
|
|
18602
18602
|
}
|