@tekkare/auriga 0.2.4 → 0.2.5
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
|
@@ -612,7 +612,7 @@ export default defineComponent({
|
|
|
612
612
|
"\\$&"
|
|
613
613
|
);
|
|
614
614
|
// Crée une nouvelle RegExp avec la valeur de recherche, en ignorant la casse
|
|
615
|
-
const regex = new RegExp(escapedInput
|
|
615
|
+
const regex = new RegExp(escapedInput);
|
|
616
616
|
// Remplace la partie correspondante par un span avec du style
|
|
617
617
|
return suggestion.replace(
|
|
618
618
|
regex,
|
|
@@ -857,7 +857,7 @@ export default defineComponent({
|
|
|
857
857
|
searchedWords.value = [];
|
|
858
858
|
removeSelected.value = false;
|
|
859
859
|
closeIndex.value = null;
|
|
860
|
-
value.value =
|
|
860
|
+
value.value = "";
|
|
861
861
|
searchBar.value.focus();
|
|
862
862
|
emit("update:Value", searchedWords.value);
|
|
863
863
|
}
|
|
@@ -1015,13 +1015,13 @@ export default defineComponent({
|
|
|
1015
1015
|
notFound,
|
|
1016
1016
|
loaderText,
|
|
1017
1017
|
handleChangeType,
|
|
1018
|
-
highlightSearchInput
|
|
1018
|
+
highlightSearchInput,
|
|
1019
1019
|
};
|
|
1020
1020
|
},
|
|
1021
1021
|
});
|
|
1022
1022
|
</script>"
|
|
1023
1023
|
);
|
|
1024
|
-
const regex = new RegExp(escapedInput
|
|
1024
|
+
const regex = new RegExp(escapedInput);
|
|
1025
1025
|
return suggestion.replace(
|
|
1026
1026
|
regex,
|
|
1027
1027
|
(match) => `<span style="color: var(--primary); font-weight: 700">${match}</span>`
|
|
@@ -323,7 +323,7 @@ export default defineComponent({
|
|
|
323
323
|
"\\$&"
|
|
324
324
|
);
|
|
325
325
|
// Crée une nouvelle RegExp avec la valeur de recherche, en ignorant la casse
|
|
326
|
-
const regex = new RegExp(escapedInput
|
|
326
|
+
const regex = new RegExp(escapedInput);
|
|
327
327
|
// Remplace la partie correspondante par un span avec du style
|
|
328
328
|
return suggestion.replace(
|
|
329
329
|
regex,
|
|
@@ -419,7 +419,7 @@ export default defineComponent({
|
|
|
419
419
|
});
|
|
420
420
|
</script>"
|
|
421
421
|
);
|
|
422
|
-
const regex = new RegExp(escapedInput
|
|
422
|
+
const regex = new RegExp(escapedInput);
|
|
423
423
|
return suggestion.replace(
|
|
424
424
|
regex,
|
|
425
425
|
(match) => `<span style="color: var(--primary); font-weight: 700">${match}</span>`
|