@life-cockpit/angular-ui-kit 1.11.9 → 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
|
@@ -5850,6 +5850,134 @@ declare class DependencyViewerComponent {
|
|
|
5850
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>;
|
|
5851
5851
|
}
|
|
5852
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
|
+
|
|
5853
5981
|
interface ScatterPoint {
|
|
5854
5982
|
x: number;
|
|
5855
5983
|
y: number;
|
|
@@ -6701,5 +6829,5 @@ declare class ComboboxComponent implements ControlValueAccessor, OnDestroy {
|
|
|
6701
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>;
|
|
6702
6830
|
}
|
|
6703
6831
|
|
|
6704
|
-
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 };
|
|
6705
|
-
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 };
|