@imj_media/ui 1.7.1 → 1.7.3
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 +13 -0
- package/README.md +1 -1
- package/dist/index.css +2 -2
- package/dist/index.esm.js +3847 -3813
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +7 -7
- package/dist/index.js.map +1 -1
- package/dist/modules/Input/components/Input.d.ts +9 -0
- package/dist/modules/Input/components/Input.d.ts.map +1 -1
- package/dist/modules/Input/hooks/useInputStyles.d.ts +3 -1
- package/dist/modules/Input/hooks/useInputStyles.d.ts.map +1 -1
- package/dist/modules/Input/stories/Input.stories.d.ts +1 -0
- package/dist/modules/Input/stories/Input.stories.d.ts.map +1 -1
- package/dist/modules/Table/components/atoms/ImagePreviewCell.d.ts +7 -6
- package/dist/modules/Table/components/atoms/ImagePreviewCell.d.ts.map +1 -1
- package/dist/modules/Table/stories/cells/19-ImagePreview.stories.d.ts +20 -0
- package/dist/modules/Table/stories/cells/19-ImagePreview.stories.d.ts.map +1 -0
- package/dist/shared/types/input.d.ts +5 -0
- package/dist/shared/types/input.d.ts.map +1 -1
- package/dist/shared/types/table.d.ts +8 -1
- package/dist/shared/types/table.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,19 @@ y este proyecto adhiere a [Semantic Versioning](https://semver.org/lang/es/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.7.3] - 2026-04-23
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **Input**: prop **`minWidthEnabled`** (por defecto `true`). Con **`fullWidth={false}`**, permite desactivar el ancho mínimo del control (`ui-min-w-72`) en huecos estrechos. Historia Storybook **AnchoMinimoConfigurable**.
|
|
15
|
+
|
|
16
|
+
## [1.7.2] - 2026-04-23
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Tipografía / tokens:** `fontFamily.sans`, `ui-text` y `ui-rounded` en Tailwind usan solo `var(--ui-font-family-ui)` (misma fuente que los tokens de orbit). **`index.css` (Storybook / estilos compartidos):** `body` usa `var(--ui-font-family-ui)` para alinearse con `@imj_media/orbit-tokens`. Las apps consumidoras pueden fijar **`--app-font-family`** en `:root` (ver `@imj_media/orbit-tokens` ≥ 1.0.1) para su fuente de producto; si no, se mantiene **Inter** como hasta ahora.
|
|
21
|
+
- **Dependencia:** `@imj_media/orbit-tokens` ^1.0.1 (variable `--app-font-family` en tokens).
|
|
22
|
+
|
|
10
23
|
## [1.7.1] - 2026-04-23
|
|
11
24
|
|
|
12
25
|
### Fixed
|
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.7.
|
|
7
|
+
> **Versión publicada:** `1.7.3` — 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
|
|