@life-cockpit/angular-ui-kit 1.11.10 → 2.0.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/fesm2022/life-cockpit-angular-ui-kit.mjs +428 -307
- package/fesm2022/life-cockpit-angular-ui-kit.mjs.map +1 -1
- package/package.json +1 -1
- package/src/styles/_mixins.scss +117 -0
- package/src/styles/_theme-dark.scss +100 -18
- package/src/styles/_theme-light.scss +64 -4
- package/src/styles/tokens/_all.scss +16 -9
- package/src/styles/tokens/_border-radius.scss +5 -5
- package/src/styles/tokens/_colors.scss +7 -0
- package/src/styles/tokens/_elevation.scss +4 -4
- package/types/life-cockpit-angular-ui-kit.d.ts +78 -19
|
@@ -54,6 +54,13 @@ declare const ColorAccentPurple = "#866aa0";
|
|
|
54
54
|
declare const ColorAccentRed = "#9e3846";
|
|
55
55
|
declare const ColorAccentRust = "#c6592e";
|
|
56
56
|
declare const ColorAccentViolet = "#4e3f84";
|
|
57
|
+
declare const ColorSurfaceDarkBase = "#14222e";
|
|
58
|
+
declare const ColorSurfaceDarkRaised = "#1a2c3a";
|
|
59
|
+
declare const ColorSurfaceDarkSunken = "#0c1722";
|
|
60
|
+
declare const ColorBackgroundDark = "#111827";
|
|
61
|
+
declare const ColorTextDarkPrimary = "#eef4f6";
|
|
62
|
+
declare const ColorTextDarkSecondary = "#aebfc7";
|
|
63
|
+
declare const ColorTextDarkTertiary = "#71858f";
|
|
57
64
|
declare const Spacing0 = "0";
|
|
58
65
|
declare const Spacing1 = "0.25rem";
|
|
59
66
|
declare const Spacing2 = "0.5rem";
|
|
@@ -92,16 +99,16 @@ declare const TypographyFontWeightBold = "700";
|
|
|
92
99
|
declare const TypographyLineHeightTight = "1.25";
|
|
93
100
|
declare const TypographyLineHeightNormal = "1.5";
|
|
94
101
|
declare const TypographyLineHeightRelaxed = "1.75";
|
|
95
|
-
declare const Elevation1 = "0
|
|
96
|
-
declare const Elevation2 = "0
|
|
97
|
-
declare const Elevation3 = "0
|
|
98
|
-
declare const Elevation4 = "0
|
|
102
|
+
declare const Elevation1 = "0 4px 24px rgba(0, 0, 0, 0.35)";
|
|
103
|
+
declare const Elevation2 = "0 8px 32px rgba(0, 0, 0, 0.42)";
|
|
104
|
+
declare const Elevation3 = "0 14px 44px rgba(0, 0, 0, 0.48)";
|
|
105
|
+
declare const Elevation4 = "0 18px 60px rgba(0, 0, 0, 0.55)";
|
|
99
106
|
declare const BorderRadiusNone = "0";
|
|
100
|
-
declare const BorderRadiusSm = "0.
|
|
101
|
-
declare const BorderRadiusMd = "0.
|
|
102
|
-
declare const BorderRadiusLg = "
|
|
103
|
-
declare const BorderRadiusXl = "
|
|
104
|
-
declare const BorderRadius2xl = "
|
|
107
|
+
declare const BorderRadiusSm = "0.625rem";
|
|
108
|
+
declare const BorderRadiusMd = "0.75rem";
|
|
109
|
+
declare const BorderRadiusLg = "1.125rem";
|
|
110
|
+
declare const BorderRadiusXl = "1.5rem";
|
|
111
|
+
declare const BorderRadius2xl = "2rem";
|
|
105
112
|
declare const BorderRadiusFull = "9999px";
|
|
106
113
|
declare const AnimationDurationFast = "150ms";
|
|
107
114
|
declare const AnimationEasingEaseIn = "ease-in";
|
|
@@ -138,29 +145,33 @@ interface ThemeState {
|
|
|
138
145
|
|
|
139
146
|
/**
|
|
140
147
|
* Theme Service
|
|
141
|
-
*
|
|
148
|
+
*
|
|
149
|
+
* Design System 2.0 is dark-first: dark is the default theme. Light remains a
|
|
150
|
+
* fully supported opt-in. Theme is applied via a `dark` / `light` class on the
|
|
151
|
+
* document root (`:root.dark` / `:root.light`), matching the theme stylesheets.
|
|
142
152
|
*/
|
|
143
153
|
declare class ThemeService {
|
|
144
154
|
private readonly platformId;
|
|
145
155
|
private readonly isBrowser;
|
|
156
|
+
private static readonly META_COLOR;
|
|
146
157
|
private readonly themeState;
|
|
147
158
|
readonly currentTheme: _angular_core.Signal<ThemeState>;
|
|
148
|
-
readonly isDark: _angular_core.
|
|
159
|
+
readonly isDark: _angular_core.Signal<boolean>;
|
|
149
160
|
constructor();
|
|
150
161
|
/**
|
|
151
|
-
* Set the theme mode
|
|
162
|
+
* Set the active theme mode.
|
|
152
163
|
*/
|
|
153
164
|
setTheme(mode: ThemeMode): void;
|
|
154
165
|
/**
|
|
155
|
-
* Toggle
|
|
166
|
+
* Toggle between dark and light.
|
|
156
167
|
*/
|
|
157
168
|
toggleTheme(): void;
|
|
158
169
|
/**
|
|
159
|
-
*
|
|
170
|
+
* Adopt the OS-level color-scheme preference.
|
|
160
171
|
*/
|
|
161
172
|
useSystemPreference(): void;
|
|
162
173
|
/**
|
|
163
|
-
* Apply
|
|
174
|
+
* Apply the theme class + mobile meta color to the document.
|
|
164
175
|
*/
|
|
165
176
|
private applyTheme;
|
|
166
177
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ThemeService, never>;
|
|
@@ -972,7 +983,7 @@ declare class TypographyComponent {
|
|
|
972
983
|
* Font weight
|
|
973
984
|
* @default 'regular'
|
|
974
985
|
*/
|
|
975
|
-
weight: _angular_core.InputSignal<"
|
|
986
|
+
weight: _angular_core.InputSignal<"bold" | "regular" | "medium" | "semibold">;
|
|
976
987
|
/**
|
|
977
988
|
* Text transform
|
|
978
989
|
* @default 'none'
|
|
@@ -3785,6 +3796,32 @@ interface TableColumn {
|
|
|
3785
3796
|
/** Options for select edit type */
|
|
3786
3797
|
editOptions?: string[];
|
|
3787
3798
|
}
|
|
3799
|
+
/**
|
|
3800
|
+
* A row-level action rendered in the table's actions column (e.g. Freigeben, Ablehnen).
|
|
3801
|
+
* Action button clicks never trigger the row's `rowClick` output.
|
|
3802
|
+
*/
|
|
3803
|
+
interface TableAction {
|
|
3804
|
+
/** Unique identifier emitted with the {@link ActionClickEvent} */
|
|
3805
|
+
key: string;
|
|
3806
|
+
/** Visible button label (omit for icon-only buttons when an `icon` is set) */
|
|
3807
|
+
label?: string;
|
|
3808
|
+
/** Optional icon name rendered before the label */
|
|
3809
|
+
icon?: string;
|
|
3810
|
+
/** Button variant (default: 'ghost') */
|
|
3811
|
+
variant?: ButtonVariant;
|
|
3812
|
+
/** Optional tooltip / aria-label, useful for icon-only actions */
|
|
3813
|
+
tooltip?: string;
|
|
3814
|
+
/** Hide this action for specific rows */
|
|
3815
|
+
hidden?: (row: Record<string, unknown>, rowIndex: number) => boolean;
|
|
3816
|
+
/** Disable this action for specific rows */
|
|
3817
|
+
disabled?: (row: Record<string, unknown>, rowIndex: number) => boolean;
|
|
3818
|
+
}
|
|
3819
|
+
type TableActionsAlign = 'start' | 'center' | 'end';
|
|
3820
|
+
interface ActionClickEvent {
|
|
3821
|
+
action: string;
|
|
3822
|
+
row: Record<string, unknown>;
|
|
3823
|
+
rowIndex: number;
|
|
3824
|
+
}
|
|
3788
3825
|
interface SortEvent {
|
|
3789
3826
|
column: string;
|
|
3790
3827
|
direction: 'asc' | 'desc';
|
|
@@ -3867,6 +3904,17 @@ declare class TableComponent {
|
|
|
3867
3904
|
filterable: _angular_core.InputSignal<boolean>;
|
|
3868
3905
|
/** Enable inline cell editing on double-click */
|
|
3869
3906
|
editable: _angular_core.InputSignal<boolean>;
|
|
3907
|
+
/**
|
|
3908
|
+
* Row-level actions rendered in a trailing actions column (e.g. Freigeben / Ablehnen).
|
|
3909
|
+
* Clicking an action button does NOT trigger the row's `rowClick` output.
|
|
3910
|
+
*/
|
|
3911
|
+
actions: _angular_core.InputSignal<TableAction[]>;
|
|
3912
|
+
/** Header label for the actions column */
|
|
3913
|
+
actionsLabel: _angular_core.InputSignal<string>;
|
|
3914
|
+
/** Width of the actions column (e.g. '120px') */
|
|
3915
|
+
actionsWidth: _angular_core.InputSignal<string | undefined>;
|
|
3916
|
+
/** Horizontal alignment of the action buttons (and header label) within the cell */
|
|
3917
|
+
actionsAlign: _angular_core.InputSignal<TableActionsAlign>;
|
|
3870
3918
|
/** Emitted when a sortable column header is clicked */
|
|
3871
3919
|
readonly sort: _angular_core.OutputEmitterRef<SortEvent>;
|
|
3872
3920
|
/** Emitted when a row is clicked */
|
|
@@ -3875,6 +3923,8 @@ declare class TableComponent {
|
|
|
3875
3923
|
readonly cellEdit: _angular_core.OutputEmitterRef<CellEditEvent>;
|
|
3876
3924
|
/** Emitted when row selection changes */
|
|
3877
3925
|
readonly selectionChange: _angular_core.OutputEmitterRef<SelectionChangeEvent>;
|
|
3926
|
+
/** Emitted when a row action button is clicked */
|
|
3927
|
+
readonly actionClick: _angular_core.OutputEmitterRef<ActionClickEvent>;
|
|
3878
3928
|
protected currentSort: _angular_core.WritableSignal<{
|
|
3879
3929
|
column: string;
|
|
3880
3930
|
direction: "asc" | "desc";
|
|
@@ -3929,6 +3979,15 @@ declare class TableComponent {
|
|
|
3929
3979
|
getCellTemplate(columnKey: string): TableCellDirective | undefined;
|
|
3930
3980
|
hasCustomTemplate(columnKey: string): boolean;
|
|
3931
3981
|
onRowClick(row: Record<string, unknown>): void;
|
|
3982
|
+
/** Whether the trailing actions column should be rendered */
|
|
3983
|
+
protected readonly hasActions: _angular_core.Signal<boolean>;
|
|
3984
|
+
protected isActionHidden(action: TableAction, row: Record<string, unknown>, relativeRowIndex: number): boolean;
|
|
3985
|
+
protected isActionDisabled(action: TableAction, row: Record<string, unknown>, relativeRowIndex: number): boolean;
|
|
3986
|
+
/**
|
|
3987
|
+
* Handles an action button click. The DOM click is stopped from propagating
|
|
3988
|
+
* (see template `$event.stopPropagation()`), so the row's `rowClick` never fires.
|
|
3989
|
+
*/
|
|
3990
|
+
protected onActionClick(action: TableAction, row: Record<string, unknown>, relativeRowIndex: number): void;
|
|
3932
3991
|
protected goToPage(page: number): void;
|
|
3933
3992
|
protected onPageSizeChange(event: Event): void;
|
|
3934
3993
|
protected onPageSizeModelChange(value: string | number | null): void;
|
|
@@ -3948,7 +4007,7 @@ declare class TableComponent {
|
|
|
3948
4007
|
protected onEditKeydown(event: KeyboardEvent, rowIndex: number, column: string): void;
|
|
3949
4008
|
protected getInputValue(event: Event): string;
|
|
3950
4009
|
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>;
|
|
4010
|
+
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
4011
|
}
|
|
3953
4012
|
|
|
3954
4013
|
/**
|
|
@@ -6829,5 +6888,5 @@ declare class ComboboxComponent implements ControlValueAccessor, OnDestroy {
|
|
|
6829
6888
|
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>;
|
|
6830
6889
|
}
|
|
6831
6890
|
|
|
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 };
|
|
6891
|
+
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, 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, ColorSuccessDark, ColorSuccessDefault, ColorSuccessLight, ColorSurfaceDarkBase, ColorSurfaceDarkRaised, ColorSurfaceDarkSunken, ColorTextDarkPrimary, ColorTextDarkSecondary, ColorTextDarkTertiary, 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 };
|
|
6892
|
+
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 };
|