@life-cockpit/angular-ui-kit 2.11.0 → 2.12.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.11.0",
3
+ "version": "2.12.0",
4
4
  "description": "Life Cockpit Design System - Angular UI component library",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -199,6 +199,11 @@
199
199
  --size-min-touch-width: #{$size-min-touch-width};
200
200
  --size-min-touch-height: #{$size-min-touch-height};
201
201
 
202
+ // ============================================================================
203
+ // Layout - Content Width (Same as light theme)
204
+ // ============================================================================
205
+ --lc-content-max-width: #{$size-content-max-width};
206
+
202
207
  // ============================================================================
203
208
  // Semantic Color Mappings for Dark Theme (DS2.0 — teal-tinted surfaces)
204
209
  // ============================================================================
@@ -197,6 +197,14 @@
197
197
  --size-min-touch-width: #{$size-min-touch-width};
198
198
  --size-min-touch-height: #{$size-min-touch-height};
199
199
 
200
+ // ============================================================================
201
+ // Layout - Content Width
202
+ // ============================================================================
203
+ // Canonical cap for page content. `lc-container size="xxl"` reads this, so an
204
+ // app shell that centres its own content against the same custom property
205
+ // stays in lockstep with the container instead of hard-coding a width.
206
+ --lc-content-max-width: #{$size-content-max-width};
207
+
200
208
  // ============================================================================
201
209
  // Semantic Color Mappings for Light Theme (DS2.0 — mirrors dark token names)
202
210
  // ============================================================================
@@ -123,3 +123,4 @@ $size-interactive-lg-padding: 0.625rem 1.25rem;
123
123
  $size-interactive-lg-font-size: 1.125rem;
124
124
  $size-min-touch-width: 2.75rem; // 44px minimum
125
125
  $size-min-touch-height: 2.75rem; // 44px minimum
126
+ $size-content-max-width: 1536px; // Canonical page content cap — matches lc-container size="xxl" and Tailwind's 2xl breakpoint
@@ -15,3 +15,4 @@ $size-interactive-lg-padding: 0.625rem 1.25rem;
15
15
  $size-interactive-lg-font-size: 1.125rem;
16
16
  $size-min-touch-width: 2.75rem; // 44px minimum
17
17
  $size-min-touch-height: 2.75rem; // 44px minimum
18
+ $size-content-max-width: 1536px; // Canonical page content cap — matches lc-container size="xxl" and Tailwind's 2xl breakpoint
@@ -129,6 +129,7 @@ declare const SizeInteractiveLgPadding = "0.625rem 1.25rem";
129
129
  declare const SizeInteractiveLgFontSize = "1.125rem";
130
130
  declare const SizeMinTouchWidth = "2.75rem";
131
131
  declare const SizeMinTouchHeight = "2.75rem";
132
+ declare const SizeContentMaxWidth = "1536px";
132
133
 
133
134
  /**
134
135
  * Theme Types
@@ -2477,7 +2478,7 @@ declare class PopoverComponent implements OnDestroy {
2477
2478
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<PopoverComponent, "lc-popover", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; "trigger": { "alias": "trigger"; "required": false; "isSignal": true; }; "showArrow": { "alias": "showArrow"; "required": false; "isSignal": true; }; }, { "openChange": "openChange"; }, never, ["[popover-trigger]", "[popover-content]"], true, never>;
2478
2479
  }
2479
2480
 
2480
- type ContainerSize = 'sm' | 'md' | 'lg' | 'xl' | 'full';
2481
+ type ContainerSize = 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'full';
2481
2482
  declare class ContainerComponent {
2482
2483
  size: _angular_core.InputSignal<ContainerSize>;
2483
2484
  noPadding: _angular_core.InputSignal<boolean>;
@@ -2578,6 +2579,8 @@ declare class PageHeaderComponent {
2578
2579
 
2579
2580
  /** Where the layout takes its height from. */
2580
2581
  type PageLayoutFill = 'screen' | 'parent';
