@life-cockpit/angular-ui-kit 2.0.1 → 2.1.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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@life-cockpit/angular-ui-kit",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "description": "Life Cockpit Design System - Angular UI component library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -2342,9 +2342,42 @@ declare class PageHeaderComponent {
2342
2342
  showDivider: _angular_core.InputSignal<boolean>;
2343
2343
  /** Optional badge text next to the title (e.g. `Beta`). */
2344
2344
  badge: _angular_core.InputSignal<string | undefined>;
2345
+ /**
2346
+ * Remove the header's own horizontal padding so its content sits flush with
2347
+ * the container edge. Use when the header is already inside a padded wrapper
2348
+ * (e.g. `<lc-container>`) and you'd otherwise get a double inset. The divider,
2349
+ * when shown, always spans the full width regardless of this setting.
2350
+ * @default false
2351
+ */
2352
+ noPaddingX: _angular_core.InputSignal<boolean>;
2345
2353
  protected hostClasses: _angular_core.Signal<string>;
2346
2354
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageHeaderComponent, never>;
2347
- 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; }; }, {}, never, ["[slot='breadcrumbs']", "[slot='actions']", "[slot='meta']", "*"], true, never>;
2355
+ 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='actions']", "[slot='meta']", "*"], true, never>;
2356
+ }
2357
+
2358
+ /** Where the layout takes its height from. */
2359
+ type PageLayoutFill = 'screen' | 'parent';
2360
+ declare class PageLayoutComponent {
2361
+ /**
2362
+ * Source of the layout's height.
2363
+ * - `'screen'` (default): `100dvh` — fills the viewport. Use as the page root.
2364
+ * - `'parent'`: `100%` — fills its parent. Use when nested below an app shell;
2365
+ * every ancestor must also carry the height down.
2366
+ */
2367
+ fill: _angular_core.InputSignal<PageLayoutFill>;
2368
+ /**
2369
+ * Whether the body region scrolls internally. Defaults to `true`, which is
2370
+ * correct both for long page content and for children like `<lc-chat>` that
2371
+ * fit the body exactly (no scrollbar appears in that case). Set `false` for
2372
+ * full-bleed bodies that must never scroll (e.g. a map).
2373
+ */
2374
+ scrollBody: _angular_core.InputSignal<boolean>;
2375
+ /** Add density-aware padding to the body. Off by default so embedded components keep their own padding. */
2376
+ padded: _angular_core.InputSignal<boolean>;
2377
+ get hostClasses(): string;
2378
+ classes: _angular_core.Signal<string>;
2379
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageLayoutComponent, never>;
2380
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<PageLayoutComponent, "lc-page-layout", never, { "fill": { "alias": "fill"; "required": false; "isSignal": true; }; "scrollBody": { "alias": "scrollBody"; "required": false; "isSignal": true; }; "padded": { "alias": "padded"; "required": false; "isSignal": true; }; }, {}, never, ["[layout-header]", "*", "[layout-footer]"], true, never>;
2348
2381
  }
2349
2382
 
2350
2383
  type SectionSpacing = 'none' | 'sm' | 'md' | 'lg' | 'xl';
