@life-cockpit/angular-ui-kit 2.9.0 → 2.11.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
|
@@ -487,8 +487,17 @@ declare class CardComponent {
|
|
|
487
487
|
* @default 'brand'
|
|
488
488
|
*/
|
|
489
489
|
iconVariant: _angular_core.InputSignal<"brand" | "subtle">;
|
|
490
|
+
/**
|
|
491
|
+
* Size of the leading icon tile.
|
|
492
|
+
* - md: 2.25rem tile (default)
|
|
493
|
+
* - sm: compact ~1.75rem chip for dense card headers
|
|
494
|
+
* @default 'md'
|
|
495
|
+
*/
|
|
496
|
+
iconSize: _angular_core.InputSignal<"sm" | "md">;
|
|
490
497
|
/**
|
|
491
498
|
* Optional badge text/count shown next to the title (e.g. item count).
|
|
499
|
+
* For a richer status badge (e.g. a leading status dot), project an
|
|
500
|
+
* `lc-badge` into the `card-badge` slot instead — the slot takes precedence.
|
|
492
501
|
*/
|
|
493
502
|
badge: _angular_core.InputSignal<string | undefined>;
|
|
494
503
|
/**
|
|
@@ -549,7 +558,7 @@ declare class CardComponent {
|
|
|
549
558
|
*/
|
|
550
559
|
protected handleKeydown(event: KeyboardEvent): void;
|
|
551
560
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<CardComponent, never>;
|
|
552
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardComponent, "lc-card", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconVariant": { "alias": "iconVariant"; "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>;
|
|
561
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<CardComponent, "lc-card", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconVariant": { "alias": "iconVariant"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "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-badge]", "[card-header-action]", "[card-header]", "*", "[card-footer]"], true, never>;
|
|
553
562
|
}
|
|
554
563
|
|
|
555
564
|
type CheckboxSize = 'xs' | 'sm' | 'md' | 'lg';
|
|
@@ -2516,6 +2525,23 @@ declare class ContainerComponent {
|
|
|
2516
2525
|
declare class PageHeaderComponent {
|
|
2517
2526
|
/** Main heading text. */
|
|
2518
2527
|
title: _angular_core.InputSignal<string | undefined>;
|
|
2528
|
+
/**
|
|
2529
|
+
* Optional leading icon (Tabler icon name) rendered as a brand tile to the
|
|
2530
|
+
* left of the title block, mirroring `lc-card`'s header icon. Purely additive.
|
|
2531
|
+
*/
|
|
2532
|
+
icon: _angular_core.InputSignal<string | undefined>;
|
|
2533
|
+
/**
|
|
2534
|
+
* Visual treatment of the leading icon tile.
|
|
2535
|
+
* - brand: gradient teal tile with light ink (default)
|
|
2536
|
+
* - subtle: translucent surface tile with brand-teal ink
|
|
2537
|
+
* @default 'brand'
|
|
2538
|
+
*/
|
|
2539
|
+
iconVariant: _angular_core.InputSignal<"brand" | "subtle">;
|
|
2540
|
+
/**
|
|
2541
|
+
* Size of the leading icon tile.
|
|
2542
|
+
* @default 'md'
|
|
2543
|
+
*/
|
|
2544
|
+
iconSize: _angular_core.InputSignal<"sm" | "md">;
|
|
2519
2545
|
/** Short supporting line below the title. */
|
|
2520
2546
|
subtitle: _angular_core.InputSignal<string | undefined>;
|
|
2521
2547
|
/**
|
|
@@ -2547,7 +2573,7 @@ declare class PageHeaderComponent {
|
|
|
2547
2573
|
noPaddingX: _angular_core.InputSignal<boolean>;
|
|
2548
2574
|
protected hostClasses: _angular_core.Signal<string>;
|
|
2549
2575
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageHeaderComponent, never>;
|
|
2550
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PageHeaderComponent, "lc-page-header", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "level": { "alias": "level"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showDivider": { "alias": "showDivider"; "required": false; "isSignal": true; }; "badge": { "alias": "badge"; "required": false; "isSignal": true; }; "noPaddingX": { "alias": "noPaddingX"; "required": false; "isSignal": true; }; }, {}, never, ["[slot='breadcrumbs']", "[slot='title-suffix']", "[slot='title-suffix']", "[slot='title-suffix']", "[slot='actions']", "[slot='meta']", "*"], true, never>;
|
|
2576
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PageHeaderComponent, "lc-page-header", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconVariant": { "alias": "iconVariant"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; "subtitle": { "alias": "subtitle"; "required": false; "isSignal": true; }; "level": { "alias": "level"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "showDivider": { "alias": "showDivider"; "required": false; "isSignal": true; }; "badge": { "alias": "badge"; "required": false; "isSignal": true; }; "noPaddingX": { "alias": "noPaddingX"; "required": false; "isSignal": true; }; }, {}, never, ["[slot='breadcrumbs']", "[slot='title-suffix']", "[slot='title-suffix']", "[slot='title-suffix']", "[slot='actions']", "[slot='meta']", "*"], true, never>;
|
|
2551
2577
|
}
|
|
2552
2578
|
|
|
2553
2579
|
/** Where the layout takes its height from. */
|
|
@@ -3756,12 +3782,18 @@ declare class BadgeComponent {
|
|
|
3756
3782
|
size: _angular_core.InputSignal<BadgeSize>;
|
|
3757
3783
|
/** Whether the badge has fully rounded corners (pill shape) */
|
|
3758
3784
|
rounded: _angular_core.InputSignal<boolean>;
|
|
3785
|
+
/**
|
|
3786
|
+
* Render a small leading status dot, filled in the variant's `currentColor`,
|
|
3787
|
+
* before the label (the "● label" pattern). Purely additive.
|
|
3788
|
+
* @default false
|
|
3789
|
+
*/
|
|
3790
|
+
dot: _angular_core.InputSignal<boolean>;
|
|
3759
3791
|
/**
|
|
3760
3792
|
* Computed CSS classes for the badge
|
|
3761
3793
|
*/
|
|
3762
3794
|
badgeClasses: _angular_core.Signal<string>;
|
|
3763
3795
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<BadgeComponent, never>;
|
|
3764
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeComponent, "lc-badge", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3796
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<BadgeComponent, "lc-badge", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "rounded": { "alias": "rounded"; "required": false; "isSignal": true; }; "dot": { "alias": "dot"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
3765
3797
|
}
|
|
3766
3798
|
|
|
3767
3799
|
interface ToggleOption {
|
|
@@ -6010,6 +6042,18 @@ declare class ChatComponent implements AfterViewChecked {
|
|
|
6010
6042
|
private addFiles;
|
|
6011
6043
|
private matchesAccept;
|
|
6012
6044
|
protected formatTime(date: Date | undefined): string;
|
|
6045
|
+
/**
|
|
6046
|
+
* Up to two uppercase initials from a name (first + last word), used for the
|
|
6047
|
+
* user avatar monogram when no `avatar` image is provided. Returns `''` for an
|
|
6048
|
+
* empty/whitespace name so the caller can skip rendering.
|
|
6049
|
+
*/
|
|
6050
|
+
protected initials(name: string | undefined): string;
|
|
6051
|
+
/**
|
|
6052
|
+
* Whether to show an avatar on a user turn: only when avatars are enabled and
|
|
6053
|
+
* the message carries either an image or a name we can build a monogram from.
|
|
6054
|
+
* Keeps the labelless bubble clean when there's nothing to show.
|
|
6055
|
+
*/
|
|
6056
|
+
protected showUserAvatar(msg: ChatMessage): boolean;
|
|
6013
6057
|
protected shouldRenderMarkdown(role: ChatMessageRole): boolean;
|
|
6014
6058
|
/** Whether a message carries a semantic (non-`default`) status. */
|
|
6015
6059
|
protected isSemanticStatus(status: ChatMessageStatus | undefined): boolean;
|
|
@@ -7439,13 +7483,22 @@ declare class StageListComponent {
|
|
|
7439
7483
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StageListComponent, "lc-stage-list", never, { "stages": { "alias": "stages"; "required": true; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showBar": { "alias": "showBar"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; }, { "stageClick": "stageClick"; }, never, never, true, never>;
|
|
7440
7484
|
}
|
|
7441
7485
|
|
|
7442
|
-
/**
|
|
7443
|
-
|
|
7486
|
+
/**
|
|
7487
|
+
* Emphasis treatment applied to a row's value.
|
|
7488
|
+
* - `mono` renders the value in the monospace font (paths, URLs, hashes).
|
|
7489
|
+
*/
|
|
7490
|
+
type DescriptionListEmphasis = 'default' | 'strong' | 'muted' | 'primary' | 'mono';
|
|
7444
7491
|
interface DescriptionListItem {
|
|
7445
7492
|
/** Label shown on the term side of the row. */
|
|
7446
7493
|
term: string;
|
|
7447
7494
|
/** Value shown on the description side of the row. */
|
|
7448
7495
|
value: string;
|
|
7496
|
+
/**
|
|
7497
|
+
* Optional qualifying suffix appended after the value on the same line and
|
|
7498
|
+
* rendered muted (e.g. a rating grade or "last checked" hint). Wraps if the
|
|
7499
|
+
* combined value + suffix exceed the available width.
|
|
7500
|
+
*/
|
|
7501
|
+
valueSuffix?: string;
|
|
7449
7502
|
/** Optional link — renders the value as an anchor. */
|
|
7450
7503
|
href?: string;
|
|
7451
7504
|
/** Optional visual emphasis for the value. @default 'default' */
|
|
@@ -7455,6 +7508,15 @@ interface DescriptionListItem {
|
|
|
7455
7508
|
}
|
|
7456
7509
|
type DescriptionListLayout = 'rows' | 'stacked';
|
|
7457
7510
|
type DescriptionListSize = 'sm' | 'md';
|
|
7511
|
+
/**
|
|
7512
|
+
* Per-row separator style (applies to the `rows` layout).
|
|
7513
|
+
* - `line` solid hairline under each row (default — unchanged look)
|
|
7514
|
+
* - `divider` subtle dashed line, for the dense card look
|
|
7515
|
+
* - `none` no row separator
|
|
7516
|
+
*
|
|
7517
|
+
* Orthogonal to `leaders`, which draws dotted leaders *between* term and value.
|
|
7518
|
+
*/
|
|
7519
|
+
type DescriptionListSeparator = 'line' | 'divider' | 'none';
|
|
7458
7520
|
/**
|
|
7459
7521
|
* Description list for key/value metadata (a styled `<dl>`).
|
|
7460
7522
|
*
|
|
@@ -7494,12 +7556,18 @@ declare class DescriptionListComponent {
|
|
|
7494
7556
|
readonly leaders: _angular_core.InputSignal<boolean>;
|
|
7495
7557
|
/** Density of the rows. @default 'md' */
|
|
7496
7558
|
readonly size: _angular_core.InputSignal<DescriptionListSize>;
|
|
7559
|
+
/**
|
|
7560
|
+
* Per-row separator style for the `rows` layout. Defaults to `line`, which is
|
|
7561
|
+
* identical to the previous behavior. Orthogonal to `leaders`.
|
|
7562
|
+
* @default 'line'
|
|
7563
|
+
*/
|
|
7564
|
+
readonly separator: _angular_core.InputSignal<DescriptionListSeparator>;
|
|
7497
7565
|
/** Emitted when a row is clicked. */
|
|
7498
7566
|
readonly itemClick: _angular_core.OutputEmitterRef<DescriptionListItem>;
|
|
7499
7567
|
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
7500
7568
|
protected valueClass(item: DescriptionListItem): string;
|
|
7501
7569
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DescriptionListComponent, never>;
|
|
7502
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DescriptionListComponent, "lc-description-list", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "leaders": { "alias": "leaders"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
|
|
7570
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<DescriptionListComponent, "lc-description-list", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "leaders": { "alias": "leaders"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; }, { "itemClick": "itemClick"; }, never, never, true, never>;
|
|
7503
7571
|
}
|
|
7504
7572
|
|
|
7505
7573
|
/**
|
|
@@ -7524,6 +7592,7 @@ interface PipelineStep {
|
|
|
7524
7592
|
id?: string;
|
|
7525
7593
|
}
|
|
7526
7594
|
type PipelineOrientation = 'horizontal' | 'vertical';
|
|
7595
|
+
type PipelineSize = 'sm' | 'md';
|
|
7527
7596
|
/**
|
|
7528
7597
|
* Pipeline — a status timeline of connected process nodes.
|
|
7529
7598
|
*
|
|
@@ -7548,6 +7617,13 @@ declare class PipelineComponent {
|
|
|
7548
7617
|
readonly steps: _angular_core.InputSignal<readonly PipelineStep[]>;
|
|
7549
7618
|
/** Layout direction. @default 'horizontal' */
|
|
7550
7619
|
readonly orientation: _angular_core.InputSignal<PipelineOrientation>;
|
|
7620
|
+
/**
|
|
7621
|
+
* Node/connector scale.
|
|
7622
|
+
* - md: default nodes (1.75rem)
|
|
7623
|
+
* - sm: compact spine — smaller nodes, thinner connectors, tighter grid
|
|
7624
|
+
* @default 'md'
|
|
7625
|
+
*/
|
|
7626
|
+
readonly size: _angular_core.InputSignal<PipelineSize>;
|
|
7551
7627
|
/** Whether nodes are clickable (emits `stepClick`). @default false */
|
|
7552
7628
|
readonly clickable: _angular_core.InputSignal<boolean>;
|
|
7553
7629
|
/** Emitted when a node is activated (only when `clickable`). */
|
|
@@ -7557,8 +7633,8 @@ declare class PipelineComponent {
|
|
|
7557
7633
|
protected stepClass(step: PipelineStep): string;
|
|
7558
7634
|
protected onActivate(step: PipelineStep): void;
|
|
7559
7635
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PipelineComponent, never>;
|
|
7560
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PipelineComponent, "lc-pipeline", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; }, never, never, true, never>;
|
|
7636
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<PipelineComponent, "lc-pipeline", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; }, { "stepClick": "stepClick"; }, never, never, true, never>;
|
|
7561
7637
|
}
|
|
7562
7638
|
|
|
7563
7639
|
export { AccordionComponent, AccordionContentDirective, AccordionGroupComponent, AccordionHeaderDirective, 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, ColorBackgroundDark, 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, ColorSidebarDark, ColorSuccessDark, ColorSuccessDefault, ColorSuccessLight, ColorSurfaceDarkBase, ColorSurfaceDarkRaised, ColorSurfaceDarkSunken, ColorTextDarkPrimary, ColorTextDarkSecondary, ColorTextDarkTertiary, ColorWarningDark, ColorWarningDefault, ColorWarningLight, ComboboxComponent, ConfirmDialogComponent, ConfirmService, ContainerComponent, DateRangePickerComponent, DatepickerComponent, DependencyViewerComponent, DescriptionListComponent, DiffViewerComponent, DividerComponent, DocumentViewerComponent, DonutChartComponent, DrawerComponent, Elevation1, Elevation2, Elevation3, Elevation4, EmailInputComponent, EmptyStateComponent, ErrorDisplayComponent, FILE_FALLBACK_ICON, FOLDER_ICON, FOLDER_OPEN_ICON, FieldGroupComponent, FileUploadComponent, FilterBarComponent, FooterComponent, FunnelChartComponent, GalleryComponent, GanttChartComponent, GaugeComponent, HeaderComponent, HeatmapComponent, HeroComponent, ICON_ALIASES, ICON_NAMES, IconComponent, InputComponent, KanbanBoardComponent, LC_LOGO_BASE_PATH, LineChartComponent, ListComponent, ListItemTemplateDirective, LogViewerComponent, LogoComponent, MarkdownComponent, MenuComponent, ModalComponent, NotificationCenterComponent, NumberInputComponent, PageHeaderComponent, PageLayoutComponent, PaginationComponent, PasswordInputComponent, PieChartComponent, PipelineComponent, 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, StageListComponent, StatTrendComponent, StepperComponent, SwitchComponent, TabComponent, TableCellDirective, TableComponent, TabsComponent, TagInputComponent, TextareaComponent, ThemeService, TimelineComponent, ToastComponent, ToastService, ToggleGroupComponent, ToolbarComponent, TooltipContentComponent, TooltipDirective, TreeViewComponent, TypographyComponent, TypographyFontFamilyBase, TypographyFontFamilyMono, TypographyFontSize2xl, TypographyFontSize3xl, TypographyFontSize4xl, TypographyFontSize5xl, TypographyFontSize6xl, TypographyFontSizeBase, TypographyFontSizeLg, TypographyFontSizeSm, TypographyFontSizeXl, TypographyFontSizeXs, TypographyFontWeightBold, TypographyFontWeightMedium, TypographyFontWeightNormal, TypographyFontWeightSemibold, TypographyLineHeightNormal, TypographyLineHeightRelaxed, TypographyLineHeightTight, VerificationCodeInputComponent, WaterfallChartComponent, isValidIconName, resolveFileIcon };
|
|
7564
|
-
export type { AccordionChevronPosition, ActionClickEvent, AlertVariant, AreaChartSeries, AvatarGroupItem, AvatarSize, AvatarStatus, BadgeSize, BadgeVariant, BarChartItem, BarChartOrientation, BreadcrumbItem, BreadcrumbSize, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarView, CalloutVariant, CellEditEvent, ChatAttachment, ChatFileAttachEvent, ChatMessage, ChatMessageRole, ChatMessageStatus, ChatRenderMarkdown, ChatSendEvent, CheckboxSize, ChipSize, ChipVariant, CodeBlockLanguage, ComboboxOption, ComboboxSize, ComboboxValue, ConfirmDialogVariant, ConfirmOptions, ContainerSize, DateRange, DateValue, DependencyDirection, DependencyEdgeDef, DependencyNode, DependencyNodeStatus, DependencyRelation, DescriptionListEmphasis, DescriptionListItem, DescriptionListLayout, DescriptionListSize, 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, IconName, IconSize, IconVariant, KanbanCard, KanbanColumn, KanbanLabel, KanbanMoveEvent, LineChartSeries, ListItem, ListOrientation, ListSize, ListVariant, LogLevel, LogLine, LogViewerVariant, MarkdownChangesHighlighted, MarkdownHeading, MarkdownLinkClick, MarkdownRendered, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, PageLayoutFill, PaginationSize, PasswordRequirement, PasswordStrength, PieChartSize, PieSegment, PipelineOrientation, PipelineStatus, PipelineStep, PopoverPosition, PopoverTrigger, ProgressBarColor, ProgressBarSize, ProgressBarVariant, ProgressRingColor, ProgressRingSize, RadarChartSeries, RadioSize, RatingSize, RenderPart, RequireTextConfig, RichTextEditorMode, RowToggleEvent, ScatterPoint, ScatterSeries, SearchInputSize, SectionBackground, SectionSpacing, SelectOption, SelectOptionGroup, SelectValue, SelectionChangeEvent, SidenavMode, SidenavPosition, SkeletonVariant, SortEvent, SpacerSize, SparklineColor, SparklineCurve, SpinnerSize, StackAlign, StackDirection, StackGap, StackJustify, StackedBarCategory, StackedBarLegend, StackedBarOrientation, StageItem, StageListSize, StatTrendDirection, StepState, StepperStep, TabOrientation, TableAction, TableActionsAlign, TableColumn, TableSize, TableTreeConfig, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };
|
|
7640
|
+
export type { AccordionChevronPosition, ActionClickEvent, AlertVariant, AreaChartSeries, AvatarGroupItem, AvatarSize, AvatarStatus, BadgeSize, BadgeVariant, BarChartItem, BarChartOrientation, BreadcrumbItem, BreadcrumbSize, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarView, CalloutVariant, CellEditEvent, ChatAttachment, ChatFileAttachEvent, ChatMessage, ChatMessageRole, ChatMessageStatus, ChatRenderMarkdown, ChatSendEvent, CheckboxSize, ChipSize, ChipVariant, CodeBlockLanguage, ComboboxOption, ComboboxSize, ComboboxValue, ConfirmDialogVariant, ConfirmOptions, ContainerSize, DateRange, DateValue, DependencyDirection, DependencyEdgeDef, DependencyNode, DependencyNodeStatus, DependencyRelation, DescriptionListEmphasis, DescriptionListItem, DescriptionListLayout, DescriptionListSeparator, DescriptionListSize, 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, IconName, IconSize, IconVariant, KanbanCard, KanbanColumn, KanbanLabel, KanbanMoveEvent, LineChartSeries, ListItem, ListOrientation, ListSize, ListVariant, LogLevel, LogLine, LogViewerVariant, MarkdownChangesHighlighted, MarkdownHeading, MarkdownLinkClick, MarkdownRendered, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, PageLayoutFill, PaginationSize, PasswordRequirement, PasswordStrength, PieChartSize, PieSegment, PipelineOrientation, PipelineSize, PipelineStatus, PipelineStep, PopoverPosition, PopoverTrigger, ProgressBarColor, ProgressBarSize, ProgressBarVariant, ProgressRingColor, ProgressRingSize, RadarChartSeries, RadioSize, RatingSize, RenderPart, RequireTextConfig, RichTextEditorMode, RowToggleEvent, ScatterPoint, ScatterSeries, SearchInputSize, SectionBackground, SectionSpacing, SelectOption, SelectOptionGroup, SelectValue, SelectionChangeEvent, SidenavMode, SidenavPosition, SkeletonVariant, SortEvent, SpacerSize, SparklineColor, SparklineCurve, SpinnerSize, StackAlign, StackDirection, StackGap, StackJustify, StackedBarCategory, StackedBarLegend, StackedBarOrientation, StageItem, StageListSize, StatTrendDirection, StepState, StepperStep, TabOrientation, TableAction, TableActionsAlign, TableColumn, TableSize, TableTreeConfig, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };
|