@life-cockpit/angular-ui-kit 1.6.3 → 1.9.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.
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ElementRef, OnInit, OnDestroy, EventEmitter, AfterViewInit, QueryList, Signal, TemplateRef, AfterContentInit, AfterViewChecked } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { SafeHtml, DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
5
5
|
import { Observable } from 'rxjs';
|
|
@@ -268,31 +268,44 @@ declare class AccordionComponent {
|
|
|
268
268
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "lc-accordion", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "expanded": "expandedChange"; }, never, ["*"], true, never>;
|
|
269
269
|
}
|
|
270
270
|
|
|
271
|
+
declare class AccordionGroupComponent {
|
|
272
|
+
/** When false (default), only one accordion can be expanded at a time. */
|
|
273
|
+
readonly multi: _angular_core.InputSignal<boolean>;
|
|
274
|
+
readonly accordions: _angular_core.Signal<readonly AccordionComponent[]>;
|
|
275
|
+
private previousExpanded;
|
|
276
|
+
constructor();
|
|
277
|
+
/** Collapse all accordions. */
|
|
278
|
+
collapseAll(): void;
|
|
279
|
+
/** Expand all accordions (only meaningful when multi=true). */
|
|
280
|
+
expandAll(): void;
|
|
281
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionGroupComponent, never>;
|
|
282
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionGroupComponent, "lc-accordion-group", never, { "multi": { "alias": "multi"; "required": false; "isSignal": true; }; }, {}, ["accordions"], ["*"], true, never>;
|
|
283
|
+
}
|
|
284
|
+
|
|
271
285
|
type ButtonVariant = 'primary' | 'secondary' | 'outline' | 'ghost' | 'link' | 'danger' | 'warning' | 'info';
|
|
272
286
|
type ButtonSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
273
287
|
type ButtonType = 'button' | 'submit' | 'reset';
|
|
274
288
|
declare class ButtonComponent {
|
|
275
|
-
variant: ButtonVariant
|
|
276
|
-
size: ButtonSize
|
|
277
|
-
disabled: boolean
|
|
278
|
-
loading: boolean
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
readonly
|
|
285
|
-
readonly
|
|
286
|
-
readonly blurred: EventEmitter<void>;
|
|
289
|
+
readonly variant: _angular_core.InputSignal<ButtonVariant>;
|
|
290
|
+
readonly size: _angular_core.InputSignal<ButtonSize>;
|
|
291
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
292
|
+
readonly loading: _angular_core.InputSignal<boolean>;
|
|
293
|
+
readonly iconOnly: _angular_core.InputSignal<boolean>;
|
|
294
|
+
readonly fullWidth: _angular_core.InputSignal<boolean>;
|
|
295
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
296
|
+
readonly type: _angular_core.InputSignal<ButtonType>;
|
|
297
|
+
readonly clicked: _angular_core.OutputEmitterRef<void>;
|
|
298
|
+
readonly focused: _angular_core.OutputEmitterRef<void>;
|
|
299
|
+
readonly blurred: _angular_core.OutputEmitterRef<void>;
|
|
287
300
|
buttonElement: ElementRef<HTMLButtonElement>;
|
|
288
|
-
|
|
301
|
+
readonly isDisabled: _angular_core.Signal<boolean>;
|
|
289
302
|
handleClick(): void;
|
|
290
303
|
handleFocus(): void;
|
|
291
304
|
handleBlur(): void;
|
|
292
305
|
focus(): void;
|
|
293
306
|
blur(): void;
|
|
294
307
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonComponent, never>;
|
|
295
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "lc-button", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false;
|
|
308
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonComponent, "lc-button", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "iconOnly": { "alias": "iconOnly"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; }, { "clicked": "clicked"; "focused": "focused"; "blurred": "blurred"; }, never, ["[slot='icon-before']", "*", "[slot='icon-after']"], true, never>;
|
|
296
309
|
}
|
|
297
310
|
|
|
298
311
|
/**
|
|
@@ -562,7 +575,7 @@ declare class LogoComponent {
|
|
|
562
575
|
* - 'full': Full logo with text
|
|
563
576
|
* - 'emblem': Just the emblem/icon
|
|
564
577
|
*/
|
|
565
|
-
variant:
|
|
578
|
+
readonly variant: _angular_core.InputSignal<"full" | "emblem">;
|
|
566
579
|
/**
|
|
567
580
|
* Size of the logo
|
|
568
581
|
* - 'xs': 24px height
|
|
@@ -571,26 +584,26 @@ declare class LogoComponent {
|
|
|
571
584
|
* - 'lg': 64px height
|
|
572
585
|
* - 'xl': 96px height
|
|
573
586
|
*/
|
|
574
|
-
size:
|
|
587
|
+
readonly size: _angular_core.InputSignal<"xs" | "sm" | "md" | "lg" | "xl">;
|
|
575
588
|
/**
|
|
576
589
|
* Alt text for accessibility
|
|
577
590
|
*/
|
|
578
|
-
alt: string
|
|
591
|
+
readonly alt: _angular_core.InputSignal<string>;
|
|
579
592
|
/**
|
|
580
593
|
* Makes the logo appear clickable
|
|
581
594
|
*/
|
|
582
|
-
clickable: boolean
|
|
595
|
+
readonly clickable: _angular_core.InputSignal<boolean>;
|
|
583
596
|
/**
|
|
584
597
|
* Color mode for different backgrounds
|
|
585
598
|
* - 'auto': Follows global theme (uses CSS filter in dark mode)
|
|
586
599
|
* - 'light': Optimized for light backgrounds (default appearance)
|
|
587
600
|
* - 'dark': Inverted for dark backgrounds (white/light logo)
|
|
588
601
|
*/
|
|
589
|
-
colorMode:
|
|
590
|
-
|
|
591
|
-
|
|
602
|
+
readonly colorMode: _angular_core.InputSignal<"light" | "dark" | "auto">;
|
|
603
|
+
readonly logoSrc: _angular_core.Signal<"/assets/life-cockpit-emblem.svg" | "/assets/life-cockpit-logo.svg">;
|
|
604
|
+
readonly logoClasses: _angular_core.Signal<string>;
|
|
592
605
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LogoComponent, never>;
|
|
593
|
-
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>;
|
|
606
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LogoComponent, "lc-logo", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "alt": { "alias": "alt"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "colorMode": { "alias": "colorMode"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
594
607
|
}
|
|
595
608
|
|
|
596
609
|
interface MenuItem {
|
|
@@ -635,37 +648,13 @@ interface MenuItem {
|
|
|
635
648
|
* ```
|
|
636
649
|
*/
|
|
637
650
|
declare class MenuComponent {
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
isOpen: boolean;
|
|
646
|
-
/**
|
|
647
|
-
* Menu position relative to trigger
|
|
648
|
-
* @default 'bottom-right'
|
|
649
|
-
*/
|
|
650
|
-
position: 'bottom-left' | 'bottom-right' | 'top-left' | 'top-right';
|
|
651
|
-
/**
|
|
652
|
-
* Size of menu items
|
|
653
|
-
* @default 'md'
|
|
654
|
-
*/
|
|
655
|
-
size: 'sm' | 'md' | 'lg';
|
|
656
|
-
/**
|
|
657
|
-
* Minimum width of menu dropdown
|
|
658
|
-
* @default '220px'
|
|
659
|
-
*/
|
|
660
|
-
minWidth: string;
|
|
661
|
-
/**
|
|
662
|
-
* Emitted when a menu item is clicked
|
|
663
|
-
*/
|
|
664
|
-
readonly itemClick: EventEmitter<MenuItem>;
|
|
665
|
-
/**
|
|
666
|
-
* Emitted when the menu should be closed (e.g., click outside, Escape key)
|
|
667
|
-
*/
|
|
668
|
-
readonly closed: EventEmitter<void>;
|
|
651
|
+
readonly items: _angular_core.InputSignal<MenuItem[]>;
|
|
652
|
+
readonly isOpen: _angular_core.InputSignal<boolean>;
|
|
653
|
+
readonly position: _angular_core.InputSignal<"bottom-left" | "bottom-right" | "top-left" | "top-right">;
|
|
654
|
+
readonly size: _angular_core.InputSignal<"sm" | "md" | "lg">;
|
|
655
|
+
readonly minWidth: _angular_core.InputSignal<string>;
|
|
656
|
+
readonly itemClick: _angular_core.OutputEmitterRef<MenuItem>;
|
|
657
|
+
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
669
658
|
private elementRef;
|
|
670
659
|
/**
|
|
671
660
|
* Handle menu item click
|
|
@@ -684,7 +673,7 @@ declare class MenuComponent {
|
|
|
684
673
|
*/
|
|
685
674
|
onEscapeKey(): void;
|
|
686
675
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MenuComponent, never>;
|
|
687
|
-
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>;
|
|
676
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<MenuComponent, "lc-menu", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "minWidth": { "alias": "minWidth"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; "closed": "closed"; }, never, ["[trigger]", "[header]", "[footer]"], true, never>;
|
|
688
677
|
}
|
|
689
678
|
|
|
690
679
|
/**
|
|
@@ -1148,6 +1137,7 @@ declare class DatepickerComponent implements ControlValueAccessor {
|
|
|
1148
1137
|
private isSameDate;
|
|
1149
1138
|
private formatDate;
|
|
1150
1139
|
private parseDate;
|
|
1140
|
+
protected getInputValue(event: Event): string;
|
|
1151
1141
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DatepickerComponent, never>;
|
|
1152
1142
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DatepickerComponent, "lc-datepicker", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "format": { "alias": "format"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "disabledDates": { "alias": "disabledDates"; "required": false; }; "disableWeekends": { "alias": "disableWeekends"; "required": false; }; }, { "dateChange": "dateChange"; "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
|
|
1153
1143
|
}
|
|
@@ -1512,6 +1502,7 @@ declare class TextareaComponent implements ControlValueAccessor, AfterViewInit {
|
|
|
1512
1502
|
private adjustHeight;
|
|
1513
1503
|
private calculateMinHeight;
|
|
1514
1504
|
private calculateMaxHeight;
|
|
1505
|
+
protected getInputValue(event: Event): string;
|
|
1515
1506
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TextareaComponent, never>;
|
|
1516
1507
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TextareaComponent, "lc-textarea", never, { "variant": { "alias": "variant"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "error": { "alias": "error"; "required": false; }; "required": { "alias": "required"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "label": { "alias": "label"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "errorMessage": { "alias": "errorMessage"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "rows": { "alias": "rows"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "showCharacterCount": { "alias": "showCharacterCount"; "required": false; }; "autoResize": { "alias": "autoResize"; "required": false; }; "minRows": { "alias": "minRows"; "required": false; }; "maxRows": { "alias": "maxRows"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
|
|
1517
1508
|
}
|
|
@@ -2794,22 +2785,17 @@ interface BreadcrumbItem {
|
|
|
2794
2785
|
}
|
|
2795
2786
|
type BreadcrumbSize = 'sm' | 'md' | 'lg';
|
|
2796
2787
|
declare class BreadcrumbsComponent {
|
|
2797
|
-
items: _angular_core.
|
|
2798
|
-
separator: _angular_core.
|
|
2799
|
-
maxItems: _angular_core.
|
|
2800
|
-
size: _angular_core.
|
|
2801
|
-
ariaLabel: _angular_core.
|
|
2788
|
+
readonly items: _angular_core.InputSignal<BreadcrumbItem[]>;
|
|
2789
|
+
readonly separator: _angular_core.InputSignal<string>;
|
|
2790
|
+
readonly maxItems: _angular_core.InputSignal<number>;
|
|
2791
|
+
readonly size: _angular_core.InputSignal<BreadcrumbSize>;
|
|
2792
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2802
2793
|
breadcrumbClasses: _angular_core.Signal<string>;
|
|
2803
2794
|
visibleItems: _angular_core.Signal<BreadcrumbItem[]>;
|
|
2804
|
-
set itemsInput(value: BreadcrumbItem[]);
|
|
2805
|
-
set separatorInput(value: string);
|
|
2806
|
-
set maxItemsInput(value: number);
|
|
2807
|
-
set sizeInput(value: BreadcrumbSize);
|
|
2808
|
-
set ariaLabelInput(value: string);
|
|
2809
2795
|
isLastItem(index: number): boolean;
|
|
2810
2796
|
isEllipsis(item: BreadcrumbItem): boolean;
|
|
2811
2797
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbsComponent, never>;
|
|
2812
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbsComponent, "lc-breadcrumbs", never, { "
|
|
2798
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbsComponent, "lc-breadcrumbs", never, { "items": { "alias": "items"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; "maxItems": { "alias": "maxItems"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
2813
2799
|
}
|
|
2814
2800
|
|
|
2815
2801
|
/**
|
|
@@ -2842,88 +2828,24 @@ declare class BreadcrumbsComponent {
|
|
|
2842
2828
|
* ```
|
|
2843
2829
|
*/
|
|
2844
2830
|
declare class HeaderComponent {
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
|
|
2850
|
-
|
|
2851
|
-
|
|
2852
|
-
|
|
2853
|
-
|
|
2854
|
-
|
|
2855
|
-
|
|
2856
|
-
|
|
2857
|
-
|
|
2858
|
-
|
|
2859
|
-
|
|
2860
|
-
|
|
2861
|
-
|
|
2862
|
-
|
|
2863
|
-
* Optional title to display next to logo
|
|
2864
|
-
*/
|
|
2865
|
-
title: string;
|
|
2866
|
-
/**
|
|
2867
|
-
* Optional subtitle to display under title
|
|
2868
|
-
*/
|
|
2869
|
-
subtitle: string;
|
|
2870
|
-
/**
|
|
2871
|
-
* User email to display in profile dropdown
|
|
2872
|
-
*/
|
|
2873
|
-
userEmail: string;
|
|
2874
|
-
/**
|
|
2875
|
-
* User full name for avatar initials
|
|
2876
|
-
* @example 'John Doe'
|
|
2877
|
-
*/
|
|
2878
|
-
userName: string;
|
|
2879
|
-
/**
|
|
2880
|
-
* Whether to show hamburger menu icon (for mobile sidebar toggle)
|
|
2881
|
-
*/
|
|
2882
|
-
showHamburger: boolean;
|
|
2883
|
-
/**
|
|
2884
|
-
* Whether to show theme toggle button in header
|
|
2885
|
-
*/
|
|
2886
|
-
showThemeButton: boolean;
|
|
2887
|
-
/**
|
|
2888
|
-
* Contextual name displayed in the header (e.g. tenant, organization, project)
|
|
2889
|
-
* @example 'Acme Corp'
|
|
2890
|
-
*/
|
|
2891
|
-
contextName: string;
|
|
2892
|
-
/**
|
|
2893
|
-
* Label displayed above the context name (e.g. 'Tenant', 'Organization', 'Project')
|
|
2894
|
-
* @example 'Tenant'
|
|
2895
|
-
*/
|
|
2896
|
-
contextLabel: string;
|
|
2897
|
-
/**
|
|
2898
|
-
* Size of the profile dropdown menu
|
|
2899
|
-
* @default 'sm'
|
|
2900
|
-
*/
|
|
2901
|
-
menuSize: 'sm' | 'md' | 'lg';
|
|
2902
|
-
/**
|
|
2903
|
-
* Whether to show the Profile menu item in the user dropdown
|
|
2904
|
-
* @default true
|
|
2905
|
-
*/
|
|
2906
|
-
showProfileMenuItem: boolean;
|
|
2907
|
-
/**
|
|
2908
|
-
* Emitted when hamburger menu icon is clicked
|
|
2909
|
-
*/
|
|
2910
|
-
readonly hamburgerClick: EventEmitter<void>;
|
|
2911
|
-
/**
|
|
2912
|
-
* Emitted when theme toggle is clicked
|
|
2913
|
-
*/
|
|
2914
|
-
readonly themeToggleClick: EventEmitter<void>;
|
|
2915
|
-
/**
|
|
2916
|
-
* Emitted when Logout is clicked in profile dropdown
|
|
2917
|
-
*/
|
|
2918
|
-
readonly logoutClick: EventEmitter<void>;
|
|
2919
|
-
/**
|
|
2920
|
-
* Emitted when Profile menu item is clicked
|
|
2921
|
-
*/
|
|
2922
|
-
readonly profileClick: EventEmitter<void>;
|
|
2923
|
-
/**
|
|
2924
|
-
* Emitted when the context info area is clicked
|
|
2925
|
-
*/
|
|
2926
|
-
readonly contextClick: EventEmitter<void>;
|
|
2831
|
+
readonly theme: _angular_core.InputSignal<"light" | "dark" | "auto">;
|
|
2832
|
+
readonly logo: _angular_core.InputSignal<string>;
|
|
2833
|
+
readonly showLogo: _angular_core.InputSignal<boolean>;
|
|
2834
|
+
readonly title: _angular_core.InputSignal<string>;
|
|
2835
|
+
readonly subtitle: _angular_core.InputSignal<string>;
|
|
2836
|
+
readonly userEmail: _angular_core.InputSignal<string>;
|
|
2837
|
+
readonly userName: _angular_core.InputSignal<string>;
|
|
2838
|
+
readonly showHamburger: _angular_core.InputSignal<boolean>;
|
|
2839
|
+
readonly showThemeButton: _angular_core.InputSignal<boolean>;
|
|
2840
|
+
readonly contextName: _angular_core.InputSignal<string>;
|
|
2841
|
+
readonly contextLabel: _angular_core.InputSignal<string>;
|
|
2842
|
+
readonly menuSize: _angular_core.InputSignal<"sm" | "md" | "lg">;
|
|
2843
|
+
readonly showProfileMenuItem: _angular_core.InputSignal<boolean>;
|
|
2844
|
+
readonly hamburgerClick: _angular_core.OutputEmitterRef<void>;
|
|
2845
|
+
readonly themeToggleClick: _angular_core.OutputEmitterRef<void>;
|
|
2846
|
+
readonly logoutClick: _angular_core.OutputEmitterRef<void>;
|
|
2847
|
+
readonly profileClick: _angular_core.OutputEmitterRef<void>;
|
|
2848
|
+
readonly contextClick: _angular_core.OutputEmitterRef<void>;
|
|
2927
2849
|
protected readonly themeService: ThemeService;
|
|
2928
2850
|
/**
|
|
2929
2851
|
* Get menu items for profile dropdown
|
|
@@ -2966,7 +2888,7 @@ declare class HeaderComponent {
|
|
|
2966
2888
|
*/
|
|
2967
2889
|
onMenuItemClick(item: MenuItem): void;
|
|
2968
2890
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<HeaderComponent, never>;
|
|
2969
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "lc-header", never, { "theme": { "alias": "theme"; "required": false; }; "logo": { "alias": "logo"; "required": false; }; "showLogo": { "alias": "showLogo"; "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; }; "contextName": { "alias": "contextName"; "required": false; }; "contextLabel": { "alias": "contextLabel"; "required": false; }; "menuSize": { "alias": "menuSize"; "required": false; }; "showProfileMenuItem": { "alias": "showProfileMenuItem"; "required": false; }; }, { "hamburgerClick": "hamburgerClick"; "themeToggleClick": "themeToggleClick"; "logoutClick": "logoutClick"; "profileClick": "profileClick"; "contextClick": "contextClick"; }, never, never, true, never>;
|
|
2891
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<HeaderComponent, "lc-header", never, { "theme": { "alias": "theme"; "required": false; "isSignal": true; }; "logo": { "alias": "logo"; "required": false; "isSignal": true; }; "showLogo": { "alias": "showLogo"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "userEmail": { "alias": "userEmail"; "required": false; "isSignal": true; }; "userName": { "alias": "userName"; "required": false; "isSignal": true; }; "showHamburger": { "alias": "showHamburger"; "required": false; "isSignal": true; }; "showThemeButton": { "alias": "showThemeButton"; "required": false; "isSignal": true; }; "contextName": { "alias": "contextName"; "required": false; "isSignal": true; }; "contextLabel": { "alias": "contextLabel"; "required": false; "isSignal": true; }; "menuSize": { "alias": "menuSize"; "required": false; "isSignal": true; }; "showProfileMenuItem": { "alias": "showProfileMenuItem"; "required": false; "isSignal": true; }; }, { "hamburgerClick": "hamburgerClick"; "themeToggleClick": "themeToggleClick"; "logoutClick": "logoutClick"; "profileClick": "profileClick"; "contextClick": "contextClick"; }, never, never, true, never>;
|
|
2970
2892
|
}
|
|
2971
2893
|
|
|
2972
2894
|
type PaginationSize = 'sm' | 'md' | 'lg';
|
|
@@ -2993,14 +2915,14 @@ type PaginationSize = 'sm' | 'md' | 'lg';
|
|
|
2993
2915
|
* ```
|
|
2994
2916
|
*/
|
|
2995
2917
|
declare class PaginationComponent {
|
|
2996
|
-
currentPage: _angular_core.
|
|
2997
|
-
totalItems: _angular_core.
|
|
2998
|
-
pageSize: _angular_core.
|
|
2999
|
-
size: _angular_core.
|
|
3000
|
-
maxVisiblePages: _angular_core.
|
|
3001
|
-
ariaLabel: _angular_core.
|
|
3002
|
-
showInfo: _angular_core.
|
|
3003
|
-
readonly pageChange:
|
|
2918
|
+
readonly currentPage: _angular_core.InputSignal<number>;
|
|
2919
|
+
readonly totalItems: _angular_core.InputSignal<number>;
|
|
2920
|
+
readonly pageSize: _angular_core.InputSignal<number>;
|
|
2921
|
+
readonly size: _angular_core.InputSignal<PaginationSize>;
|
|
2922
|
+
readonly maxVisiblePages: _angular_core.InputSignal<number>;
|
|
2923
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
2924
|
+
readonly showInfo: _angular_core.InputSignal<boolean>;
|
|
2925
|
+
readonly pageChange: _angular_core.OutputEmitterRef<number>;
|
|
3004
2926
|
totalPages: _angular_core.Signal<number>;
|
|
3005
2927
|
firstItemIndex: _angular_core.Signal<number>;
|
|
3006
2928
|
lastItemIndex: _angular_core.Signal<number>;
|
|
@@ -3012,13 +2934,6 @@ declare class PaginationComponent {
|
|
|
3012
2934
|
* Returns an array where -1 represents an ellipsis
|
|
3013
2935
|
*/
|
|
3014
2936
|
visiblePages: _angular_core.Signal<number[]>;
|
|
3015
|
-
set currentPageInput(value: number);
|
|
3016
|
-
set totalItemsInput(value: number);
|
|
3017
|
-
set pageSizeInput(value: number);
|
|
3018
|
-
set sizeInput(value: PaginationSize);
|
|
3019
|
-
set maxVisiblePagesInput(value: number);
|
|
3020
|
-
set ariaLabelInput(value: string);
|
|
3021
|
-
set showInfoInput(value: boolean);
|
|
3022
2937
|
goToPreviousPage(): void;
|
|
3023
2938
|
goToNextPage(): void;
|
|
3024
2939
|
goToPage(page: number): void;
|
|
@@ -3026,7 +2941,7 @@ declare class PaginationComponent {
|
|
|
3026
2941
|
isEllipsis(page: number): boolean;
|
|
3027
2942
|
shouldRender(): boolean;
|
|
3028
2943
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PaginationComponent, never>;
|
|
3029
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginationComponent, "lc-pagination", never, { "
|
|
2944
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PaginationComponent, "lc-pagination", never, { "currentPage": { "alias": "currentPage"; "required": false; "isSignal": true; }; "totalItems": { "alias": "totalItems"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "maxVisiblePages": { "alias": "maxVisiblePages"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "showInfo": { "alias": "showInfo"; "required": false; "isSignal": true; }; }, { "pageChange": "pageChange"; }, never, never, true, never>;
|
|
3030
2945
|
}
|
|
3031
2946
|
|
|
3032
2947
|
type SidenavPosition = 'left' | 'right';
|
|
@@ -3066,104 +2981,56 @@ type SidenavMode = 'drawer' | 'docked';
|
|
|
3066
2981
|
* (itemAction)="onAction($event)" />
|
|
3067
2982
|
* ```
|
|
3068
2983
|
*/
|
|
3069
|
-
declare class SidenavComponent implements
|
|
3070
|
-
/** Whether the sidenav is collapsed to icon-only rail */
|
|
3071
|
-
collapsed: _angular_core.
|
|
2984
|
+
declare class SidenavComponent implements OnDestroy {
|
|
2985
|
+
/** Whether the sidenav is collapsed to icon-only rail (two-way bindable) */
|
|
2986
|
+
readonly collapsed: _angular_core.ModelSignal<boolean>;
|
|
3072
2987
|
/** Whether to show the logo at the top of the sidenav */
|
|
3073
|
-
showLogo: _angular_core.
|
|
2988
|
+
readonly showLogo: _angular_core.InputSignal<boolean>;
|
|
3074
2989
|
/** Whether the sidenav is open */
|
|
3075
|
-
isOpen: _angular_core.
|
|
2990
|
+
readonly isOpen: _angular_core.InputSignal<boolean>;
|
|
3076
2991
|
/** Display mode: 'drawer' (overlay) or 'docked' (persistent sidebar) */
|
|
3077
|
-
mode: _angular_core.
|
|
2992
|
+
readonly mode: _angular_core.InputSignal<SidenavMode>;
|
|
3078
2993
|
/** Mobile breakpoint in pixels. Below this width, docked mode switches to drawer. */
|
|
3079
|
-
mobileBreakpoint: _angular_core.
|
|
2994
|
+
readonly mobileBreakpoint: _angular_core.InputSignal<number>;
|
|
3080
2995
|
/** Whether the viewport is below the mobile breakpoint */
|
|
3081
|
-
isMobile: _angular_core.WritableSignal<boolean>;
|
|
2996
|
+
readonly isMobile: _angular_core.WritableSignal<boolean>;
|
|
3082
2997
|
/** Effective mode: switches docked → drawer on mobile */
|
|
3083
|
-
effectiveMode: _angular_core.Signal<SidenavMode>;
|
|
2998
|
+
readonly effectiveMode: _angular_core.Signal<SidenavMode>;
|
|
3084
2999
|
private mediaQuery;
|
|
3085
3000
|
private mediaHandler;
|
|
3086
3001
|
/** Position of the sidenav (left or right) */
|
|
3087
|
-
position: _angular_core.
|
|
3002
|
+
readonly position: _angular_core.InputSignal<SidenavPosition>;
|
|
3088
3003
|
/** Width of the sidenav drawer */
|
|
3089
|
-
width: _angular_core.
|
|
3004
|
+
readonly width: _angular_core.InputSignal<string>;
|
|
3090
3005
|
/** ARIA label for the sidenav */
|
|
3091
|
-
ariaLabel: _angular_core.
|
|
3006
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
3092
3007
|
/** Whether to show the overlay backdrop */
|
|
3093
|
-
hasOverlay: _angular_core.
|
|
3008
|
+
readonly hasOverlay: _angular_core.InputSignal<boolean>;
|
|
3094
3009
|
/** Navigation items to display */
|
|
3095
|
-
items: _angular_core.
|
|
3010
|
+
readonly items: _angular_core.InputSignal<NavigationItem[]>;
|
|
3096
3011
|
/** Current active route for highlighting */
|
|
3097
|
-
activeRoute: _angular_core.
|
|
3012
|
+
readonly activeRoute: _angular_core.InputSignal<string>;
|
|
3013
|
+
/** Theme variant for the sidenav */
|
|
3014
|
+
readonly theme: _angular_core.InputSignal<"light" | "dark" | "auto">;
|
|
3098
3015
|
/** Track which parent items are expanded */
|
|
3099
|
-
expandedItems: _angular_core.WritableSignal<Set<string>>;
|
|
3016
|
+
readonly expandedItems: _angular_core.WritableSignal<Set<string>>;
|
|
3100
3017
|
/**
|
|
3101
3018
|
* Computed sorted navigation items by displayOrder
|
|
3102
3019
|
*/
|
|
3103
|
-
sortedItems: _angular_core.Signal<NavigationItem[]>;
|
|
3104
|
-
/**
|
|
3105
|
-
* Input setter for isOpen
|
|
3106
|
-
*/
|
|
3107
|
-
set isOpenInput(value: boolean);
|
|
3108
|
-
/**
|
|
3109
|
-
* Input setter for mode
|
|
3110
|
-
*/
|
|
3111
|
-
set modeInput(value: SidenavMode);
|
|
3112
|
-
/**
|
|
3113
|
-
* Input setter for position
|
|
3114
|
-
*/
|
|
3115
|
-
set positionInput(value: SidenavPosition);
|
|
3116
|
-
/**
|
|
3117
|
-
* Input setter for width
|
|
3118
|
-
*/
|
|
3119
|
-
set widthInput(value: string);
|
|
3120
|
-
/**
|
|
3121
|
-
* Input setter for ariaLabel
|
|
3122
|
-
*/
|
|
3123
|
-
set ariaLabelInput(value: string);
|
|
3124
|
-
/**
|
|
3125
|
-
* Input setter for hasOverlay
|
|
3126
|
-
*/
|
|
3127
|
-
set hasOverlayInput(value: boolean);
|
|
3128
|
-
/**
|
|
3129
|
-
* Input setter for navigation items
|
|
3130
|
-
*/
|
|
3131
|
-
set itemsInput(value: NavigationItem[]);
|
|
3132
|
-
/**
|
|
3133
|
-
* Input setter for active route
|
|
3134
|
-
*/
|
|
3135
|
-
set activeRouteInput(value: string);
|
|
3136
|
-
/**
|
|
3137
|
-
* Input setter for collapsed
|
|
3138
|
-
*/
|
|
3139
|
-
set collapsedInput(value: boolean);
|
|
3140
|
-
/**
|
|
3141
|
-
* Input setter for showLogo
|
|
3142
|
-
*/
|
|
3143
|
-
set showLogoInput(value: boolean);
|
|
3144
|
-
/**
|
|
3145
|
-
* Input setter for mobileBreakpoint
|
|
3146
|
-
*/
|
|
3147
|
-
set mobileBreakpointInput(value: number);
|
|
3148
|
-
/** Theme variant for the sidenav */
|
|
3149
|
-
themeMode: _angular_core.WritableSignal<"light" | "dark" | "auto">;
|
|
3150
|
-
/**
|
|
3151
|
-
* Input setter for theme
|
|
3152
|
-
*/
|
|
3153
|
-
set themeInput(value: 'light' | 'dark' | 'auto');
|
|
3020
|
+
readonly sortedItems: _angular_core.Signal<NavigationItem[]>;
|
|
3154
3021
|
/**
|
|
3155
3022
|
* Event emitted when the sidenav should close
|
|
3156
3023
|
*/
|
|
3157
|
-
readonly closed:
|
|
3024
|
+
readonly closed: _angular_core.OutputEmitterRef<void>;
|
|
3158
3025
|
/**
|
|
3159
3026
|
* Event emitted when a navigation item is clicked
|
|
3160
3027
|
*/
|
|
3161
|
-
readonly itemClicked:
|
|
3028
|
+
readonly itemClicked: _angular_core.OutputEmitterRef<NavigationItem>;
|
|
3162
3029
|
/**
|
|
3163
3030
|
* Event emitted when an item's action button is clicked
|
|
3164
3031
|
*/
|
|
3165
|
-
readonly itemAction:
|
|
3166
|
-
|
|
3032
|
+
readonly itemAction: _angular_core.OutputEmitterRef<NavigationItem>;
|
|
3033
|
+
constructor();
|
|
3167
3034
|
ngOnDestroy(): void;
|
|
3168
3035
|
private setupMediaQuery;
|
|
3169
3036
|
private teardownMediaQuery;
|
|
@@ -3215,7 +3082,7 @@ declare class SidenavComponent implements OnInit, OnDestroy {
|
|
|
3215
3082
|
*/
|
|
3216
3083
|
handleKeydown(event: KeyboardEvent): void;
|
|
3217
3084
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidenavComponent, never>;
|
|
3218
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidenavComponent, "lc-sidenav", never, { "
|
|
3085
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidenavComponent, "lc-sidenav", never, { "collapsed": { "alias": "collapsed"; "required": false; "isSignal": true; }; "showLogo": { "alias": "showLogo"; "required": false; "isSignal": true; }; "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "mode": { "alias": "mode"; "required": false; "isSignal": true; }; "mobileBreakpoint": { "alias": "mobileBreakpoint"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "hasOverlay": { "alias": "hasOverlay"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; "activeRoute": { "alias": "activeRoute"; "required": false; "isSignal": true; }; "theme": { "alias": "theme"; "required": false; "isSignal": true; }; }, { "collapsed": "collapsedChange"; "closed": "closed"; "itemClicked": "itemClicked"; "itemAction": "itemAction"; }, never, ["*"], true, never>;
|
|
3219
3086
|
}
|
|
3220
3087
|
|
|
3221
3088
|
type TabOrientation = 'horizontal' | 'vertical';
|
|
@@ -3226,16 +3093,16 @@ declare class TabComponent {
|
|
|
3226
3093
|
/**
|
|
3227
3094
|
* Tab label displayed in tab button
|
|
3228
3095
|
*/
|
|
3229
|
-
label: string
|
|
3096
|
+
readonly label: _angular_core.InputSignal<string>;
|
|
3230
3097
|
/**
|
|
3231
3098
|
* Whether the tab is disabled
|
|
3232
3099
|
* @default false
|
|
3233
3100
|
*/
|
|
3234
|
-
disabled: boolean
|
|
3101
|
+
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
3235
3102
|
/**
|
|
3236
3103
|
* Optional icon name (Heroicons)
|
|
3237
3104
|
*/
|
|
3238
|
-
icon
|
|
3105
|
+
readonly icon: _angular_core.InputSignal<string | undefined>;
|
|
3239
3106
|
/**
|
|
3240
3107
|
* Unique ID for accessibility
|
|
3241
3108
|
*/
|
|
@@ -3249,7 +3116,7 @@ declare class TabComponent {
|
|
|
3249
3116
|
*/
|
|
3250
3117
|
template: TemplateRef<unknown>;
|
|
3251
3118
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabComponent, never>;
|
|
3252
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabComponent, "lc-tab", never, { "label": { "alias": "label"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3119
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabComponent, "lc-tab", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3253
3120
|
}
|
|
3254
3121
|
/**
|
|
3255
3122
|
* Tabs component for organizing content into switchable views.
|
|
@@ -3272,20 +3139,23 @@ declare class TabComponent {
|
|
|
3272
3139
|
*/
|
|
3273
3140
|
declare class TabsComponent implements AfterContentInit {
|
|
3274
3141
|
/**
|
|
3275
|
-
* Orientation
|
|
3142
|
+
* Orientation of tabs
|
|
3276
3143
|
* @default 'horizontal'
|
|
3277
3144
|
*/
|
|
3278
|
-
|
|
3279
|
-
get orientation(): TabOrientation;
|
|
3145
|
+
readonly orientation: _angular_core.InputSignal<TabOrientation>;
|
|
3280
3146
|
/**
|
|
3281
|
-
* Currently selected tab index
|
|
3147
|
+
* Currently selected tab index (external input)
|
|
3282
3148
|
* @default 0
|
|
3283
3149
|
*/
|
|
3150
|
+
readonly selectedIndexInput: _angular_core.InputSignal<number>;
|
|
3151
|
+
/**
|
|
3152
|
+
* Currently selected tab index (internal writable signal)
|
|
3153
|
+
*/
|
|
3284
3154
|
readonly selectedIndex: _angular_core.WritableSignal<number>;
|
|
3285
3155
|
/**
|
|
3286
3156
|
* Emitted when selected tab changes
|
|
3287
3157
|
*/
|
|
3288
|
-
readonly selectedIndexChange:
|
|
3158
|
+
readonly selectedIndexChange: _angular_core.OutputEmitterRef<number>;
|
|
3289
3159
|
/**
|
|
3290
3160
|
* Tab components
|
|
3291
3161
|
*/
|
|
@@ -3302,19 +3172,10 @@ declare class TabsComponent implements AfterContentInit {
|
|
|
3302
3172
|
'lc-tabs--horizontal': boolean;
|
|
3303
3173
|
'lc-tabs--vertical': boolean;
|
|
3304
3174
|
}>;
|
|
3305
|
-
/**
|
|
3306
|
-
* Orientation of tabs (internal signal)
|
|
3307
|
-
* @default 'horizontal'
|
|
3308
|
-
*/
|
|
3309
|
-
private readonly _orientation;
|
|
3310
3175
|
/**
|
|
3311
3176
|
* Track tab registration
|
|
3312
3177
|
*/
|
|
3313
3178
|
private registeredTabs;
|
|
3314
|
-
/**
|
|
3315
|
-
* Set selected index input
|
|
3316
|
-
*/
|
|
3317
|
-
set selectedIndexInput(value: number);
|
|
3318
3179
|
constructor();
|
|
3319
3180
|
ngAfterContentInit(): void;
|
|
3320
3181
|
/**
|
|
@@ -3357,7 +3218,7 @@ declare class TabsComponent implements AfterContentInit {
|
|
|
3357
3218
|
*/
|
|
3358
3219
|
private getLastEnabledTab;
|
|
3359
3220
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TabsComponent, never>;
|
|
3360
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsComponent, "lc-tabs", never, { "orientation": { "alias": "orientation"; "required": false; }; "selectedIndexInput": { "alias": "selectedIndexInput"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; }, ["tabs"], never, true, never>;
|
|
3221
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TabsComponent, "lc-tabs", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "selectedIndexInput": { "alias": "selectedIndexInput"; "required": false; "isSignal": true; }; }, { "selectedIndexChange": "selectedIndexChange"; }, ["tabs"], never, true, never>;
|
|
3361
3222
|
}
|
|
3362
3223
|
|
|
3363
3224
|
type AvatarSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
@@ -3677,10 +3538,10 @@ declare class ChipComponent {
|
|
|
3677
3538
|
*/
|
|
3678
3539
|
declare class TableCellDirective {
|
|
3679
3540
|
/** The column key this template applies to */
|
|
3680
|
-
columnKey: string
|
|
3541
|
+
readonly columnKey: _angular_core.InputSignal<string>;
|
|
3681
3542
|
template: TemplateRef<any>;
|
|
3682
3543
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableCellDirective, never>;
|
|
3683
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TableCellDirective, "[lcTableCell]", never, { "columnKey": { "alias": "lcTableCell"; "required": false; }; }, {}, never, never, true, never>;
|
|
3544
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TableCellDirective, "[lcTableCell]", never, { "columnKey": { "alias": "lcTableCell"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3684
3545
|
}
|
|
3685
3546
|
|
|
3686
3547
|
interface TableColumn {
|
|
@@ -3835,6 +3696,7 @@ declare class TableComponent {
|
|
|
3835
3696
|
protected commitEdit(rowIndex: number, column: string): void;
|
|
3836
3697
|
protected cancelEdit(): void;
|
|
3837
3698
|
protected onEditKeydown(event: KeyboardEvent, rowIndex: number, column: string): void;
|
|
3699
|
+
protected getInputValue(event: Event): string;
|
|
3838
3700
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
3839
3701
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableComponent, "lc-table", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "responsive": { "alias": "responsive"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "paginate": { "alias": "paginate"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "filterable": { "alias": "filterable"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; }, { "sort": "sort"; "rowClick": "rowClick"; "cellEdit": "cellEdit"; "selectionChange": "selectionChange"; }, ["cellTemplates"], never, true, never>;
|
|
3840
3702
|
}
|
|
@@ -4004,6 +3866,7 @@ declare class FilterBarComponent {
|
|
|
4004
3866
|
isToggleActive(key: string, optionValue: string): boolean;
|
|
4005
3867
|
/** Get toggle button classes */
|
|
4006
3868
|
getToggleClasses(key: string, option: FilterOption): string;
|
|
3869
|
+
protected getInputValue(event: Event): string;
|
|
4007
3870
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterBarComponent, never>;
|
|
4008
3871
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterBarComponent, "lc-filter-bar", never, { "filters": { "alias": "filters"; "required": true; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "valuesChange": "valuesChange"; }, never, never, true, never>;
|
|
4009
3872
|
}
|
|
@@ -5336,7 +5199,6 @@ declare class ChatComponent implements AfterViewChecked {
|
|
|
5336
5199
|
protected onKeydown(event: KeyboardEvent): void;
|
|
5337
5200
|
protected send(): void;
|
|
5338
5201
|
protected formatTime(date: Date | undefined): string;
|
|
5339
|
-
protected trackById(_: number, msg: ChatMessage): string;
|
|
5340
5202
|
private scrollToBottom;
|
|
5341
5203
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChatComponent, never>;
|
|
5342
5204
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChatComponent, "lc-chat", never, { "messages": { "alias": "messages"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "title": { "alias": "title"; "required": false; "isSignal": true; }; "isStreaming": { "alias": "isStreaming"; "required": false; "isSignal": true; }; "showHeader": { "alias": "showHeader"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "showAvatars": { "alias": "showAvatars"; "required": false; "isSignal": true; }; "showTimestamps": { "alias": "showTimestamps"; "required": false; "isSignal": true; }; }, { "messageSend": "messageSend"; }, ["messageTemplate"], never, true, never>;
|
|
@@ -5953,8 +5815,6 @@ declare class KanbanBoardComponent {
|
|
|
5953
5815
|
protected onDrop(event: DragEvent, toColumnId: string, toIndex?: number): void;
|
|
5954
5816
|
protected onDragEnd(): void;
|
|
5955
5817
|
protected onCardClick(card: KanbanCard, columnId: string): void;
|
|
5956
|
-
protected trackColumn(_: number, col: KanbanColumn): string;
|
|
5957
|
-
protected trackCard(_: number, card: KanbanCard): string;
|
|
5958
5818
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<KanbanBoardComponent, never>;
|
|
5959
5819
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<KanbanBoardComponent, "lc-kanban-board", never, { "columns": { "alias": "columns"; "required": true; "isSignal": true; }; "showCardCount": { "alias": "showCardCount"; "required": false; "isSignal": true; }; "showWipLimit": { "alias": "showWipLimit"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; }, { "cardMoved": "cardMoved"; "cardClick": "cardClick"; }, never, never, true, never>;
|
|
5960
5820
|
}
|
|
@@ -6117,7 +5977,7 @@ interface RenderPart {
|
|
|
6117
5977
|
index: number;
|
|
6118
5978
|
safeHtml?: SafeHtml;
|
|
6119
5979
|
code?: string;
|
|
6120
|
-
lang?:
|
|
5980
|
+
lang?: CodeBlockLanguage;
|
|
6121
5981
|
}
|
|
6122
5982
|
/**
|
|
6123
5983
|
* Markdown renderer component.
|
|
@@ -6288,6 +6148,7 @@ declare class LogViewerComponent implements AfterViewInit, OnDestroy {
|
|
|
6288
6148
|
protected parseAnsi(text: string): string;
|
|
6289
6149
|
protected highlightSearch(html: string): string;
|
|
6290
6150
|
private escapeHtml;
|
|
6151
|
+
protected getInputValue(event: Event): string;
|
|
6291
6152
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<LogViewerComponent, never>;
|
|
6292
6153
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<LogViewerComponent, "lc-log-viewer", never, { "lines": { "alias": "lines"; "required": false; "isSignal": true; }; "stream$": { "alias": "stream$"; "required": false; "isSignal": true; }; "maxLines": { "alias": "maxLines"; "required": false; "isSignal": true; }; "autoScroll": { "alias": "autoScroll"; "required": false; "isSignal": true; }; "showTimestamps": { "alias": "showTimestamps"; "required": false; "isSignal": true; }; "showLineNumbers": { "alias": "showLineNumbers"; "required": false; "isSignal": true; }; "ansiColors": { "alias": "ansiColors"; "required": false; "isSignal": true; }; "levelFilter": { "alias": "levelFilter"; "required": false; "isSignal": true; }; "searchQuery": { "alias": "searchQuery"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; }, { "lineClick": "lineClick"; "copyAll": "copyAll"; "scrollStateChange": "scrollStateChange"; }, never, never, true, never>;
|
|
6293
6154
|
}
|
|
@@ -6509,5 +6370,5 @@ declare class ComboboxComponent implements ControlValueAccessor, OnDestroy {
|
|
|
6509
6370
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ComboboxComponent, "lc-combobox", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "loadOptions": { "alias": "loadOptions"; "required": false; "isSignal": true; }; "debounceMs": { "alias": "debounceMs"; "required": false; "isSignal": true; }; "minChars": { "alias": "minChars"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "helperText": { "alias": "helperText"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "allowCreate": { "alias": "allowCreate"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "emptyMessage": { "alias": "emptyMessage"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "valueChange": "valueChange"; "queryChange": "queryChange"; "optionSelected": "optionSelected"; "created": "created"; }, never, never, true, never>;
|
|
6510
6371
|
}
|
|
6511
6372
|
|
|
6512
|
-
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, ComboboxComponent, ConfirmDialogComponent, ConfirmService, 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, LogViewerComponent, LogoComponent, MarkdownComponent, 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 };
|
|
6373
|
+
export { AccordionComponent, AccordionGroupComponent, 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, ComboboxComponent, ConfirmDialogComponent, ConfirmService, 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, LogViewerComponent, LogoComponent, MarkdownComponent, 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 };
|
|
6513
6374
|
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, ComboboxOption, ComboboxSize, ComboboxValue, ConfirmDialogVariant, ConfirmOptions, 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, LogLevel, LogLine, LogViewerVariant, MarkdownHeading, MarkdownLinkClick, MarkdownRendered, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, PaginationSize, PasswordRequirement, PasswordStrength, PieChartSize, PieSegment, PopoverPosition, PopoverTrigger, ProgressBarColor, ProgressBarSize, ProgressBarVariant, ProgressRingColor, ProgressRingSize, RadarChartSeries, RadioSize, RatingSize, RenderPart, RequireTextConfig, 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 };
|