From 6ecd98ad53271197de84e5c25ecd3974525f9a18 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20B?= <9062561+jrmyb@users.noreply.github.com> Date: Mon, 25 Nov 2024 15:15:01 +0100 Subject: [PATCH] IFormFilterOptions extends ICoreEntityFilterOptions (#631) * fix(forms / plugins): fix interface type of getForms. Sort plugins package name alphabetically * refactor(iformfilteroptions): iformfilteroptions extends ICoreEntityFilterOptions --- apps/core/src/_types/forms.ts | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/apps/core/src/_types/forms.ts b/apps/core/src/_types/forms.ts index 03e8e336e..31507e51f 100644 --- a/apps/core/src/_types/forms.ts +++ b/apps/core/src/_types/forms.ts @@ -58,9 +58,6 @@ export type IFormElementWithValuesAndChildren = IFormElementWithValues & { /** * Accepted fields to filter attributes list */ -export interface IFormFilterOptions { - id?: string | string[]; +export interface IFormFilterOptions extends ICoreEntityFilterOptions { library?: string; - system?: boolean; - label?: string | string[]; }