@imj_media/ui 1.7.3 → 1.7.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 +12 -0
- package/README.md +2 -2
- package/dist/index.css +1 -1
- package/dist/index.esm.js +3216 -3169
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +19 -19
- package/dist/index.js.map +1 -1
- package/dist/modules/CatalogCard/components/organisms/catalogCardTagsRow.d.ts +3 -0
- package/dist/modules/CatalogCard/components/organisms/catalogCardTagsRow.d.ts.map +1 -1
- package/dist/modules/CatalogCard/stories/CatalogCard.stories.d.ts +5 -0
- package/dist/modules/CatalogCard/stories/CatalogCard.stories.d.ts.map +1 -1
- package/dist/modules/Input/components/Input.d.ts.map +1 -1
- package/dist/modules/Input/stories/Input.stories.d.ts.map +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ y este proyecto adhiere a [Semantic Versioning](https://semver.org/lang/es/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.7.5] - 2026-04-24
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- **CardCatalog** (DEV-846): row tags tooltip truncation in **`catalogCardTagsRow`**; Storybook **CatalogCard** stories updated.
|
|
15
|
+
|
|
16
|
+
## [1.7.4] - 2026-04-24
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
|
|
20
|
+
- **Tailwind:** `tailwind.config.js` now uses **`presets: [@imj_media/orbit-tokens/tailwind/preset]`**; all former `theme.extend` token mappings live in **`@imj_media/orbit-tokens`** (same generated utilities with prefix `ui-`). Local config keeps **`content`**, **`prefix`**, **`safelist`**, and **typography `plugins`** only. Dependency **`@imj_media/orbit-tokens`** raised to **^1.1.0**. See **`DEVELOPMENT_GUIDE.md`** (*Orbit — Tailwind preset*) and **`packages/orbit-tokens/README.md`**.
|
|
21
|
+
|
|
10
22
|
## [1.7.3] - 2026-04-23
|
|
11
23
|
|
|
12
24
|
### 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.7.
|
|
7
|
+
> **Versión publicada:** `1.7.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
|
|
|
@@ -37,7 +37,7 @@ function App() {
|
|
|
37
37
|
## 🎯 Características Principales
|
|
38
38
|
|
|
39
39
|
- **TypeScript First**: Tipos completamente tipados para una mejor experiencia de desarrollo
|
|
40
|
-
- **Tailwind CSS**: Sistema de diseño consistente y
|
|
40
|
+
- **Tailwind CSS**: Sistema de diseño consistente; el **`theme.extend`** compartido viene del preset de **`@imj_media/orbit-tokens`** (no duplicar tokens ni claves de tema en este paquete — ver **`DEVELOPMENT_GUIDE.md`**, sección *Orbit — Tailwind preset*, y **`packages/orbit-tokens/README.md`**)
|
|
41
41
|
- **Accesibilidad**: Componentes construidos siguiendo las mejores prácticas de a11y
|
|
42
42
|
- **Responsive**: Diseño adaptable a todos los tamaños de pantalla
|
|
43
43
|
- **Tema Personalizable**: Sistema de colores y estilos fácilmente configurable
|