+
@@ -45,6 +46,7 @@
diff --git a/src/components/searchbox/v2/NodeSearchContent.vue b/src/components/searchbox/v2/NodeSearchContent.vue
index 49bc9230dff..3d79570310b 100644
--- a/src/components/searchbox/v2/NodeSearchContent.vue
+++ b/src/components/searchbox/v2/NodeSearchContent.vue
@@ -25,6 +25,7 @@
diff --git a/src/components/searchbox/v2/NodeSearchFilterBar.vue b/src/components/searchbox/v2/NodeSearchFilterBar.vue
index 21c995808ce..df1d82f767a 100644
--- a/src/components/searchbox/v2/NodeSearchFilterBar.vue
+++ b/src/components/searchbox/v2/NodeSearchFilterBar.vue
@@ -1,27 +1,28 @@
-
+
+ ({{ appliedFilterCounts[chip.key] }})
+
+
diff --git a/src/components/ui/button/button.variants.ts b/src/components/ui/button/button.variants.ts
index faf9a4444b9..fce6fc9bab1 100644
--- a/src/components/ui/button/button.variants.ts
+++ b/src/components/ui/button/button.variants.ts
@@ -19,7 +19,9 @@ export const buttonVariants = cva({
'text-muted-foreground bg-transparent hover:bg-secondary-background-hover',
'destructive-textonly':
'text-destructive-background bg-transparent hover:bg-destructive-background/10',
- 'overlay-white': 'bg-white text-gray-600 hover:bg-white/90'
+ 'overlay-white': 'bg-white text-gray-600 hover:bg-white/90',
+ outline:
+ 'border border-solid border-muted-foreground bg-transparent text-muted-foreground hover:border-base-foreground/60 hover:text-base-foreground/60'
},
size: {
sm: 'h-6 rounded-sm px-2 py-1 text-xs',
@@ -47,7 +49,8 @@ const variants = [
'textonly',
'muted-textonly',
'destructive-textonly',
- 'overlay-white'
+ 'overlay-white',
+ 'outline'
] as const satisfies Array
const sizes = ['sm', 'md', 'lg', 'icon', 'icon-sm'] as const satisfies Array<
ButtonVariants['size']