@imj_media/ui 1.2.7 → 1.2.8
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 +9 -0
- package/dist/index.css +1 -1
- package/dist/index.esm.js +3061 -3048
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/modules/Table/components/atoms/ButtonCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/DateCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/DropdownCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/LinkCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/PrimaryCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/ProgressBarCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/SkeletonCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/StatusCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/TableCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/TagsCell.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/TextFieldCell.d.ts.map +1 -1
- package/dist/modules/Table/stories/Table.stories.d.ts +1 -0
- package/dist/modules/Table/stories/Table.stories.d.ts.map +1 -1
- package/dist/modules/Table/utils/cellStyles.d.ts +7 -0
- package/dist/modules/Table/utils/cellStyles.d.ts.map +1 -1
- package/dist/shared/types/table.d.ts +1 -0
- package/dist/shared/types/table.d.ts.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ 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.8] - 2025-12-16
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Table**: Nueva prop `contentAlign` en `ColumnConfig` para controlar el alineamiento horizontal del contenido en las celdas
|
|
12
|
+
- Valores disponibles: `'left'` (por defecto), `'center'`, `'right'`
|
|
13
|
+
- Función helper `getContentAlignClass()` en `cellStyles.ts` para generar las clases CSS correspondientes
|
|
14
|
+
- Soporte implementado en todos los componentes de celdas: `TableCell`, `DateCell`, `PrimaryCell`, `LinkCell`, `TextFieldCell`, `DropdownCell`, `ButtonCell`, `StatusCell`, `ProgressBarCell`, `TagsCell`, `SkeletonCell`
|
|
15
|
+
- Nueva story `ContentAlignment` en Table.stories.tsx que demuestra el uso de los diferentes alineamientos
|
|
16
|
+
|
|
8
17
|
## [1.2.7] - 2025-12-16
|
|
9
18
|
|
|
10
19
|
### Added
|