@@ -4643,6 +4676,10 @@ declare class FooterComponent {
4643
4676
  type SparklineColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
4644
4677
  type SparklineCurve = 'linear' | 'smooth';
4645
4678
  declare class SparklineComponent {
4679
+ private readonly _el;
4680
+ private readonly _destroyRef;
4681
+ private readonly _containerWidth;
4682
+ constructor();
4646
4683
  /** Data points to plot. */
4647
4684
  data: _angular_core.InputSignal<number[]>;
4648
4685
  /** Stroke color theme. */
@@ -4668,6 +4705,7 @@ declare class SparklineComponent {
4668
4705
  cy: number;
4669
4706
  r: number;
4670
4707
  } | null>;
4708
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
4671
4709
  protected readonly viewBox: _angular_core.Signal<string>;
4672
4710
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SparklineComponent, never>;
4673
4711
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SparklineComponent, "lc-sparkline", never, { "data": { "alias": "data"; "required": true; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "strokeWidth": { "alias": "strokeWidth"; "required": false; "isSignal": true; }; "filled": { "alias": "filled"; "required": false; "isSignal": true; }; "curve": { "alias": "curve"; "required": false; "isSignal": true; }; "showEndDot": { "alias": "showEndDot"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -4749,6 +4787,10 @@ interface BarChartItem {
4749
4787
  }
4750
4788
  type BarChartOrientation = 'vertical' | 'horizontal';
4751
4789
  declare class BarChartComponent {
4790
+ private readonly _el;
4791
+ private readonly _destroyRef;
4792
+ private readonly _containerWidth;
4793
+ constructor();
4752
4794
  /** Data items. */
4753
4795
  data: _angular_core.InputSignal<BarChartItem[]>;
4754
4796
  /** Chart width in pixels. */
@@ -4771,6 +4813,7 @@ declare class BarChartComponent {
4771
4813
  private readonly PADDING_RIGHT;
4772
4814
  private readonly PADDING_TOP;
4773
4815
  private readonly PADDING_BOTTOM;
4816
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
4774
4817
  protected readonly viewBox: _angular_core.Signal<string>;
4775
4818
  protected readonly maxValue: _angular_core.Signal<number>;
4776
4819
  protected readonly gridLines: _angular_core.Signal<{
@@ -4811,6 +4854,10 @@ interface LineChartSeries {
4811
4854
  color?: string;
4812
4855
  }
4813
4856
  declare class LineChartComponent {
4857
+ private readonly _el;
4858
+ private readonly _destroyRef;
4859
+ private readonly _containerWidth;
4860
+ constructor();
4814
4861
  /** One or more data series. */
4815
4862
  series: _angular_core.InputSignal<LineChartSeries[]>;
4816
4863
  /** X-axis labels. */
@@ -4841,6 +4888,7 @@ declare class LineChartComponent {
4841
4888
  private readonly PR;
4842
4889
  private readonly PT;
4843
4890
  private readonly PB;
4891
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
4844
4892
  protected readonly viewBox: _angular_core.Signal<string>;
4845
4893
  protected readonly allValues: _angular_core.Signal<number[]>;
4846
4894
  protected readonly minValue: _angular_core.Signal<number>;
@@ -4937,6 +4985,10 @@ interface StackedBarLegend {
4937
4985
  }
4938
4986
  type StackedBarOrientation = 'vertical' | 'horizontal';
4939
4987
  declare class StackedBarChartComponent {
4988
+ private readonly _el;
4989
+ private readonly _destroyRef;
4990
+ private readonly _containerWidth;
4991
+ constructor();
4940
4992
  /** Categories with stacked values. */
4941
4993
  categories: _angular_core.InputSignal<StackedBarCategory[]>;
4942
4994
  /** Legend items mapping to each value index. */
@@ -4953,6 +5005,7 @@ declare class StackedBarChartComponent {
4953
5005
  private readonly PR;
4954
5006
  private readonly PT;
4955
5007
  private readonly PB;
5008
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
4956
5009
  protected readonly viewBox: _angular_core.Signal<string>;
4957
5010
  protected readonly maxTotal: _angular_core.Signal<number>;
4958
5011
  protected readonly gridLines: _angular_core.Signal<{
@@ -5000,6 +5053,10 @@ interface AreaChartSeries {
5000
5053
  color?: string;
5001
5054
  }
5002
5055
  declare class AreaChartComponent {
5056
+ private readonly _el;
5057
+ private readonly _destroyRef;
5058
+ private readonly _containerWidth;
5059
+ constructor();
5003
5060
  series: _angular_core.InputSignal<AreaChartSeries[]>;
5004
5061
  labels: _angular_core.InputSignal<string[]>;
5005
5062
  width: _angular_core.InputSignal<number>;
@@ -5019,6 +5076,7 @@ declare class AreaChartComponent {
5019
5076
  private readonly PR;
5020
5077
  private readonly PT;
5021
5078
  private readonly PB;
5079
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
5022
5080
  protected readonly viewBox: _angular_core.Signal<string>;
5023
5081
  protected readonly plotArea: _angular_core.Signal<{
5024
5082
  x: number;
@@ -5245,6 +5303,10 @@ interface WaterfallItem {
5245
5303
  type?: 'increase' | 'decrease' | 'total';
5246
5304
  }
5247
5305
  declare class WaterfallChartComponent {
5306
+ private readonly _el;
5307
+ private readonly _destroyRef;
5308
+ private readonly _containerWidth;
5309
+ constructor();
5248
5310
  data: _angular_core.InputSignal<WaterfallItem[]>;
5249
5311
  width: _angular_core.InputSignal<number>;
5250
5312
  height: _angular_core.InputSignal<number>;
@@ -5259,6 +5321,7 @@ declare class WaterfallChartComponent {
5259
5321
  private readonly PR;
5260
5322
  private readonly PT;
5261
5323
  private readonly PB;
5324
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
5262
5325
  protected readonly viewBox: _angular_core.Signal<string>;
5263
5326
  protected readonly computedBars: _angular_core.Signal<{
5264
5327
  bars: {
@@ -5521,6 +5584,20 @@ declare class ChatComponent implements AfterViewChecked {
5521
5584
  isStreaming: _angular_core.InputSignal<boolean>;
5522
5585
  /** Show the header bar. */
5523
5586
  showHeader: _angular_core.InputSignal<boolean>;
5587
+ /**
5588
+ * Draw the chat's own border + rounded corners. Defaults to `true` (card
5589
+ * style). Set `false` to render flush/edge-to-edge — e.g. when the chat is
5590
+ * the full-height body of an `<lc-page-layout>` and should sit directly under
5591
+ * a page header without a nested box.
5592
+ */
5593
+ bordered: _angular_core.InputSignal<boolean>;
5594
+ /**
5595
+ * Where messages stack when they don't fill the height.
5596
+ * - `'top'` (default): messages grow from the top down.
5597
+ * - `'bottom'`: messages anchor to the bottom (empty space above), like most
5598
+ * messaging apps. Still scrolls to reveal the top once they overflow.
5599
+ */
5600
+ messageAnchor: _angular_core.InputSignal<"top" | "bottom">;
5524
5601
  /** Disable the input. */
5525
5602
  disabled: _angular_core.InputSignal<boolean>;
5526
5603
  /** Show avatars next to messages. */
@@ -5587,7 +5664,7 @@ declare class ChatComponent implements AfterViewChecked {
5587
5664
  protected shouldRenderMarkdown(role: ChatMessageRole): boolean;
5588
5665
  private scrollToBottom;
5589
5666
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChatComponent, never>;
5590
- 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; }; "renderMarkdown": { "alias": "renderMarkdown"; "required": false; "isSignal": true; }; "allowFileUpload": { "alias": "allowFileUpload"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; "isSignal": true; }; }, { "messageSend": "messageSend"; "fileAttach": "fileAttach"; }, ["messageTemplate"], never, true, never>;
5667
+ 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; }; "bordered": { "alias": "bordered"; "required": false; "isSignal": true; }; "messageAnchor": { "alias": "messageAnchor"; "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; }; "renderMarkdown": { "alias": "renderMarkdown"; "required": false; "isSignal": true; }; "allowFileUpload": { "alias": "allowFileUpload"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "multiple": { "alias": "multiple"; "required": false; "isSignal": true; }; "maxFileSize": { "alias": "maxFileSize"; "required": false; "isSignal": true; }; }, { "messageSend": "messageSend"; "fileAttach": "fileAttach"; }, ["messageTemplate"], never, true, never>;
5591
5668
  }
5592
5669
 
5593
5670
  type DocumentType = 'pdf' | 'markdown' | 'image' | 'text' | 'code' | 'auto';
@@ -6136,6 +6213,10 @@ interface FunnelStep {
6136
6213
  color?: string;
6137
6214
  }
6138
6215
  declare class FunnelChartComponent {
6216
+ private readonly _el;
6217
+ private readonly _destroyRef;
6218
+ private readonly _containerWidth;
6219
+ constructor();
6139
6220
  readonly steps: _angular_core.InputSignal<FunnelStep[]>;
6140
6221
  readonly width: _angular_core.InputSignal<number>;
6141
6222
  readonly height: _angular_core.InputSignal<number>;
@@ -6143,6 +6224,7 @@ declare class FunnelChartComponent {
6143
6224
  readonly showValues: _angular_core.InputSignal<boolean>;
6144
6225
  readonly showPercentage: _angular_core.InputSignal<boolean>;
6145
6226
  readonly orientation: _angular_core.InputSignal<"horizontal" | "vertical">;
6227
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
6146
6228
  protected readonly viewBox: _angular_core.Signal<string>;
6147
6229
  protected readonly renderedSteps: _angular_core.Signal<{
6148
6230
  path: string;
@@ -6924,5 +7006,5 @@ declare class StageListComponent {
6924
7006
  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>;
6925
7007
  }
6926
7008
 
6927
- 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, 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, ColorSuccessDark, ColorSuccessDefault, ColorSuccessLight, ColorSurfaceDarkBase, ColorSurfaceDarkRaised, ColorSurfaceDarkSunken, ColorTextDarkPrimary, ColorTextDarkSecondary, ColorTextDarkTertiary, ColorWarningDark, ColorWarningDefault, ColorWarningLight, ComboboxComponent, ConfirmDialogComponent, ConfirmService, ContainerComponent, DateRangePickerComponent, DatepickerComponent, DependencyViewerComponent, 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, IconComponent, InputComponent, KanbanBoardComponent, LC_LOGO_BASE_PATH, LineChartComponent, ListComponent, ListItemTemplateDirective, LogViewerComponent, LogoComponent, MarkdownComponent, MenuComponent, ModalComponent, NotificationCenterComponent, NumberInputComponent, PageHeaderComponent, 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, 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, resolveFileIcon };
6928
- export type { ActionClickEvent, AlertVariant, AreaChartSeries, AvatarGroupItem, AvatarSize, AvatarStatus, BadgeSize, BadgeVariant, BarChartItem, BarChartOrientation, BreadcrumbItem, BreadcrumbSize, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarView, CalloutVariant, CellEditEvent, ChatAttachment, ChatFileAttachEvent, ChatMessage, ChatMessageRole, ChatRenderMarkdown, 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, StageItem, StageListSize, StatTrendDirection, StepState, StepperStep, TabOrientation, TableAction, TableActionsAlign, TableColumn, TableSize, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };
7009
+ 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, 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, ColorSuccessDark, ColorSuccessDefault, ColorSuccessLight, ColorSurfaceDarkBase, ColorSurfaceDarkRaised, ColorSurfaceDarkSunken, ColorTextDarkPrimary, ColorTextDarkSecondary, ColorTextDarkTertiary, ColorWarningDark, ColorWarningDefault, ColorWarningLight, ComboboxComponent, ConfirmDialogComponent, ConfirmService, ContainerComponent, DateRangePickerComponent, DatepickerComponent, DependencyViewerComponent, 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, IconComponent, InputComponent, KanbanBoardComponent, LC_LOGO_BASE_PATH, LineChartComponent, ListComponent, ListItemTemplateDirective, LogViewerComponent, LogoComponent, MarkdownComponent, MenuComponent, ModalComponent, NotificationCenterComponent, NumberInputComponent, PageHeaderComponent, PageLayoutComponent, 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, 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, resolveFileIcon };
7010
+ export type { ActionClickEvent, AlertVariant, AreaChartSeries, AvatarGroupItem, AvatarSize, AvatarStatus, BadgeSize, BadgeVariant, BarChartItem, BarChartOrientation, BreadcrumbItem, BreadcrumbSize, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarView, CalloutVariant, CellEditEvent, ChatAttachment, ChatFileAttachEvent, ChatMessage, ChatMessageRole, ChatRenderMarkdown, 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, PageLayoutFill, 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, StageItem, StageListSize, StatTrendDirection, StepState, StepperStep, TabOrientation, TableAction, TableActionsAlign, TableColumn, TableSize, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };