@life-cockpit/angular-ui-kit 2.6.0 → 2.8.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.
|
@@ -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 {
|
|
@@ -455,6 +578,10 @@ type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
|
455
578
|
* - Custom color support (CSS colors, variables)
|
|
456
579
|
* - Accessibility attributes (ARIA labels, decorative icons)
|
|
457
580
|
* - Dynamic SVG loading from Tabler Icons
|
|
581
|
+
* - Fail-loud on unknown names: a dev-mode warning + a visible placeholder
|
|
582
|
+
* (never a silent empty space). See {@link ICON_NAMES} / {@link isValidIconName}
|
|
583
|
+
* for the canonical set of valid names, and {@link ICON_ALIASES} for the
|
|
584
|
+
* supported Heroicon/Material aliases.
|
|
458
585
|
*
|
|
459
586
|
* @example
|
|
460
587
|
* ```html
|
|
@@ -475,6 +602,9 @@ type IconSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl';
|
|
|
475
602
|
*
|
|
476
603
|
* <!-- Decorative icon (hidden from screen readers) -->
|
|
477
604
|
* <lc-icon name="sparkles" [decorative]="true" />
|
|
605
|
+
*
|
|
606
|
+
* <!-- Strict: throw in dev when the name is unknown (catch typos in CI) -->
|
|
607
|
+
* <lc-icon name="beaker" [strict]="true" />
|
|
478
608
|
* ```
|
|
479
609
|
*/
|
|
480
610
|
declare class IconComponent {
|
|
@@ -520,21 +650,18 @@ declare class IconComponent {
|
|
|
520
650
|
*/
|
|
521
651
|
readonly decorative: _angular_core.InputSignal<boolean>;
|
|
522
652
|
/**
|
|
523
|
-
|
|
524
|
-
* @
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
* Alias map for non-Tabler names (e.g. Material Design names)
|
|
529
|
-
* Maps alternative names to their Tabler equivalents
|
|
530
|
-
* @internal
|
|
653
|
+
* Strict mode. When `true` and the name is not a valid icon (see
|
|
654
|
+
* {@link isValidIconName}), the component **throws** in development mode
|
|
655
|
+
* instead of only warning — useful as a CI guard to catch typos/unknown
|
|
656
|
+
* names. No effect in production builds.
|
|
657
|
+
* @default false
|
|
531
658
|
*/
|
|
532
|
-
|
|
659
|
+
readonly strict: _angular_core.InputSignal<boolean>;
|
|
533
660
|
/**
|
|
534
|
-
|
|
661
|
+
* SVG content loaded from Tabler Icons
|
|
535
662
|
* @internal
|
|
536
663
|
*/
|
|
537
|
-
|
|
664
|
+
readonly svgContent: _angular_core.WritableSignal<SafeHtml>;
|
|
538
665
|
/**
|
|
539
666
|
* Computed path to SVG file
|
|
540
667
|
* @internal
|
|
@@ -562,9 +689,55 @@ declare class IconComponent {
|
|
|
562
689
|
*/
|
|
563
690
|
private processSvgString;
|
|
564
691
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
565
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<IconComponent, "lc-icon", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "decorative": { "alias": "decorative"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
692
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<IconComponent, "lc-icon", never, { "name": { "alias": "name"; "required": false; "isSignal": true; }; "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "color": { "alias": "color"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "decorative": { "alias": "decorative"; "required": false; "isSignal": true; }; "strict": { "alias": "strict"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
566
693
|
}
|
|
567
694
|
|
|
695
|
+
/**
|
|
696
|
+
* The canonical set of valid `lc-icon` names: every served Tabler icon plus
|
|
697
|
+
* every documented alias ({@link ICON_ALIASES}) and inlined icon.
|
|
698
|
+
* Stored space-joined and split at load to keep the bundle compact.
|
|
699
|
+
*/
|
|
700
|
+
declare const ICON_NAMES: readonly string[];
|
|
701
|
+
|
|
702
|
+
/**
|
|
703
|
+
* Alias map for non-Tabler icon names.
|
|
704
|
+
*
|
|
705
|
+
* `lc-icon` serves the **Tabler** icon set, but components across the ecosystem
|
|
706
|
+
* frequently reference **Heroicon** (and a few Material Design) names, which use
|
|
707
|
+
* different identifiers. Each entry here maps such an alias to its Tabler
|
|
708
|
+
* equivalent so HTTP loading resolves correctly.
|
|
709
|
+
*
|
|
710
|
+
* This map is part of the public API so consumers can see exactly which
|
|
711
|
+
* non-Tabler names are supported (and lint against them). Every key is also
|
|
712
|
+
* included in {@link ICON_NAMES} as a valid `lc-icon` name.
|
|
713
|
+
*
|
|
714
|
+
* @see ICON_NAMES
|
|
715
|
+
* @see isValidIconName
|
|
716
|
+
*/
|
|
717
|
+
declare const ICON_ALIASES: Readonly<Record<string, string>>;
|
|
718
|
+
|
|
719
|
+
/**
|
|
720
|
+
* A valid `lc-icon` name.
|
|
721
|
+
*
|
|
722
|
+
* There are ~5000 valid names, so this is intentionally a broad `string` alias
|
|
723
|
+
* rather than a giant union type (which would bloat editors and builds). Prefer
|
|
724
|
+
* runtime validation via {@link isValidIconName}, or lint your usages against
|
|
725
|
+
* the {@link ICON_NAMES} array (also shipped as `icon-names.json`).
|
|
726
|
+
*/
|
|
727
|
+
type IconName = string;
|
|
728
|
+
/**
|
|
729
|
+
* Whether `name` is a valid `lc-icon` name — i.e. a served Tabler icon, a
|
|
730
|
+
* documented alias ({@link ICON_ALIASES}), or an inlined icon.
|
|
731
|
+
*
|
|
732
|
+
* @example
|
|
733
|
+
* ```ts
|
|
734
|
+
* isValidIconName('flask'); // true (Tabler)
|
|
735
|
+
* isValidIconName('x-mark'); // true (Heroicon alias)
|
|
736
|
+
* isValidIconName('beaker'); // false (not a Tabler name — did you mean 'flask'?)
|
|
737
|
+
* ```
|
|
738
|
+
*/
|
|
739
|
+
declare function isValidIconName(name: string): boolean;
|
|
740
|
+
|
|
568
741
|
/**
|
|
569
742
|
* Injection token for the base path used to resolve the built-in
|
|
570
743
|
* Life-Cockpit logo assets. Defaults to `'/assets'` so consuming apps
|
|
@@ -2327,7 +2500,7 @@ declare class PageHeaderComponent {
|
|
|
2327
2500
|
* Heading level for the title — affects semantics, not size.
|
|
2328
2501
|
* @default 1
|
|
2329
2502
|
*/
|
|
2330
|
-
level: _angular_core.InputSignal<
|
|
2503
|
+
level: _angular_core.InputSignal<2 | 1 | 3>;
|
|
2331
2504
|
/**
|
|
2332
2505
|
* Visual size of the page header.
|
|
2333
2506
|
* - `compact` — dense data-tool pages
|
|
@@ -7244,5 +7417,5 @@ declare class StageListComponent {
|
|
|
7244
7417
|
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
7418
|
}
|
|
7246
7419
|
|
|
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 };
|
|
7420
|
+
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, ICON_ALIASES, ICON_NAMES, IconComponent, InputComponent, KanbanBoardComponent, LC_LOGO_BASE_PATH, LineChartComponent, ListComponent, ListItemTemplateDirective, LogViewerComponent, LogoComponent, MarkdownComponent, MenuComponent, ModalComponent, NotificationCenterComponent, NumberInputComponent, PageHeaderComponent, PageLayoutComponent, PaginationComponent, PasswordInputComponent, PieChartComponent, 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, isValidIconName, resolveFileIcon };
|
|
7421
|
+
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, IconName, IconSize, IconVariant, KanbanCard, KanbanColumn, KanbanLabel, KanbanMoveEvent, LineChartSeries, ListItem, ListOrientation, ListSize, ListVariant, LogLevel, LogLine, LogViewerVariant, MarkdownChangesHighlighted, MarkdownHeading, MarkdownLinkClick, MarkdownRendered, MenuItem, ModalSize, NavigationItem, Notification, NotificationPriority, NotificationType, 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 };
|