@club-employes/utopia 4.162.0 → 4.164.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/organisms/Table/FilterCell.d.ts +2 -0
- package/dist/components/organisms/Table/types.d.ts +1 -1
- package/dist/components/organisms/Table/utils/dateFormat.d.ts +5 -0
- package/dist/icons-list.json +1 -1
- package/dist/index.js +4970 -4929
- package/dist/utopia.css +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,8 @@ import { ColumnType } from './types';
|
|
|
2
2
|
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
3
3
|
type __VLS_Props = {
|
|
4
4
|
column: ColumnType;
|
|
5
|
+
/** Clé utilisée dans filters (alignée avec Column filterField). Si fourni, lecture/écriture du filtre sur cette clé au lieu de columnKey. */
|
|
6
|
+
filterKey?: string;
|
|
5
7
|
/** Affiche l'input/dropdown de recherche (contenu FilterCell). Contrôlé par table.searchable && column.searchable */
|
|
6
8
|
searchable: boolean;
|
|
7
9
|
filters: Record<string, any>;
|
|
@@ -50,7 +50,7 @@ export interface ColumnType {
|
|
|
50
50
|
* Champ(s) utilisés pour le filtre (backend / requestData.filters).
|
|
51
51
|
* - `string` : filtre sur un seul champ.
|
|
52
52
|
* - `string[]` : filtre sur plusieurs champs (ex. colonne "Nom" = firstName + lastName).
|
|
53
|
-
* - `undefined` : utilise
|
|
53
|
+
* - `undefined` : utilise columnKey (field ne sert pas au filtre, seulement à l’édition/tri).
|
|
54
54
|
*/
|
|
55
55
|
filterField?: string | string[] | ((item: string) => string | number | boolean | null | undefined);
|
|
56
56
|
format?: (value: string | number | boolean | null | undefined) => string | number | boolean | null | undefined;
|
package/dist/icons-list.json
CHANGED