feature/project-redesign #28

Merged
ilia merged 88 commits from feature/project-redesign into main 2026-03-02 19:46:39 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 3a813b019b - Show all commits

View File

@@ -30,8 +30,8 @@ export interface FontFilters {
subsets: FontSubset[]; subsets: FontSubset[];
} }
export type CheckboxFilter = 'providers' | 'categories' | 'subsets'; export type FilterGroup = 'providers' | 'categories' | 'subsets';
export type FilterType = CheckboxFilter | 'searchQuery'; export type FilterType = FilterGroup | 'searchQuery';
/** /**
* Standard font weights * Standard font weights

View File

@@ -9,7 +9,7 @@ import {
* Test Suite for createFilter Helper Function * Test Suite for createFilter Helper Function
* *
* This suite tests the Filter logic and state management. * This suite tests the Filter logic and state management.
* Component rendering tests are in CheckboxFilter.svelte.test.ts * Component rendering tests are in FilterGroup.svelte.test.ts
*/ */
describe('createFilter - Filter Logic', () => { describe('createFilter - Filter Logic', () => {