@imj_media/ui 1.2.72 → 1.2.73

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.
Files changed (38) hide show
  1. package/CHANGELOG.md +11 -0
  2. package/dist/index.css +1 -1
  3. package/dist/index.esm.js +6673 -6585
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/index.js +9 -9
  6. package/dist/index.js.map +1 -1
  7. package/dist/modules/Badge/index.d.ts +1 -1
  8. package/dist/modules/Badge/index.d.ts.map +1 -1
  9. package/dist/modules/Table/Table.d.ts +1 -1
  10. package/dist/modules/Table/Table.d.ts.map +1 -1
  11. package/dist/modules/Table/components/atoms/DateCell.d.ts.map +1 -1
  12. package/dist/modules/Table/components/atoms/LinkCell.d.ts.map +1 -1
  13. package/dist/modules/Table/components/atoms/PrimaryCell.d.ts.map +1 -1
  14. package/dist/modules/Table/components/atoms/StarsCell.d.ts.map +1 -1
  15. package/dist/modules/Table/components/atoms/StatusCell.d.ts.map +1 -1
  16. package/dist/modules/Table/components/atoms/TableCell.d.ts.map +1 -1
  17. package/dist/modules/Table/components/atoms/TagsCell.d.ts.map +1 -1
  18. package/dist/modules/Table/components/organisms/TableToolbar.d.ts +3 -1
  19. package/dist/modules/Table/components/organisms/TableToolbar.d.ts.map +1 -1
  20. package/dist/modules/Table/hooks/useTableConfig.d.ts +7 -1
  21. package/dist/modules/Table/hooks/useTableConfig.d.ts.map +1 -1
  22. package/dist/modules/Table/stories/TableQueryPersist.stories.d.ts +7 -0
  23. package/dist/modules/Table/stories/TableQueryPersist.stories.d.ts.map +1 -0
  24. package/dist/modules/Table/stories/TableSwitchWithSearch.stories.d.ts +7 -0
  25. package/dist/modules/Table/stories/TableSwitchWithSearch.stories.d.ts.map +1 -0
  26. package/dist/modules/Tag/index.d.ts +1 -1
  27. package/dist/modules/Tag/index.d.ts.map +1 -1
  28. package/dist/modules/Tooltip/components/atoms/TruncatedWithTooltip.d.ts +22 -0
  29. package/dist/modules/Tooltip/components/atoms/TruncatedWithTooltip.d.ts.map +1 -0
  30. package/dist/modules/Tooltip/index.d.ts +2 -0
  31. package/dist/modules/Tooltip/index.d.ts.map +1 -1
  32. package/dist/shared/types/badge.d.ts +4 -0
  33. package/dist/shared/types/badge.d.ts.map +1 -1
  34. package/dist/shared/types/table.d.ts +9 -1
  35. package/dist/shared/types/table.d.ts.map +1 -1
  36. package/dist/shared/types/tag.d.ts +2 -0
  37. package/dist/shared/types/tag.d.ts.map +1 -1
  38. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,17 @@ 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.72] - 2026-03-13
9
+
10
+ ### Added
11
+ - **Review Layer**: Integración de `@bitux/review-layer-react` como dependencia. Re-export de `ReviewProvider` y `useReview` desde el SDK en el index del paquete.
12
+ - **Storybook - Review Layer**: Configuración con directorio de entorno custom; archivo de declaración TypeScript para variables de entorno; `ReviewProvider` en el preview para estado de revisiones; componente `LoadCommentsOnRoute` para cargar comentarios al cambiar de ruta; container ID estable para comment pins. Documentación de despliegue del Review Layer en Dokploy (variables de entorno y uso).
13
+ - **Table - maxWidth auto**: Soporte para columnas con `maxWidth: 'auto'`. Nueva prop `hasColumnMaxWidthAuto` en celdas y utilidades; `getTableCellProps` y funciones relacionadas contemplan columnas con ancho máximo automático; ajustes de layout y resize para columnas con ancho automático. Stories de Storybook actualizadas para mostrar la nueva capacidad.
14
+
15
+ ### Changed
16
+ - **Dependencia**: `@bitux/review-layer-react` actualizada a la versión 0.1.11.
17
+ - **Docker**: Variables de entorno para Review Layer (API key y URL) en Docker Compose y Dockerfile; Storybook carga las variables de entorno del Review Layer de forma dinámica en tiempo de build.
18
+
8
19
  ## [1.2.70] - 2026-03-12
9
20
 
10
21
  ### Added