@life-cockpit/angular-ui-kit 2.0.0 → 2.0.2

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.0",
3
+ "version": "2.0.2",
4
4
  "description": "Life Cockpit Design System - Angular UI component library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -4643,6 +4643,10 @@ declare class FooterComponent {
4643
4643
  type SparklineColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
4644
4644
  type SparklineCurve = 'linear' | 'smooth';
4645
4645
  declare class SparklineComponent {
4646
+ private readonly _el;
4647
+ private readonly _destroyRef;
4648
+ private readonly _containerWidth;
4649
+ constructor();
4646
4650
  /** Data points to plot. */
4647
4651
  data: _angular_core.InputSignal<number[]>;
4648
4652
  /** Stroke color theme. */
@@ -4668,6 +4672,7 @@ declare class SparklineComponent {
4668
4672
  cy: number;
4669
4673
  r: number;
4670
4674
  } | null>;
4675
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
4671
4676
  protected readonly viewBox: _angular_core.Signal<string>;
4672
4677
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SparklineComponent, never>;
4673
4678
  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 +4754,10 @@ interface BarChartItem {
4749
4754
  }
4750
4755
  type BarChartOrientation = 'vertical' | 'horizontal';
4751
4756
  declare class BarChartComponent {
4757
+ private readonly _el;
4758
+ private readonly _destroyRef;
4759
+ private readonly _containerWidth;
4760
+ constructor();
4752
4761
  /** Data items. */
4753
4762
  data: _angular_core.InputSignal<BarChartItem[]>;
4754
4763
  /** Chart width in pixels. */
@@ -4771,6 +4780,7 @@ declare class BarChartComponent {
4771
4780
  private readonly PADDING_RIGHT;
4772
4781
  private readonly PADDING_TOP;
4773
4782
  private readonly PADDING_BOTTOM;
4783
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
4774
4784
  protected readonly viewBox: _angular_core.Signal<string>;
4775
4785
  protected readonly maxValue: _angular_core.Signal<number>;
4776
4786
  protected readonly gridLines: _angular_core.Signal<{
@@ -4811,6 +4821,10 @@ interface LineChartSeries {
4811
4821
  color?: string;
4812
4822
  }
4813
4823
  declare class LineChartComponent {
4824
+ private readonly _el;
4825
+ private readonly _destroyRef;
4826
+ private readonly _containerWidth;
4827
+ constructor();
4814
4828
  /** One or more data series. */
4815
4829
  series: _angular_core.InputSignal<LineChartSeries[]>;
4816
4830
  /** X-axis labels. */
@@ -4835,10 +4849,13 @@ declare class LineChartComponent {
4835
4849
  showLegend: _angular_core.InputSignal<boolean>;
4836
4850
  /** Use smooth curves. */
4837
4851
  smooth: _angular_core.InputSignal<boolean>;
4852
+ /** Force a minimum Y value (e.g. 0 for cost charts to avoid negative baseline). */
4853
+ yMin: _angular_core.InputSignal<number | null>;
4838
4854
  private readonly PL;
4839
4855
  private readonly PR;
4840
4856
  private readonly PT;
4841
4857
  private readonly PB;
4858
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
4842
4859
  protected readonly viewBox: _angular_core.Signal<string>;
4843
4860
  protected readonly allValues: _angular_core.Signal<number[]>;
4844
4861
  protected readonly minValue: _angular_core.Signal<number>;
@@ -4883,8 +4900,11 @@ declare class LineChartComponent {
4883
4900
  label: string;
4884
4901
  color: string;
4885
4902
  }[]>;
4903
+ private readonly _clipId;
4904
+ protected readonly clipId: () => string;
4905
+ protected fmtY(val: number): string;
4886
4906
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<LineChartComponent, never>;
4887
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<LineChartComponent, "lc-line-chart", never, { "series": { "alias": "series"; "required": true; "isSignal": true; }; "labels": { "alias": "labels"; "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; }; "showDots": { "alias": "showDots"; "required": false; "isSignal": true; }; "showGrid": { "alias": "showGrid"; "required": false; "isSignal": true; }; "showXLabels": { "alias": "showXLabels"; "required": false; "isSignal": true; }; "showYLabels": { "alias": "showYLabels"; "required": false; "isSignal": true; }; "filled": { "alias": "filled"; "required": false; "isSignal": true; }; "showLegend": { "alias": "showLegend"; "required": false; "isSignal": true; }; "smooth": { "alias": "smooth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
4907
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<LineChartComponent, "lc-line-chart", never, { "series": { "alias": "series"; "required": true; "isSignal": true; }; "labels": { "alias": "labels"; "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; }; "showDots": { "alias": "showDots"; "required": false; "isSignal": true; }; "showGrid": { "alias": "showGrid"; "required": false; "isSignal": true; }; "showXLabels": { "alias": "showXLabels"; "required": false; "isSignal": true; }; "showYLabels": { "alias": "showYLabels"; "required": false; "isSignal": true; }; "filled": { "alias": "filled"; "required": false; "isSignal": true; }; "showLegend": { "alias": "showLegend"; "required": false; "isSignal": true; }; "smooth": { "alias": "smooth"; "required": false; "isSignal": true; }; "yMin": { "alias": "yMin"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
4888
4908
  }
4889
4909
 
4890
4910
  type GaugeColor = 'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info';
@@ -4932,6 +4952,10 @@ interface StackedBarLegend {
4932
4952
  }
4933
4953
  type StackedBarOrientation = 'vertical' | 'horizontal';
4934
4954
  declare class StackedBarChartComponent {
4955
+ private readonly _el;
4956
+ private readonly _destroyRef;
4957
+ private readonly _containerWidth;
4958
+ constructor();
4935
4959
  /** Categories with stacked values. */
4936
4960
  categories: _angular_core.InputSignal<StackedBarCategory[]>;
4937
4961
  /** Legend items mapping to each value index. */
@@ -4948,6 +4972,7 @@ declare class StackedBarChartComponent {
4948
4972
  private readonly PR;
4949
4973
  private readonly PT;
4950
4974
  private readonly PB;
4975
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
4951
4976
  protected readonly viewBox: _angular_core.Signal<string>;
4952
4977
  protected readonly maxTotal: _angular_core.Signal<number>;
4953
4978
  protected readonly gridLines: _angular_core.Signal<{
@@ -4995,6 +5020,10 @@ interface AreaChartSeries {
4995
5020
  color?: string;
4996
5021
  }
4997
5022
  declare class AreaChartComponent {
5023
+ private readonly _el;
5024
+ private readonly _destroyRef;
5025
+ private readonly _containerWidth;
5026
+ constructor();
4998
5027
  series: _angular_core.InputSignal<AreaChartSeries[]>;
4999
5028
  labels: _angular_core.InputSignal<string[]>;
5000
5029
  width: _angular_core.InputSignal<number>;
@@ -5014,6 +5043,7 @@ declare class AreaChartComponent {
5014
5043
  private readonly PR;
5015
5044
  private readonly PT;
5016
5045
  private readonly PB;
5046
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
5017
5047
  protected readonly viewBox: _angular_core.Signal<string>;
5018
5048
  protected readonly plotArea: _angular_core.Signal<{
5019
5049
  x: number;
@@ -5240,6 +5270,10 @@ interface WaterfallItem {
5240
5270
  type?: 'increase' | 'decrease' | 'total';
5241
5271
  }
5242
5272
  declare class WaterfallChartComponent {
5273
+ private readonly _el;
5274
+ private readonly _destroyRef;
5275
+ private readonly _containerWidth;
5276
+ constructor();
5243
5277
  data: _angular_core.InputSignal<WaterfallItem[]>;
5244
5278
  width: _angular_core.InputSignal<number>;
5245
5279
  height: _angular_core.InputSignal<number>;
@@ -5254,6 +5288,7 @@ declare class WaterfallChartComponent {
5254
5288
  private readonly PR;
5255
5289
  private readonly PT;
5256
5290
  private readonly PB;
5291
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
5257
5292
  protected readonly viewBox: _angular_core.Signal<string>;
5258
5293
  protected readonly computedBars: _angular_core.Signal<{
5259
5294
  bars: {
@@ -6131,6 +6166,10 @@ interface FunnelStep {
6131
6166
  color?: string;
6132
6167
  }
6133
6168
  declare class FunnelChartComponent {
6169
+ private readonly _el;
6170
+ private readonly _destroyRef;
6171
+ private readonly _containerWidth;
6172
+ constructor();
6134
6173
  readonly steps: _angular_core.InputSignal<FunnelStep[]>;
6135
6174
  readonly width: _angular_core.InputSignal<number>;
6136
6175
  readonly height: _angular_core.InputSignal<number>;
@@ -6138,6 +6177,7 @@ declare class FunnelChartComponent {
6138
6177
  readonly showValues: _angular_core.InputSignal<boolean>;
6139
6178
  readonly showPercentage: _angular_core.InputSignal<boolean>;
6140
6179
  readonly orientation: _angular_core.InputSignal<"horizontal" | "vertical">;
6180
+ protected readonly effectiveWidth: _angular_core.Signal<number>;
6141
6181
  protected readonly viewBox: _angular_core.Signal<string>;
6142
6182
  protected readonly renderedSteps: _angular_core.Signal<{
6143
6183
  path: string;
@@ -6888,5 +6928,36 @@ declare class ComboboxComponent implements ControlValueAccessor, OnDestroy {
6888
6928
  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>;
6889
6929
  }
6890
6930
 
6891
- 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, 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 };
6892
- 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, 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 };
6931
+ interface StageItem {
6932
+ /** Stage name shown as the row label. */
6933
+ label: string;
6934
+ /** Numeric value; drives the bar width and the right-aligned count. */
6935
+ value: number;
6936
+ /** Optional bar/dot color (any CSS color). Falls back to the primary token. */
6937
+ color?: string;
6938
+ /** Optional secondary text shown under the label (e.g. a hint). */
6939
+ hint?: string;
6940
+ /** Optional opaque payload echoed back in `stageClick`. */
6941
+ id?: string;
6942
+ }
6943
+ type StageListSize = 'sm' | 'md';
6944
+ declare class StageListComponent {
6945
+ readonly stages: _angular_core.InputSignal<StageItem[]>;
6946
+ readonly max: _angular_core.InputSignal<number | null>;
6947
+ readonly showValue: _angular_core.InputSignal<boolean>;
6948
+ readonly showBar: _angular_core.InputSignal<boolean>;
6949
+ readonly size: _angular_core.InputSignal<StageListSize>;
6950
+ readonly clickable: _angular_core.InputSignal<boolean>;
6951
+ readonly emptyText: _angular_core.InputSignal<string>;
6952
+ readonly stageClick: _angular_core.OutputEmitterRef<StageItem>;
6953
+ protected readonly isEmpty: _angular_core.Signal<boolean>;
6954
+ protected readonly resolvedMax: _angular_core.Signal<number>;
6955
+ protected resolveColor(stage: StageItem): string;
6956
+ protected fillWidth(stage: StageItem): string;
6957
+ protected onStageClick(stage: StageItem): void;
6958
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<StageListComponent, never>;
6959
+ 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>;
6960
+ }
6961
+
6962
+ 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 };
6963
+ 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 };