fix(sidebar): include component tag names in sidebar search filtering
This commit is contained in:
@@ -3,6 +3,6 @@
|
||||
*/
|
||||
export const commitinfo = {
|
||||
name: '@design.estate/dees-wcctools',
|
||||
version: '3.8.2',
|
||||
version: '3.8.3',
|
||||
description: 'A set of web component tools for creating element catalogues, enabling the structured development and documentation of custom elements and pages.'
|
||||
}
|
||||
|
||||
@@ -654,6 +654,8 @@ export class WccSidebar extends DeesElement {
|
||||
const entries = getSectionItems(section);
|
||||
const filteredEntries = entries.filter(([name, item]) => {
|
||||
if (this.matchesSearch(name)) return true;
|
||||
const tagName = (item as any).is;
|
||||
if (tagName && this.matchesSearch(tagName)) return true;
|
||||
const rawGroups = (item as any).demoGroups;
|
||||
if (!rawGroups) return false;
|
||||
const groups: string[] = Array.isArray(rawGroups) ? rawGroups : [rawGroups];
|
||||
@@ -692,6 +694,8 @@ export class WccSidebar extends DeesElement {
|
||||
// Filter entries by search query
|
||||
const filteredEntries = entries.filter(([name, item]) => {
|
||||
if (this.matchesSearch(name)) return true;
|
||||
const tagName = (item as any).is;
|
||||
if (tagName && this.matchesSearch(tagName)) return true;
|
||||
const rawGroups = (item as any).demoGroups;
|
||||
if (!rawGroups) return false;
|
||||
const groups: string[] = Array.isArray(rawGroups) ? rawGroups : [rawGroups];
|
||||
|
||||
Reference in New Issue
Block a user