@life-cockpit/angular-ui-kit 2.6.0 → 2.7.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
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _angular_core from '@angular/core';
|
|
2
|
-
import { ElementRef, InjectionToken, OnInit, OnDestroy, EventEmitter, AfterViewInit, QueryList, Signal,
|
|
2
|
+
import { TemplateRef, ElementRef, InjectionToken, OnInit, OnDestroy, EventEmitter, AfterViewInit, QueryList, Signal, AfterContentInit, AfterViewChecked } from '@angular/core';
|
|
3
3
|
import { ControlValueAccessor } from '@angular/forms';
|
|
4
4
|
import { SafeHtml, DomSanitizer, SafeResourceUrl } from '@angular/platform-browser';
|
|
5
5
|
import { Observable } from 'rxjs';
|
|
@@ -241,6 +241,64 @@ interface NavigationItem {
|
|
|
241
241
|
};
|
|
242
242
|
}
|
|
243
243
|
|
|
244
|
+
/**
|
|
245
|
+
* Marks an `<ng-template>` as the rich header content for an `<lc-accordion>`.
|
|
246
|
+
*
|
|
247
|
+
* When present, the projected template is rendered inside the header button
|
|
248
|
+
* instead of the plain `title` string. The accordion still owns the disclosure
|
|
249
|
+
* chevron, click/keyboard handling and focus ring — the consumer only supplies
|
|
250
|
+
* the (non-interactive) inner content.
|
|
251
|
+
*
|
|
252
|
+
* A11y constraint: the header is itself a `<button>`, so the template must not
|
|
253
|
+
* contain nested interactive elements (no button/link/input). Text, badges and
|
|
254
|
+
* other non-interactive nodes only.
|
|
255
|
+
*
|
|
256
|
+
* @example
|
|
257
|
+
* ```html
|
|
258
|
+
* <lc-accordion variant="flat" chevronPosition="leading">
|
|
259
|
+
* <ng-template lcAccordionHeader>
|
|
260
|
+
* <span class="title">Item label</span>
|
|
261
|
+
* <lc-badge variant="success" size="sm">Done</lc-badge>
|
|
262
|
+
* <span style="margin-left: auto;">12:04</span>
|
|
263
|
+
* </ng-template>
|
|
264
|
+
* <div>Body…</div>
|
|
265
|
+
* </lc-accordion>
|
|
266
|
+
* ```
|
|
267
|
+
*/
|
|
268
|
+
declare class AccordionHeaderDirective {
|
|
269
|
+
readonly template: TemplateRef<any>;
|
|
270
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionHeaderDirective, never>;
|
|
271
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AccordionHeaderDirective, "[lcAccordionHeader]", never, {}, {}, never, never, true, never>;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* Marks an `<ng-template>` as the (optionally lazy) body content for an
|
|
276
|
+
* `<lc-accordion>`.
|
|
277
|
+
*
|
|
278
|
+
* Unlike default `<ng-content>` projection — which Angular always instantiates
|
|
279
|
+
* eagerly — a template referenced through this directive is only stamped out
|
|
280
|
+
* when the accordion decides to render its body. That is what makes
|
|
281
|
+
* `[lazy]="true"` and `[destroyOnClose]="true"` possible: expensive children
|
|
282
|
+
* (HTTP-backed panels, charts, live-polling views) are not created until the
|
|
283
|
+
* panel is first opened.
|
|
284
|
+
*
|
|
285
|
+
* @example
|
|
286
|
+
* ```html
|
|
287
|
+
* <lc-accordion [lazy]="true">
|
|
288
|
+
* <ng-template lcAccordionContent>
|
|
289
|
+
* <expensive-panel [id]="id" />
|
|
290
|
+
* </ng-template>
|
|
291
|
+
* </lc-accordion>
|
|
292
|
+
* ```
|
|
293
|
+
*/
|
|
294
|
+
declare class AccordionContentDirective {
|
|
295
|
+
readonly template: TemplateRef<any>;
|
|
296
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionContentDirective, never>;
|
|
297
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AccordionContentDirective, "[lcAccordionContent]", never, {}, {}, never, never, true, never>;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
/** Where the disclosure chevron sits relative to the header content. */
|
|
301
|
+
type AccordionChevronPosition = 'leading' | 'trailing';
|
|
244
302
|
/**
|
|
245
303
|
* Accordion component for collapsible content sections.
|
|
246
304
|
*
|
|
@@ -248,19 +306,46 @@ interface NavigationItem {
|
|
|
248
306
|
* - Expandable/collapsible content panels
|
|
249
307
|
* - Two-way binding for expanded state
|
|
250
308
|
* - Animated expand/collapse transitions
|
|
251
|
-
* -
|
|
252
|
-
* -
|
|
309
|
+
* - Plain-string `title` **or** a rich projected header (`lcAccordionHeader`)
|
|
310
|
+
* - Eager `<ng-content>` body **or** lazy/destroyable template body
|
|
311
|
+
* (`lcAccordionContent` + `[lazy]` / `[destroyOnClose]`)
|
|
312
|
+
* - Accessible: header is a real `<button>` with `aria-expanded` /
|
|
313
|
+
* `aria-controls`, keyboard support, and a visible focus ring
|
|
253
314
|
*
|
|
254
|
-
* @example
|
|
315
|
+
* @example Plain (unchanged, fully backward compatible)
|
|
255
316
|
* ```html
|
|
256
317
|
* <lc-accordion title="Section Title" [(expanded)]="isOpen">
|
|
257
318
|
* <p>Collapsible content here</p>
|
|
258
319
|
* </lc-accordion>
|
|
259
320
|
* ```
|
|
321
|
+
*
|
|
322
|
+
* @example Rich header + lazy body
|
|
323
|
+
* ```html
|
|
324
|
+
* <lc-accordion variant="flat" chevronPosition="leading" [lazy]="true">
|
|
325
|
+
* <ng-template lcAccordionHeader>
|
|
326
|
+
* <span class="title">Item label</span>
|
|
327
|
+
* <lc-badge variant="success" size="sm">Done</lc-badge>
|
|
328
|
+
* <span style="margin-left: auto;">12:04</span>
|
|
329
|
+
* </ng-template>
|
|
330
|
+
* <ng-template lcAccordionContent>
|
|
331
|
+
* <expensive-panel />
|
|
332
|
+
* </ng-template>
|
|
333
|
+
* </lc-accordion>
|
|
334
|
+
* ```
|
|
260
335
|
*/
|
|
261
336
|
declare class AccordionComponent {
|
|
262
|
-
/**
|
|
337
|
+
/**
|
|
338
|
+
* Title displayed in the accordion header. Optional: when a
|
|
339
|
+
* `lcAccordionHeader` template is projected it takes precedence, and `title`
|
|
340
|
+
* (if set) becomes the header's accessible label fallback.
|
|
341
|
+
*/
|
|
263
342
|
readonly title: _angular_core.InputSignal<string>;
|
|
343
|
+
/**
|
|
344
|
+
* Explicit accessible label for the header button. Use this when the header
|
|
345
|
+
* is a rich template with no meaningful plain-text title. Falls back to
|
|
346
|
+
* `title` when omitted.
|
|
347
|
+
*/
|
|
348
|
+
readonly ariaLabel: _angular_core.InputSignal<string>;
|
|
264
349
|
/** Whether the accordion is expanded (two-way binding) */
|
|
265
350
|
readonly expanded: _angular_core.ModelSignal<boolean>;
|
|
266
351
|
/** Visual variant */
|
|
@@ -269,6 +354,44 @@ declare class AccordionComponent {
|
|
|
269
354
|
readonly size: _angular_core.InputSignal<"sm" | "md" | "lg">;
|
|
270
355
|
/** Whether the accordion is disabled */
|
|
271
356
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
357
|
+
/**
|
|
358
|
+
* Where the disclosure chevron sits. `'trailing'` (default) preserves the
|
|
359
|
+
* original layout. `'leading'` puts the chevron first so a right-aligned
|
|
360
|
+
* header element (e.g. a timestamp using `margin-left: auto`) stays pinned to
|
|
361
|
+
* the right edge.
|
|
362
|
+
*/
|
|
363
|
+
readonly chevronPosition: _angular_core.InputSignal<AccordionChevronPosition>;
|
|
364
|
+
/**
|
|
365
|
+
* When `true`, a `lcAccordionContent` body is not instantiated until the
|
|
366
|
+
* panel is first expanded; once created it is kept in the DOM on collapse.
|
|
367
|
+
* Default `false` = today's behavior (projected immediately). Has no effect
|
|
368
|
+
* on default `<ng-content>` bodies, which Angular always projects eagerly.
|
|
369
|
+
*/
|
|
370
|
+
readonly lazy: _angular_core.InputSignal<boolean>;
|
|
371
|
+
/**
|
|
372
|
+
* When `true`, a `lcAccordionContent` body is destroyed on collapse and
|
|
373
|
+
* recreated on the next open. Takes precedence over {@link lazy}.
|
|
374
|
+
*/
|
|
375
|
+
readonly destroyOnClose: _angular_core.InputSignal<boolean>;
|
|
376
|
+
/** Rich header template, if projected via `lcAccordionHeader`. */
|
|
377
|
+
readonly headerTemplate: _angular_core.Signal<AccordionHeaderDirective | undefined>;
|
|
378
|
+
/** Lazy/deferred body template, if projected via `lcAccordionContent`. */
|
|
379
|
+
readonly contentTemplate: _angular_core.Signal<AccordionContentDirective | undefined>;
|
|
380
|
+
/** Stable ids wiring the header button to its panel for screen readers. */
|
|
381
|
+
protected readonly headerId: string;
|
|
382
|
+
protected readonly panelId: string;
|
|
383
|
+
/** Latches to `true` the first time the panel is opened (for lazy bodies). */
|
|
384
|
+
private readonly hasBeenOpened;
|
|
385
|
+
constructor();
|
|
386
|
+
/** Accessible label for the header button (explicit override, else title). */
|
|
387
|
+
protected readonly headerAriaLabel: _angular_core.Signal<string | null>;
|
|
388
|
+
/**
|
|
389
|
+
* Whether the `lcAccordionContent` body should currently be in the DOM.
|
|
390
|
+
* - `destroyOnClose`: only while expanded.
|
|
391
|
+
* - `lazy`: from the first open onward.
|
|
392
|
+
* - otherwise: always (eager).
|
|
393
|
+
*/
|
|
394
|
+
protected readonly shouldRenderBody: _angular_core.Signal<boolean>;
|
|
272
395
|
/** Computed CSS classes */
|
|
273
396
|
protected accordionClasses: _angular_core.Signal<string>;
|
|
274
397
|
/** Toggle expanded state */
|
|
@@ -276,7 +399,7 @@ declare class AccordionComponent {
|
|
|
276
399
|
/** Handle keyboard events for accessibility */
|
|
277
400
|
protected onKeydown(event: KeyboardEvent): void;
|
|
278
401
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<AccordionComponent, never>;
|
|
279
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "lc-accordion", never, { "title": { "alias": "title"; "required": true; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "expanded": "expandedChange"; },
|
|
402
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<AccordionComponent, "lc-accordion", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "chevronPosition": { "alias": "chevronPosition"; "required": false; "isSignal": true; }; "lazy": { "alias": "lazy"; "required": false; "isSignal": true; }; "destroyOnClose": { "alias": "destroyOnClose"; "required": false; "isSignal": true; }; }, { "expanded": "expandedChange"; }, ["headerTemplate", "contentTemplate"], ["*"], true, never>;
|
|
280
403
|
}
|
|
281
404
|
|
|
282
405
|
declare class AccordionGroupComponent {
|
|
@@ -7244,5 +7367,5 @@ declare class StageListComponent {
|
|
|
7244
7367
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StageListComponent, "lc-stage-list", never, { "stages": { "alias": "stages"; "required": true; "isSignal": true; }; "max": { "alias": "max"; "required": false; "isSignal": true; }; "showValue": { "alias": "showValue"; "required": false; "isSignal": true; }; "showBar": { "alias": "showBar"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "clickable": { "alias": "clickable"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; }, { "stageClick": "stageClick"; }, never, never, true, never>;
|
|
7245
7368
|
}
|
|
7246
7369
|
|
|
7247
|
-
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, PageLayoutComponent, 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, 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, resolveFileIcon };
|
|
7248
|
-
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, ChatMessageStatus, 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, MarkdownChangesHighlighted, MarkdownHeading, MarkdownLinkClick, MarkdownRendered, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, PageLayoutFill, PaginationSize, PasswordRequirement, PasswordStrength, PieChartSize, PieSegment, 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, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };
|
|
7370
|
+
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, 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, PageLayoutComponent, 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, 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, resolveFileIcon };
|
|
7371
|
+
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, 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, MarkdownChangesHighlighted, MarkdownHeading, MarkdownLinkClick, MarkdownRendered, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, PageLayoutFill, PaginationSize, PasswordRequirement, PasswordStrength, PieChartSize, PieSegment, 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, ToolbarAction, ToolbarConfig, TooltipPosition, TreeNode, TreeNodeType, WaterfallItem };
|