@life-cockpit/angular-ui-kit 1.11.9 → 1.11.11
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
|
@@ -3785,6 +3785,32 @@ interface TableColumn {
|
|
|
3785
3785
|
/** Options for select edit type */
|
|
3786
3786
|
editOptions?: string[];
|
|
3787
3787
|
}
|
|
3788
|
+
/**
|
|
3789
|
+
* A row-level action rendered in the table's actions column (e.g. Freigeben, Ablehnen).
|
|
3790
|
+
* Action button clicks never trigger the row's `rowClick` output.
|
|
3791
|
+
*/
|
|
3792
|
+
interface TableAction {
|
|
3793
|
+
/** Unique identifier emitted with the {@link ActionClickEvent} */
|
|
3794
|
+
key: string;
|
|
3795
|
+
/** Visible button label (omit for icon-only buttons when an `icon` is set) */
|
|
3796
|
+
label?: string;
|
|
3797
|
+
/** Optional icon name rendered before the label */
|
|
3798
|
+
icon?: string;
|
|
3799
|
+
/** Button variant (default: 'ghost') */
|
|
3800
|
+
variant?: ButtonVariant;
|
|
3801
|
+
/** Optional tooltip / aria-label, useful for icon-only actions */
|
|
3802
|
+
tooltip?: string;
|
|
3803
|
+
/** Hide this action for specific rows */
|
|
3804
|
+
hidden?: (row: Record<string, unknown>, rowIndex: number) => boolean;
|
|
3805
|
+
/** Disable this action for specific rows */
|
|
3806
|
+
disabled?: (row: Record<string, unknown>, rowIndex: number) => boolean;
|
|
3807
|
+
}
|
|
3808
|
+
type TableActionsAlign = 'start' | 'center' | 'end';
|
|
3809
|
+
interface ActionClickEvent {
|
|
3810
|
+
action: string;
|
|
3811
|
+
row: Record<string, unknown>;
|
|
3812
|
+
rowIndex: number;
|
|
3813
|
+
}
|
|
3788
3814
|
interface SortEvent {
|
|
3789
3815
|
column: string;
|
|
3790
3816
|
direction: 'asc' | 'desc';
|
|
@@ -3867,6 +3893,17 @@ declare class TableComponent {
|
|
|
3867
3893
|
filterable: _angular_core.InputSignal<boolean>;
|
|
3868
3894
|
/** Enable inline cell editing on double-click */
|
|
3869
3895
|
editable: _angular_core.InputSignal<boolean>;
|
|
3896
|
+
/**
|
|
3897
|
+
* Row-level actions rendered in a trailing actions column (e.g. Freigeben / Ablehnen).
|
|
3898
|
+
* Clicking an action button does NOT trigger the row's `rowClick` output.
|
|
3899
|
+
*/
|
|
3900
|
+
actions: _angular_core.InputSignal<TableAction[]>;
|
|
3901
|
+
/** Header label for the actions column */
|
|
3902
|
+
actionsLabel: _angular_core.InputSignal<string>;
|
|
3903
|
+
/** Width of the actions column (e.g. '120px') */
|
|
3904
|
+
actionsWidth: _angular_core.InputSignal<string | undefined>;
|
|
3905
|
+
/** Horizontal alignment of the action buttons (and header label) within the cell */
|
|
3906
|
+
actionsAlign: _angular_core.InputSignal<TableActionsAlign>;
|
|
3870
3907
|
/** Emitted when a sortable column header is clicked */
|
|
3871
3908
|
readonly sort: _angular_core.OutputEmitterRef<SortEvent>;
|
|
3872
3909
|
/** Emitted when a row is clicked */
|
|
@@ -3875,6 +3912,8 @@ declare class TableComponent {
|
|
|
3875
3912
|
readonly cellEdit: _angular_core.OutputEmitterRef<CellEditEvent>;
|
|
3876
3913
|
/** Emitted when row selection changes */
|
|
3877
3914
|
readonly selectionChange: _angular_core.OutputEmitterRef<SelectionChangeEvent>;
|
|
3915
|
+
/** Emitted when a row action button is clicked */
|
|
3916
|
+
readonly actionClick: _angular_core.OutputEmitterRef<ActionClickEvent>;
|
|
3878
3917
|
protected currentSort: _angular_core.WritableSignal<{
|
|
3879
3918
|
column: string;
|
|
3880
3919
|
direction: "asc" | "desc";
|
|
@@ -3929,6 +3968,15 @@ declare class TableComponent {
|
|
|
3929
3968
|
getCellTemplate(columnKey: string): TableCellDirective | undefined;
|
|
3930
3969
|
hasCustomTemplate(columnKey: string): boolean;
|
|
3931
3970
|
onRowClick(row: Record<string, unknown>): void;
|
|
3971
|
+
/** Whether the trailing actions column should be rendered */
|
|
3972
|
+
protected readonly hasActions: _angular_core.Signal<boolean>;
|
|
3973
|
+
protected isActionHidden(action: TableAction, row: Record<string, unknown>, relativeRowIndex: number): boolean;
|
|
3974
|
+
protected isActionDisabled(action: TableAction, row: Record<string, unknown>, relativeRowIndex: number): boolean;
|
|
3975
|
+
/**
|
|
3976
|
+
* Handles an action button click. The DOM click is stopped from propagating
|
|
3977
|
+
* (see template `$event.stopPropagation()`), so the row's `rowClick` never fires.
|
|
3978
|
+
*/
|
|
3979
|
+
protected onActionClick(action: TableAction, row: Record<string, unknown>, relativeRowIndex: number): void;
|
|
3932
3980
|
protected goToPage(page: number): void;
|
|
3933
3981
|
protected onPageSizeChange(event: Event): void;
|
|
3934
3982
|
protected onPageSizeModelChange(value: string | number | null): void;
|
|
@@ -3948,7 +3996,7 @@ declare class TableComponent {
|
|
|
3948
3996
|
protected onEditKeydown(event: KeyboardEvent, rowIndex: number, column: string): void;
|
|
3949
3997
|
protected getInputValue(event: Event): string;
|
|
3950
3998
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableComponent, never>;
|
|
3951
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableComponent, "lc-table", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "responsive": { "alias": "responsive"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "paginate": { "alias": "paginate"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "filterable": { "alias": "filterable"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; }, { "sort": "sort"; "rowClick": "rowClick"; "cellEdit": "cellEdit"; "selectionChange": "selectionChange"; }, ["cellTemplates"], never, true, never>;
|
|
3999
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableComponent, "lc-table", never, { "columns": { "alias": "columns"; "required": false; "isSignal": true; }; "data": { "alias": "data"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "hoverable": { "alias": "hoverable"; "required": false; "isSignal": true; }; "responsive": { "alias": "responsive"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "paginate": { "alias": "paginate"; "required": false; "isSignal": true; }; "pageSize": { "alias": "pageSize"; "required": false; "isSignal": true; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; "isSignal": true; }; "selectable": { "alias": "selectable"; "required": false; "isSignal": true; }; "filterable": { "alias": "filterable"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "actionsLabel": { "alias": "actionsLabel"; "required": false; "isSignal": true; }; "actionsWidth": { "alias": "actionsWidth"; "required": false; "isSignal": true; }; "actionsAlign": { "alias": "actionsAlign"; "required": false; "isSignal": true; }; }, { "sort": "sort"; "rowClick": "rowClick"; "cellEdit": "cellEdit"; "selectionChange": "selectionChange"; "actionClick": "actionClick"; }, ["cellTemplates"], never, true, never>;
|
|
3952
4000
|
}
|
|
3953
4001
|
|
|
3954
4002
|
/**
|
|
@@ -5850,6 +5898,134 @@ declare class DependencyViewerComponent {
|
|
|
5850
5898
|
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
5899
|
}
|
|
5852
5900
|
|
|
5901
|
+
type TreeNodeType = 'file' | 'folder';
|
|
5902
|
+
/**
|
|
5903
|
+
* A node in the file tree. Folders carry `children`; files do not.
|
|
5904
|
+
*/
|
|
5905
|
+
interface TreeNode {
|
|
5906
|
+
/** Display name, e.g. `app.component.ts` or `src`. */
|
|
5907
|
+
name: string;
|
|
5908
|
+
/**
|
|
5909
|
+
* Node type. Optional — inferred as `folder` when `children` is present,
|
|
5910
|
+
* otherwise `file`.
|
|
5911
|
+
*/
|
|
5912
|
+
type?: TreeNodeType;
|
|
5913
|
+
/**
|
|
5914
|
+
* Stable identifier. Optional — when omitted, the full path is used,
|
|
5915
|
+
* which is stable as long as names are unique among siblings.
|
|
5916
|
+
*/
|
|
5917
|
+
id?: string;
|
|
5918
|
+
/** Child nodes (folders only). */
|
|
5919
|
+
children?: TreeNode[];
|
|
5920
|
+
/**
|
|
5921
|
+
* Explicit Tabler icon name. Overrides automatic file-type / folder
|
|
5922
|
+
* icon resolution.
|
|
5923
|
+
*/
|
|
5924
|
+
icon?: string;
|
|
5925
|
+
/** Optional badge text shown to the right of the node (e.g. git status, count). */
|
|
5926
|
+
badge?: string;
|
|
5927
|
+
/** Tone of the badge / node accent. */
|
|
5928
|
+
status?: 'default' | 'added' | 'modified' | 'removed' | 'muted';
|
|
5929
|
+
/** Whether this folder starts expanded. Ignored for files. */
|
|
5930
|
+
expanded?: boolean;
|
|
5931
|
+
/** Disable selection / interaction for this node. */
|
|
5932
|
+
disabled?: boolean;
|
|
5933
|
+
}
|
|
5934
|
+
interface FlatNode {
|
|
5935
|
+
id: string;
|
|
5936
|
+
name: string;
|
|
5937
|
+
type: TreeNodeType;
|
|
5938
|
+
depth: number;
|
|
5939
|
+
hasChildren: boolean;
|
|
5940
|
+
expanded: boolean;
|
|
5941
|
+
icon: string;
|
|
5942
|
+
badge?: string;
|
|
5943
|
+
status: NonNullable<TreeNode['status']>;
|
|
5944
|
+
disabled: boolean;
|
|
5945
|
+
/** Whether each ancestor level still has following siblings (for guide lines). */
|
|
5946
|
+
ancestorHasSibling: boolean[];
|
|
5947
|
+
/** Whether this node is the last among its siblings. */
|
|
5948
|
+
isLast: boolean;
|
|
5949
|
+
}
|
|
5950
|
+
/**
|
|
5951
|
+
* Tree view component for visualizing file / folder hierarchies such as a
|
|
5952
|
+
* complete GitHub project.
|
|
5953
|
+
*
|
|
5954
|
+
* Features:
|
|
5955
|
+
* - Recursive folder / file rendering from a single `nodes` input
|
|
5956
|
+
* - Automatic file-type icons by extension and well-known file name,
|
|
5957
|
+
* with open / closed folder icons
|
|
5958
|
+
* - Expand / collapse folders, with expand-all / collapse-all helpers
|
|
5959
|
+
* - Two-way bound selection and a `nodeClick` event
|
|
5960
|
+
* - Indentation guide lines for readability
|
|
5961
|
+
* - Optional per-node status badges (added / modified / removed)
|
|
5962
|
+
* - Keyboard accessible (Enter / Space to toggle or select)
|
|
5963
|
+
* - Dark / light theme support via design tokens
|
|
5964
|
+
*
|
|
5965
|
+
* @example
|
|
5966
|
+
* ```html
|
|
5967
|
+
* <lc-tree-view [nodes]="projectTree" [(selectedId)]="selected" />
|
|
5968
|
+
* ```
|
|
5969
|
+
*/
|
|
5970
|
+
declare class TreeViewComponent {
|
|
5971
|
+
/** The root-level nodes of the tree. */
|
|
5972
|
+
readonly nodes: _angular_core.InputSignal<TreeNode[]>;
|
|
5973
|
+
/** Id (or path) of the currently selected node (two-way bindable). */
|
|
5974
|
+
readonly selectedId: _angular_core.ModelSignal<string | null>;
|
|
5975
|
+
/** Show indentation guide lines. */
|
|
5976
|
+
readonly showGuides: _angular_core.InputSignal<boolean>;
|
|
5977
|
+
/** Show the expand-all / collapse-all toolbar. */
|
|
5978
|
+
readonly showToolbar: _angular_core.InputSignal<boolean>;
|
|
5979
|
+
/** Icon size for node icons. */
|
|
5980
|
+
readonly iconSize: _angular_core.InputSignal<"xs" | "sm" | "md">;
|
|
5981
|
+
/** Emitted when a node is clicked / activated. */
|
|
5982
|
+
readonly nodeClick: _angular_core.OutputEmitterRef<TreeNode>;
|
|
5983
|
+
/** Set of node ids the user has explicitly expanded / collapsed. */
|
|
5984
|
+
private readonly expandOverrides;
|
|
5985
|
+
/** Flattened, render-ready list of visible nodes. */
|
|
5986
|
+
protected readonly visibleNodes: _angular_core.Signal<FlatNode[]>;
|
|
5987
|
+
protected badgeColor(status: NonNullable<TreeNode['status']>): string;
|
|
5988
|
+
protected onNodeClick(flat: FlatNode): void;
|
|
5989
|
+
protected onToggleClick(flat: FlatNode, event: Event): void;
|
|
5990
|
+
protected onKeydown(flat: FlatNode, event: KeyboardEvent): void;
|
|
5991
|
+
/** Expand every folder in the tree. */
|
|
5992
|
+
expandAll(): void;
|
|
5993
|
+
/** Collapse every folder in the tree. */
|
|
5994
|
+
collapseAll(): void;
|
|
5995
|
+
protected trackById: (_: number, n: FlatNode) => string;
|
|
5996
|
+
private toggle;
|
|
5997
|
+
private setExpanded;
|
|
5998
|
+
private setAll;
|
|
5999
|
+
private isExpanded;
|
|
6000
|
+
private flatten;
|
|
6001
|
+
private resolveIcon;
|
|
6002
|
+
private findNode;
|
|
6003
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TreeViewComponent, never>;
|
|
6004
|
+
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>;
|
|
6005
|
+
}
|
|
6006
|
+
|
|
6007
|
+
/**
|
|
6008
|
+
* File-type → icon mapping for the TreeView component.
|
|
6009
|
+
*
|
|
6010
|
+
* Icon names refer to Tabler Icons (the design system's icon source).
|
|
6011
|
+
* Resolution order for a file node:
|
|
6012
|
+
* 1. explicit `node.icon`
|
|
6013
|
+
* 2. exact file name match (e.g. `package.json`, `Dockerfile`)
|
|
6014
|
+
* 3. file extension match (e.g. `.ts`, `.png`)
|
|
6015
|
+
* 4. generic file fallback
|
|
6016
|
+
*/
|
|
6017
|
+
/** Icon used for collapsed folders. */
|
|
6018
|
+
declare const FOLDER_ICON = "folder";
|
|
6019
|
+
/** Icon used for expanded (open) folders. */
|
|
6020
|
+
declare const FOLDER_OPEN_ICON = "folder-open";
|
|
6021
|
+
/** Generic fallback icon for files with no specific match. */
|
|
6022
|
+
declare const FILE_FALLBACK_ICON = "file";
|
|
6023
|
+
/**
|
|
6024
|
+
* Resolve the icon name for a file based on its name.
|
|
6025
|
+
* Performs exact-name then extension lookup, falling back to a generic file icon.
|
|
6026
|
+
*/
|
|
6027
|
+
declare function resolveFileIcon(fileName: string): string;
|
|
6028
|
+
|
|
5853
6029
|
interface ScatterPoint {
|
|
5854
6030
|
x: number;
|
|
5855
6031
|
y: number;
|
|
@@ -6701,5 +6877,5 @@ declare class ComboboxComponent implements ControlValueAccessor, OnDestroy {
|
|
|
6701
6877
|
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
6878
|
}
|
|
6703
6879
|
|
|
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 };
|
|
6880
|
+
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 };
|
|
6881
|
+
export type { ActionClickEvent, 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, TableAction, TableActionsAlign, TableColumn, TableSize, TableVariant, ThemeConfig, ThemeMode, ThemeState, TimelineItem, TimelineOrientation, Toast, ToastAction, ToastConfig, ToastPosition, ToastVariant, ToggleOption, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };
|