@imj_media/ui 1.2.84 → 1.2.86
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/CHANGELOG.md +13 -0
- package/README.md +1 -1
- package/dist/index.esm.js +1787 -1762
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/modules/Modal/Modal.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/TableCell.d.ts +1 -1
- package/dist/modules/Table/components/atoms/TableCell.d.ts.map +1 -1
- package/dist/modules/Text/components/Text.d.ts +4 -1
- package/dist/modules/Text/components/Text.d.ts.map +1 -1
- package/dist/modules/Text/stories/Text.stories.d.ts +1 -0
- package/dist/modules/Text/stories/Text.stories.d.ts.map +1 -1
- package/dist/modules/Tooltip/components/atoms/TruncatedWithTooltip.d.ts +7 -1
- package/dist/modules/Tooltip/components/atoms/TruncatedWithTooltip.d.ts.map +1 -1
- package/dist/shared/types/table.d.ts +5 -0
- package/dist/shared/types/table.d.ts.map +1 -1
- package/dist/shared/types/text.d.ts +15 -0
- package/dist/shared/types/text.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,19 @@ Todos los cambios notables de este proyecto serán documentados en este archivo.
|
|
|
5
5
|
El formato está basado en [Keep a Changelog](https://keepachangelog.com/es-ES/1.0.0/),
|
|
6
6
|
y este proyecto adhiere a [Semantic Versioning](https://semver.org/lang/es/).
|
|
7
7
|
|
|
8
|
+
## [1.2.86] - 2026-03-26
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- **Text**: Props `truncateLabel`, `truncateTooltip` y `tooltipTitle` para truncado con ellipsis y tooltip al pasar el cursor (misma idea que `Tag` / `Badge`).
|
|
13
|
+
- **TruncatedWithTooltip**: Prop opcional `textColor` (tokens del sistema o color CSS) para el texto visible del truncado.
|
|
14
|
+
- **Table — TableCell**: Prop opcional `rawValue` (valor del accessor antes de `column.render`) para que `render` reciba el dato crudo; evita doble render con el nodo ya renderizado en la fila (p. ej. `NaN` al formatear números).
|
|
15
|
+
- **Storybook (Text)**: Historia «Truncado con tooltip».
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- **Table**: Celdas con `column.render` que formatean números ya no muestran `NaN` (se usa `rawValue` desde `CellRenderer`).
|
|
20
|
+
|
|
8
21
|
## [1.2.84] - 2026-03-25
|
|
9
22
|
|
|
10
23
|
### Added
|
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Biblioteca de componentes UI moderna y accesible para React, construida con TypeScript y Tailwind CSS.
|
|
6
6
|
|
|
7
|
-
> **Versión publicada:** `1.2.
|
|
7
|
+
> **Versión publicada:** `1.2.86` — actualizar este número y `CHANGELOG.md` antes de cada release (ver `npm run publish:patch|minor|major`).
|
|
8
8
|
|
|
9
9
|
## 📦 Instalación
|
|
10
10
|
|