iconograph-ui 1.7.4 → 1.7.6
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/index.js +3 -1
- package/lib/inputs/SearchSelect.svelte +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -24,7 +24,8 @@ import Field from "./lib/display/Field.svelte";
|
|
|
24
24
|
import Link from "./lib/display/Link.svelte";
|
|
25
25
|
import ActionButton from "./lib/form/ActionButton.svelte";
|
|
26
26
|
import MultiSelect from "./lib/form/MultiSelect.svelte";
|
|
27
|
-
import PasswordInput from "./lib/inputs/PasswordInput.svelte"
|
|
27
|
+
import PasswordInput from "./lib/inputs/PasswordInput.svelte";
|
|
28
|
+
import SearchSelect from "./lib/inputs/SearchSelect.svelte"
|
|
28
29
|
|
|
29
30
|
export {
|
|
30
31
|
Button,
|
|
@@ -53,5 +54,6 @@ export {
|
|
|
53
54
|
ActionButton,
|
|
54
55
|
MultiSelect,
|
|
55
56
|
PasswordInput,
|
|
57
|
+
SearchSelect,
|
|
56
58
|
addNotification,
|
|
57
59
|
};
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
async function handleFilter() {
|
|
26
26
|
waiting = true;
|
|
27
27
|
|
|
28
|
-
const response = await fetch(`${uri}limit=50&page=1&
|
|
28
|
+
const response = await fetch(`${uri}limit=50&page=1&name=${search}`, {
|
|
29
29
|
method: 'GET',
|
|
30
30
|
headers: { 'Content-Type': 'application/json' }
|
|
31
31
|
});
|