@life-cockpit/angular-ui-kit 1.11.8 → 1.11.10

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": "1.11.8",
3
+ "version": "1.11.10",
4
4
  "description": "Life Cockpit Design System - Angular UI component library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -3906,6 +3906,10 @@ declare class TableComponent {
3906
3906
  protected readonly totalRows: _angular_core.Signal<number>;
3907
3907
  /** Whether all visible rows are selected */
3908
3908
  protected readonly allSelected: _angular_core.Signal<boolean>;
3909
+ protected readonly pageSizeSelectOptions: _angular_core.Signal<{
3910
+ value: number;
3911
+ label: string;
3912
+ }[]>;
3909
3913
  /**
3910
3914
  * Computed CSS classes for the table element
3911
3915
  */
@@ -3927,6 +3931,7 @@ declare class TableComponent {
3927
3931
  onRowClick(row: Record<string, unknown>): void;
3928
3932
  protected goToPage(page: number): void;
3929
3933
  protected onPageSizeChange(event: Event): void;
3934
+ protected onPageSizeModelChange(value: string | number | null): void;
3930
3935
  protected get paginationStart(): number;
3931
3936
  protected get paginationEnd(): number;
3932
3937
  protected toggleSelectAll(): void;
@@ -3934,7 +3939,7 @@ declare class TableComponent {
3934
3939
  protected isRowSelected(relativeIndex: number): boolean;
3935
3940
  private getAbsoluteIndex;
3936
3941
  private emitSelectionChange;
3937
- protected onFilterChange(columnKey: string, event: Event): void;
3942
+ protected onFilterChange(columnKey: string, value: string): void;
3938
3943
  protected getFilterValue(columnKey: string): string;
3939
3944
  protected startEdit(rowIndex: number, column: string, currentValue: unknown): void;
3940
3945
  protected isEditing(rowIndex: number, column: string): boolean;
@@ -4103,15 +4108,16 @@ declare class FilterBarComponent {
4103
4108
  sizeClass: _angular_core.Signal<string>;
4104
4109
  /** Get the current value for a filter key */
4105
4110
  getValue(key: string): string;
4111
+ getSelectOptions(options?: readonly FilterOption[]): SelectOption[];
4106
4112
  /** Handle select / toggle change */
4107
4113
  onFilterChange(key: string, value: string): void;
4108
4114
  /** Handle search input */
4109
- onSearchInput(key: string, event: Event): void;
4115
+ onSearchInput(key: string, value: string): void;
4116
+ normalizeSelectValue(value: string | number | null): string;
4110
4117
  /** Check if a toggle option is active */
4111
4118
  isToggleActive(key: string, optionValue: string): boolean;
4112
4119
  /** Get toggle button classes */
4113
4120
  getToggleClasses(key: string, option: FilterOption): string;
4114
- protected getInputValue(event: Event): string;
4115
4121
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FilterBarComponent, never>;
4116
4122
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<FilterBarComponent, "lc-filter-bar", never, { "filters": { "alias": "filters"; "required": true; "isSignal": true; }; "values": { "alias": "values"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; }, { "valuesChange": "valuesChange"; }, never, never, true, never>;
4117
4123
  }
@@ -5844,6 +5850,134 @@ declare class DependencyViewerComponent {
5844
5850
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DependencyViewerComponent, "lc-dependency-viewer", never, { "root": { "alias": "root"; "required": true; "isSignal": true; }; "direction": { "alias": "direction"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "showToolbar": { "alias": "showToolbar"; "required": false; "isSignal": true; }; "showEdgeLabels": { "alias": "showEdgeLabels"; "required": false; "isSignal": true; }; "edgeWidth": { "alias": "edgeWidth"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5845
5851
  }
5846
5852
 
5853
+ type TreeNodeType = 'file' | 'folder';
5854
+ /**
5855
+ * A node in the file tree. Folders carry `children`; files do not.
5856
+ */
5857
+ interface TreeNode {
5858
+ /** Display name, e.g. `app.component.ts` or `src`. */
5859
+ name: string;
5860
+ /**
5861
+ * Node type. Optional — inferred as `folder` when `children` is present,
5862
+ * otherwise `file`.
5863
+ */
5864
+ type?: TreeNodeType;
5865
+ /**
5866
+ * Stable identifier. Optional — when omitted, the full path is used,
5867
+ * which is stable as long as names are unique among siblings.
5868
+ */
5869
+ id?: string;
5870
+ /** Child nodes (folders only). */
5871
+ children?: TreeNode[];
5872
+ /**
5873
+ * Explicit Tabler icon name. Overrides automatic file-type / folder
5874
+ * icon resolution.
5875
+ */
5876
+ icon?: string;
5877
+ /** Optional badge text shown to the right of the node (e.g. git status, count). */
5878
+ badge?: string;
5879
+ /** Tone of the badge / node accent. */
5880
+ status?: 'default' | 'added' | 'modified' | 'removed' | 'muted';
5881
+ /** Whether this folder starts expanded. Ignored for files. */
5882
+ expanded?: boolean;
5883
+ /** Disable selection / interaction for this node. */
5884
+ disabled?: boolean;
5885
+ }
5886
+ interface FlatNode {
5887
+ id: string;
5888
+ name: string;
5889
+ type: TreeNodeType;
5890
+ depth: number;
5891
+ hasChildren: boolean;
5892
+ expanded: boolean;
5893
+ icon: string;
5894
+ badge?: string;
5895
+ status: NonNullable<TreeNode['status']>;
5896
+ disabled: boolean;
5897
+ /** Whether each ancestor level still has following siblings (for guide lines). */
5898
+ ancestorHasSibling: boolean[];
5899
+ /** Whether this node is the last among its siblings. */
5900
+ isLast: boolean;
5901
+ }
5902
+ /**
5903
+ * Tree view component for visualizing file / folder hierarchies such as a
5904
+ * complete GitHub project.
5905
+ *
5906
+ * Features:
5907
+ * - Recursive folder / file rendering from a single `nodes` input
5908
+ * - Automatic file-type icons by extension and well-known file name,
5909
+ * with open / closed folder icons
5910
+ * - Expand / collapse folders, with expand-all / collapse-all helpers
5911
+ * - Two-way bound selection and a `nodeClick` event
5912
+ * - Indentation guide lines for readability
5913
+ * - Optional per-node status badges (added / modified / removed)
5914
+ * - Keyboard accessible (Enter / Space to toggle or select)
5915
+ * - Dark / light theme support via design tokens
5916
+ *
5917
+ * @example
5918
+ * ```html
5919
+ * <lc-tree-view [nodes]="projectTree" [(selectedId)]="selected" />
5920
+ * ```
5921
+ */
5922
+ declare class TreeViewComponent {
5923
+ /** The root-level nodes of the tree. */
5924
+ readonly nodes: _angular_core.InputSignal<TreeNode[]>;
5925
+ /** Id (or path) of the currently selected node (two-way bindable). */
5926
+ readonly selectedId: _angular_core.ModelSignal<string | null>;
5927
+ /** Show indentation guide lines. */
5928
+ readonly showGuides: _angular_core.InputSignal<boolean>;
5929
+ /** Show the expand-all / collapse-all toolbar. */
5930
+ readonly showToolbar: _angular_core.InputSignal<boolean>;
5931
+ /** Icon size for node icons. */
5932
+ readonly iconSize: _angular_core.InputSignal<"xs" | "sm" | "md">;
5933
+ /** Emitted when a node is clicked / activated. */
5934
+ readonly nodeClick: _angular_core.OutputEmitterRef<TreeNode>;
5935
+ /** Set of node ids the user has explicitly expanded / collapsed. */
5936
+ private readonly expandOverrides;
5937
+ /** Flattened, render-ready list of visible nodes. */
5938
+ protected readonly visibleNodes: _angular_core.Signal<FlatNode[]>;
5939
+ protected badgeColor(status: NonNullable<TreeNode['status']>): string;
5940
+ protected onNodeClick(flat: FlatNode): void;
5941
+ protected onToggleClick(flat: FlatNode, event: Event): void;
5942
+ protected onKeydown(flat: FlatNode, event: KeyboardEvent): void;
5943
+ /** Expand every folder in the tree. */
5944
+ expandAll(): void;
5945
+ /** Collapse every folder in the tree. */
5946
+ collapseAll(): void;
5947
+ protected trackById: (_: number, n: FlatNode) => string;
5948
+ private toggle;
5949
+ private setExpanded;
5950
+ private setAll;
5951
+ private isExpanded;
5952
+ private flatten;
5953
+ private resolveIcon;
5954
+ private findNode;
5955
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeViewComponent, never>;
5956
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<TreeViewComponent, "lc-tree-view", never, { "nodes": { "alias": "nodes"; "required": true; "isSignal": true; }; "selectedId": { "alias": "selectedId"; "required": false; "isSignal": true; }; "showGuides": { "alias": "showGuides"; "required": false; "isSignal": true; }; "showToolbar": { "alias": "showToolbar"; "required": false; "isSignal": true; }; "iconSize": { "alias": "iconSize"; "required": false; "isSignal": true; }; }, { "selectedId": "selectedIdChange"; "nodeClick": "nodeClick"; }, never, never, true, never>;
5957
+ }
5958
+
5959
+ /**
5960
+ * File-type → icon mapping for the TreeView component.
5961
+ *
5962
+ * Icon names refer to Tabler Icons (the design system's icon source).
5963
+ * Resolution order for a file node:
5964
+ * 1. explicit `node.icon`
5965
+ * 2. exact file name match (e.g. `package.json`, `Dockerfile`)
5966
+ * 3. file extension match (e.g. `.ts`, `.png`)
5967
+ * 4. generic file fallback
5968
+ */
5969
+ /** Icon used for collapsed folders. */
5970
+ declare const FOLDER_ICON = "folder";
5971
+ /** Icon used for expanded (open) folders. */
5972
+ declare const FOLDER_OPEN_ICON = "folder-open";
5973
+ /** Generic fallback icon for files with no specific match. */
5974
+ declare const FILE_FALLBACK_ICON = "file";
5975
+ /**
5976
+ * Resolve the icon name for a file based on its name.
5977
+ * Performs exact-name then extension lookup, falling back to a generic file icon.
5978
+ */
5979
+ declare function resolveFileIcon(fileName: string): string;
5980
+
5847
5981
  interface ScatterPoint {
5848
5982
  x: number;
5849
5983
  y: number;
@@ -6184,7 +6318,7 @@ declare class NotificationCenterComponent {
6184
6318
  protected getPriorityLabel(priority?: NotificationPriority): string;
6185
6319
  protected formatTime(date: Date): string;
6186
6320
  protected setFilter(filter: NotificationType | 'all'): void;
6187
- protected onSearch(event: Event): void;
6321
+ protected onSearch(query: string): void;
6188
6322
  protected onClick(notification: Notification): void;
6189
6323
  protected onDismiss(id: string, event: Event): void;
6190
6324
  protected onAction(notification: Notification, event: Event): void;
@@ -6695,5 +6829,5 @@ declare class ComboboxComponent implements ControlValueAccessor, OnDestroy {
6695
6829
  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>;
6696
6830
  }
6697
6831
 
6698
- export { AccordionComponent, AccordionGroupComponent, AlertComponent, AnimationDurationFast, AnimationEasingEaseIn, AnimationEasingEaseInOut, AnimationEasingEaseOut, AreaChartComponent, AvatarComponent, AvatarGroupComponent, BadgeComponent, BarChartComponent, BorderRadius2xl, BorderRadiusFull, BorderRadiusLg, BorderRadiusMd, BorderRadiusNone, BorderRadiusSm, BorderRadiusXl, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CalloutComponent, CardComponent, ChatComponent, CheckboxComponent, ChipComponent, CodeBlockComponent, ColorAccentOrange, ColorAccentPurple, ColorAccentRed, ColorAccentRust, ColorAccentViolet, ColorErrorDark, ColorErrorDefault, ColorErrorLight, ColorInfoDark, ColorInfoDefault, ColorInfoLight, ColorNeutral100, ColorNeutral200, ColorNeutral300, ColorNeutral400, ColorNeutral50, ColorNeutral500, ColorNeutral600, ColorNeutral700, ColorNeutral800, ColorNeutral900, ColorPickerComponent, ColorPrimary100, ColorPrimary200, ColorPrimary300, ColorPrimary400, ColorPrimary50, ColorPrimary500, ColorPrimary600, ColorPrimary700, ColorPrimary800, ColorPrimary900, ColorSecondary100, ColorSecondary200, ColorSecondary300, ColorSecondary400, ColorSecondary50, ColorSecondary500, ColorSecondary600, ColorSecondary700, ColorSecondary800, ColorSecondary900, ColorSuccessDark, ColorSuccessDefault, ColorSuccessLight, ColorWarningDark, ColorWarningDefault, ColorWarningLight, ComboboxComponent, ConfirmDialogComponent, ConfirmService, ContainerComponent, DateRangePickerComponent, DatepickerComponent, DependencyViewerComponent, DiffViewerComponent, DividerComponent, DocumentViewerComponent, DonutChartComponent, DrawerComponent, Elevation1, Elevation2, Elevation3, Elevation4, EmailInputComponent, EmptyStateComponent, ErrorDisplayComponent, FieldGroupComponent, FileUploadComponent, FilterBarComponent, FooterComponent, FunnelChartComponent, GalleryComponent, GanttChartComponent, GaugeComponent, HeaderComponent, HeatmapComponent, HeroComponent, IconComponent, InputComponent, KanbanBoardComponent, 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, TypographyComponent, TypographyFontFamilyBase, TypographyFontFamilyMono, TypographyFontSize2xl, TypographyFontSize3xl, TypographyFontSize4xl, TypographyFontSize5xl, TypographyFontSize6xl, TypographyFontSizeBase, TypographyFontSizeLg, TypographyFontSizeSm, TypographyFontSizeXl, TypographyFontSizeXs, TypographyFontWeightBold, TypographyFontWeightMedium, TypographyFontWeightNormal, TypographyFontWeightSemibold, TypographyLineHeightNormal, TypographyLineHeightRelaxed, TypographyLineHeightTight, VerificationCodeInputComponent, WaterfallChartComponent };
6699
- export type { 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, TableColumn, TableSize, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, WaterfallItem };
6832
+ export { AccordionComponent, AccordionGroupComponent, AlertComponent, AnimationDurationFast, AnimationEasingEaseIn, AnimationEasingEaseInOut, AnimationEasingEaseOut, AreaChartComponent, AvatarComponent, AvatarGroupComponent, BadgeComponent, BarChartComponent, BorderRadius2xl, BorderRadiusFull, BorderRadiusLg, BorderRadiusMd, BorderRadiusNone, BorderRadiusSm, BorderRadiusXl, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CalloutComponent, CardComponent, ChatComponent, CheckboxComponent, ChipComponent, CodeBlockComponent, ColorAccentOrange, ColorAccentPurple, ColorAccentRed, ColorAccentRust, ColorAccentViolet, ColorErrorDark, ColorErrorDefault, ColorErrorLight, ColorInfoDark, ColorInfoDefault, ColorInfoLight, ColorNeutral100, ColorNeutral200, ColorNeutral300, ColorNeutral400, ColorNeutral50, ColorNeutral500, ColorNeutral600, ColorNeutral700, ColorNeutral800, ColorNeutral900, ColorPickerComponent, ColorPrimary100, ColorPrimary200, ColorPrimary300, ColorPrimary400, ColorPrimary50, ColorPrimary500, ColorPrimary600, ColorPrimary700, ColorPrimary800, ColorPrimary900, ColorSecondary100, ColorSecondary200, ColorSecondary300, ColorSecondary400, ColorSecondary50, ColorSecondary500, ColorSecondary600, ColorSecondary700, ColorSecondary800, ColorSecondary900, ColorSuccessDark, ColorSuccessDefault, ColorSuccessLight, ColorWarningDark, ColorWarningDefault, ColorWarningLight, ComboboxComponent, ConfirmDialogComponent, ConfirmService, ContainerComponent, DateRangePickerComponent, DatepickerComponent, DependencyViewerComponent, DiffViewerComponent, DividerComponent, DocumentViewerComponent, DonutChartComponent, DrawerComponent, Elevation1, Elevation2, Elevation3, Elevation4, EmailInputComponent, EmptyStateComponent, ErrorDisplayComponent, 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 };
6833
+ export type { 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, TableColumn, TableSize, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };