@life-cockpit/angular-ui-kit 1.11.5 → 1.11.7
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
|
@@ -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 -
|
|
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
|
|
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
|
-
|
|
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
|
-
|
|
512
|
+
* SVG content loaded from Tabler Icons
|
|
513
513
|
* @internal
|
|
514
514
|
*/
|
|
515
515
|
readonly svgContent: _angular_core.WritableSignal<SafeHtml>;
|
|
516
516
|
/**
|
|
517
|
-
|
|
518
|
-
|
|
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
|
-
|
|
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
|
-
|
|
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 (
|
|
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
|
|
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>;
|
|
@@ -3942,7 +3942,7 @@ declare class TableComponent {
|
|
|
3942
3942
|
*
|
|
3943
3943
|
* Features:
|
|
3944
3944
|
* - Consistent label-value layout for read-only data
|
|
3945
|
-
* - Optional leading icon from
|
|
3945
|
+
* - Optional leading icon from Tabler Icons
|
|
3946
3946
|
* - Compact mode for dense layouts
|
|
3947
3947
|
* - Content projection for custom value rendering
|
|
3948
3948
|
* - Configurable icon size (xs, sm, md)
|
|
@@ -3963,7 +3963,7 @@ declare class FieldGroupComponent {
|
|
|
3963
3963
|
*/
|
|
3964
3964
|
value: _angular_core.InputSignal<string | undefined>;
|
|
3965
3965
|
/**
|
|
3966
|
-
* Optional icon name from
|
|
3966
|
+
* Optional icon name from Tabler Icons
|
|
3967
3967
|
*/
|
|
3968
3968
|
icon: _angular_core.InputSignal<string | undefined>;
|
|
3969
3969
|
/**
|
|
@@ -4184,7 +4184,7 @@ type EmptyStateSize = 'sm' | 'md' | 'lg';
|
|
|
4184
4184
|
*
|
|
4185
4185
|
* Features:
|
|
4186
4186
|
* - Compact (sm) and page-level (md, lg) size modes
|
|
4187
|
-
* - Optional icon from
|
|
4187
|
+
* - Optional icon from Tabler Icons library
|
|
4188
4188
|
* - Heading and description text
|
|
4189
4189
|
* - Action slot for projected CTA buttons
|
|
4190
4190
|
* - Centered layout with visual hierarchy
|
|
@@ -4209,7 +4209,7 @@ declare class EmptyStateComponent {
|
|
|
4209
4209
|
*/
|
|
4210
4210
|
readonly size: _angular_core.InputSignal<EmptyStateSize>;
|
|
4211
4211
|
/**
|
|
4212
|
-
|
|
4212
|
+
* Tabler icon name to display above the heading
|
|
4213
4213
|
*/
|
|
4214
4214
|
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
4215
4215
|
/**
|
|
@@ -4613,7 +4613,7 @@ declare class StatTrendComponent {
|
|
|
4613
4613
|
sparklineData: _angular_core.InputSignal<number[]>;
|
|
4614
4614
|
/** Color of the sparkline. Auto-matched to trend direction if not set. */
|
|
4615
4615
|
sparklineColor: _angular_core.InputSignal<SparklineColor | undefined>;
|
|
4616
|
-
/** Optional icon name (
|
|
4616
|
+
/** Optional icon name (Tabler icon). */
|
|
4617
4617
|
icon: _angular_core.InputSignal<string>;
|
|
4618
4618
|
protected readonly resolvedDirection: _angular_core.Signal<StatTrendDirection>;
|
|
4619
4619
|
protected readonly trendColorClass: _angular_core.Signal<string>;
|