2582
+ /** How wide the layout lets its content grow. */
2583
+ type PageLayoutContentWidth = 'capped' | 'full';
2581
2584
  declare class PageLayoutComponent {
2582
2585
  /**
2583
2586
  * Source of the layout's height.
@@ -2595,10 +2598,23 @@ declare class PageLayoutComponent {
2595
2598
  scrollBody: _angular_core.InputSignal<boolean>;
2596
2599
  /** Add density-aware padding to the body. Off by default so embedded components keep their own padding. */
2597
2600
  padded: _angular_core.InputSignal<boolean>;
2601
+ /**
2602
+ * How wide content may grow on very large monitors.
2603
+ * - `'capped'` (default): header, body and footer are capped at
2604
+ * `--lc-content-max-width` and centred, so content doesn't stretch edge to
2605
+ * edge on wide/ultrawide displays. All three regions share the cap, so the
2606
+ * page title stays aligned with the body beneath it.
2607
+ * - `'full'`: no cap — content spans the whole shell. Use for full-bleed
2608
+ * bodies (maps, boards, canvases) that should use every pixel.
2609
+ *
2610
+ * Override the width itself — globally or per subtree — via the
2611
+ * `--lc-content-max-width` custom property.
2612
+ */
2613
+ contentWidth: _angular_core.InputSignal<PageLayoutContentWidth>;
2598
2614
  get hostClasses(): string;
2599
2615
  classes: _angular_core.Signal<string>;
2600
2616
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageLayoutComponent, never>;
2601
- 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>;
2617
+ 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; }; "contentWidth": { "alias": "contentWidth"; "required": false; "isSignal": true; }; }, {}, never, ["[layout-header]", "*", "[layout-footer]"], true, never>;
2602
2618
  }
2603
2619
 
2604
2620
  type SectionSpacing = 'none' | 'sm' | 'md' | 'lg' | 'xl';
@@ -6268,8 +6284,15 @@ type DependencyRelation = 'depends' | 'blocks' | 'references' | 'requires' | 'ex
6268
6284
  interface DependencyEdgeDef {
6269
6285
  /** Target node id */
6270
6286
  id: string;
6271
- /** Relationship type */
6287
+ /** Relationship type — drives edge colour and dash style */
6272
6288
  relation?: DependencyRelation;
6289
+ /**
6290
+ * Free-form edge label, for graphs whose relationship vocabulary is wider than
6291
+ * `DependencyRelation` (e.g. `CALLS`, `HAS_COLUMN`, `AUTHORED_BY`). Shown
6292
+ * verbatim instead of the `relation` label; colouring still follows `relation`,
6293
+ * which may be omitted for a generic look.
6294
+ */
6295
+ relationLabel?: string;
6273
6296
  }
