diff --git a/app/components/catalog/SelectionPanel.vue b/app/components/catalog/SelectionPanel.vue index 85f4639..919c396 100644 --- a/app/components/catalog/SelectionPanel.vue +++ b/app/components/catalog/SelectionPanel.vue @@ -14,6 +14,17 @@ :placeholder="searchPlaceholder" class="input input-sm w-full bg-white/50 border-base-300/50 text-base-content placeholder:text-base-content/50" /> + + @@ -96,12 +107,14 @@ const props = defineProps<{ loading?: boolean loadingMore?: boolean hasMore?: boolean + filterByBounds?: boolean }>() const emit = defineEmits<{ 'select': [type: string, item: Item] 'close': [] 'load-more': [] + 'update:filter-by-bounds': [value: boolean] }>() const { t } = useI18n() diff --git a/app/components/page/CatalogPage.vue b/app/components/page/CatalogPage.vue index 9d314dd..3c05515 100644 --- a/app/components/page/CatalogPage.vue +++ b/app/components/page/CatalogPage.vue @@ -38,29 +38,6 @@ {{ $t('common.loading') }} - - -