@life-cockpit/angular-ui-kit 2.15.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,7 +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
|
|
6538
|
-
* -
|
|
6561
|
+
* - Fitting (`fitMode` / `autoFit`, `minNodeSize`) and a static, non-navigable
|
|
6562
|
+
* mode (`interactive: false`)
|
|
6539
6563
|
* - Collapsible sub-trees
|
|
6540
6564
|
* - Interactive node selection with detail panel
|
|
6541
6565
|
* - Legend showing active relationship types
|
|
@@ -6544,11 +6568,24 @@ interface LayoutEdge {
|
|
|
6544
6568
|
*
|
|
6545
6569
|
* ## Feeding it a graph
|
|
6546
6570
|
*
|
|
6547
|
-
* `root`
|
|
6548
|
-
*
|
|
6549
|
-
*
|
|
6550
|
-
*
|
|
6551
|
-
*
|
|
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.
|
|
6552
6589
|
*
|
|
6553
6590
|
* For incremental exploration, hand in a wider `root` per step and let
|
|
6554
6591
|
* `nodeExpand` drive the loading. Pan, zoom, collapse state and selection all
|
|
@@ -6560,6 +6597,17 @@ interface LayoutEdge {
|
|
|
6560
6597
|
* <lc-dependency-viewer [root]="specTree" direction="horizontal" />
|
|
6561
6598
|
* ```
|
|
6562
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
|
+
*
|
|
6563
6611
|
* @example Static overview — the whole graph at a glance, click-through only
|
|
6564
6612
|
* ```html
|
|
6565
6613
|
* <lc-dependency-viewer
|
|
@@ -6583,9 +6631,28 @@ interface LayoutEdge {
|
|
|
6583
6631
|
* ```
|
|
6584
6632
|
*/
|
|
6585
6633
|
declare class DependencyViewerComponent {
|
|
6586
|
-
|
|
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[]>;
|
|
6587
6640
|
readonly direction: _angular_core.InputSignal<DependencyDirection>;
|
|
6588
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>;
|
|
6589
6656
|
readonly showToolbar: _angular_core.InputSignal<boolean>;
|
|
6590
6657
|
readonly showEdgeLabels: _angular_core.InputSignal<boolean>;
|
|
6591
6658
|
readonly edgeWidth: _angular_core.InputSignal<number>;
|
|
@@ -6598,8 +6665,29 @@ declare class DependencyViewerComponent {
|
|
|
6598
6665
|
* natural size instead of ballooning to fill the frame.
|
|
6599
6666
|
*
|
|
6600
6667
|
* Pair with `interactive: false` for a purely static display.
|
|
6668
|
+
*
|
|
6669
|
+
* Shorthand for `fitMode="contain"`, which supersedes it.
|
|
6601
6670
|
*/
|
|
6602
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>;
|
|
6603
6691
|
/**
|
|
6604
6692
|
* Viewport navigation: drag-to-pan, wheel-zoom and the toolbar's zoom buttons.
|
|
6605
6693
|
* `false` freezes the viewport — node selection, expansion and collapse keep
|
|
@@ -6634,15 +6722,44 @@ declare class DependencyViewerComponent {
|
|
|
6634
6722
|
private readonly canvasRef;
|
|
6635
6723
|
/** Last known layout position of the anchor, to compensate pan after a relayout. */
|
|
6636
6724
|
private anchorPos;
|
|
6637
|
-
|
|
6725
|
+
private roots;
|
|
6726
|
+
protected effectiveRoots: _angular_core.Signal<DependencyNode[]>;
|
|
6638
6727
|
private allOriginalNodes;
|
|
6639
|
-
|
|
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<{
|
|
6640
6733
|
nodes: LayoutNode[];
|
|
6641
6734
|
edges: LayoutEdge[];
|
|
6642
6735
|
nodeMap: Map<string, LayoutNode>;
|
|
6643
6736
|
width: number;
|
|
6644
6737
|
height: number;
|
|
6645
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;
|
|
6646
6763
|
constructor();
|
|
6647
6764
|
protected svgWidth: _angular_core.Signal<number>;
|
|
6648
6765
|
protected svgHeight: _angular_core.Signal<number>;
|
|
@@ -6674,11 +6791,11 @@ declare class DependencyViewerComponent {
|
|
|
6674
6791
|
/** Centres the viewport on a node. No-op for an id that isn't laid out. */
|
|
6675
6792
|
focusNode(id: string): void;
|
|
6676
6793
|
/**
|
|
6677
|
-
* Scales and centres the graph
|
|
6678
|
-
*
|
|
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.
|
|
6679
6796
|
*
|
|
6680
6797
|
* No-op while the canvas has no size (before the first render, or in a detached
|
|
6681
|
-
* / `display: none` container) — the
|
|
6798
|
+
* / `display: none` container) — the fit observers re-run once it does.
|
|
6682
6799
|
*/
|
|
6683
6800
|
fit(): void;
|
|
6684
6801
|
/**
|
|
@@ -6711,7 +6828,7 @@ declare class DependencyViewerComponent {
|
|
|
6711
6828
|
protected getNodeBorder(node: LayoutNode): string;
|
|
6712
6829
|
protected getNodeText(node: LayoutNode): string;
|
|
6713
6830
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DependencyViewerComponent, never>;
|
|
6714
|
-
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; }; "autoFit": { "alias": "autoFit"; "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>;
|
|
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>;
|
|
6715
6832
|
}
|
|
6716
6833
|
|
|
6717
6834
|
/**
|
|
@@ -7979,4 +8096,4 @@ declare class PipelineComponent {
|
|
|
7979
8096
|
}
|
|
7980
8097
|
|
|
7981
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 };
|
|
7982
|
-
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 };
|