@life-cockpit/angular-ui-kit 2.9.0 → 2.10.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 {
|
|
@@ -7439,13 +7471,22 @@ declare class StageListComponent {
|
|
|
7439
7471
|
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
7472
|
}
|
|
7441
7473
|
|
|
7442
|
-
/**
|
|
7443
|
-
|
|
7474
|
+
/**
|
|
7475
|
+
* Emphasis treatment applied to a row's value.
|
|
7476
|
+
* - `mono` renders the value in the monospace font (paths, URLs, hashes).
|
|
7477
|
+
*/
|
|
7478
|
+
type DescriptionListEmphasis = 'default' | 'strong' | 'muted' | 'primary' | 'mono';
|
|
7444
7479
|
interface DescriptionListItem {
|
|
7445
7480
|
/** Label shown on the term side of the row. */
|
|
7446
7481
|
term: string;
|
|
7447
7482
|
/** Value shown on the description side of the row. */
|
|
7448
7483
|
value: string;
|
|
7484
|
+
/**
|
|
7485
|
+
* Optional qualifying suffix appended after the value on the same line and
|
|
7486
|
+
* rendered muted (e.g. a rating grade or "last checked" hint). Wraps if the
|
|
7487
|
+
* combined value + suffix exceed the available width.
|
|
7488
|
+
*/
|
|
7489
|
+
valueSuffix?: string;
|
|
7449
7490
|
/** Optional link — renders the value as an anchor. */
|
|
7450
7491
|
href?: string;
|
|
7451
7492
|
/** Optional visual emphasis for the value. @default 'default' */
|
|
@@ -7455,6 +7496,15 @@ interface DescriptionListItem {
|
|
|
7455
7496
|
}
|
|
7456
7497
|
type DescriptionListLayout = 'rows' | 'stacked';
|
|
7457
7498
|
type DescriptionListSize = 'sm' | 'md';
|
|
7499
|
+
/**
|
|
7500
|
+
* Per-row separator style (applies to the `rows` layout).
|
|
7501
|
+
* - `line` solid hairline under each row (default — unchanged look)
|
|
7502
|
+
* - `divider` subtle dashed line, for the dense card look
|
|
7503
|
+
* - `none` no row separator
|
|
7504
|
+
*
|
|
7505
|
+
* Orthogonal to `leaders`, which draws dotted leaders *between* term and value.
|
|
7506
|
+
*/
|
|
7507
|
+
type DescriptionListSeparator = 'line' | 'divider' | 'none';
|
|
7458
7508
|
/**
|
|
7459
7509
|
* Description list for key/value metadata (a styled `<dl>`).
|
|
7460
7510
|
*
|
|
@@ -7494,12 +7544,18 @@ declare class DescriptionListComponent {
|
|
|
7494
7544
|
readonly leaders: _angular_core.InputSignal<boolean>;
|
|
7495
7545
|
/** Density of the rows. @default 'md' */
|
|
7496
7546
|
readonly size: _angular_core.InputSignal<DescriptionListSize>;
|
|
7547
|
+
/**
|
|
7548
|
+
* Per-row separator style for the `rows` layout. Defaults to `line`, which is
|
|
7549
|
+
* identical to the previous behavior. Orthogonal to `leaders`.
|
|
7550
|
+
* @default 'line'
|
|
7551
|
+
*/
|
|
7552
|
+
readonly separator: _angular_core.InputSignal<DescriptionListSeparator>;
|
|
7497
7553
|
/** Emitted when a row is clicked. */
|
|
7498
7554
|
readonly itemClick: _angular_core.OutputEmitterRef<DescriptionListItem>;
|
|
7499
7555
|
protected readonly hostClasses: _angular_core.Signal<string>;
|
|
7500
7556
|
protected valueClass(item: DescriptionListItem): string;
|
|
7501
7557
|
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>;
|
|
7558
|
+
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
7559
|
}
|
|
7504
7560
|
|
|
7505
7561
|
/**
|
|
@@ -7524,6 +7580,7 @@ interface PipelineStep {
|
|
|
7524
7580
|
id?: string;
|
|
7525
7581
|
}
|
|
7526
7582
|
type PipelineOrientation = 'horizontal' | 'vertical';
|
|
7583
|
+
type PipelineSize = 'sm' | 'md';
|
|
7527
7584
|
/**
|
|
7528
7585
|
* Pipeline — a status timeline of connected process nodes.
|
|
7529
7586
|
*
|
|
@@ -7548,6 +7605,13 @@ declare class PipelineComponent {
|
|
|
7548
7605
|
readonly steps: _angular_core.InputSignal<readonly PipelineStep[]>;
|
|
7549
7606
|
/** Layout direction. @default 'horizontal' */
|
|
7550
7607
|
readonly orientation: _angular_core.InputSignal<PipelineOrientation>;
|
|
7608
|
+
/**
|
|
7609
|
+
* Node/connector scale.
|
|
7610
|
+
* - md: default nodes (1.75rem)
|
|
7611
|
+
* - sm: compact spine — smaller nodes, thinner connectors, tighter grid
|
|
7612
|
+
* @default 'md'
|
|
7613
|
+
*/
|
|
7614
|
+
readonly size: _angular_core.InputSignal<PipelineSize>;
|
|
7551
7615
|
/** Whether nodes are clickable (emits `stepClick`). @default false */
|
|
7552
7616
|
readonly clickable: _angular_core.InputSignal<boolean>;
|
|
7553
7617
|
/** Emitted when a node is activated (only when `clickable`). */
|
|
@@ -7557,8 +7621,8 @@ declare class PipelineComponent {
|
|
|
7557
7621
|
protected stepClass(step: PipelineStep): string;
|
|
7558
7622
|
protected onActivate(step: PipelineStep): void;
|
|
7559
7623
|
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>;
|
|
7624
|
+
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
7625
|
}
|
|
7562
7626
|
|
|
7563
7627
|
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 };
|
|
7628
|
+
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 };
|