diff --git a/packages/ui/client/auto-imports.d.ts b/packages/ui/client/auto-imports.d.ts index d0043d4d004e..b9f6880e6219 100644 --- a/packages/ui/client/auto-imports.d.ts +++ b/packages/ui/client/auto-imports.d.ts @@ -46,14 +46,6 @@ declare global { const eagerComputed: typeof import('@vueuse/core')['eagerComputed'] const effectScope: typeof import('vue')['effectScope'] const extendRef: typeof import('@vueuse/core')['extendRef'] - const filesFailed: typeof import('./composables/summary')['filesFailed'] - const filesIgnore: typeof import('./composables/summary')['filesIgnore'] - const filesRunning: typeof import('./composables/summary')['filesRunning'] - const filesSkipped: typeof import('./composables/summary')['filesSkipped'] - const filesSnapshotFailed: typeof import('./composables/summary')['filesSnapshotFailed'] - const filesSuccess: typeof import('./composables/summary')['filesSuccess'] - const filesTodo: typeof import('./composables/summary')['filesTodo'] - const finished: typeof import('./composables/summary')['finished'] const getCurrentBrowserIframe: typeof import('./composables/api')['getCurrentBrowserIframe'] const getCurrentInstance: typeof import('vue')['getCurrentInstance'] const getCurrentScope: typeof import('vue')['getCurrentScope'] @@ -128,22 +120,14 @@ declare global { const syncRef: typeof import('@vueuse/core')['syncRef'] const syncRefs: typeof import('@vueuse/core')['syncRefs'] const templateRef: typeof import('@vueuse/core')['templateRef'] - const tests: typeof import('./composables/summary')['tests'] - const testsFailed: typeof import('./composables/summary')['testsFailed'] - const testsIgnore: typeof import('./composables/summary')['testsIgnore'] - const testsSkipped: typeof import('./composables/summary')['testsSkipped'] - const testsSuccess: typeof import('./composables/summary')['testsSuccess'] - const testsTodo: typeof import('./composables/summary')['testsTodo'] const throttledRef: typeof import('@vueuse/core')['throttledRef'] const throttledWatch: typeof import('@vueuse/core')['throttledWatch'] - const time: typeof import('./composables/summary')['time'] const toRaw: typeof import('vue')['toRaw'] const toReactive: typeof import('@vueuse/core')['toReactive'] const toRef: typeof import('vue')['toRef'] const toRefs: typeof import('vue')['toRefs'] const toValue: typeof import('vue')['toValue'] const toggleDark: typeof import('./composables/dark')['toggleDark'] - const totalTests: typeof import('./composables/summary')['totalTests'] const triggerRef: typeof import('vue')['triggerRef'] const tryOnBeforeMount: typeof import('@vueuse/core')['tryOnBeforeMount'] const tryOnBeforeUnmount: typeof import('@vueuse/core')['tryOnBeforeUnmount'] diff --git a/packages/ui/client/components.d.ts b/packages/ui/client/components.d.ts index 235bcb312dea..de49b1ec7bef 100644 --- a/packages/ui/client/components.d.ts +++ b/packages/ui/client/components.d.ts @@ -15,7 +15,10 @@ declare module 'vue' { DashboardEntry: typeof import('./components/dashboard/DashboardEntry.vue')['default'] DetailsPanel: typeof import('./components/DetailsPanel.vue')['default'] ErrorEntry: typeof import('./components/dashboard/ErrorEntry.vue')['default'] + Explorer: typeof import('./components/explorer/Explorer.vue')['default'] + ExplorerItem: typeof import('./components/explorer/ExplorerItem.vue')['default'] FileDetails: typeof import('./components/FileDetails.vue')['default'] + FilterStatus: typeof import('./components/FilterStatus.vue')['default'] IconAction: typeof import('./components/IconAction.vue')['default'] IconButton: typeof import('./components/IconButton.vue')['default'] Modal: typeof import('./components/Modal.vue')['default'] @@ -25,9 +28,6 @@ declare module 'vue' { RouterLink: typeof import('vue-router')['RouterLink'] RouterView: typeof import('vue-router')['RouterView'] StatusIcon: typeof import('./components/StatusIcon.vue')['default'] - TaskItem: typeof import('./components/TaskItem.vue')['default'] - TasksList: typeof import('./components/TasksList.vue')['default'] - TaskTree: typeof import('./components/TaskTree.vue')['default'] TestFilesEntry: typeof import('./components/dashboard/TestFilesEntry.vue')['default'] TestsEntry: typeof import('./components/dashboard/TestsEntry.vue')['default'] TestsFilesContainer: typeof import('./components/dashboard/TestsFilesContainer.vue')['default'] diff --git a/packages/ui/client/components/FilterStatus.vue b/packages/ui/client/components/FilterStatus.vue new file mode 100644 index 000000000000..12ea58b12631 --- /dev/null +++ b/packages/ui/client/components/FilterStatus.vue @@ -0,0 +1,33 @@ + + + + + diff --git a/packages/ui/client/components/IconButton.vue b/packages/ui/client/components/IconButton.vue index 1e4794b6347a..123d59dc600a 100644 --- a/packages/ui/client/components/IconButton.vue +++ b/packages/ui/client/components/IconButton.vue @@ -18,7 +18,7 @@ defineProps<{ class="w-1.4em h-1.4em flex" :class="[{ 'bg-gray-500:35 op100': active }]" > -
+ diff --git a/packages/ui/client/components/Navigation.vue b/packages/ui/client/components/Navigation.vue index 920649c65ac9..55f21c9a5580 100644 --- a/packages/ui/client/components/Navigation.vue +++ b/packages/ui/client/components/Navigation.vue @@ -1,5 +1,4 @@