@truenas/ui-components 0.3.7 → 0.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@truenas/ui-components",
3
- "version": "0.3.7",
3
+ "version": "0.3.8",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org",
6
6
  "access": "public"
@@ -1252,6 +1252,14 @@ declare class TnIconComponent {
1252
1252
  private sanitizer;
1253
1253
  constructor();
1254
1254
  hostDimension: _angular_core.Signal<string | null>;
1255
+ /**
1256
+ * Inline min-width/min-height override for the custom/full-size paths.
1257
+ * - customSize: pin the minimum to the custom value so flex layouts can't
1258
+ * squish it (mirrors the preset min-* rules in the stylesheet).
1259
+ * - fullSize: relax the minimum to 0 so the icon can shrink with its
1260
+ * container instead of being clamped by the `size` attribute's preset min.
1261
+ */
1262
+ hostMinDimension: _angular_core.Signal<string | null>;
1255
1263
  hostFontSize: _angular_core.Signal<string | null>;
1256
1264
  effectiveAriaLabel: _angular_core.Signal<string>;
1257
1265
  sanitizedContent: _angular_core.Signal<SafeHtml>;