@imj_media/ui 1.10.7 → 1.10.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 +15 -0
- package/README.md +1 -1
- package/catalog/design-index.json +2 -2
- package/catalog/design-index.schema.json +26 -2
- package/dist/index.esm.js +5261 -5075
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +25 -25
- package/dist/index.js.map +1 -1
- package/dist/modules/index.d.ts +1 -0
- package/dist/modules/index.d.ts.map +1 -1
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ y este proyecto adhiere a [Semantic Versioning](https://semver.org/lang/es/).
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [1.10.8] - 2026-05-27
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- **`Tabs`:** reexportación en el barrel público (`src/modules/index.ts`) para consumo desde `@imj_media/ui` en runtime y tipos del paquete npm.
|
|
15
|
+
- **Release:** script `validate:public-exports` (módulos con stories deben estar en el barrel; excepciones en `public-export-exceptions.json`) integrado en `validate:publish` y `release:gate`.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- **`DEVELOPMENT_GUIDE.md`:** guía de exportación pública y verificación antes de release.
|
|
20
|
+
|
|
21
|
+
### Documentation
|
|
22
|
+
|
|
23
|
+
- **Monorepo:** regla Cursor `imj-ui-obligations-public-export` y referencias en skill `imj-ui-package`.
|
|
24
|
+
|
|
10
25
|
## [1.10.7] - 2026-05-26
|
|
11
26
|
|
|
12
27
|
### 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.8` — 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
|
|
|
@@ -67,7 +67,8 @@
|
|
|
67
67
|
},
|
|
68
68
|
"description": { "$ref": "#/$defs/mergedDescription" },
|
|
69
69
|
"examples": { "type": "array", "items": { "type": "string" } },
|
|
70
|
-
"props": { "$ref": "#/$defs/exportProps" }
|
|
70
|
+
"props": { "$ref": "#/$defs/exportProps" },
|
|
71
|
+
"demoProps": { "$ref": "#/$defs/demoPropsEntry" }
|
|
71
72
|
}
|
|
72
73
|
},
|
|
73
74
|
"exportProps": {
|
|
@@ -99,7 +100,30 @@
|
|
|
99
100
|
"compositionType": { "enum": [1, 2] },
|
|
100
101
|
"exports": { "type": "array", "items": { "$ref": "#/$defs/moduleExport" } },
|
|
101
102
|
"compositionRecipe": { "$ref": "#/$defs/compositionRecipe" },
|
|
102
|
-
"standaloneSnippet": { "type": "string" }
|
|
103
|
+
"standaloneSnippet": { "type": "string" },
|
|
104
|
+
"demoProps": { "$ref": "#/$defs/demoPropsEntry" },
|
|
105
|
+
"previewUnavailable": {
|
|
106
|
+
"enum": ["composite", "no_template", "deprecated", "internal_only"]
|
|
107
|
+
},
|
|
108
|
+
"previewScreenshotUrl": { "type": "string" }
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
"demoPropsEntry": {
|
|
112
|
+
"type": "object",
|
|
113
|
+
"required": ["props"],
|
|
114
|
+
"properties": {
|
|
115
|
+
"props": { "type": "object" },
|
|
116
|
+
"variants": {
|
|
117
|
+
"type": "array",
|
|
118
|
+
"items": {
|
|
119
|
+
"type": "object",
|
|
120
|
+
"required": ["name", "props"],
|
|
121
|
+
"properties": {
|
|
122
|
+
"name": { "type": "string" },
|
|
123
|
+
"props": { "type": "object" }
|
|
124
|
+
}
|
|
125
|
+
}
|
|
126
|
+
}
|
|
103
127
|
}
|
|
104
128
|
},
|
|
105
129
|
"tokenPalette": {
|