Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: update criteria docs #521

Merged
merged 7 commits into from
Oct 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions libs/angular-accelerator/src/lib/utils/criteria.utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ function _hasShowTime(calendars: QueryList<Calendar>, formKey: string): boolean
/**
* Safely builds the search criteria based on form values
* @param formValues the form values to use
* @param calendars a list of calendars of the form (use `@ViewChildren(Calendar) calendars!: QueryList<Calendar>;`)
* @param calendars a list of primeng calendars of the form (use `@ViewChildren(Calendar) calendars!: QueryList<Calendar>;`)
* @param parameters {@link BuildSearchCriteriaParameters} to use when building the search criteria
* @returns the search criteria as partial of T (T should be your search criteria type)
* @returns the search criteria as partial of T (T = type of the search criteria)
*/
export function buildSearchCriteria<T>(
formValues: FormGroup<any>,
Expand Down
Loading