@amsom-habitat/amsom-table 4.5.1 → 4.5.3
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/README.md +7 -1
- package/dist/amsom-table.js +1486 -1483
- package/dist/amsom-table.umd.cjs +15 -15
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -79,7 +79,13 @@ const columns = [
|
|
|
79
79
|
|
|
80
80
|
**Ordre de priorité :** Si `formatter` et `type` sont définis, `formatter` est prioritaire.
|
|
81
81
|
|
|
82
|
-
**
|
|
82
|
+
**Utilisation automatique :** Le formatage s'applique automatiquement à :
|
|
83
|
+
|
|
84
|
+
- ✅ **Affichage** : Rendu dans le template par défaut
|
|
85
|
+
- ✅ **Recherche** : Filtrage sur la valeur formatée (sauf si `customSearch` défini)
|
|
86
|
+
- ✅ **Tri** : Classement basé sur la valeur formatée (sauf si `customSort` défini)
|
|
87
|
+
|
|
88
|
+
**Performance & DRY :** En utilisant `formatter`, vous évitez de dupliquer la logique dans `customSort` et `customSearch`.
|
|
83
89
|
|
|
84
90
|
### Custom Search (v4.4.x)
|
|
85
91
|
|