You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`update:filters`|`LinidFilter[]`| Emitted whenever the user applies or removes a filter. The payload contains only the filters that have at least one active value applied. |
|`update:filters`|`LinidFilter[]`| Emitted whenever the user applies or removes a filter. The payload contains only the filters that have at least one active value applied. |
32
+
|`apply:favorite`|`LinidFilterSet`| Emitted when a favorite filter set is applied. The payload contains the applied favorite filter set. |
33
+
|`delete:favorite`|`LinidFilterSet`| Emitted when a favorite filter set is deleted. The payload contains the deleted favorite filter set. |
34
+
|`create:favorite`| - | Emitted when the user wants to create a new favorite filter set. |
35
+
|`override:favorite`| - | Emitted when the user wants to override an existing favorite filter set. |
32
36
33
37
---
34
38
@@ -107,11 +111,12 @@ Each applied filter is displayed as a chip in the search field. The chip shows t
107
111
```vue
108
112
<script setup lang="ts">
109
113
import { ref } from 'vue';
110
-
import { LinidFilter } from '@linagora/linid-im-front-corelib';
114
+
import { LinidFilter, LinidFilterSet } from '@linagora/linid-im-front-corelib';
0 commit comments