@life-cockpit/angular-ui-kit 1.1.0 → 1.2.0
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
|
@@ -301,6 +301,15 @@ declare class CardComponent {
|
|
|
301
301
|
* Optional subtitle rendered below the title.
|
|
302
302
|
*/
|
|
303
303
|
subtitle: _angular_core.InputSignal<string | undefined>;
|
|
304
|
+
/**
|
|
305
|
+
* Optional badge text/count shown next to the title (e.g. item count).
|
|
306
|
+
*/
|
|
307
|
+
badge: _angular_core.InputSignal<string | undefined>;
|
|
308
|
+
/**
|
|
309
|
+
* Badge color variant.
|
|
310
|
+
* @default 'default'
|
|
311
|
+
*/
|
|
312
|
+
badgeVariant: _angular_core.InputSignal<"error" | "primary" | "warning" | "default" | "success">;
|
|
304
313
|
/**
|
|
305
314
|
* Visual variant of the card
|
|
306
315
|
* - elevated: Box shadow (default)
|
|
@@ -354,7 +363,7 @@ declare class CardComponent {
|
|
|
354
363
|
*/
|
|
355
364
|
protected handleKeydown(event: KeyboardEvent): void;
|
|
356
365
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
357
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardComponent, "lc-card", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "cardClick": "cardClick"; }, never, ["[card-header]", "*", "[card-footer]"], true, never>;
|
|
366
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardComponent, "lc-card", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "badge": { "alias": "badge"; "required": false; "isSignal": true; }; "badgeVariant": { "alias": "badgeVariant"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "padding": { "alias": "padding"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, { "cardClick": "cardClick"; }, never, ["[card-header-action]", "[card-header]", "*", "[card-footer]"], true, never>;
|
|
358
367
|
}
|
|
359
368
|
|
|
360
369
|
type CheckboxSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -550,10 +559,17 @@ declare class LogoComponent {
|
|
|
550
559
|
* Makes the logo appear clickable
|
|
551
560
|
*/
|
|
552
561
|
clickable: boolean;
|
|
562
|
+
/**
|
|
563
|
+
* Color mode for different backgrounds
|
|
564
|
+
* - 'auto': Follows global theme (uses CSS filter in dark mode)
|
|
565
|
+
* - 'light': Optimized for light backgrounds (default appearance)
|
|
566
|
+
* - 'dark': Inverted for dark backgrounds (white/light logo)
|
|
567
|
+
*/
|
|
568
|
+
colorMode: 'auto' | 'light' | 'dark';
|
|
553
569
|
get logoSrc(): string;
|
|
554
570
|
get logoClasses(): string;
|
|
555
571
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LogoComponent, never>;
|
|
556
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LogoComponent, "lc-logo", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; }, {}, never, never, true, never>;
|
|
572
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LogoComponent, "lc-logo", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "alt": { "alias": "alt"; "required": false; }; "clickable": { "alias": "clickable"; "required": false; }; "colorMode": { "alias": "colorMode"; "required": false; }; }, {}, never, never, true, never>;
|
|
557
573
|
}
|
|
558
574
|
|
|
559
575
|
interface MenuItem {
|
|
@@ -611,6 +627,11 @@ declare class MenuComponent {
|
|
|
611
627
|
* @default 'bottom-right'
|
|
612
628
|
*/
|
|
613
629
|
position: 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
|
|
630
|
+
/**
|
|
631
|
+
* Size of menu items
|
|
632
|
+
* @default 'md'
|
|
633
|
+
*/
|
|
634
|
+
size: 'sm' | 'md' | 'lg';
|
|
614
635
|
/**
|
|
615
636
|
* Minimum width of menu dropdown
|
|
616
637
|
* @default '220px'
|
|
@@ -642,7 +663,7 @@ declare class MenuComponent {
|
|
|
642
663
|
*/
|
|
643
664
|
onEscapeKey(): void;
|
|
644
665
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
645
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "lc-menu", never, { "items": { "alias": "items"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "position": { "alias": "position"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; }, { "itemClick": "itemClick"; "closed": "closed"; }, never, ["[trigger]", "[header]", "[footer]"], true, never>;
|
|
666
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "lc-menu", never, { "items": { "alias": "items"; "required": false; }; "isOpen": { "alias": "isOpen"; "required": false; }; "position": { "alias": "position"; "required": false; }; "size": { "alias": "size"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; }, { "itemClick": "itemClick"; "closed": "closed"; }, never, ["[trigger]", "[header]", "[footer]"], true, never>;
|
|
646
667
|
}
|
|
647
668
|
|
|
648
669
|
/**
|
|
@@ -880,7 +901,7 @@ declare class TypographyComponent {
|
|
|
880
901
|
* Text color using semantic color tokens
|
|
881
902
|
* @default 'primary'
|
|
882
903
|
*/
|
|
883
|
-
color: _angular_core.InputSignal<"error" | "primary" | "secondary" | "warning" | "info" | "
|
|
904
|
+
color: _angular_core.InputSignal<"error" | "primary" | "secondary" | "warning" | "info" | "success" | "disabled">;
|
|
884
905
|
/**
|
|
885
906
|
* Font weight
|
|
886
907
|
* @default 'regular'
|
|
@@ -1820,11 +1841,13 @@ declare class EmailInputComponent implements ControlValueAccessor {
|
|
|
1820
1841
|
|
|
1821
1842
|
type HeroColor = 'primary' | 'secondary' | 'neutral' | 'success' | 'info' | 'warning' | 'accent-orange' | 'accent-purple' | 'accent-violet';
|
|
1822
1843
|
type HeroSize = 'sm' | 'md' | 'lg';
|
|
1844
|
+
type HeroVariant = 'default' | 'slim' | 'light';
|
|
1823
1845
|
/**
|
|
1824
1846
|
* Hero component for prominent page headers with gradient backgrounds.
|
|
1825
1847
|
*
|
|
1826
1848
|
* Features:
|
|
1827
|
-
* - Color gradient variants (primary, secondary, success, warning,
|
|
1849
|
+
* - Color gradient variants (primary, secondary, success, warning, info, neutral, accent-orange, accent-purple, accent-violet)
|
|
1850
|
+
* - 3 visual variants: default (dark gradient), slim (compact banner), light (pastel gradient with dark text)
|
|
1828
1851
|
* - Size options (sm, md, lg)
|
|
1829
1852
|
* - Optional label text above the title
|
|
1830
1853
|
* - Configurable border radius
|
|
@@ -1833,7 +1856,7 @@ type HeroSize = 'sm' | 'md' | 'lg';
|
|
|
1833
1856
|
*
|
|
1834
1857
|
* @example
|
|
1835
1858
|
* ```html
|
|
1836
|
-
* <lc-hero label="MY APP" title="Welcome" color="primary">
|
|
1859
|
+
* <lc-hero label="MY APP" title="Welcome" color="primary" variant="slim">
|
|
1837
1860
|
* <p>Description text</p>
|
|
1838
1861
|
* <div hero-footer>Status: Active</div>
|
|
1839
1862
|
* </lc-hero>
|
|
@@ -1863,9 +1886,17 @@ declare class HeroComponent {
|
|
|
1863
1886
|
* @default 'lg'
|
|
1864
1887
|
*/
|
|
1865
1888
|
borderRadius: _angular_core.InputSignal<"sm" | "md" | "lg" | "none">;
|
|
1889
|
+
/**
|
|
1890
|
+
* Visual variant.
|
|
1891
|
+
* - `default`: dark gradient with white text
|
|
1892
|
+
* - `slim`: compact single-line banner
|
|
1893
|
+
* - `light`: softer pastel gradient with dark text
|
|
1894
|
+
* @default 'default'
|
|
1895
|
+
*/
|
|
1896
|
+
variant: _angular_core.InputSignal<HeroVariant>;
|
|
1866
1897
|
protected heroClasses: _angular_core.Signal<string>;
|
|
1867
1898
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeroComponent, never>;
|
|
1868
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeroComponent, "lc-hero", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; }, {}, never, ["*", "[hero-footer]"], true, never>;
|
|
1899
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeroComponent, "lc-hero", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "borderRadius": { "alias": "borderRadius"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, {}, never, ["*", "[hero-footer]"], true, never>;
|
|
1869
1900
|
}
|
|
1870
1901
|
|
|
1871
1902
|
type ProgressBarColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
|
|
@@ -2790,6 +2821,13 @@ declare class BreadcrumbsComponent {
|
|
|
2790
2821
|
* ```
|
|
2791
2822
|
*/
|
|
2792
2823
|
declare class HeaderComponent {
|
|
2824
|
+
/**
|
|
2825
|
+
* Theme variant for the header
|
|
2826
|
+
* - 'light': Light background with dark text (default)
|
|
2827
|
+
* - 'dark': Dark background with light text
|
|
2828
|
+
* - 'auto': Follows the global theme (data-theme attribute)
|
|
2829
|
+
*/
|
|
2830
|
+
theme: 'light' | 'dark' | 'auto';
|
|
2793
2831
|
/**
|
|
2794
2832
|
* Logo image source URL
|
|
2795
2833
|
*/
|
|
@@ -2819,6 +2857,11 @@ declare class HeaderComponent {
|
|
|
2819
2857
|
* Whether to show theme toggle button in header
|
|
2820
2858
|
*/
|
|
2821
2859
|
showThemeButton: boolean;
|
|
2860
|
+
/**
|
|
2861
|
+
* Size of the profile dropdown menu
|
|
2862
|
+
* @default 'sm'
|
|
2863
|
+
*/
|
|
2864
|
+
menuSize: 'sm' | 'md' | 'lg';
|
|
2822
2865
|
/**
|
|
2823
2866
|
* Whether to show the Profile menu item in the user dropdown
|
|
2824
2867
|
* @default true
|
|
@@ -2882,7 +2925,7 @@ declare class HeaderComponent {
|
|
|
2882
2925
|
*/
|
|
2883
2926
|
onMenuItemClick(item: MenuItem): void;
|
|
2884
2927
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
2885
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "lc-header", never, { "logo": { "alias": "logo"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "userEmail": { "alias": "userEmail"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "showHamburger": { "alias": "showHamburger"; "required": false; }; "showThemeButton": { "alias": "showThemeButton"; "required": false; }; "showProfileMenuItem": { "alias": "showProfileMenuItem"; "required": false; }; }, { "hamburgerClick": "hamburgerClick"; "themeToggleClick": "themeToggleClick"; "logoutClick": "logoutClick"; "profileClick": "profileClick"; }, never, never, true, never>;
|
|
2928
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "lc-header", never, { "theme": { "alias": "theme"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "title": { "alias": "title"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "userEmail": { "alias": "userEmail"; "required": false; }; "userName": { "alias": "userName"; "required": false; }; "showHamburger": { "alias": "showHamburger"; "required": false; }; "showThemeButton": { "alias": "showThemeButton"; "required": false; }; "menuSize": { "alias": "menuSize"; "required": false; }; "showProfileMenuItem": { "alias": "showProfileMenuItem"; "required": false; }; }, { "hamburgerClick": "hamburgerClick"; "themeToggleClick": "themeToggleClick"; "logoutClick": "logoutClick"; "profileClick": "profileClick"; }, never, never, true, never>;
|
|
2886
2929
|
}
|
|
2887
2930
|
|
|
2888
2931
|
type PaginationSize = 'sm' | 'md' | 'lg';
|
|
@@ -2952,6 +2995,7 @@ type SidenavMode = 'drawer' | 'docked';
|
|
|
2952
2995
|
*
|
|
2953
2996
|
* Features:
|
|
2954
2997
|
* - Drawer (overlay) and docked (persistent) modes
|
|
2998
|
+
* - Collapsed icon-rail mode (narrow 56px sidebar with icons only)
|
|
2955
2999
|
* - Hierarchical navigation with collapsible groups
|
|
2956
3000
|
* - Section headlines for item grouping
|
|
2957
3001
|
* - Active route highlighting
|
|
@@ -2962,11 +3006,13 @@ type SidenavMode = 'drawer' | 'docked';
|
|
|
2962
3006
|
*
|
|
2963
3007
|
* @example
|
|
2964
3008
|
* ```html
|
|
2965
|
-
* <lc-sidenav [isOpen]="isOpen" mode="docked" [items]="navItems"
|
|
3009
|
+
* <lc-sidenav [isOpen]="isOpen" mode="docked" [collapsed]="isCollapsed" [items]="navItems"
|
|
2966
3010
|
* (closed)="isOpen = false" (itemClicked)="navigate($event)" />
|
|
2967
3011
|
* ```
|
|
2968
3012
|
*/
|
|
2969
3013
|
declare class SidenavComponent {
|
|
3014
|
+
/** Whether the sidenav is collapsed to icon-only rail */
|
|
3015
|
+
collapsed: _angular_core.WritableSignal<boolean>;
|
|
2970
3016
|
/** Whether the sidenav is open */
|
|
2971
3017
|
isOpen: _angular_core.WritableSignal<boolean>;
|
|
2972
3018
|
/** Display mode: 'drawer' (overlay) or 'docked' (persistent sidebar) */
|
|
@@ -3021,6 +3067,16 @@ declare class SidenavComponent {
|
|
|
3021
3067
|
* Input setter for active route
|
|
3022
3068
|
*/
|
|
3023
3069
|
set activeRouteInput(value: string);
|
|
3070
|
+
/**
|
|
3071
|
+
* Input setter for collapsed
|
|
3072
|
+
*/
|
|
3073
|
+
set collapsedInput(value: boolean);
|
|
3074
|
+
/** Theme variant for the sidenav */
|
|
3075
|
+
themeMode: _angular_core.WritableSignal<"light" | "dark" | "auto">;
|
|
3076
|
+
/**
|
|
3077
|
+
* Input setter for theme
|
|
3078
|
+
*/
|
|
3079
|
+
set themeInput(value: 'light' | 'dark' | 'auto');
|
|
3024
3080
|
/**
|
|
3025
3081
|
* Event emitted when the sidenav should close
|
|
3026
3082
|
*/
|
|
@@ -3039,6 +3095,10 @@ declare class SidenavComponent {
|
|
|
3039
3095
|
sidenavStyles: _angular_core.Signal<{
|
|
3040
3096
|
width: string;
|
|
3041
3097
|
}>;
|
|
3098
|
+
/**
|
|
3099
|
+
* Toggle collapsed state
|
|
3100
|
+
*/
|
|
3101
|
+
toggleCollapsed(): void;
|
|
3042
3102
|
/**
|
|
3043
3103
|
* Handle close action
|
|
3044
3104
|
*/
|
|
@@ -3068,7 +3128,7 @@ declare class SidenavComponent {
|
|
|
3068
3128
|
*/
|
|
3069
3129
|
handleKeydown(event: KeyboardEvent): void;
|
|
3070
3130
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidenavComponent, never>;
|
|
3071
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidenavComponent, "lc-sidenav", never, { "isOpenInput": { "alias": "isOpenInput"; "required": false; }; "modeInput": { "alias": "modeInput"; "required": false; }; "positionInput": { "alias": "positionInput"; "required": false; }; "widthInput": { "alias": "widthInput"; "required": false; }; "ariaLabelInput": { "alias": "ariaLabelInput"; "required": false; }; "hasOverlayInput": { "alias": "hasOverlayInput"; "required": false; }; "itemsInput": { "alias": "itemsInput"; "required": false; }; "activeRouteInput": { "alias": "activeRouteInput"; "required": false; }; }, { "closed": "closed"; "itemClicked": "itemClicked"; }, never, ["*"], true, never>;
|
|
3131
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidenavComponent, "lc-sidenav", never, { "isOpenInput": { "alias": "isOpenInput"; "required": false; }; "modeInput": { "alias": "modeInput"; "required": false; }; "positionInput": { "alias": "positionInput"; "required": false; }; "widthInput": { "alias": "widthInput"; "required": false; }; "ariaLabelInput": { "alias": "ariaLabelInput"; "required": false; }; "hasOverlayInput": { "alias": "hasOverlayInput"; "required": false; }; "itemsInput": { "alias": "itemsInput"; "required": false; }; "activeRouteInput": { "alias": "activeRouteInput"; "required": false; }; "collapsedInput": { "alias": "collapsedInput"; "required": false; }; "themeInput": { "alias": "theme"; "required": false; }; }, { "closed": "closed"; "itemClicked": "itemClicked"; }, never, ["*"], true, never>;
|
|
3072
3132
|
}
|
|
3073
3133
|
|
|
3074
3134
|
type TabOrientation = 'horizontal' | 'vertical';
|
|
@@ -3379,19 +3439,37 @@ type ListVariant = 'default' | 'card';
|
|
|
3379
3439
|
* List item interface
|
|
3380
3440
|
*/
|
|
3381
3441
|
interface ListItem {
|
|
3382
|
-
/** Item label text */
|
|
3442
|
+
/** Item label text (primary line) */
|
|
3383
3443
|
label: string;
|
|
3444
|
+
/** Secondary text shown below the label */
|
|
3445
|
+
subtitle?: string;
|
|
3446
|
+
/** Description text shown below subtitle (third line) */
|
|
3447
|
+
description?: string;
|
|
3384
3448
|
/** Optional icon identifier */
|
|
3385
3449
|
icon?: string;
|
|
3450
|
+
/** Avatar URL or initials (renders a circular avatar instead of icon) */
|
|
3451
|
+
avatar?: string;
|
|
3452
|
+
/** Badge text (e.g. count, status label) shown on the trailing side */
|
|
3453
|
+
badge?: string;
|
|
3454
|
+
/** Badge color variant */
|
|
3455
|
+
badgeVariant?: 'default' | 'primary' | 'success' | 'warning' | 'error';
|
|
3456
|
+
/** Metadata text shown on the trailing side (e.g. date, size) */
|
|
3457
|
+
metadata?: string;
|
|
3386
3458
|
/** Optional action label */
|
|
3387
3459
|
action?: string;
|
|
3388
3460
|
/** Item identifier */
|
|
3389
3461
|
id?: string;
|
|
3390
3462
|
/** Whether the item is disabled */
|
|
3391
3463
|
disabled?: boolean;
|
|
3464
|
+
/** Whether the item is selected / highlighted */
|
|
3465
|
+
selected?: boolean;
|
|
3392
3466
|
/** Any additional data */
|
|
3393
3467
|
[key: string]: any;
|
|
3394
3468
|
}
|
|
3469
|
+
/**
|
|
3470
|
+
* List item size
|
|
3471
|
+
*/
|
|
3472
|
+
type ListSize = 'sm' | 'md' | 'lg';
|
|
3395
3473
|
/**
|
|
3396
3474
|
* List component for displaying structured item collections.
|
|
3397
3475
|
*
|
|
@@ -3422,6 +3500,8 @@ declare class ListComponent {
|
|
|
3422
3500
|
orientation: _angular_core.InputSignal<ListOrientation>;
|
|
3423
3501
|
/** Visual variant */
|
|
3424
3502
|
variant: _angular_core.InputSignal<ListVariant>;
|
|
3503
|
+
/** Size of list items */
|
|
3504
|
+
size: _angular_core.InputSignal<ListSize>;
|
|
3425
3505
|
/** Whether to show dividers between items */
|
|
3426
3506
|
showDividers: _angular_core.InputSignal<boolean>;
|
|
3427
3507
|
/** Event emitted when an item is clicked */
|
|
@@ -3445,7 +3525,7 @@ declare class ListComponent {
|
|
|
3445
3525
|
*/
|
|
3446
3526
|
onActionClick(item: ListItem): void;
|
|
3447
3527
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ListComponent, never>;
|
|
3448
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListComponent, "lc-list", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "showDividers": { "alias": "showDividers"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "actionClick": "actionClick"; }, ["itemTemplate"], never, true, never>;
|
|
3528
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ListComponent, "lc-list", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showDividers": { "alias": "showDividers"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "actionClick": "actionClick"; }, ["itemTemplate"], never, true, never>;
|
|
3449
3529
|
}
|
|
3450
3530
|
|
|
3451
3531
|
type ChipVariant = 'default' | 'primary' | 'success' | 'warning' | 'error' | 'info';
|
|
@@ -5926,4 +6006,4 @@ declare class RichTextEditorComponent implements ControlValueAccessor, AfterView
|
|
|
5926
6006
|
}
|
|
5927
6007
|
|
|
5928
6008
|
export { AccordionComponent, AlertComponent, AnimationDurationFast, AnimationEasingEaseIn, AnimationEasingEaseInOut, AnimationEasingEaseOut, AreaChartComponent, AvatarComponent, AvatarGroupComponent, BadgeComponent, BarChartComponent, BorderRadius2xl, BorderRadiusFull, BorderRadiusLg, BorderRadiusMd, BorderRadiusNone, BorderRadiusSm, BorderRadiusXl, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CalloutComponent, CardComponent, ChatComponent, CheckboxComponent, ChipComponent, CodeBlockComponent, ColorAccentOrange, ColorAccentPurple, ColorAccentRed, ColorAccentRust, ColorAccentViolet, ColorErrorDark, ColorErrorDefault, ColorErrorLight, ColorInfoDark, ColorInfoDefault, ColorInfoLight, ColorNeutral100, ColorNeutral200, ColorNeutral300, ColorNeutral400, ColorNeutral50, ColorNeutral500, ColorNeutral600, ColorNeutral700, ColorNeutral800, ColorNeutral900, ColorPickerComponent, ColorPrimary100, ColorPrimary200, ColorPrimary300, ColorPrimary400, ColorPrimary50, ColorPrimary500, ColorPrimary600, ColorPrimary700, ColorPrimary800, ColorPrimary900, ColorSecondary100, ColorSecondary200, ColorSecondary300, ColorSecondary400, ColorSecondary50, ColorSecondary500, ColorSecondary600, ColorSecondary700, ColorSecondary800, ColorSecondary900, ColorSuccessDark, ColorSuccessDefault, ColorSuccessLight, ColorWarningDark, ColorWarningDefault, ColorWarningLight, ContainerComponent, DateRangePickerComponent, DatepickerComponent, DependencyViewerComponent, DiffViewerComponent, DividerComponent, DocumentViewerComponent, DonutChartComponent, DrawerComponent, Elevation1, Elevation2, Elevation3, Elevation4, EmailInputComponent, EmptyStateComponent, ErrorDisplayComponent, FieldGroupComponent, FileUploadComponent, FilterBarComponent, FooterComponent, FunnelChartComponent, GalleryComponent, GanttChartComponent, GaugeComponent, HeaderComponent, HeatmapComponent, HeroComponent, IconComponent, InputComponent, KanbanBoardComponent, LineChartComponent, ListComponent, ListItemTemplateDirective, LogoComponent, MenuComponent, ModalComponent, NotificationCenterComponent, NumberInputComponent, PaginationComponent, PasswordInputComponent, PieChartComponent, PopoverComponent, ProgressBarComponent, ProgressRingComponent, RadarChartComponent, RadioComponent, RatingComponent, RichTextEditorComponent, ScatterPlotComponent, SearchInputComponent, SectionComponent, SelectComponent, SidenavComponent, SizeInteractiveLgFontSize, SizeInteractiveLgHeight, SizeInteractiveLgPadding, SizeInteractiveMdFontSize, SizeInteractiveMdHeight, SizeInteractiveMdPadding, SizeInteractiveSmFontSize, SizeInteractiveSmHeight, SizeInteractiveSmPadding, SizeInteractiveXsFontSize, SizeInteractiveXsHeight, SizeInteractiveXsPadding, SizeMinTouchHeight, SizeMinTouchWidth, SkeletonComponent, SliderComponent, SpacerComponent, Spacing0, Spacing05, Spacing1, Spacing10, Spacing11, Spacing12, Spacing14, Spacing15, Spacing16, Spacing2, Spacing25, Spacing3, Spacing35, Spacing4, Spacing5, Spacing6, Spacing7, Spacing8, Spacing9, SparklineComponent, SpinnerComponent, StackComponent, StackedBarChartComponent, StatTrendComponent, StepperComponent, SwitchComponent, TabComponent, TableCellDirective, TableComponent, TabsComponent, TagInputComponent, TextareaComponent, ThemeService, TimelineComponent, ToastComponent, ToastService, ToggleGroupComponent, TooltipContentComponent, TooltipDirective, TypographyComponent, TypographyFontFamilyBase, TypographyFontFamilyMono, TypographyFontSize2xl, TypographyFontSize3xl, TypographyFontSize4xl, TypographyFontSize5xl, TypographyFontSize6xl, TypographyFontSizeBase, TypographyFontSizeLg, TypographyFontSizeSm, TypographyFontSizeXl, TypographyFontSizeXs, TypographyFontWeightBold, TypographyFontWeightMedium, TypographyFontWeightNormal, TypographyFontWeightSemibold, TypographyLineHeightNormal, TypographyLineHeightRelaxed, TypographyLineHeightTight, VerificationCodeInputComponent, WaterfallChartComponent };
|
|
5929
|
-
export type { AlertVariant, AreaChartSeries, AvatarGroupItem, AvatarSize, AvatarStatus, BadgeSize, BadgeVariant, BarChartItem, BarChartOrientation, BreadcrumbItem, BreadcrumbSize, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarView, CalloutVariant, CellEditEvent, ChatMessage, ChatMessageRole, ChatSendEvent, CheckboxSize, ChipSize, ChipVariant, CodeBlockLanguage, ContainerSize, DateRange, DateValue, DependencyDirection, DependencyEdgeDef, DependencyNode, DependencyNodeStatus, DependencyRelation, DiffViewMode, DividerOrientation, DividerSpacing, DividerVariant, DocumentType, DonutChartSize, DonutSegment, DrawerPosition, DrawerSize, EmptyStateSize, ErrorSeverity, FileUploadFile, FilterConfig, FilterOption, FilterValues, FooterLink, FooterSection, FooterVariant, FunnelStep, GalleryItem, GalleryLayout, GallerySize, GanttDependency, GanttTask, GaugeColor, GaugeSize, HeatmapCell, HeroColor, HeroSize, IconSize, IconVariant, KanbanCard, KanbanColumn, KanbanLabel, KanbanMoveEvent, LineChartSeries, ListItem, ListOrientation, ListVariant, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, PaginationSize, PasswordRequirement, PasswordStrength, PieChartSize, PieSegment, PopoverPosition, PopoverTrigger, ProgressBarColor, ProgressBarSize, ProgressBarVariant, ProgressRingColor, ProgressRingSize, RadarChartSeries, RadioSize, RatingSize, RichTextEditorMode, ScatterPoint, ScatterSeries, SearchInputSize, SectionBackground, SectionSpacing, SelectOption, SelectOptionGroup, SelectValue, SelectionChangeEvent, SidenavMode, SidenavPosition, SkeletonVariant, SortEvent, SpacerSize, SparklineColor, SparklineCurve, SpinnerSize, StackAlign, StackDirection, StackGap, StackJustify, StackedBarCategory, StackedBarLegend, StackedBarOrientation, StatTrendDirection, StepState, StepperStep, TabOrientation, TableColumn, TableSize, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, WaterfallItem };
|
|
6009
|
+
export type { AlertVariant, AreaChartSeries, AvatarGroupItem, AvatarSize, AvatarStatus, BadgeSize, BadgeVariant, BarChartItem, BarChartOrientation, BreadcrumbItem, BreadcrumbSize, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarView, CalloutVariant, CellEditEvent, ChatMessage, ChatMessageRole, ChatSendEvent, CheckboxSize, ChipSize, ChipVariant, CodeBlockLanguage, ContainerSize, DateRange, DateValue, DependencyDirection, DependencyEdgeDef, DependencyNode, DependencyNodeStatus, DependencyRelation, DiffViewMode, DividerOrientation, DividerSpacing, DividerVariant, DocumentType, DonutChartSize, DonutSegment, DrawerPosition, DrawerSize, EmptyStateSize, ErrorSeverity, FileUploadFile, FilterConfig, FilterOption, FilterValues, FooterLink, FooterSection, FooterVariant, FunnelStep, GalleryItem, GalleryLayout, GallerySize, GanttDependency, GanttTask, GaugeColor, GaugeSize, HeatmapCell, HeroColor, HeroSize, HeroVariant, IconSize, IconVariant, KanbanCard, KanbanColumn, KanbanLabel, KanbanMoveEvent, LineChartSeries, ListItem, ListOrientation, ListSize, ListVariant, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, PaginationSize, PasswordRequirement, PasswordStrength, PieChartSize, PieSegment, PopoverPosition, PopoverTrigger, ProgressBarColor, ProgressBarSize, ProgressBarVariant, ProgressRingColor, ProgressRingSize, RadarChartSeries, RadioSize, RatingSize, RichTextEditorMode, ScatterPoint, ScatterSeries, SearchInputSize, SectionBackground, SectionSpacing, SelectOption, SelectOptionGroup, SelectValue, SelectionChangeEvent, SidenavMode, SidenavPosition, SkeletonVariant, SortEvent, SpacerSize, SparklineColor, SparklineCurve, SpinnerSize, StackAlign, StackDirection, StackGap, StackJustify, StackedBarCategory, StackedBarLegend, StackedBarOrientation, StatTrendDirection, StepState, StepperStep, TabOrientation, TableColumn, TableSize, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, WaterfallItem };
|