reneco-hierarchized-picker 0.4.2-beta.1 → 0.4.2-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 +0 -5
- package/dist/collection/components/hierarchized-picker/hierarchized-picker.js +0 -5
- package/dist/custom-elements/index.js +0 -5
- package/dist/esm/reneco-hierarchized-picker_2.entry.js +0 -5
- package/dist/esm-es5/reneco-hierarchized-picker_2.entry.js +1 -1
- package/dist/reneco-hierarchized-picker/{p-308071e7.entry.js → p-06c158f6.entry.js} +1 -1
- package/dist/reneco-hierarchized-picker/p-73168a50.system.js +1 -1
- package/dist/reneco-hierarchized-picker/{p-91521a4a.system.entry.js → p-a2c067f5.system.entry.js} +1 -1
- package/dist/reneco-hierarchized-picker/reneco-hierarchized-picker.esm.js +1 -1
- package/package.json +1 -1
|
@@ -18676,7 +18676,6 @@ const HierarchizedPickerComponent = class {
|
|
|
18676
18676
|
this.setOptions(newoptions);
|
|
18677
18677
|
}
|
|
18678
18678
|
setNewFilter(newfilter) {
|
|
18679
|
-
console.log("newfilter is ", newfilter);
|
|
18680
18679
|
this.filterTree(newfilter);
|
|
18681
18680
|
}
|
|
18682
18681
|
optionsChange(newValue, oldValue) {
|
|
@@ -19016,9 +19015,6 @@ const HierarchizedPickerComponent = class {
|
|
|
19016
19015
|
if (this.theOptions.origin == 'classification') {
|
|
19017
19016
|
// WS Call
|
|
19018
19017
|
this.rawDataManager.getFromClassification(this.getApiSearchURL(), {
|
|
19019
|
-
StartNodeID: this.theOptions.options.startNode,
|
|
19020
|
-
lng: this.theOptions.options.lng,
|
|
19021
|
-
deprecated: this.theOptions.options.IsDeprecated,
|
|
19022
19018
|
searchedValue: searched
|
|
19023
19019
|
})
|
|
19024
19020
|
.then((data) => {
|
|
@@ -19313,7 +19309,6 @@ const HierarchizedPickerComponent = class {
|
|
|
19313
19309
|
}
|
|
19314
19310
|
// Search a value in the tree and triggers a search when necessary
|
|
19315
19311
|
search(searched) {
|
|
19316
|
-
console.log("search ", searched);
|
|
19317
19312
|
let searchinput = document.querySelector('#hierarchized-picker-' + this.componentID + ' .hierarchized-picker-search input');
|
|
19318
19313
|
if (this.optionsManager.getOptions().mode == 'input' && searchinput) {
|
|
19319
19314
|
searchinput.classList.remove('fieldError');
|
|
@@ -142,7 +142,6 @@ export class HierarchizedPickerComponent {
|
|
|
142
142
|
this.setOptions(newoptions);
|
|
143
143
|
}
|
|
144
144
|
setNewFilter(newfilter) {
|
|
145
|
-
console.log("newfilter is ", newfilter);
|
|
146
145
|
this.filterTree(newfilter);
|
|
147
146
|
}
|
|
148
147
|
optionsChange(newValue, oldValue) {
|
|
@@ -480,9 +479,6 @@ export class HierarchizedPickerComponent {
|
|
|
480
479
|
if (this.theOptions.origin == 'classification') {
|
|
481
480
|
// WS Call
|
|
482
481
|
this.rawDataManager.getFromClassification(this.getApiSearchURL(), {
|
|
483
|
-
StartNodeID: this.theOptions.options.startNode,
|
|
484
|
-
lng: this.theOptions.options.lng,
|
|
485
|
-
deprecated: this.theOptions.options.IsDeprecated,
|
|
486
482
|
searchedValue: searched
|
|
487
483
|
})
|
|
488
484
|
.then((data) => {
|
|
@@ -777,7 +773,6 @@ export class HierarchizedPickerComponent {
|
|
|
777
773
|
}
|
|
778
774
|
// Search a value in the tree and triggers a search when necessary
|
|
779
775
|
search(searched) {
|
|
780
|
-
console.log("search ", searched);
|
|
781
776
|
let searchinput = document.querySelector('#hierarchized-picker-' + this.componentID + ' .hierarchized-picker-search input');
|
|
782
777
|
if (this.optionsManager.getOptions().mode == 'input' && searchinput) {
|
|
783
778
|
searchinput.classList.remove('fieldError');
|
|
@@ -18673,7 +18673,6 @@ const HierarchizedPickerComponent = class extends HTMLElement {
|
|
|
18673
18673
|
this.setOptions(newoptions);
|
|
18674
18674
|
}
|
|
18675
18675
|
setNewFilter(newfilter) {
|
|
18676
|
-
console.log("newfilter is ", newfilter);
|
|
18677
18676
|
this.filterTree(newfilter);
|
|
18678
18677
|
}
|
|
18679
18678
|
optionsChange(newValue, oldValue) {
|
|
@@ -19014,9 +19013,6 @@ const HierarchizedPickerComponent = class extends HTMLElement {
|
|
|
19014
19013
|
if (this.theOptions.origin == 'classification') {
|
|
19015
19014
|
// WS Call
|
|
19016
19015
|
this.rawDataManager.getFromClassification(this.getApiSearchURL(), {
|
|
19017
|
-
StartNodeID: this.theOptions.options.startNode,
|
|
19018
|
-
lng: this.theOptions.options.lng,
|
|
19019
|
-
deprecated: this.theOptions.options.IsDeprecated,
|
|
19020
19016
|
searchedValue: searched
|
|
19021
19017
|
})
|
|
19022
19018
|
.then((data) => {
|
|
@@ -19311,7 +19307,6 @@ const HierarchizedPickerComponent = class extends HTMLElement {
|
|
|
19311
19307
|
}
|
|
19312
19308
|
// Search a value in the tree and triggers a search when necessary
|
|
19313
19309
|
search(searched) {
|
|
19314
|
-
console.log("search ", searched);
|
|
19315
19310
|
let searchinput = document.querySelector('#hierarchized-picker-' + this.componentID + ' .hierarchized-picker-search input');
|
|
19316
19311
|
if (this.optionsManager.getOptions().mode == 'input' && searchinput) {
|
|
19317
19312
|
searchinput.classList.remove('fieldError');
|
|
@@ -18672,7 +18672,6 @@ const HierarchizedPickerComponent = class {
|
|
|
18672
18672
|
this.setOptions(newoptions);
|
|
18673
18673
|
}
|
|
18674
18674
|
setNewFilter(newfilter) {
|
|
18675
|
-
console.log("newfilter is ", newfilter);
|
|
18676
18675
|
this.filterTree(newfilter);
|
|
18677
18676
|
}
|
|
18678
18677
|
optionsChange(newValue, oldValue) {
|
|
@@ -19012,9 +19011,6 @@ const HierarchizedPickerComponent = class {
|
|
|
19012
19011
|
if (this.theOptions.origin == 'classification') {
|
|
19013
19012
|
// WS Call
|
|
19014
19013
|
this.rawDataManager.getFromClassification(this.getApiSearchURL(), {
|
|
19015
|
-
StartNodeID: this.theOptions.options.startNode,
|
|
19016
|
-
lng: this.theOptions.options.lng,
|
|
19017
|
-
deprecated: this.theOptions.options.IsDeprecated,
|
|
19018
19014
|
searchedValue: searched
|
|
19019
19015
|
})
|
|
19020
19016
|
.then((data) => {
|
|
@@ -19309,7 +19305,6 @@ const HierarchizedPickerComponent = class {
|
|
|
19309
19305
|
}
|
|
19310
19306
|
// Search a value in the tree and triggers a search when necessary
|
|
19311
19307
|
search(searched) {
|
|
19312
|
-
console.log("search ", searched);
|
|
19313
19308
|
let searchinput = document.querySelector('#hierarchized-picker-' + this.componentID + ' .hierarchized-picker-search input');
|
|
19314
19309
|
if (this.optionsManager.getOptions().mode == 'input' && searchinput) {
|
|
19315
19310
|
searchinput.classList.remove('fieldError');
|