@imj_media/ui 1.2.10 → 1.2.12

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 (39) hide show
  1. package/CHANGELOG.md +16 -0
  2. package/dist/index.css +1 -1
  3. package/dist/index.esm.js +3464 -3388
  4. package/dist/index.esm.js.map +1 -1
  5. package/dist/index.js +7 -7
  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/Badge/stories/badge.stories.d.ts +1 -0
  10. package/dist/modules/Badge/stories/badge.stories.d.ts.map +1 -1
  11. package/dist/modules/Filters/components/organisms/Filters.d.ts +1 -1
  12. package/dist/modules/Filters/components/organisms/Filters.d.ts.map +1 -1
  13. package/dist/modules/Header/components/organims/Header.d.ts.map +1 -1
  14. package/dist/modules/Icon/Icon.d.ts.map +1 -1
  15. package/dist/modules/Icon/constants/size.d.ts.map +1 -1
  16. package/dist/modules/Icon/stories/Icon.stories.d.ts.map +1 -1
  17. package/dist/modules/InnerButton/index.d.ts +1 -1
  18. package/dist/modules/InnerButton/index.d.ts.map +1 -1
  19. package/dist/modules/InnerButton/stories/InnerButton.stories.d.ts +1 -0
  20. package/dist/modules/InnerButton/stories/InnerButton.stories.d.ts.map +1 -1
  21. package/dist/modules/Modal/Modal.d.ts.map +1 -1
  22. package/dist/modules/Modal/stories/Modal.stories.d.ts +1 -0
  23. package/dist/modules/Modal/stories/Modal.stories.d.ts.map +1 -1
  24. package/dist/modules/Pagination/components/organisms/Pagination.d.ts.map +1 -1
  25. package/dist/modules/Popup/stories/popup.stories.d.ts.map +1 -1
  26. package/dist/modules/Table/components/atoms/IconCell.d.ts +1 -1
  27. package/dist/modules/Table/components/atoms/IconCell.d.ts.map +1 -1
  28. package/dist/modules/Table/stories/Table.stories.d.ts.map +1 -1
  29. package/dist/shared/types/badge.d.ts +1 -0
  30. package/dist/shared/types/badge.d.ts.map +1 -1
  31. package/dist/shared/types/button.d.ts +1 -0
  32. package/dist/shared/types/button.d.ts.map +1 -1
  33. package/dist/shared/types/filters.d.ts +3 -1
  34. package/dist/shared/types/filters.d.ts.map +1 -1
  35. package/dist/shared/types/icon.d.ts +1 -1
  36. package/dist/shared/types/icon.d.ts.map +1 -1
  37. package/dist/shared/types/modal.d.ts +1 -0
  38. package/dist/shared/types/modal.d.ts.map +1 -1
  39. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -5,6 +5,22 @@ 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.11] - 2025-01-16
9
+
10
+ ### Added
11
+ - **Table - IconCell con Lightbox Integrado**: Nueva funcionalidad para el tipo de celda 'icon' con lightbox integrado
12
+ - El `IconCell` ahora soporta lightbox integrado que se abre automáticamente al hacer clic en el icono
13
+ - El accessor puede retornar un objeto `IconCellConfig` con las siguientes propiedades:
14
+ - `icon`: `VisualSlotType` - Icono a mostrar (string o Font Awesome icon)
15
+ - `color?`: `IconFontColor` - Color del icono (opcional, por defecto 'tertiary')
16
+ - `images?`: `string | string[] | ILightboxImage | ILightboxImage[]` - URL string, array de URLs, o array de objetos ILightboxImage
17
+ - `displayMode?`: `ImageDisplayMode` - Modo de visualización del lightbox ('fullWidth' o 'square', opcional)
18
+ - `className?`: `string` - Clases CSS adicionales (opcional)
19
+ - Soporte para URL string o array de imágenes (usa la primera imagen si es un array)
20
+ - El lightbox se renderiza dentro del componente `IconCell`, sin necesidad de estado externo
21
+ - Soporte para `contentAlign` en `IconCell` para alinear el contenido ('left', 'center', 'right')
22
+ - Nueva story `WithLightbox` que demuestra el uso del IconCell con lightbox integrado
23
+
8
24
  ## [1.2.10] - 2025-12-16
9
25
 
10
26
  ### Fixed