@imj_media/ui 1.10.3 → 1.10.5
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 +23 -0
- package/README.md +1 -1
- package/catalog/design-index.json +2857 -0
- package/catalog/design-index.schema.json +131 -0
- package/catalog/legacy-modules.json +15 -0
- package/dist/index.css +1 -1
- package/dist/index.esm.js +8263 -8165
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +29 -29
- package/dist/index.js.map +1 -1
- package/dist/modules/RangeBar/components/organisms/RangeSelector.d.ts +2 -2
- package/dist/modules/RangeBar/components/organisms/RangeSelector.d.ts.map +1 -1
- package/dist/modules/RangeBar/stories/RangeBar.stories.d.ts +2 -0
- package/dist/modules/RangeBar/stories/RangeBar.stories.d.ts.map +1 -1
- package/dist/modules/RangeBar/utils/rangeSelectorDisplayWidth.d.ts +2 -0
- package/dist/modules/RangeBar/utils/rangeSelectorDisplayWidth.d.ts.map +1 -1
- package/dist/modules/Table/Table.d.ts.map +1 -1
- package/dist/modules/Table/components/organisms/TableToolbar.d.ts +1 -1
- package/dist/modules/Table/components/organisms/TableToolbar.d.ts.map +1 -1
- package/dist/modules/Table/hooks/useTableColumns.d.ts.map +1 -1
- package/dist/modules/Table/hooks/useTableConfig.d.ts.map +1 -1
- package/dist/modules/Table/hooks/useTableFilters.d.ts +2 -1
- package/dist/modules/Table/hooks/useTableFilters.d.ts.map +1 -1
- package/dist/modules/Table/hooks/useTableSelection.d.ts +5 -0
- package/dist/modules/Table/hooks/useTableSelection.d.ts.map +1 -1
- package/dist/modules/Table/stories/Table.stories.d.ts +12 -0
- package/dist/modules/Table/stories/Table.stories.d.ts.map +1 -1
- package/dist/modules/Table/utils/columnLockable.d.ts +10 -0
- package/dist/modules/Table/utils/columnLockable.d.ts.map +1 -1
- package/dist/modules/Table/utils/columnManagement.d.ts.map +1 -1
- package/dist/modules/Table/utils/selection.d.ts +6 -0
- package/dist/modules/Table/utils/selection.d.ts.map +1 -1
- package/dist/modules/Table/utils/tableColumnTransforms.d.ts.map +1 -1
- package/dist/shared/types/table.d.ts +44 -1
- package/dist/shared/types/table.d.ts.map +1 -1
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,29 @@ y este proyecto adhiere a [Semantic Versioning](https://semver.org/lang/es/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.10.5] - 2026-05-25
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **`Table`:** columnas `type: 'actions'` ya no permiten bloqueo (lock) ni redimensión; se agregó `type` a `TableColumnState` para propagar el guard al estado persistido.
|
|
15
|
+
- **`Table`:** selección acumulativa al usar «Seleccionar todo» (DEV-972).
|
|
16
|
+
- **`TableToolbar`:** corrección de indentación en bloque de estilo de búsqueda.
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **`Table`:** refactor de comentarios en `ColumnConfig` para clarificar comportamiento de `resizable` en columnas de acciones.
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- **`Table` / toolbar:** prop `searchWidth` para recibir tamaño personalizado del input de búsqueda (DEV-972).
|
|
25
|
+
- **`RangeBar`:** corrección de espaciados internos (DEV-972).
|
|
26
|
+
|
|
27
|
+
## [1.10.4] - 2026-05-20
|
|
28
|
+
|
|
29
|
+
### Notas
|
|
30
|
+
|
|
31
|
+
- Mismo contenido de paquete que **1.10.3**; release patch solicitado para alineación de versión en npm y documentación de consumidor.
|
|
32
|
+
|
|
10
33
|
## [1.10.3] - 2026-05-19
|
|
11
34
|
|
|
12
35
|
### 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.10.
|
|
7
|
+
> **Versión publicada:** `1.10.5` — 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
|
|