@imj_media/ui 1.2.49 → 1.2.51

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 CHANGED
@@ -5,6 +5,11 @@ 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.51] - 2026-03-02
9
+
10
+ ### Changed
11
+ - **Table - TagsCell**: Los tags en celdas se renderizan por defecto sin borde (`stroke={false}`). Se añade soporte para la prop `stroke` en los datos del tag; si se indica `stroke: true`, el tag mostrará borde.
12
+
8
13
  ## [1.2.49] - 2026-02-26
9
14
 
10
15
  ### Added
package/dist/index.esm.js CHANGED
@@ -5152,7 +5152,7 @@ const Sl = ({
5152
5152
  variants: {
5153
5153
  color: {
5154
5154
  accent: "ui-bg-surface-brand ui-text-brand ui-border-brand",
5155
- gray: "ui-bg-fill-tertiary ui-text-primary ui-border",
5155
+ gray: "ui-bg-fill-tertiary ui-text-primary ui-border-default",
5156
5156
  success: "ui-bg-surface-success ui-text-success ui-border-success",
5157
5157
  warning: "ui-bg-surface-warning ui-text-warning ui-border-warning",
5158
5158
  danger: "ui-bg-surface-danger ui-text-danger ui-border-danger",
@@ -16373,7 +16373,8 @@ const uc = ({
16373
16373
  label: y[c] || y.label || String(y),
16374
16374
  color: y[f] || y.color || "gray",
16375
16375
  avatar: y.avatar,
16376
- onClose: y.onClose
16376
+ onClose: y.onClose,
16377
+ stroke: y.stroke
16377
16378
  } : { label: String(y), color: "gray" };
16378
16379
  return h && p.length > 0 && (g.color = p[N % p.length]), /* @__PURE__ */ s("div", { className: "ui-max-w-[200px] ui-flex-shrink-0", children: /* @__PURE__ */ s(
16379
16380
  Ut,
@@ -16381,7 +16382,8 @@ const uc = ({
16381
16382
  label: g.label,
16382
16383
  color: g.color,
16383
16384
  avatar: g.avatar,
16384
- onClose: g.onClose
16385
+ onClose: g.onClose,
16386
+ stroke: g.stroke ?? !1
16385
16387
  }
16386
16388
  ) }, N);
16387
16389
  }) }) }) });