@imj_media/ui 1.6.11 → 1.6.13

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 (49) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/README.md +1 -1
  3. package/dist/index.css +1 -1
  4. package/dist/index.esm.js +8648 -8372
  5. package/dist/index.esm.js.map +1 -1
  6. package/dist/index.js +7 -7
  7. package/dist/index.js.map +1 -1
  8. package/dist/modules/CatalogCard/components/organisms/CatalogCard.d.ts +3 -2
  9. package/dist/modules/CatalogCard/components/organisms/CatalogCard.d.ts.map +1 -1
  10. package/dist/modules/CatalogCard/components/organisms/CatalogSupplierCard.d.ts +3 -0
  11. package/dist/modules/CatalogCard/components/organisms/CatalogSupplierCard.d.ts.map +1 -1
  12. package/dist/modules/CatalogCard/stories/CatalogCard.stories.d.ts +4 -0
  13. package/dist/modules/CatalogCard/stories/CatalogCard.stories.d.ts.map +1 -1
  14. package/dist/modules/CatalogCard/types/index.d.ts +7 -5
  15. package/dist/modules/CatalogCard/types/index.d.ts.map +1 -1
  16. package/dist/modules/DatePicker/DatePicker.d.ts.map +1 -1
  17. package/dist/modules/DatePicker/hooks/useDatePicker.d.ts.map +1 -1
  18. package/dist/modules/DatePicker/stories/DatePicker.stories.d.ts +7 -0
  19. package/dist/modules/DatePicker/stories/DatePicker.stories.d.ts.map +1 -1
  20. package/dist/modules/Input/components/Input.d.ts.map +1 -1
  21. package/dist/modules/Input/hooks/useInputStyles.d.ts.map +1 -1
  22. package/dist/modules/Popup/components/organisms/Popup.d.ts +5 -0
  23. package/dist/modules/Popup/components/organisms/Popup.d.ts.map +1 -1
  24. package/dist/modules/Popup/hooks/usePopup.d.ts +10 -5
  25. package/dist/modules/Popup/hooks/usePopup.d.ts.map +1 -1
  26. package/dist/modules/Popup/hooks/usePopupExternalTrigger.d.ts +4 -1
  27. package/dist/modules/Popup/hooks/usePopupExternalTrigger.d.ts.map +1 -1
  28. package/dist/modules/Popup/stories/popup.stories.d.ts +11 -0
  29. package/dist/modules/Popup/stories/popup.stories.d.ts.map +1 -1
  30. package/dist/modules/Popup/utils/popupPosition.d.ts +9 -0
  31. package/dist/modules/Popup/utils/popupPosition.d.ts.map +1 -1
  32. package/dist/modules/Table/components/atoms/ImagePreviewCell.d.ts +16 -0
  33. package/dist/modules/Table/components/atoms/ImagePreviewCell.d.ts.map +1 -0
  34. package/dist/modules/Table/components/atoms/ImagePreviewCell.test.d.ts +2 -0
  35. package/dist/modules/Table/components/atoms/ImagePreviewCell.test.d.ts.map +1 -0
  36. package/dist/modules/Table/components/atoms/index.d.ts +1 -0
  37. package/dist/modules/Table/components/atoms/index.d.ts.map +1 -1
  38. package/dist/modules/Table/components/molecules/CellRenderer.d.ts.map +1 -1
  39. package/dist/modules/Table/components/molecules/FilterCard.d.ts.map +1 -1
  40. package/dist/modules/Table/components/organisms/FilterPopup.d.ts.map +1 -1
  41. package/dist/modules/Table/stories/Table.stories.d.ts +5 -1
  42. package/dist/modules/Table/stories/Table.stories.d.ts.map +1 -1
  43. package/dist/shared/types/datepicker.d.ts +2 -0
  44. package/dist/shared/types/datepicker.d.ts.map +1 -1
  45. package/dist/shared/types/popup.d.ts +12 -0
  46. package/dist/shared/types/popup.d.ts.map +1 -1
  47. package/dist/shared/types/table.d.ts +28 -1
  48. package/dist/shared/types/table.d.ts.map +1 -1
  49. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -11,6 +11,34 @@ y este proyecto adhiere a [Semantic Versioning](https://semver.org/lang/es/).
11
11
 
12
12
  - **RangeBar** / **RangeSelector** (**breaking**): API con props agrupadas — `range`, `events`, `appearance`, `accessibility` en la pista; organismo con `labels` (`title` en lugar de `label` en raíz), `formatting` y `appearance.compact`. Tipos exportados: `RangeBarRangeProps`, `RangeBarEventsProps`, `RangeBarAppearanceProps`, `RangeBarAccessibilityProps`, `RangeSelectorLabelsProps`, `RangeSelectorFormattingProps`, `RangeSelectorAppearanceProps`.
13
13
 
14
+ ## [1.6.13] - 2026-04-16
15
+
16
+ ### Added
17
+
18
+ - **Table**: tipo de celda **`imagePreview`** (`ImagePreviewCell`): miniatura 16:9, contenedor `rounded-control-xs` (imágenes sin radio), borde brand al hover, altura máx. `calc(100% - 16px)` en la celda; misma imagen a 300×300 en `Popup` al hover (`hoverAnchorFollowPointer`), alternativa al lightbox de `IconCell` al clic. Valor: **`ImagePreviewCellValue`** (`src`, `title?`, `alt?`).
19
+ - **Popup**: prop **`openOnHoverAllowPanelPointer`** (por defecto `true`). Si es `false`, al salir del trigger el popup se cierra aunque el puntero pase al panel (sin “puente” hover). `ImagePreviewCell` la usa en `false` para que la vista ampliada no quede fija al mover el ratón al panel.
20
+
21
+ ### Changed
22
+
23
+ - **DatePicker**: prop **`disabled`** (`false` por defecto): impide abrir el calendario, cierra el portal si pasa a deshabilitado y reenvía **`disabled`** al **Input** interno.
24
+ - **Input**: ajustes en **`useInputStyles`**.
25
+ - **Popup**: posicionamiento (**`popupPosition`**), triggers externos y refinamiento del hover; tipos en **`@/shared/types/popup`**; tests y stories.
26
+ - **Table**: **`FilterCard`**, **`FilterPopup`** y tests asociados; tipos en **`@/shared/types/table`**; stories de **Table**.
27
+
28
+ ## [1.6.12] - 2026-04-16
29
+
30
+ ### Added
31
+
32
+ - **CatalogSupplierCard** (catálogo): estado **disabled**; tooltips por defecto en **Más opciones**, **Estatus** y **Evaluación** (DEV-799).
33
+
34
+ ### Changed
35
+
36
+ - **Badge**: ajuste visual del componente (DEV-800).
37
+
38
+ ### Fixed
39
+
40
+ - **CatalogSupplierCard** (catálogo): bordes en badges **gray**; hover en la cabecera de la card (DEV-799).
41
+
14
42
  ## [1.6.11] - 2026-04-15
15
43
 
16
44
  ### 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.6.11` — actualizar este número y `CHANGELOG.md` antes de cada release (orden y scripts: regla **`imj-ui-obligations-release`**; atajo `npm run publish:patch|minor|major` o pasos `bump:*` → `release:git` → `release:publish`).
7
+ > **Versión publicada:** `1.6.13` — actualizar este número y `CHANGELOG.md` antes de cada release (orden y scripts: regla **`imj-ui-obligations-release`**; atajo `npm run publish:patch|minor|major` o pasos `bump:*` → `release:git` → `release:publish`).
8
8
 
9
9
  ## 📦 Instalación
10
10