6274
6297
  interface DependencyNode {
6275
6298
  /** Unique identifier */
@@ -6282,10 +6305,28 @@ interface DependencyNode {
6282
6305
  icon?: string;
6283
6306
  /** Visual status / color */
6284
6307
  status?: DependencyNodeStatus;
6308
+ /**
6309
+ * Category of the node (e.g. `Class`, `Table`, `Feature`). Colours the node via
6310
+ * the `typeColors` input and drives the type legend. Takes precedence over
6311
+ * `status` for the fill; `status` still applies when no type colour resolves.
6312
+ */
6313
+ type?: string;
6314
+ /**
6315
+ * Number of neighbours that exist but aren't part of `children` — rendered as a
6316
+ * "+N" marker. Use when a node's neighbourhood is capped (god nodes) so the
6317
+ * truncation is visible instead of silent.
6318
+ */
6319
+ moreCount?: number;
6285
6320
  /** Child nodes: items this node is required for (right / bottom side) */
6286
6321
  children?: DependencyNode[];
6287
6322
  /** Dependencies: items this node depends on (shown as cross-reference edges) */
6288
6323
  dependsOn?: DependencyEdgeDef[];
6324
+ /**
6325
+ * Opaque payload. Never read or interpreted by the component; handed back
6326
+ * unchanged on `nodeSelect` / `nodeExpand` so callers can carry their own
6327
+ * metadata (keys, labels, file paths, …) through the viewer.
6328
+ */
6329
+ data?: Record<string, unknown>;
6289
6330
  }
6290
6331
  interface LayoutNode {
6291
6332
  id: string;
@@ -6293,6 +6334,8 @@ interface LayoutNode {
6293
6334
  description?: string;
6294
6335
  icon?: string;
6295
6336
  status: DependencyNodeStatus;
6337
+ type?: string;
6338
+ moreCount?: number;
6296
6339
  x: number;
6297
6340
  y: number;
6298
6341
  width: number;
@@ -6308,11 +6351,15 @@ interface LayoutEdge {
6308
6351
  sourceId: string;
6309
6352
  targetId: string;
6310
6353
  relation?: DependencyRelation;
6354
+ /** Resolved display label (free-form `relationLabel` wins over the relation's) */
6355
+ label?: string;
6311
6356
  labelX: number;
6312
6357
  labelY: number;
6313
6358
  color: string;
6314
6359
  dashed: boolean;
6315
6360
  isCrossRef: boolean;
6361
+ /** Arrow marker id suffix — always a known relation, so the marker resolves */
6362
+ marker: DependencyRelation;
6316
6363
  }
6317
6364
  /**
6318
6365
  * Dependency viewer component for visualizing hierarchical and cross-cutting relationships.
@@ -6332,10 +6379,34 @@ interface LayoutEdge {
6332
6379
  * - SVG arrowhead markers on cross-reference edges
6333
6380
  * - Dark/light theme support
6334
6381
  *
6382
+ * ## Feeding it a graph
6383
+ *
6384
+ * `root` is a *tree*, but the input is treated as a graph: a link back to a node
6385
+ * that already has a place in the layout — a cycle, or a node reached from a
6386
+ * second parent — is drawn as a cross-reference arrow instead of being followed.
6387
+ * Every node is laid out exactly once, and no input can make the layout recurse
6388
+ * forever.
6389
+ *
6390
+ * For incremental exploration, hand in a wider `root` per step and let
6391
+ * `nodeExpand` drive the loading. Pan, zoom, collapse state and selection all
6392
+ * survive a `root` swap, and `anchorNodeId` (defaulting to the selected node)
6393
+ * keeps the viewport pinned while the graph grows around it.
6394
+ *
6335
6395
  * @example
6336
6396
  * ```html
6337
6397
  * <lc-dependency-viewer [root]="specTree" direction="horizontal" />
6338
6398
  * ```
6399
+ *
6400
+ * @example Incremental graph exploration
6401
+ * ```html
6402
+ * <lc-dependency-viewer
6403
+ * [root]="graph()"
6404
+ * [anchorNodeId]="anchor()"
6405
+ * [typeColors]="{ Alpha: '#c1e3e9' }"
6406
+ * (nodeSelect)="showDetails($event)"
6407
+ * (nodeExpand)="loadNeighbours($event)"
6408
+ * />
6409
+ * ```
6339
6410
  */
6340
6411
  declare class DependencyViewerComponent {
6341
6412
  readonly root: _angular_core.InputSignal<DependencyNode>;
@@ -6344,6 +6415,22 @@ declare class DependencyViewerComponent {
6344
6415
  readonly showToolbar: _angular_core.InputSignal<boolean>;
6345
6416
  readonly showEdgeLabels: _angular_core.InputSignal<boolean>;
6346
6417
  readonly edgeWidth: _angular_core.InputSignal<number>;
6418
+ /**
6419
+ * Node the viewport holds still across `root` updates. Defaults to the node the
6420
+ * user last selected, which keeps click-to-expand steady without any wiring.
6421
+ * Set it explicitly to anchor somewhere else (e.g. a deep-linked node).
6422
+ */
6423
+ readonly anchorNodeId: _angular_core.InputSignal<string | null>;
6424
+ /** Fill colour per `DependencyNode.type`, e.g. `{ Class: '#8ea475' }`. */
6425
+ readonly typeColors: _angular_core.InputSignal<Record<string, string>>;
6426
+ /** Relations to hide. Cross-reference edges of these types aren't rendered. */
6427
+ readonly hiddenRelations: _angular_core.InputSignal<readonly DependencyRelation[]>;
6428
+ /** Node types to hide, matched against `DependencyNode.type`. */
6429
+ readonly hiddenTypes: _angular_core.InputSignal<readonly string[]>;
6430
+ /** Fires when a node is selected (not on deselect), with the original node incl. `data`. */
6431
+ readonly nodeSelect: _angular_core.OutputEmitterRef<DependencyNode>;
6432
+ /** Fires on double-click — the hook for "expand this node's neighbourhood". */
6433
+ readonly nodeExpand: _angular_core.OutputEmitterRef<DependencyNode>;
6347
6434
  protected zoom: _angular_core.WritableSignal<number>;
6348
6435
  protected panX: _angular_core.WritableSignal<number>;
6349
6436
  protected panY: _angular_core.WritableSignal<number>;
@@ -6352,14 +6439,19 @@ declare class DependencyViewerComponent {
6352
6439
  private isPanning;
6353
6440
  private lastMouseX;
6354
6441
  private lastMouseY;
6442
+ private readonly hostEl;
6443
+ /** Last known layout position of the anchor, to compensate pan after a relayout. */
6444
+ private anchorPos;
6355
6445
  protected effectiveRoot: _angular_core.Signal<DependencyNode>;
6356
6446
  private allOriginalNodes;
6357
6447
  protected layout: _angular_core.Signal<{
6358
6448
  nodes: LayoutNode[];
6359
6449
  edges: LayoutEdge[];
6450
+ nodeMap: Map<string, LayoutNode>;
6360
6451
  width: number;
6361
6452
  height: number;
6362
6453
  }>;
6454
+ constructor();
6363
6455
  protected svgWidth: _angular_core.Signal<number>;
6364
6456
  protected svgHeight: _angular_core.Signal<number>;
6365
6457
  protected viewBox: _angular_core.Signal<string>;
@@ -6367,31 +6459,46 @@ declare class DependencyViewerComponent {
6367
6459
  protected selectedNode: _angular_core.Signal<LayoutNode | null>;
6368
6460
  protected selectedDependsOn: _angular_core.Signal<DependencyEdgeDef[]>;
6369
6461
  protected legendItems: _angular_core.Signal<{
6370
- relation: DependencyRelation;
6371
6462
  label: string;
6372
6463
  color: string;
6373
6464
  dashed: boolean;
6374
6465
  }[]>;
6466
+ protected typeLegendItems: _angular_core.Signal<{
6467
+ type: string;
6468
+ color: string;
6469
+ }[]>;
6375
6470
  protected hasChildren(nodeId: string): boolean;
6376
6471
  protected isCollapsed(nodeId: string): boolean;
6377
6472
  protected getRelationLabel(relation: DependencyRelation): string;
6378
6473
  private pruneCollapsed;
6379
- private findOriginalNode;
6380
6474
  protected selectNode(id: string, event: Event): void;
6475
+ protected expandNode(id: string, event: Event): void;
6381
6476
  protected toggleCollapse(id: string, event: Event): void;
6382
6477
  protected deselectNode(): void;
6383
6478
  protected zoomIn(): void;
6384
6479
  protected zoomOut(): void;
6385
6480
  protected resetZoom(): void;
6481
+ /** Centres the viewport on a node. No-op for an id that isn't laid out. */
6482
+ focusNode(id: string): void;
6483
+ /** Restores the initial zoom and pan. */
6484
+ resetView(): void;
6485
+ /** Expands a collapsed node. */
6486
+ expand(id: string): void;
6487
+ /** Collapses a node's sub-tree. */
6488
+ collapse(id: string): void;
6489
+ /** Expands every collapsed node. */
6490
+ expandAll(): void;
6491
+ /** Collapses every node that has children. */
6492
+ collapseAll(): void;
6386
6493
  protected onMouseDown(event: MouseEvent): void;
6387
6494
  protected onMouseMove(event: MouseEvent): void;
6388
6495
  protected onMouseUp(): void;
6389
6496
  protected onWheel(event: WheelEvent): void;
6390
- protected getNodeBg(status: DependencyNodeStatus): string;
6391
- protected getNodeBorder(status: DependencyNodeStatus): string;
6392
- protected getNodeText(status: DependencyNodeStatus): string;
6497
+ protected getNodeBg(node: LayoutNode): string;
6498
+ protected getNodeBorder(node: LayoutNode): string;
6499
+ protected getNodeText(node: LayoutNode): string;
6393
6500
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DependencyViewerComponent, never>;
6394
- 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>;
6501
+ 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; }; "anchorNodeId": { "alias": "anchorNodeId"; "required": false; "isSignal": true; }; "typeColors": { "alias": "typeColors"; "required": false; "isSignal": true; }; "hiddenRelations": { "alias": "hiddenRelations"; "required": false; "isSignal": true; }; "hiddenTypes": { "alias": "hiddenTypes"; "required": false; "isSignal": true; }; }, { "nodeSelect": "nodeSelect"; "nodeExpand": "nodeExpand"; }, never, never, true, never>;
6395
6502
  }
6396
6503
 
6397
6504
  type TreeNodeType = 'file' | 'folder';
@@ -7636,5 +7743,5 @@ declare class PipelineComponent {
7636
7743
  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>;
7637
7744
  }
7638
7745
 
7639
- export { AccordionComponent, AccordionContentDirective, AccordionGroupComponent, AccordionHeaderDirective, AlertComponent, AnimationDurationFast, AnimationEasingEaseIn, AnimationEasingEaseInOut, AnimationEasingEaseOut, AreaChartComponent, AvatarComponent, AvatarGroupComponent, BadgeComponent, BarChartComponent, BorderRadius2xl, BorderRadiusFull, BorderRadiusLg, BorderRadiusMd, BorderRadiusNone, BorderRadiusSm, BorderRadiusXl, BreadcrumbsComponent, ButtonComponent, CalendarComponent, CalloutComponent, CardComponent, ChatComponent, CheckboxComponent, ChipComponent, CodeBlockComponent, ColorAccentOrange, ColorAccentPurple, ColorAccentRed, ColorAccentRust, ColorAccentViolet, ColorBackgroundDark, ColorErrorDark, ColorErrorDefault, ColorErrorLight, ColorInfoDark, ColorInfoDefault, ColorInfoLight, ColorNeutral100, ColorNeutral200, ColorNeutral300, ColorNeutral400, ColorNeutral50, ColorNeutral500, ColorNeutral600, ColorNeutral700, ColorNeutral800, ColorNeutral900, ColorPickerComponent, ColorPrimary100, ColorPrimary200, ColorPrimary300, ColorPrimary400, ColorPrimary50, ColorPrimary500, ColorPrimary600, ColorPrimary700, ColorPrimary800, ColorPrimary900, ColorSecondary100, ColorSecondary200, ColorSecondary300, ColorSecondary400, ColorSecondary50, ColorSecondary500, ColorSecondary600, ColorSecondary700, ColorSecondary800, ColorSecondary900, ColorSidebarDark, ColorSuccessDark, ColorSuccessDefault, ColorSuccessLight, ColorSurfaceDarkBase, ColorSurfaceDarkRaised, ColorSurfaceDarkSunken, ColorTextDarkPrimary, ColorTextDarkSecondary, ColorTextDarkTertiary, ColorWarningDark, ColorWarningDefault, ColorWarningLight, ComboboxComponent, ConfirmDialogComponent, ConfirmService, ContainerComponent, DateRangePickerComponent, DatepickerComponent, DependencyViewerComponent, DescriptionListComponent, DiffViewerComponent, DividerComponent, DocumentViewerComponent, DonutChartComponent, DrawerComponent, Elevation1, Elevation2, Elevation3, Elevation4, EmailInputComponent, EmptyStateComponent, ErrorDisplayComponent, FILE_FALLBACK_ICON, FOLDER_ICON, FOLDER_OPEN_ICON, FieldGroupComponent, FileUploadComponent, FilterBarComponent, FooterComponent, FunnelChartComponent, GalleryComponent, GanttChartComponent, GaugeComponent, HeaderComponent, HeatmapComponent, HeroComponent, ICON_ALIASES, ICON_NAMES, IconComponent, InputComponent, KanbanBoardComponent, LC_LOGO_BASE_PATH, LineChartComponent, ListComponent, ListItemTemplateDirective, LogViewerComponent, LogoComponent, MarkdownComponent, MenuComponent, ModalComponent, NotificationCenterComponent, NumberInputComponent, PageHeaderComponent, PageLayoutComponent, PaginationComponent, PasswordInputComponent, PieChartComponent, PipelineComponent, PopoverComponent, ProgressBarComponent, ProgressRingComponent, RadarChartComponent, RadioComponent, RatingComponent, RichTextEditorComponent, ScatterPlotComponent, SearchInputComponent, SectionComponent, SelectComponent, SidenavComponent, SizeInteractiveLgFontSize, SizeInteractiveLgHeight, SizeInteractiveLgPadding, SizeInteractiveMdFontSize, SizeInteractiveMdHeight, SizeInteractiveMdPadding, SizeInteractiveSmFontSize, SizeInteractiveSmHeight, SizeInteractiveSmPadding, SizeInteractiveXsFontSize, SizeInteractiveXsHeight, SizeInteractiveXsPadding, SizeMinTouchHeight, SizeMinTouchWidth, SkeletonComponent, SliderComponent, SpacerComponent, Spacing0, Spacing05, Spacing1, Spacing10, Spacing11, Spacing12, Spacing14, Spacing15, Spacing16, Spacing2, Spacing25, Spacing3, Spacing35, Spacing4, Spacing5, Spacing6, Spacing7, Spacing8, Spacing9, SparklineComponent, SpinnerComponent, StackComponent, StackedBarChartComponent, StageListComponent, StatTrendComponent, StepperComponent, SwitchComponent, TabComponent, TableCellDirective, TableComponent, TabsComponent, TagInputComponent, TextareaComponent, ThemeService, TimelineComponent, ToastComponent, ToastService, ToggleGroupComponent, ToolbarComponent, TooltipContentComponent, TooltipDirective, TreeViewComponent, TypographyComponent, TypographyFontFamilyBase, TypographyFontFamilyMono, TypographyFontSize2xl, TypographyFontSize3xl, TypographyFontSize4xl, TypographyFontSize5xl, TypographyFontSize6xl, TypographyFontSizeBase, TypographyFontSizeLg, TypographyFontSizeSm, TypographyFontSizeXl, TypographyFontSizeXs, TypographyFontWeightBold, TypographyFontWeightMedium, TypographyFontWeightNormal, TypographyFontWeightSemibold, TypographyLineHeightNormal, TypographyLineHeightRelaxed, TypographyLineHeightTight, VerificationCodeInputComponent, WaterfallChartComponent, isValidIconName, resolveFileIcon };
7640
- export type { AccordionChevronPosition, ActionClickEvent, AlertVariant, AreaChartSeries, AvatarGroupItem, AvatarSize, AvatarStatus, BadgeSize, BadgeVariant, BarChartItem, BarChartOrientation, BreadcrumbItem, BreadcrumbSize, ButtonSize, ButtonType, ButtonVariant, CalendarEvent, CalendarView, CalloutVariant, CellEditEvent, ChatAttachment, ChatFileAttachEvent, ChatMessage, ChatMessageRole, ChatMessageStatus, ChatRenderMarkdown, ChatSendEvent, CheckboxSize, ChipSize, ChipVariant, CodeBlockLanguage, ComboboxOption, ComboboxSize, ComboboxValue, ConfirmDialogVariant, ConfirmOptions, ContainerSize, DateRange, DateValue, DependencyDirection, DependencyEdgeDef, DependencyNode, DependencyNodeStatus, DependencyRelation, DescriptionListEmphasis, DescriptionListItem, DescriptionListLayout, DescriptionListSeparator, DescriptionListSize, DiffViewMode, DividerOrientation, DividerSpacing, DividerVariant, DocumentType, DonutChartSize, DonutSegment, DrawerPosition, DrawerSize, EmptyStateSize, ErrorSeverity, FileUploadFile, FilterConfig, FilterOption, FilterValues, FooterLink, FooterSection, FooterVariant, FunnelStep, GalleryItem, GalleryLayout, GallerySize, GanttDependency, GanttTask, GaugeColor, GaugeSize, HeatmapCell, HeroColor, HeroSize, HeroVariant, IconName, IconSize, IconVariant, KanbanCard, KanbanColumn, KanbanLabel, KanbanMoveEvent, LineChartSeries, ListItem, ListOrientation, ListSize, ListVariant, LogLevel, LogLine, LogViewerVariant, MarkdownChangesHighlighted, MarkdownHeading, MarkdownLinkClick, MarkdownRendered, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, PageLayoutFill, PaginationSize, PasswordRequirement, PasswordStrength, PieChartSize, PieSegment, PipelineOrientation, PipelineSize, PipelineStatus, PipelineStep, PopoverPosition, PopoverTrigger, ProgressBarColor, ProgressBarSize, ProgressBarVariant, ProgressRingColor, ProgressRingSize, RadarChartSeries, RadioSize, RatingSize, RenderPart, RequireTextConfig, RichTextEditorMode, RowToggleEvent, ScatterPoint, ScatterSeries, SearchInputSize, SectionBackground, SectionSpacing, SelectOption, SelectOptionGroup, SelectValue, SelectionChangeEvent, SidenavMode, SidenavPosition, SkeletonVariant, SortEvent, SpacerSize, SparklineColor, SparklineCurve, SpinnerSize, StackAlign, StackDirection, StackGap, StackJustify, StackedBarCategory, StackedBarLegend, StackedBarOrientation, StageItem, StageListSize, StatTrendDirection, StepState, StepperStep, TabOrientation, TableAction, TableActionsAlign, TableColumn, TableSize, TableTreeConfig, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };
7746
+ 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, SizeContentMaxWidth, 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 };
7747
+ 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, PageLayoutContentWidth, 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 };