@life-cockpit/angular-ui-kit 2.14.0 → 2.16.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
|
@@ -6443,6 +6443,24 @@ declare class GalleryComponent implements OnDestroy {
|
|
|
6443
6443
|
type DependencyNodeStatus = 'default' | 'active' | 'success' | 'warning' | 'error' | 'muted';
|
|
6444
6444
|
type DependencyDirection = 'horizontal' | 'vertical';
|
|
6445
6445
|
type DependencyRelation = 'depends' | 'blocks' | 'references' | 'requires' | 'extends' | 'implements' | 'uses';
|
|
6446
|
+
/**
|
|
6447
|
+
* How nodes are placed.
|
|
6448
|
+
*
|
|
6449
|
+
* - `tree` — column = depth in the `children` tree; `dependsOn` links are drawn
|
|
6450
|
+
* over the top as cross-references and don't move anything.
|
|
6451
|
+
* - `layered` — column = depth in the *dependency* graph (Sugiyama). Every link is
|
|
6452
|
+
* a precedence constraint, so a node always sits past everything it depends on.
|
|
6453
|
+
*/
|
|
6454
|
+
type DependencyLayout = 'tree' | 'layered';
|
|
6455
|
+
/**
|
|
6456
|
+
* How the graph is scaled into the frame.
|
|
6457
|
+
*
|
|
6458
|
+
* - `none` — no fitting; the viewport is whatever the user panned/zoomed to.
|
|
6459
|
+
* - `contain` — shrink until all of it fits, both axes.
|
|
6460
|
+
* - `fit-width` — shrink to the frame's *width* only and let the viewer grow
|
|
6461
|
+
* taller, so the page scrolls instead of the nodes shrinking out of legibility.
|
|
6462
|
+
*/
|
|
6463
|
+
type DependencyFitMode = 'none' | 'contain' | 'fit-width';
|
|
6446
6464
|
interface DependencyEdgeDef {
|
|
6447
6465
|
/** Target node id */
|
|
6448
6466
|
id: string;
|
|
@@ -6519,7 +6537,10 @@ interface LayoutEdge {
|
|
|
6519
6537
|
labelY: number;
|
|
6520
6538
|
color: string;
|
|
6521
6539
|
dashed: boolean;
|
|
6540
|
+
/** Draws it as a secondary link: dimmed, and out of the layout's main flow. */
|
|
6522
6541
|
isCrossRef: boolean;
|
|
6542
|
+
/** Whether to cap the edge with an arrowhead. */
|
|
6543
|
+
arrow: boolean;
|
|
6523
6544
|
/** Arrow marker id suffix — always a known relation, so the marker resolves */
|
|
6524
6545
|
marker: DependencyRelation;
|
|
6525
6546
|
}
|
|
@@ -6527,6 +6548,8 @@ interface LayoutEdge {
|
|
|
6527
6548
|
* Dependency viewer component for visualizing hierarchical and cross-cutting relationships.
|
|
6528
6549
|
*
|
|
6529
6550
|
* Features:
|
|
6551
|
+
* - Tree layout (depth in the `children` nesting) and layered/DAG layout (depth in
|
|
6552
|
+
* the dependency graph), via `layout`
|
|
6530
6553
|
* - Horizontal (left-to-right) and vertical (top-to-bottom) layout directions
|
|
6531
6554
|
* - Bidirectional dependencies: children (right/down) and dependsOn (cross-references)
|
|
6532
6555
|
* - Relationship types: depends, blocks, references, requires, extends, implements, uses
|
|
@@ -6535,6 +6558,8 @@ interface LayoutEdge {
|
|
|
6535
6558
|
* - Color-coded edges per relationship type
|
|
6536
6559
|
* - Node status colors (default, active, success, warning, error, muted)
|
|
6537
6560
|
* - Pan and zoom controls with mouse wheel support
|
|
6561
|
+
* - Fitting (`fitMode` / `autoFit`, `minNodeSize`) and a static, non-navigable
|
|
6562
|
+
* mode (`interactive: false`)
|
|
6538
6563
|
* - Collapsible sub-trees
|
|
6539
6564
|
* - Interactive node selection with detail panel
|
|
6540
6565
|
* - Legend showing active relationship types
|
|
@@ -6543,11 +6568,24 @@ interface LayoutEdge {
|
|
|
6543
6568
|
*
|
|
6544
6569
|
* ## Feeding it a graph
|
|
6545
6570
|
*
|
|
6546
|
-
* `root`
|
|
6547
|
-
*
|
|
6548
|
-
*
|
|
6549
|
-
*
|
|
6550
|
-
*
|
|
6571
|
+
* `root` takes a single node (a tree) or an array (a forest — the shape to use for
|
|
6572
|
+
* a flat set of items related only by `dependsOn`). Either way the input is treated
|
|
6573
|
+
* as a graph: a link back to a node that already has a place in the layout — a
|
|
6574
|
+
* cycle, or a node reached from a second parent — is drawn as a cross-reference
|
|
6575
|
+
* arrow instead of being followed. Every node is laid out exactly once, and no
|
|
6576
|
+
* input can make the layout recurse forever.
|
|
6577
|
+
*
|
|
6578
|
+
* ## Picking a layout
|
|
6579
|
+
*
|
|
6580
|
+
* `tree` (default) answers "what contains what": the column is the depth in the
|
|
6581
|
+
* `children` nesting, and `dependsOn` links are drawn over the top without moving
|
|
6582
|
+
* anything.
|
|
6583
|
+
*
|
|
6584
|
+
* `layered` answers "what has to happen first": the column is the depth in the
|
|
6585
|
+
* dependency graph, so a node always sits past everything it depends on. Reach for
|
|
6586
|
+
* it whenever the question is about order or impact rather than containment —
|
|
6587
|
+
* a tree layout can only approximate that by first reducing the graph to a
|
|
6588
|
+
* spanning tree, which throws away every link that doesn't fit one parent per node.
|
|
6551
6589
|
*
|
|
6552
6590
|
* For incremental exploration, hand in a wider `root` per step and let
|
|
6553
6591
|
* `nodeExpand` drive the loading. Pan, zoom, collapse state and selection all
|
|
@@ -6559,6 +6597,28 @@ interface LayoutEdge {
|
|
|
6559
6597
|
* <lc-dependency-viewer [root]="specTree" direction="horizontal" />
|
|
6560
6598
|
* ```
|
|
6561
6599
|
*
|
|
6600
|
+
* @example Order of work — a flat set of items, laid out by their dependencies
|
|
6601
|
+
* ```html
|
|
6602
|
+
* <lc-dependency-viewer
|
|
6603
|
+
* [root]="items()"
|
|
6604
|
+
* layout="layered"
|
|
6605
|
+
* direction="horizontal"
|
|
6606
|
+
* fitMode="fit-width"
|
|
6607
|
+
* (nodeSelect)="openItem($event)"
|
|
6608
|
+
* />
|
|
6609
|
+
* ```
|
|
6610
|
+
*
|
|
6611
|
+
* @example Static overview — the whole graph at a glance, click-through only
|
|
6612
|
+
* ```html
|
|
6613
|
+
* <lc-dependency-viewer
|
|
6614
|
+
* [root]="graph()"
|
|
6615
|
+
* [autoFit]="true"
|
|
6616
|
+
* [interactive]="false"
|
|
6617
|
+
* height="360px"
|
|
6618
|
+
* (nodeSelect)="openDetail($event)"
|
|
6619
|
+
* />
|
|
6620
|
+
* ```
|
|
6621
|
+
*
|
|
6562
6622
|
* @example Incremental graph exploration
|
|
6563
6623
|
* ```html
|
|
6564
6624
|
* <lc-dependency-viewer
|
|
@@ -6571,12 +6631,69 @@ interface LayoutEdge {
|
|
|
6571
6631
|
* ```
|
|
6572
6632
|
*/
|
|
6573
6633
|
declare class DependencyViewerComponent {
|
|
6574
|
-
|
|
6634
|
+
/**
|
|
6635
|
+
* The graph to draw. A single node is the root of a tree; an array is a forest,
|
|
6636
|
+
* which is how you feed a flat set of items that has no natural root — e.g. the
|
|
6637
|
+
* specs of a plan, related only by `dependsOn`.
|
|
6638
|
+
*/
|
|
6639
|
+
readonly root: _angular_core.InputSignal<DependencyNode | DependencyNode[]>;
|
|
6575
6640
|
readonly direction: _angular_core.InputSignal<DependencyDirection>;
|
|
6576
6641
|
readonly height: _angular_core.InputSignal<string>;
|
|
6642
|
+
/**
|
|
6643
|
+
* `tree` (default) places nodes by their depth in the `children` nesting, and
|
|
6644
|
+
* draws `dependsOn` links over the top as cross-references.
|
|
6645
|
+
*
|
|
6646
|
+
* `layered` places them by their depth in the *dependency* graph: a node always
|
|
6647
|
+
* sits past everything it depends on, transitively, and nodes that depend on
|
|
6648
|
+
* nothing start the first layer. That makes `direction="horizontal"` read as an
|
|
6649
|
+
* order of work — left to right — which a tree layout can only approximate by
|
|
6650
|
+
* first throwing away every link that doesn't fit a single-parent hierarchy.
|
|
6651
|
+
*
|
|
6652
|
+
* Use `layered` for process, sequencing and impact views; `tree` for containment
|
|
6653
|
+
* hierarchies, where the nesting *is* the structure.
|
|
6654
|
+
*/
|
|
6655
|
+
readonly layout: _angular_core.InputSignal<DependencyLayout>;
|
|
6577
6656
|
readonly showToolbar: _angular_core.InputSignal<boolean>;
|
|
6578
6657
|
readonly showEdgeLabels: _angular_core.InputSignal<boolean>;
|
|
6579
6658
|
readonly edgeWidth: _angular_core.InputSignal<number>;
|
|
6659
|
+
/**
|
|
6660
|
+
* Scales and centres the graph so that all of it fits the canvas, and re-fits
|
|
6661
|
+
* whenever the container or the graph changes size. Turns the viewer into an
|
|
6662
|
+
* overview: nothing to pan or zoom to, everything visible at once.
|
|
6663
|
+
*
|
|
6664
|
+
* Shrinks only — the fit never enlarges past 100%, so a two-node graph keeps its
|
|
6665
|
+
* natural size instead of ballooning to fill the frame.
|
|
6666
|
+
*
|
|
6667
|
+
* Pair with `interactive: false` for a purely static display.
|
|
6668
|
+
*
|
|
6669
|
+
* Shorthand for `fitMode="contain"`, which supersedes it.
|
|
6670
|
+
*/
|
|
6671
|
+
readonly autoFit: _angular_core.InputSignal<boolean>;
|
|
6672
|
+
/**
|
|
6673
|
+
* How the graph is scaled into the frame. Defaults to `autoFit`'s setting —
|
|
6674
|
+
* `contain` when it is on, `none` when it isn't — and overrides it when set.
|
|
6675
|
+
*
|
|
6676
|
+
* `contain` fits both axes, so everything is visible at once but a big graph
|
|
6677
|
+
* shrinks to get there. `fit-width` fits the width only and lets the viewer grow
|
|
6678
|
+
* as tall as the graph needs, so the nodes keep a readable size and the *page*
|
|
6679
|
+
* scrolls; the graph itself never scrolls internally. Past roughly 20 nodes a
|
|
6680
|
+
* process view generally wants `fit-width`.
|
|
6681
|
+
*/
|
|
6682
|
+
readonly fitMode: _angular_core.InputSignal<DependencyFitMode | null>;
|
|
6683
|
+
/**
|
|
6684
|
+
* Smallest node width, in px, that fitting may shrink to. Below it the fit stops
|
|
6685
|
+
* scaling down and lets the graph overflow instead — which `fit-width` turns into
|
|
6686
|
+
* page scroll, and `contain` into clipping. Pair it with `fit-width`.
|
|
6687
|
+
*
|
|
6688
|
+
* Nodes are 160px wide unscaled, so e.g. `80` allows shrinking to half size.
|
|
6689
|
+
*/
|
|
6690
|
+
readonly minNodeSize: _angular_core.InputSignal<number | null>;
|
|
6691
|
+
/**
|
|
6692
|
+
* Viewport navigation: drag-to-pan, wheel-zoom and the toolbar's zoom buttons.
|
|
6693
|
+
* `false` freezes the viewport — node selection, expansion and collapse keep
|
|
6694
|
+
* working, so `nodeSelect` still fires in a static viewer.
|
|
6695
|
+
*/
|
|
6696
|
+
readonly interactive: _angular_core.InputSignal<boolean>;
|
|
6580
6697
|
/**
|
|
6581
6698
|
* Node the viewport holds still across `root` updates. Defaults to the node the
|
|
6582
6699
|
* user last selected, which keeps click-to-expand steady without any wiring.
|
|
@@ -6602,22 +6719,53 @@ declare class DependencyViewerComponent {
|
|
|
6602
6719
|
private lastMouseX;
|
|
6603
6720
|
private lastMouseY;
|
|
6604
6721
|
private readonly hostEl;
|
|
6722
|
+
private readonly canvasRef;
|
|
6605
6723
|
/** Last known layout position of the anchor, to compensate pan after a relayout. */
|
|
6606
6724
|
private anchorPos;
|
|
6607
|
-
|
|
6725
|
+
private roots;
|
|
6726
|
+
protected effectiveRoots: _angular_core.Signal<DependencyNode[]>;
|
|
6608
6727
|
private allOriginalNodes;
|
|
6609
|
-
|
|
6728
|
+
/**
|
|
6729
|
+
* The laid-out graph. Named `graph` rather than `layout` because `layout` is the
|
|
6730
|
+
* input that picks *how* it gets laid out.
|
|
6731
|
+
*/
|
|
6732
|
+
protected graph: _angular_core.Signal<{
|
|
6610
6733
|
nodes: LayoutNode[];
|
|
6611
6734
|
edges: LayoutEdge[];
|
|
6612
6735
|
nodeMap: Map<string, LayoutNode>;
|
|
6613
6736
|
width: number;
|
|
6614
6737
|
height: number;
|
|
6615
6738
|
}>;
|
|
6739
|
+
/**
|
|
6740
|
+
* Tree layout over the forest: each root gets its own band along the secondary
|
|
6741
|
+
* axis. A `visited` set shared by all of them keeps a node that hangs off two
|
|
6742
|
+
* roots from being laid out twice — the second link becomes a cross-reference,
|
|
6743
|
+
* exactly as a second parent within one tree does.
|
|
6744
|
+
*/
|
|
6745
|
+
private layoutTree;
|
|
6746
|
+
/**
|
|
6747
|
+
* Height `fit-width` derived from the graph, or `null` under any other mode.
|
|
6748
|
+
*
|
|
6749
|
+
* `fit-width` scales to the frame's width and lets the height follow the graph,
|
|
6750
|
+
* so a tall graph runs past the frame and the *page* scrolls instead of the nodes
|
|
6751
|
+
* shrinking out of legibility. The height is therefore always the graph's, never
|
|
6752
|
+
* the frame's — including when the graph is the shorter of the two. Deriving it
|
|
6753
|
+
* unconditionally is also what keeps the fit stable: this height becomes the
|
|
6754
|
+
* canvas's, so a fit that consulted the canvas height would be reading back its
|
|
6755
|
+
* own last output and could flip between two answers forever.
|
|
6756
|
+
*/
|
|
6757
|
+
protected contentHeight: _angular_core.WritableSignal<number | null>;
|
|
6758
|
+
protected effectiveFitMode: _angular_core.Signal<DependencyFitMode>;
|
|
6759
|
+
/** The host only gives up its configured height when the fit made it grow. */
|
|
6760
|
+
protected hostHeight: _angular_core.Signal<string>;
|
|
6761
|
+
/** `minNodeSize` expressed as the scale it forbids fitting to go below. */
|
|
6762
|
+
private minFitScale;
|
|
6616
6763
|
constructor();
|
|
6617
6764
|
protected svgWidth: _angular_core.Signal<number>;
|
|
6618
6765
|
protected svgHeight: _angular_core.Signal<number>;
|
|
6619
6766
|
protected viewBox: _angular_core.Signal<string>;
|
|
6620
6767
|
protected transform: _angular_core.Signal<string>;
|
|
6768
|
+
protected zoomLabel: _angular_core.Signal<number>;
|
|
6621
6769
|
protected selectedNode: _angular_core.Signal<LayoutNode | null>;
|
|
6622
6770
|
protected selectedDependsOn: _angular_core.Signal<DependencyEdgeDef[]>;
|
|
6623
6771
|
protected legendItems: _angular_core.Signal<{
|
|
@@ -6642,7 +6790,18 @@ declare class DependencyViewerComponent {
|
|
|
6642
6790
|
protected resetZoom(): void;
|
|
6643
6791
|
/** Centres the viewport on a node. No-op for an id that isn't laid out. */
|
|
6644
6792
|
focusNode(id: string): void;
|
|
6645
|
-
/**
|
|
6793
|
+
/**
|
|
6794
|
+
* Scales and centres the graph to fit the canvas, per `fitMode`. Called for you
|
|
6795
|
+
* when fitting is on; public so a caller can fit on demand without it.
|
|
6796
|
+
*
|
|
6797
|
+
* No-op while the canvas has no size (before the first render, or in a detached
|
|
6798
|
+
* / `display: none` container) — the fit observers re-run once it does.
|
|
6799
|
+
*/
|
|
6800
|
+
fit(): void;
|
|
6801
|
+
/**
|
|
6802
|
+
* Restores the initial view — the fitted one under `autoFit`, otherwise the
|
|
6803
|
+
* default zoom and pan.
|
|
6804
|
+
*/
|
|
6646
6805
|
resetView(): void;
|
|
6647
6806
|
/** Expands a collapsed node. */
|
|
6648
6807
|
expand(id: string): void;
|
|
@@ -6652,6 +6811,15 @@ declare class DependencyViewerComponent {
|
|
|
6652
6811
|
expandAll(): void;
|
|
6653
6812
|
/** Collapses every node that has children. */
|
|
6654
6813
|
collapseAll(): void;
|
|
6814
|
+
private canvasEl;
|
|
6815
|
+
/**
|
|
6816
|
+
* Bounding box of everything drawn, in layout units.
|
|
6817
|
+
*
|
|
6818
|
+
* Edge label points stand in for the edges themselves. A parent→child edge stays
|
|
6819
|
+
* inside the node boxes anyway, and a bowed cross-reference puts its label at the
|
|
6820
|
+
* apex of the bow — the only part of it that reaches outside them.
|
|
6821
|
+
*/
|
|
6822
|
+
private contentBox;
|
|
6655
6823
|
protected onMouseDown(event: MouseEvent): void;
|
|
6656
6824
|
protected onMouseMove(event: MouseEvent): void;
|
|
6657
6825
|
protected onMouseUp(): void;
|
|
@@ -6660,7 +6828,7 @@ declare class DependencyViewerComponent {
|
|
|
6660
6828
|
protected getNodeBorder(node: LayoutNode): string;
|
|
6661
6829
|
protected getNodeText(node: LayoutNode): string;
|
|
6662
6830
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DependencyViewerComponent, never>;
|
|
6663
|
-
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>;
|
|
6831
|
+
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; }; "layout": { "alias": "layout"; "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; }; "autoFit": { "alias": "autoFit"; "required": false; "isSignal": true; }; "fitMode": { "alias": "fitMode"; "required": false; "isSignal": true; }; "minNodeSize": { "alias": "minNodeSize"; "required": false; "isSignal": true; }; "interactive": { "alias": "interactive"; "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>;
|
|
6664
6832
|
}
|
|
6665
6833
|
|
|
6666
6834
|
/**
|
|
@@ -7928,4 +8096,4 @@ declare class PipelineComponent {
|
|
|
7928
8096
|
}
|
|
7929
8097
|
|
|
7930
8098
|
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, SplitPaneComponent, 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, resetIconWarnings, resolveFileIcon };
|
|
7931
|
-
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, ToggleOptionDot, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeStatus, TreeNodeType, WaterfallItem };
|
|
8099
|
+
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, DependencyFitMode, DependencyLayout, 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, ToggleOptionDot, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeStatus, TreeNodeType, WaterfallItem };
|