@life-cockpit/angular-ui-kit 1.11.3 → 1.11.4

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": "@life-cockpit/angular-ui-kit",
3
- "version": "1.11.3",
3
+ "version": "1.11.4",
4
4
  "description": "Life Cockpit Design System - Angular UI component library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -435,7 +435,7 @@ declare class CheckboxComponent implements ControlValueAccessor {
435
435
  type IconVariant = 'outline' | 'solid';
436
436
  type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
437
437
  /**
438
- * Icon component - Heroicons wrapper for displaying SVG icons
438
+ * Icon component - Tabler Icons wrapper for displaying SVG icons
439
439
  *
440
440
  * Features:
441
441
  * - Signal-based reactive API
@@ -443,7 +443,7 @@ type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
443
443
  * - Multiple size options (xs, sm, md, lg, xl)
444
444
  * - Custom color support (CSS colors, variables)
445
445
  * - Accessibility attributes (ARIA labels, decorative icons)
446
- * - Dynamic SVG loading from Heroicons
446
+ * - Dynamic SVG loading from Tabler Icons
447
447
  *
448
448
  * @example
449
449
  * ```html
@@ -470,7 +470,7 @@ declare class IconComponent {
470
470
  private readonly sanitizer;
471
471
  private readonly http;
472
472
  /**
473
- * Icon name from Heroicons library
473
+ * Icon name from Tabler Icons library
474
474
  * @example "user", "check", "arrow-right"
475
475
  */
476
476
  readonly name: _angular_core.InputSignal<string>;
@@ -509,13 +509,13 @@ declare class IconComponent {
509
509
  */
510
510
  readonly decorative: _angular_core.InputSignal<boolean>;
511
511
  /**
512
- * SVG content loaded from Heroicons
512
+ * SVG content loaded from Tabler Icons
513
513
  * @internal
514
514
  */
515
515
  readonly svgContent: _angular_core.WritableSignal<SafeHtml>;
516
516
  /**
517
- * Alias map for non-Heroicon names (e.g. Material Design names)
518
- * Maps alternative names to their Heroicon equivalents
517
+ * Alias map for non-Tabler names (e.g. Material Design names)
518
+ * Maps alternative names to their Tabler equivalents
519
519
  * @internal
520
520
  */
521
521
  private readonly iconAliasMap;
@@ -794,12 +794,12 @@ declare class InputComponent implements ControlValueAccessor {
794
794
  */
795
795
  readonly helperText: _angular_core.InputSignal<string | undefined>;
796
796
  /**
797
- * Icon to display before input text (Heroicons name)
797
+ * Icon to display before input text (Tabler icon name)
798
798
  * @example 'envelope'
799
799
  */
800
800
  readonly iconBefore: _angular_core.InputSignal<string | undefined>;
801
801
  /**
802
- * Icon to display after input text (Heroicons name)
802
+ * Icon to display after input text (Tabler icon name)
803
803
  * @example 'eye'
804
804
  */
805
805
  readonly iconAfter: _angular_core.InputSignal<string | undefined>;
@@ -3317,7 +3317,7 @@ declare class TabComponent {
3317
3317
  */
3318
3318
  readonly disabled: _angular_core.InputSignal<boolean>;
3319
3319
  /**
3320
- * Optional icon name (Heroicons)
3320
+ * Optional icon name (Tabler Icons)
3321
3321
  */
3322
3322
  readonly icon: _angular_core.InputSignal<string | undefined>;
3323
3323
  /**
@@ -3717,7 +3717,7 @@ declare class ChipComponent {
3717
3717
  variant: _angular_core.InputSignal<ChipVariant>;
3718
3718
  /** Size of the chip */
3719
3719
  size: _angular_core.InputSignal<ChipSize>;
3720
- /** Icon name from Heroicons */
3720
+ /** Icon name from Tabler Icons */
3721
3721
  icon: _angular_core.InputSignal<string | undefined>;
3722
3722
  /** Whether the chip can be removed */
3723
3723
  removable: _angular_core.InputSignal<boolean>;
@@ -3923,7 +3923,7 @@ declare class TableComponent {
3923
3923
  *
3924
3924
  * Features:
3925
3925
  * - Consistent label-value layout for read-only data
3926
- * - Optional leading icon from Heroicons
3926
+ * - Optional leading icon from Tabler Icons
3927
3927
  * - Compact mode for dense layouts
3928
3928
  * - Content projection for custom value rendering
3929
3929
  * - Configurable icon size (xs, sm, md)
@@ -3944,7 +3944,7 @@ declare class FieldGroupComponent {
3944
3944
  */
3945
3945
  value: _angular_core.InputSignal<string | undefined>;
3946
3946
  /**
3947
- * Optional icon name from Heroicons
3947
+ * Optional icon name from Tabler Icons
3948
3948
  */
3949
3949
  icon: _angular_core.InputSignal<string | undefined>;
3950
3950
  /**
@@ -4165,7 +4165,7 @@ type EmptyStateSize = 'sm' | 'md' | 'lg';
4165
4165
  *
4166
4166
  * Features:
4167
4167
  * - Compact (sm) and page-level (md, lg) size modes
4168
- * - Optional icon from Heroicons library
4168
+ * - Optional icon from Tabler Icons library
4169
4169
  * - Heading and description text
4170
4170
  * - Action slot for projected CTA buttons
4171
4171
  * - Centered layout with visual hierarchy
@@ -4190,7 +4190,7 @@ declare class EmptyStateComponent {
4190
4190
  */
4191
4191
  readonly size: _angular_core.InputSignal<EmptyStateSize>;
4192
4192
  /**
4193
- * Heroicon name to display above the heading
4193
+ * Tabler icon name to display above the heading
4194
4194
  */
4195
4195
  readonly icon: _angular_core.InputSignal<string | undefined>;
4196
4196
  /**
@@ -4594,7 +4594,7 @@ declare class StatTrendComponent {
4594
4594
  sparklineData: _angular_core.InputSignal<number[]>;
4595
4595
  /** Color of the sparkline. Auto-matched to trend direction if not set. */
4596
4596
  sparklineColor: _angular_core.InputSignal<SparklineColor | undefined>;
4597
- /** Optional icon name (Heroicon). */
4597
+ /** Optional icon name (Tabler icon). */
4598
4598
  icon: _angular_core.InputSignal<string>;
4599
4599
  protected readonly resolvedDirection: _angular_core.Signal<StatTrendDirection>;
4600
4600
  protected readonly trendColorClass: _angular_core.Signal<string>;