@praxisui/list 3.0.0-beta.6 → 3.0.0-beta.7
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 +6 -1
- package/fesm2022/praxisui-list.mjs +278 -97
- package/fesm2022/praxisui-list.mjs.map +1 -1
- package/index.d.ts +30 -6
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -238,7 +238,12 @@ Every slot accepts a `TemplateDef` with `type`, `expr`, optional `class` and `st
|
|
|
238
238
|
- `trailing`: optional trailing text/chip/icon/image.
|
|
239
239
|
- `features`: array of `{ icon?, expr }` rendered below primary/secondary; control with `featuresVisible` and `featuresMode` ('icons+labels' | 'icons-only' | 'labels-only').
|
|
240
240
|
|
|
241
|
-
Expressions use `${...}` to read from `item` (e.g., `${item.name}`). For `currency`, you may pass code/locale as
|
|
241
|
+
Expressions use `${...}` to read from `item` (e.g., `${item.name}`). For `currency`, you may pass code/locale as `|USD` or `|USD:en-US`. When `config.i18n.locale` and `config.i18n.currency` are present, `date`, `number` and `currency` can omit args and use those defaults.
|
|
242
|
+
|
|
243
|
+
Nota de plataforma:
|
|
244
|
+
- o contrato público da list continua sendo templating/DSL + `config.i18n`.
|
|
245
|
+
- quando `config.i18n.localization`, `config.i18n.locale` e `config.i18n.currency` estiverem presentes, os pipes `date`, `number` e `currency` reaproveitam os defaults canônicos do core quando os argumentos são omitidos.
|
|
246
|
+
- `valuePresentation` não é um bloco público authorável da list.
|
|
242
247
|
|
|
243
248
|
### Rating props
|
|
244
249
|
|