@asd20/ui-next 2.4.0 → 2.4.1

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.4.1](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.4.0...ui-next-v2.4.1) (2026-05-01)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * fix contacts not appearing in homepage search widget ([4ca7b66](https://github.com/academydistrict20/asd20-ui-next/commit/4ca7b66041f35bf9bc641de8aff18609c348233b))
9
+
3
10
  # [2.4.0](https://github.com/academydistrict20/asd20-ui-next/compare/ui-next-v2.3.8...ui-next-v2.4.0) (2026-05-01)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@asd20/ui-next",
3
- "version": "2.4.0",
3
+ "version": "2.4.1",
4
4
  "private": false,
5
5
  "description": "ASD20 UI component library for Vue 3.",
6
6
  "license": "MIT",
@@ -78,7 +78,7 @@
78
78
  class="asd20-ai-search__site-search"
79
79
  :active="expanded"
80
80
  :inline="true"
81
- :show-contacts="false"
81
+ :show-contacts="showContacts"
82
82
  :pages="pages"
83
83
  :files="files"
84
84
  :groups="groups"
@@ -121,6 +121,7 @@ export default {
121
121
  pages: { type: Array, default: () => [] },
122
122
  files: { type: Array, default: () => [] },
123
123
  groups: { type: Array, default: () => [] },
124
+ showContacts: { type: Boolean, default: true },
124
125
  includeDistrictResults: { type: Boolean, default: true },
125
126
  searchLanguageCode: { type: String, default: null },
126
127
  queryPagesHandler: { type: Function, default: null },