@m1z23r/ngx-ui 1.1.57 → 1.1.59

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@m1z23r/ngx-ui",
3
- "version": "1.1.57",
3
+ "version": "1.1.59",
4
4
  "description": "A modern Angular UI component library with themeable components and responsive layout system",
5
5
  "license": "MIT",
6
6
  "author": "m1z23r",
@@ -30,7 +30,8 @@
30
30
  "peerDependencies": {
31
31
  "@angular/common": "^21.0.0",
32
32
  "@angular/core": "^21.0.0",
33
- "@angular/forms": "^21.0.0"
33
+ "@angular/forms": "^21.0.0",
34
+ "@angular/router": "^21.0.0"
34
35
  },
35
36
  "dependencies": {
36
37
  "tslib": "^2.3.0"
@@ -115,6 +115,36 @@
115
115
  --ui-option-selected-bg: color-mix(in srgb, var(--ui-primary) 10%, transparent);
116
116
  --ui-option-selected-text: var(--ui-primary);
117
117
 
118
+ // Segmented control
119
+ --ui-segmented-track-bg: var(--ui-bg-tertiary);
120
+ --ui-segmented-active-bg: var(--ui-primary);
121
+ --ui-segmented-active-text: var(--ui-primary-text);
122
+
123
+ // Stepper
124
+ --ui-stepper-connector: var(--ui-border);
125
+ --ui-stepper-completed: var(--ui-primary);
126
+ --ui-stepper-completed-text: var(--ui-primary-text);
127
+ --ui-stepper-circle-size: 2rem;
128
+
129
+ // Skeleton
130
+ --ui-skeleton-base: color-mix(in srgb, var(--ui-text) 9%, var(--ui-bg));
131
+ --ui-skeleton-highlight: color-mix(in srgb, var(--ui-text) 3%, var(--ui-bg));
132
+
133
+ // Lightbox
134
+ --ui-lightbox-backdrop: rgba(0, 0, 0, 0.9);
135
+ --ui-lightbox-control-bg: rgba(0, 0, 0, 0.45);
136
+ --ui-lightbox-control-text: #ffffff;
137
+
138
+ // Carousel
139
+ --ui-carousel-control-bg: rgba(0, 0, 0, 0.45);
140
+ --ui-carousel-control-text: #ffffff;
141
+ --ui-carousel-counter-bg: rgba(0, 0, 0, 0.55);
142
+
143
+ // Image uploader
144
+ --ui-image-uploader-tile-bg: var(--ui-bg-secondary);
145
+ --ui-image-uploader-tile-border: var(--ui-border);
146
+ --ui-image-uploader-overlay-bg: rgba(0, 0, 0, 0.5);
147
+
118
148
  // JSON tree value highlighting
119
149
  --ui-json-string: #16a34a;
120
150
  --ui-json-number: #2563eb;
@@ -260,6 +260,69 @@ declare class DialogService {
260
260
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<DialogService>;
261
261
  }
262
262
 
263
+ interface CarouselImage {
264
+ src: string;
265
+ alt?: string;
266
+ }
267
+ declare class CarouselComponent {
268
+ readonly images: _angular_core.InputSignal<CarouselImage[]>;
269
+ readonly startIndex: _angular_core.InputSignal<number>;
270
+ readonly loop: _angular_core.InputSignal<boolean>;
271
+ readonly showCounter: _angular_core.InputSignal<boolean>;
272
+ readonly ariaLabel: _angular_core.InputSignal<string>;
273
+ readonly index: _angular_core.ModelSignal<number | undefined>;
274
+ /** Horizontal drag offset in px while a swipe is in progress */
275
+ protected readonly dragOffset: _angular_core.WritableSignal<number>;
276
+ protected readonly dragging: _angular_core.WritableSignal<boolean>;
277
+ private pointerId;
278
+ private dragStartX;
279
+ private dragStartY;
280
+ private dragAxis;
281
+ protected readonly currentIndex: _angular_core.Signal<number>;
282
+ protected readonly hasPrev: _angular_core.Signal<boolean>;
283
+ protected readonly hasNext: _angular_core.Signal<boolean>;
284
+ prev(): void;
285
+ next(): void;
286
+ protected handleKeyDown(event: KeyboardEvent): void;
287
+ protected onPointerDown(event: PointerEvent): void;
288
+ protected onPointerMove(event: PointerEvent): void;
289
+ protected onPointerUp(event: PointerEvent): void;
290
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<CarouselComponent, never>;
291
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<CarouselComponent, "ui-carousel", never, { "images": { "alias": "images"; "required": true; "isSignal": true; }; "startIndex": { "alias": "startIndex"; "required": false; "isSignal": true; }; "loop": { "alias": "loop"; "required": false; "isSignal": true; }; "showCounter": { "alias": "showCounter"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "index": { "alias": "index"; "required": false; "isSignal": true; }; }, { "index": "indexChange"; }, never, never, true, never>;
292
+ }
293
+
294
+ interface LightboxConfig {
295
+ /** Images to display in the lightbox carousel */
296
+ images: CarouselImage[];
297
+ /** Index of the image to show first */
298
+ startIndex?: number;
299
+ }
300
+
301
+ /**
302
+ * Service for opening a fullscreen image lightbox.
303
+ *
304
+ * @example
305
+ * ```typescript
306
+ * const ref = this.lightboxService.open({
307
+ * images: [{ src: '/photos/1.jpg', alt: 'Living room' }],
308
+ * startIndex: 0,
309
+ * });
310
+ *
311
+ * await ref.afterClosed();
312
+ * ```
313
+ */
314
+ declare class LightboxService {
315
+ private readonly dialogService;
316
+ /**
317
+ * Opens the lightbox with the given images.
318
+ *
319
+ * @returns A DialogRef that resolves when the lightbox is closed
320
+ */
321
+ open(config: LightboxConfig): DialogRef<void>;
322
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<LightboxService, never>;
323
+ static ɵprov: _angular_core.ɵɵInjectableDeclaration<LightboxService>;
324
+ }
325
+
263
326
  /**
264
327
  * Reference to an active toast notification.
265
328
  * Used to programmatically dismiss a toast.
@@ -591,6 +654,26 @@ declare class ModalComponent implements OnInit {
591
654
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ModalComponent, "ui-modal", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "maxWidth": { "alias": "maxWidth"; "required": false; "isSignal": true; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; "isSignal": true; }; "panelClass": { "alias": "panelClass"; "required": false; "isSignal": true; }; }, {}, never, ["*", "[footer]"], true, never>;
592
655
  }
593
656
 
657
+ /**
658
+ * Fullscreen image lightbox. Opened via LightboxService — not meant to be
659
+ * embedded directly in templates.
660
+ */
661
+ declare class LightboxComponent {
662
+ protected readonly config: LightboxConfig;
663
+ private readonly dialogRef;
664
+ private readonly carousel;
665
+ private readonly viewport;
666
+ /** Tracks if mousedown started on the backdrop (to prevent close on drag-out) */
667
+ private readonly mouseDownOnBackdrop;
668
+ constructor();
669
+ onKeyDown(event: KeyboardEvent): void;
670
+ protected onBackdropMouseDown(event: MouseEvent): void;
671
+ protected onBackdropClick(event: MouseEvent): void;
672
+ protected close(): void;
673
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<LightboxComponent, never>;
674
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<LightboxComponent, "ui-lightbox", never, {}, {}, never, never, true, never>;
675
+ }
676
+
594
677
  /**
595
678
  * Directive that connects a component's loading state to the LoadingService.
596
679
  *
@@ -1910,6 +1993,146 @@ declare class DatetimepickerComponent implements OnDestroy {
1910
1993
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<DatetimepickerComponent, "ui-datetimepicker", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "clearable": { "alias": "clearable"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "showSeconds": { "alias": "showSeconds"; "required": false; "isSignal": true; }; "timeFormat": { "alias": "timeFormat"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "minuteStep": { "alias": "minuteStep"; "required": false; "isSignal": true; }; "secondStep": { "alias": "secondStep"; "required": false; "isSignal": true; }; "minDate": { "alias": "minDate"; "required": false; "isSignal": true; }; "maxDate": { "alias": "maxDate"; "required": false; "isSignal": true; }; "disabledDates": { "alias": "disabledDates"; "required": false; "isSignal": true; }; "firstDayOfWeek": { "alias": "firstDayOfWeek"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; "opened": "opened"; "closed": "closed"; }, never, never, true, never>;
1911
1994
  }
1912
1995
 
1996
+ type SegmentedSize = 'sm' | 'md' | 'lg';
1997
+ interface SegmentedOption<T = unknown> {
1998
+ value: T;
1999
+ label: string;
2000
+ disabled?: boolean;
2001
+ }
2002
+ declare class SegmentedComponent<T = unknown> {
2003
+ readonly options: _angular_core.InputSignal<SegmentedOption<T>[]>;
2004
+ readonly size: _angular_core.InputSignal<SegmentedSize>;
2005
+ readonly fullWidth: _angular_core.InputSignal<boolean>;
2006
+ readonly disabled: _angular_core.InputSignal<boolean>;
2007
+ readonly ariaLabel: _angular_core.InputSignal<string>;
2008
+ readonly value: _angular_core.ModelSignal<T | undefined>;
2009
+ private readonly track;
2010
+ protected readonly segmentedClasses: _angular_core.Signal<string>;
2011
+ protected readonly selectedIndex: _angular_core.Signal<number>;
2012
+ protected isSegmentDisabled(option: SegmentedOption<T>): boolean;
2013
+ protected isTabbable(index: number): boolean;
2014
+ protected selectSegment(option: SegmentedOption<T>): void;
2015
+ protected handleKeyDown(event: KeyboardEvent, currentIndex: number): void;
2016
+ private focusSegment;
2017
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SegmentedComponent<any>, never>;
2018
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SegmentedComponent<any>, "ui-segmented", never, { "options": { "alias": "options"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "fullWidth": { "alias": "fullWidth"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
2019
+ }
2020
+
2021
+ interface StepperStep {
2022
+ key: string;
2023
+ label: string;
2024
+ }
2025
+ declare class StepperComponent {
2026
+ readonly steps: _angular_core.InputSignal<StepperStep[]>;
2027
+ readonly linear: _angular_core.InputSignal<boolean>;
2028
+ readonly ariaLabel: _angular_core.InputSignal<string>;
2029
+ readonly activeIndex: _angular_core.ModelSignal<number>;
2030
+ readonly stepClick: _angular_core.OutputEmitterRef<number>;
2031
+ protected readonly stepStates: _angular_core.Signal<{
2032
+ step: StepperStep;
2033
+ index: number;
2034
+ completed: boolean;
2035
+ active: boolean;
2036
+ clickable: boolean;
2037
+ }[]>;
2038
+ protected selectStep(index: number, clickable: boolean): void;
2039
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<StepperComponent, never>;
2040
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<StepperComponent, "ui-stepper", never, { "steps": { "alias": "steps"; "required": true; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "activeIndex": { "alias": "activeIndex"; "required": false; "isSignal": true; }; }, { "activeIndex": "activeIndexChange"; "stepClick": "stepClick"; }, never, never, true, never>;
2041
+ }
2042
+
2043
+ declare class BreadcrumbSeparatorDirective {
2044
+ readonly templateRef: TemplateRef<any>;
2045
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbSeparatorDirective, never>;
2046
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<BreadcrumbSeparatorDirective, "[uiBreadcrumbSeparator]", never, {}, {}, never, never, true, never>;
2047
+ }
2048
+
2049
+ interface BreadcrumbItem {
2050
+ label: string;
2051
+ url?: string;
2052
+ }
2053
+ declare class BreadcrumbComponent {
2054
+ readonly items: _angular_core.InputSignal<BreadcrumbItem[]>;
2055
+ readonly separator: _angular_core.InputSignal<string>;
2056
+ protected readonly separatorTemplate: _angular_core.Signal<BreadcrumbSeparatorDirective | undefined>;
2057
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<BreadcrumbComponent, never>;
2058
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<BreadcrumbComponent, "ui-breadcrumb", never, { "items": { "alias": "items"; "required": true; "isSignal": true; }; "separator": { "alias": "separator"; "required": false; "isSignal": true; }; }, {}, ["separatorTemplate"], never, true, never>;
2059
+ }
2060
+
2061
+ type SkeletonVariant = 'line' | 'box' | 'circle';
2062
+ declare class SkeletonComponent {
2063
+ readonly variant: _angular_core.InputSignal<SkeletonVariant>;
2064
+ readonly width: _angular_core.InputSignal<string | undefined>;
2065
+ readonly height: _angular_core.InputSignal<string | undefined>;
2066
+ readonly count: _angular_core.InputSignal<number>;
2067
+ protected readonly items: _angular_core.Signal<number[]>;
2068
+ protected itemWidth(index: number): string | null;
2069
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SkeletonComponent, never>;
2070
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SkeletonComponent, "ui-skeleton", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; "count": { "alias": "count"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
2071
+ }
2072
+
2073
+ interface ImageUploaderItem {
2074
+ id: string;
2075
+ previewUrl: string;
2076
+ /** Upload progress 0-100; shows a progress overlay while set and below 100 */
2077
+ progress?: number;
2078
+ /** Error message; puts the tile in an error state */
2079
+ error?: string;
2080
+ }
2081
+ declare class ImageUploaderComponent {
2082
+ readonly maxCount: _angular_core.InputSignal<number>;
2083
+ readonly accept: _angular_core.InputSignal<string>;
2084
+ readonly maxFileSizeMb: _angular_core.InputSignal<number | undefined>;
2085
+ readonly disabled: _angular_core.InputSignal<boolean>;
2086
+ readonly coverLabel: _angular_core.InputSignal<string>;
2087
+ readonly addLabel: _angular_core.InputSignal<string>;
2088
+ readonly items: _angular_core.ModelSignal<ImageUploaderItem[]>;
2089
+ readonly filesAdded: _angular_core.OutputEmitterRef<File[]>;
2090
+ readonly filesRejected: _angular_core.OutputEmitterRef<{
2091
+ file: File;
2092
+ reason: string;
2093
+ }[]>;
2094
+ readonly removed: _angular_core.OutputEmitterRef<string>;
2095
+ readonly reordered: _angular_core.OutputEmitterRef<string[]>;
2096
+ private readonly fileInput;
2097
+ private readonly grid;
2098
+ protected readonly dragOver: _angular_core.WritableSignal<boolean>;
2099
+ /** Id of the tile currently grabbed for keyboard reordering */
2100
+ protected readonly grabbedId: _angular_core.WritableSignal<string | null>;
2101
+ /** Announcement for screen readers after a keyboard move */
2102
+ protected readonly liveMessage: _angular_core.WritableSignal<string>;
2103
+ /** Id of the tile being pointer-dragged */
2104
+ protected readonly dragId: _angular_core.WritableSignal<string | null>;
2105
+ protected readonly ghostX: _angular_core.WritableSignal<number>;
2106
+ protected readonly ghostY: _angular_core.WritableSignal<number>;
2107
+ protected readonly ghostSize: _angular_core.WritableSignal<number>;
2108
+ private pointerId;
2109
+ private pointerDownX;
2110
+ private pointerDownY;
2111
+ private pointerDownId;
2112
+ private dragStarted;
2113
+ protected readonly canAdd: _angular_core.Signal<boolean>;
2114
+ protected readonly dragItem: _angular_core.Signal<ImageUploaderItem | null>;
2115
+ protected tileLabel(item: ImageUploaderItem, index: number): string;
2116
+ protected openFilePicker(): void;
2117
+ protected onFileSelected(event: Event): void;
2118
+ protected onDragOver(event: DragEvent): void;
2119
+ protected onDragLeave(event: DragEvent): void;
2120
+ protected onDrop(event: DragEvent): void;
2121
+ private processFiles;
2122
+ private isFileTypeAccepted;
2123
+ protected removeItem(event: Event, id: string): void;
2124
+ protected onTilePointerDown(event: PointerEvent, id: string): void;
2125
+ protected onTilePointerMove(event: PointerEvent): void;
2126
+ protected onTilePointerUp(event: PointerEvent): void;
2127
+ private findTileElement;
2128
+ private tileIndexAtPoint;
2129
+ protected onTileKeyDown(event: KeyboardEvent, id: string, index: number): void;
2130
+ private moveByKeyboard;
2131
+ private moveItem;
2132
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<ImageUploaderComponent, never>;
2133
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ImageUploaderComponent, "ui-image-uploader", never, { "maxCount": { "alias": "maxCount"; "required": false; "isSignal": true; }; "accept": { "alias": "accept"; "required": false; "isSignal": true; }; "maxFileSizeMb": { "alias": "maxFileSizeMb"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "coverLabel": { "alias": "coverLabel"; "required": false; "isSignal": true; }; "addLabel": { "alias": "addLabel"; "required": false; "isSignal": true; }; "items": { "alias": "items"; "required": false; "isSignal": true; }; }, { "items": "itemsChange"; "filesAdded": "filesAdded"; "filesRejected": "filesRejected"; "removed": "removed"; "reordered": "reordered"; }, never, never, true, never>;
2134
+ }
2135
+
1913
2136
  type ShellVariant = 'default' | 'header' | 'simple';
1914
2137
  declare class ShellComponent {
1915
2138
  readonly variant: _angular_core.InputSignal<ShellVariant>;
@@ -2301,5 +2524,5 @@ declare class TemplateInputComponent implements OnDestroy, AfterViewInit {
2301
2524
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<TemplateInputComponent, "ui-template-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "hint": { "alias": "hint"; "required": false; "isSignal": true; }; "error": { "alias": "error"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "readonly": { "alias": "readonly"; "required": false; "isSignal": true; }; "required": { "alias": "required"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "value": { "alias": "value"; "required": true; "isSignal": true; }; "variables": { "alias": "variables"; "required": true; "isSignal": true; }; }, { "value": "valueChange"; "variables": "variablesChange"; "variableHover": "variableHover"; }, ["popoverTemplate", "hasSuffix"], ["[uiTemplateInputSuffix]"], true, never>;
2302
2525
  }
2303
2526
 
2304
- export { AccordionComponent, AccordionHeaderDirective, AccordionItemComponent, AlertComponent, BadgeComponent, ButtonComponent, CardComponent, CellTemplateDirective, CellValuePipe, CheckboxComponent, ChipInputComponent, ChipTemplateDirective, CircularProgressComponent, ContentComponent, ContextMenuDirective, DIALOG_DATA, DIALOG_REF, DatepickerComponent, DatetimepickerComponent, DialogRef, DialogService, DropdownComponent, DropdownDividerComponent, DropdownItemComponent, DropdownTriggerDirective, DynamicTabsComponent, FileChooserComponent, FilePreviewPipe, FileSizePipe, FooterComponent, InputComponent, JsonTreeComponent, LOADABLE, LoadingDirective, LoadingService, ModalComponent, NavbarComponent, OptionComponent, OptionTemplateDirective, PaginationComponent, ProgressComponent, RadioComponent, RadioGroupComponent, RangeSliderComponent, SelectComponent, ShellComponent, SidebarComponent, SidebarService, SidebarToggleComponent, SliderComponent, SpinnerComponent, SplitComponent, SplitPaneComponent, SwitchComponent, TAB_DATA, TAB_REF, TREE_HOST, TabActivePipe, TabComponent, TabIconDirective, TabRef, TableComponent, TabsComponent, TabsService, TemplateInputComponent, TemplateInputSuffixDirective, TextareaComponent, TimepickerComponent, ToastRef, ToastService, TooltipDirective, TreeComponent, TreeNodeComponent, Validators, VariablePopoverDirective, jsonToTreeNodes };
2305
- export type { AccordionVariant, AlertVariant, AsyncSearchFn, AsyncSelectOption, BadgeSize, BadgeVariant, ButtonColor, ButtonSize, ButtonVariant, CardPadding, CardVariant, CheckboxSize, ChipInputSize, ChipInputVariant, ChipTemplateContext, CircularProgressSize, CircularProgressVariant, DateRange, DateRangeValue, DatepickerSize, DatepickerVariant, DatepickerView, DatetimepickerSize, DatetimepickerVariant, DatetimepickerView, DialogConfig, DropdownAlign, DropdownPosition, DynamicTabConfig, DynamicTabsSize, DynamicTabsVariant, FileChooserSize, FileChooserVariant, InputType, JsonKind, JsonNodeMeta, JsonToTreeOptions, Loadable, ModalSize, OptionTemplateContext, PaginationSize, ProgressSize, ProgressVariant, RadioGroupOrientation, RadioGroupSize, RadioGroupVariant, RangeSliderBubbles, RangeSliderMode, RangeSliderSize, SelectSize, SelectVariant, ShellVariant, SliderSize, SortDirection, SortState, SpinnerSize, SpinnerVariant, SplitGutterSize, SplitOrientation, SplitSizeChange, SwitchSize, TabRenderMode, TableColumn, TabsSize, TabsVariant, TemplateVariable, TextareaResize, TimeFormat, TimeValue, TimepickerSize, TimepickerVariant, ToastConfig, ToastPosition, ToastVariant, TooltipPosition, TreeDropPosition, TreeFormatter, TreeLabelToken, TreeNode, TreeNodeActionType, TreeNodeContextAction, TreeNodeDropEvent, ValidationError, ValidationState, ValidatorFn, VariablePopoverContext, VariableState };
2527
+ export { AccordionComponent, AccordionHeaderDirective, AccordionItemComponent, AlertComponent, BadgeComponent, BreadcrumbComponent, BreadcrumbSeparatorDirective, ButtonComponent, CardComponent, CarouselComponent, CellTemplateDirective, CellValuePipe, CheckboxComponent, ChipInputComponent, ChipTemplateDirective, CircularProgressComponent, ContentComponent, ContextMenuDirective, DIALOG_DATA, DIALOG_REF, DatepickerComponent, DatetimepickerComponent, DialogRef, DialogService, DropdownComponent, DropdownDividerComponent, DropdownItemComponent, DropdownTriggerDirective, DynamicTabsComponent, FileChooserComponent, FilePreviewPipe, FileSizePipe, FooterComponent, ImageUploaderComponent, InputComponent, JsonTreeComponent, LOADABLE, LightboxComponent, LightboxService, LoadingDirective, LoadingService, ModalComponent, NavbarComponent, OptionComponent, OptionTemplateDirective, PaginationComponent, ProgressComponent, RadioComponent, RadioGroupComponent, RangeSliderComponent, SegmentedComponent, SelectComponent, ShellComponent, SidebarComponent, SidebarService, SidebarToggleComponent, SkeletonComponent, SliderComponent, SpinnerComponent, SplitComponent, SplitPaneComponent, StepperComponent, SwitchComponent, TAB_DATA, TAB_REF, TREE_HOST, TabActivePipe, TabComponent, TabIconDirective, TabRef, TableComponent, TabsComponent, TabsService, TemplateInputComponent, TemplateInputSuffixDirective, TextareaComponent, TimepickerComponent, ToastRef, ToastService, TooltipDirective, TreeComponent, TreeNodeComponent, Validators, VariablePopoverDirective, jsonToTreeNodes };
2528
+ export type { AccordionVariant, AlertVariant, AsyncSearchFn, AsyncSelectOption, BadgeSize, BadgeVariant, BreadcrumbItem, ButtonColor, ButtonSize, ButtonVariant, CardPadding, CardVariant, CarouselImage, CheckboxSize, ChipInputSize, ChipInputVariant, ChipTemplateContext, CircularProgressSize, CircularProgressVariant, DateRange, DateRangeValue, DatepickerSize, DatepickerVariant, DatepickerView, DatetimepickerSize, DatetimepickerVariant, DatetimepickerView, DialogConfig, DropdownAlign, DropdownPosition, DynamicTabConfig, DynamicTabsSize, DynamicTabsVariant, FileChooserSize, FileChooserVariant, ImageUploaderItem, InputType, JsonKind, JsonNodeMeta, JsonToTreeOptions, LightboxConfig, Loadable, ModalSize, OptionTemplateContext, PaginationSize, ProgressSize, ProgressVariant, RadioGroupOrientation, RadioGroupSize, RadioGroupVariant, RangeSliderBubbles, RangeSliderMode, RangeSliderSize, SegmentedOption, SegmentedSize, SelectSize, SelectVariant, ShellVariant, SkeletonVariant, SliderSize, SortDirection, SortState, SpinnerSize, SpinnerVariant, SplitGutterSize, SplitOrientation, SplitSizeChange, StepperStep, SwitchSize, TabRenderMode, TableColumn, TabsSize, TabsVariant, TemplateVariable, TextareaResize, TimeFormat, TimeValue, TimepickerSize, TimepickerVariant, ToastConfig, ToastPosition, ToastVariant, TooltipPosition, TreeDropPosition, TreeFormatter, TreeLabelToken, TreeNode, TreeNodeActionType, TreeNodeContextAction, TreeNodeDropEvent, ValidationError, ValidationState, ValidatorFn, VariablePopoverContext, VariableState };