@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.
- package/CHANGELOG.md +16 -0
- package/dist/index.css +1 -1
- package/dist/index.esm.js +3464 -3388
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/modules/Badge/index.d.ts +1 -1
- package/dist/modules/Badge/index.d.ts.map +1 -1
- package/dist/modules/Badge/stories/badge.stories.d.ts +1 -0
- package/dist/modules/Badge/stories/badge.stories.d.ts.map +1 -1
- package/dist/modules/Filters/components/organisms/Filters.d.ts +1 -1
- package/dist/modules/Filters/components/organisms/Filters.d.ts.map +1 -1
- package/dist/modules/Header/components/organims/Header.d.ts.map +1 -1
- package/dist/modules/Icon/Icon.d.ts.map +1 -1
- package/dist/modules/Icon/constants/size.d.ts.map +1 -1
- package/dist/modules/Icon/stories/Icon.stories.d.ts.map +1 -1
- package/dist/modules/InnerButton/index.d.ts +1 -1
- package/dist/modules/InnerButton/index.d.ts.map +1 -1
- package/dist/modules/InnerButton/stories/InnerButton.stories.d.ts +1 -0
- package/dist/modules/InnerButton/stories/InnerButton.stories.d.ts.map +1 -1
- package/dist/modules/Modal/Modal.d.ts.map +1 -1
- package/dist/modules/Modal/stories/Modal.stories.d.ts +1 -0
- package/dist/modules/Modal/stories/Modal.stories.d.ts.map +1 -1
- package/dist/modules/Pagination/components/organisms/Pagination.d.ts.map +1 -1
- package/dist/modules/Popup/stories/popup.stories.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/IconCell.d.ts +1 -1
- package/dist/modules/Table/components/atoms/IconCell.d.ts.map +1 -1
- package/dist/modules/Table/stories/Table.stories.d.ts.map +1 -1
- package/dist/shared/types/badge.d.ts +1 -0
- package/dist/shared/types/badge.d.ts.map +1 -1
- package/dist/shared/types/button.d.ts +1 -0
- package/dist/shared/types/button.d.ts.map +1 -1
- package/dist/shared/types/filters.d.ts +3 -1
- package/dist/shared/types/filters.d.ts.map +1 -1
- package/dist/shared/types/icon.d.ts +1 -1
- package/dist/shared/types/icon.d.ts.map +1 -1
- package/dist/shared/types/modal.d.ts +1 -0
- package/dist/shared/types/modal.d.ts.map +1 -1
- 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
|