@tekkare/auriga 0.2.60 → 0.2.61
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/module.json
CHANGED
|
@@ -86,7 +86,7 @@
|
|
|
86
86
|
class="complex_input"
|
|
87
87
|
:placeholder="getPlaceholderAdd"
|
|
88
88
|
v-model="searchNameAdd"
|
|
89
|
-
id="
|
|
89
|
+
:id="`complex_search_input_${complex_label}`"
|
|
90
90
|
/>
|
|
91
91
|
<div
|
|
92
92
|
v-if="searchNameAdd.length > 0"
|
|
@@ -337,7 +337,9 @@ export default defineComponent({
|
|
|
337
337
|
};
|
|
338
338
|
}
|
|
339
339
|
onMounted(() => {
|
|
340
|
-
searchBar.value = document.getElementById(
|
|
340
|
+
searchBar.value = document.getElementById(
|
|
341
|
+
`complex_search_input_${props.complex_label}`
|
|
342
|
+
);
|
|
341
343
|
searchBar.value?.addEventListener("input", debounce(changeInput, 500));
|
|
342
344
|
del_table.value = Object.assign([], [...new Set(props.already_selected)]);
|
|
343
345
|
add_table.value = Object.assign(
|
|
@@ -61,7 +61,7 @@
|
|
|
61
61
|
<input
|
|
62
62
|
class="oip_search_name"
|
|
63
63
|
v-model="searchName"
|
|
64
|
-
id="
|
|
64
|
+
:id="`dropdown_search_input_${dropdown_label}`"
|
|
65
65
|
:placeholder="getPlaceholder"
|
|
66
66
|
/>
|
|
67
67
|
<div
|
|
@@ -226,7 +226,9 @@ export default defineComponent({
|
|
|
226
226
|
};
|
|
227
227
|
}
|
|
228
228
|
onMounted(() => {
|
|
229
|
-
searchBar.value = document.getElementById(
|
|
229
|
+
searchBar.value = document.getElementById(
|
|
230
|
+
`dropdown_search_input_${props.dropdown_label}`
|
|
231
|
+
);
|
|
230
232
|
searchBar.value?.addEventListener("input", debounce(changeInput, 500));
|
|
231
233
|
table_values.value = props.element_table;
|
|
232
234
|
selected_item.value = props.default_select !== null ? props.element_table[props.default_select] : null;
|
|
@@ -49,7 +49,7 @@
|
|
|
49
49
|
v-model="searchName"
|
|
50
50
|
class="oip_search_name"
|
|
51
51
|
:placeholder="getPlaceholder"
|
|
52
|
-
id="
|
|
52
|
+
:id="`multiple_search_input_${multiple_label}`"
|
|
53
53
|
/>
|
|
54
54
|
<div
|
|
55
55
|
v-if="searchName.length > 0"
|
|
@@ -438,7 +438,9 @@ export default defineComponent({
|
|
|
438
438
|
};
|
|
439
439
|
}
|
|
440
440
|
onMounted(() => {
|
|
441
|
-
searchBar.value = document.getElementById(
|
|
441
|
+
searchBar.value = document.getElementById(
|
|
442
|
+
`multiple_search_input_${props.multiple_label}`
|
|
443
|
+
);
|
|
442
444
|
searchBar.value?.addEventListener("input", debounce(changeInput, 500));
|
|
443
445
|
element_table_copy.value = props.element_table;
|
|
444
446
|
if (props.preselection_all) {
|