@coreui/angular-pro 5.7.21 → 5.7.22

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": "@coreui/angular-pro",
3
- "version": "5.7.21",
3
+ "version": "5.7.22",
4
4
  "description": "CoreUI Pro Components Library for Angular",
5
5
  "copyright": "Copyright 2026 creativeLabs Łukasz Holeczek",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -36,6 +36,8 @@ type BackgroundColors = Colors | 'body' | 'white' | 'transparent';
36
36
  type Directions = 'down' | 'up' | 'start' | 'end' | '';
37
37
  type TextColors = Colors | 'primary-emphasis' | 'secondary-emphasis' | 'success-emphasis' | 'danger-emphasis' | 'warning-emphasis' | 'info-emphasis' | 'light-emphasis' | 'body' | 'body-emphasis' | 'body-secondary' | 'body-tertiary' | 'black' | 'black-50' | 'white' | 'white-50' | string;
38
38
  type Alignment = 'baseline' | 'top' | 'middle' | 'bottom' | 'text-top' | 'text-bottom';
39
+ type DropdownDirection = 'start' | 'end';
40
+ type DropdownAlignment = DropdownDirection | Partial<Record<BreakpointInfixStrings, DropdownDirection>>;
39
41
  type BadgePositions = 'top-start' | 'top-end' | 'bottom-end' | 'bottom-start' | string | undefined;
40
42
  type Placements = 'auto' | 'auto-start' | 'auto-end' | 'top-end' | 'top' | 'top-start' | 'bottom-end' | 'bottom' | 'bottom-start' | 'right-start' | 'right' | 'right-end' | 'left-start' | 'left' | 'left-end' | undefined;
41
43
  type Shapes = 'rounded' | 'rounded-top' | 'rounded-end' | 'rounded-bottom' | 'rounded-start' | 'rounded-circle' | 'rounded-pill' | 'rounded-0' | 'rounded-1' | 'rounded-2' | 'rounded-3' | string;
@@ -407,7 +409,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
407
409
  * - `'lg'`: Large size variant
408
410
  * - `undefined`: Default/medium size
409
411
  */
410
- readonly sizing: _angular_core.InputSignal<string | undefined>;
412
+ readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
411
413
  /**
412
414
  * Set form input validation state to valid.
413
415
  * @default undefined
@@ -710,7 +712,7 @@ declare class BreadcrumbItemComponent {
710
712
  readonly active: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
711
713
  /**
712
714
  * The `url` prop for the inner `[routerLink]` directive
713
- * @returns string
715
+ * @returns string | any[]
714
716
  */
715
717
  readonly url: _angular_core.InputSignal<string | any[] | undefined>;
716
718
  /**
@@ -804,7 +806,7 @@ declare class ButtonDirective {
804
806
  * Size the component small or large.
805
807
  * @returns 'sm' | 'lg' | ''
806
808
  */
807
- readonly size: InputSignal<string>;
809
+ readonly size: InputSignal<"" | "sm" | "lg">;
808
810
  /**
809
811
  * The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
810
812
  */
@@ -852,9 +854,9 @@ declare class ButtonModule {
852
854
  declare class ButtonGroupComponent {
853
855
  /**
854
856
  * Size the component small or large.
855
- * @returns '' | 'sm' | 'lg' | string
857
+ * @returns '' | 'sm' | 'lg'
856
858
  */
857
- readonly size: _angular_core.InputSignal<string | undefined>;
859
+ readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
858
860
  /**
859
861
  * Create a set of buttons that appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.
860
862
  * @returns boolean
@@ -1302,6 +1304,10 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1302
1304
  * @returns string
1303
1305
  */
1304
1306
  readonly ariaPrevYearLabel: _angular_core.InputSignal<string>;
1307
+ /**
1308
+ * Event emitted on calendar cell hover.
1309
+ * @returns Date | null
1310
+ */
1305
1311
  readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
1306
1312
  readonly hoverDate: _angular_core.WritableSignal<Date | null>;
1307
1313
  readonly hoverDateEffect: _angular_core.EffectRef;
@@ -1468,7 +1474,7 @@ declare class CardHeaderActionsComponent {
1468
1474
  declare class CardImgDirective {
1469
1475
  /**
1470
1476
  * Optionally orientate the image to the top, bottom, or make it overlaid across the card.
1471
- * @returns {'top | 'bottom'}
1477
+ * @returns 'top' | 'bottom' | 'start' | 'end'
1472
1478
  */
1473
1479
  readonly orientation: _angular_core.InputSignal<"start" | "end" | "top" | "bottom" | undefined>;
1474
1480
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -1539,7 +1545,7 @@ declare class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
1539
1545
  readonly interval: _angular_core.WritableSignal<number>;
1540
1546
  /**
1541
1547
  * Sets which event handlers you’d like provided to your pause prop. You can specify one trigger or an array of them.
1542
- * @returns 'hover' | 'focus' | 'click'
1548
+ * @returns Triggers | Triggers[] | false
1543
1549
  */
1544
1550
  readonly pause: _angular_core.InputSignal<false | Triggers | Triggers[]>;
1545
1551
  /**
@@ -1878,7 +1884,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1878
1884
  * @returns 'sm' | 'lg' | undefined
1879
1885
  * @default undefined
1880
1886
  */
1881
- readonly size: _angular_core.InputSignal<string | undefined>;
1887
+ readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
1882
1888
  /**
1883
1889
  * Keep track of the time with the date value.
1884
1890
  * @returns boolean
@@ -2150,9 +2156,9 @@ declare class DropdownMenuDirective implements OnInit, AfterContentInit {
2150
2156
  readonly elementRef: ElementRef;
2151
2157
  /**
2152
2158
  * Set alignment of dropdown menu.
2153
- * @returns 'start' | 'end'
2159
+ * @returns DropdownAlignment
2154
2160
  */
2155
- readonly alignment: _angular_core.InputSignal<string | undefined>;
2161
+ readonly alignment: _angular_core.InputSignal<DropdownAlignment | undefined>;
2156
2162
  /**
2157
2163
  * Toggle the visibility of dropdown menu component.
2158
2164
  * @returns boolean
@@ -2179,6 +2185,7 @@ interface IDropdownState {
2179
2185
  declare class DropdownService {
2180
2186
  #private;
2181
2187
  readonly dropdownState$: rxjs.Observable<any>;
2188
+ readonly alignment: _angular_core.WritableSignal<DropdownAlignment | undefined>;
2182
2189
  toggle(state: IDropdownState): void;
2183
2190
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownService, never>;
2184
2191
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<DropdownService>;
@@ -2228,18 +2235,21 @@ declare class DropdownComponent implements OnDestroy, OnInit {
2228
2235
  constructor();
2229
2236
  /**
2230
2237
  * Set alignment of dropdown menu.
2231
- * @returns {'start' | 'end' | { xs: 'start' | 'end' } | { sm: 'start' | 'end' } | { md: 'start' | 'end' } | { lg: 'start' | 'end' } | { xl: 'start' | 'end'} | { xxl: 'start' | 'end'}}
2238
+ * @returns DropdownAlignment
2232
2239
  */
2233
- readonly alignment: _angular_core.InputSignal<string | undefined>;
2240
+ readonly alignment: _angular_core.InputSignal<DropdownAlignment | undefined>;
2234
2241
  /**
2235
- * Automatically close dropdown when clicking outside the dropdown menu.
2242
+ * Configure the auto close behavior: `true` closes the dropdown on a click inside or
2243
+ * outside the menu, `false` only on the toggle button or an explicit hide/toggle call
2244
+ * and not on the Esc key, `inside` only on a click inside the menu, `outside` only on
2245
+ * a click outside it.
2236
2246
  * @returns boolean | 'inside' | 'outside'
2237
2247
  * @default true
2238
2248
  */
2239
2249
  readonly autoClose: _angular_core.InputSignal<boolean | "inside" | "outside">;
2240
2250
  /**
2241
2251
  * Sets a specified direction and location of the dropdown menu.
2242
- * @returns 'dropup' | 'dropend' | 'dropstart'
2252
+ * @returns 'center' | 'dropup' | 'dropup-center' | 'dropend' | 'dropstart'
2243
2253
  */
2244
2254
  readonly direction: _angular_core.InputSignal<"center" | "dropup" | "dropup-center" | "dropend" | "dropstart" | undefined>;
2245
2255
  /**
@@ -2256,8 +2266,10 @@ declare class DropdownComponent implements OnDestroy, OnInit {
2256
2266
  */
2257
2267
  readonly popper: _angular_core.InputSignalWithTransform<boolean, unknown>;
2258
2268
  /**
2259
- * Optional popper Options object, `placement` prop takes precedence over
2269
+ * Optional Popper.js options object; the `placement` prop takes precedence over the
2270
+ * placement set here. See https://popper.js.org/docs/v2/constructors/#options
2260
2271
  * @returns Partial<Options>
2272
+ * @default {}
2261
2273
  */
2262
2274
  readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
2263
2275
  set popperOptions(value: Partial<Options>);
@@ -2486,7 +2498,7 @@ declare class FormCheckComponent {
2486
2498
  * Size the component large or extra large. Works only with `[switch]="true"`
2487
2499
  * @default undefined
2488
2500
  */
2489
- readonly sizing: _angular_core.InputSignal<string | undefined>;
2501
+ readonly sizing: _angular_core.InputSignal<"" | "lg" | "xl" | undefined>;
2490
2502
  /**
2491
2503
  * Render a toggle switch on for checkbox.
2492
2504
  * @returns boolean
@@ -2505,7 +2517,7 @@ declare class FormControlDirective implements OnInit {
2505
2517
  * Size the component small or large.
2506
2518
  * @default undefined
2507
2519
  */
2508
- readonly sizing: _angular_core.InputSignal<string | undefined>;
2520
+ readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
2509
2521
  /**
2510
2522
  * Set component validation state to valid.
2511
2523
  * @default undefined
@@ -2588,7 +2600,7 @@ declare class FormLabelDirective {
2588
2600
  * Size the label small or large.
2589
2601
  * @default ''
2590
2602
  */
2591
- readonly sizing: _angular_core.InputSignal<string | undefined>;
2603
+ readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
2592
2604
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
2593
2605
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<FormLabelDirective, never>;
2594
2606
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<FormLabelDirective, "[cLabel]", never, { "col": { "alias": "cLabel"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -2625,7 +2637,7 @@ declare class FormPasswordDirective implements OnDestroy, OnInit {
2625
2637
  * Size the component small or large.
2626
2638
  * @default undefined
2627
2639
  */
2628
- readonly sizing: _angular_core.InputSignal<string | undefined>;
2640
+ readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
2629
2641
  /**
2630
2642
  * Set component validation state to valid.
2631
2643
  * @default undefined
@@ -2651,7 +2663,7 @@ declare class FormSelectDirective {
2651
2663
  * Size the component small or large.
2652
2664
  * @default undefined
2653
2665
  */
2654
- readonly sizing: _angular_core.InputSignal<string | undefined>;
2666
+ readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
2655
2667
  /**
2656
2668
  * Set component validation state to valid.
2657
2669
  * @default undefined
@@ -2671,7 +2683,7 @@ declare class InputGroupComponent {
2671
2683
  /**
2672
2684
  * Size the component small or large.
2673
2685
  */
2674
- readonly sizing: _angular_core.InputSignal<string | undefined>;
2686
+ readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
2675
2687
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
2676
2688
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<InputGroupComponent, never>;
2677
2689
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<InputGroupComponent, "c-input-group", never, { "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
@@ -3018,7 +3030,7 @@ declare class ListGroupItemDirective {
3018
3030
  readonly active: InputSignalWithTransform<boolean, unknown>;
3019
3031
  /**
3020
3032
  * Sets the color context of the component to one of CoreUI’s themed colors.
3021
- * @returns InputSignal<Colors | undefined>
3033
+ * @returns Colors
3022
3034
  */
3023
3035
  readonly color: InputSignal<string | undefined>;
3024
3036
  /**
@@ -3418,7 +3430,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
3418
3430
  * Size the component small or large.
3419
3431
  * @returns 'sm' | 'lg' | undefined
3420
3432
  */
3421
- readonly size: _angular_core.InputSignal<string | undefined>;
3433
+ readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
3422
3434
  /**
3423
3435
  * Initial value of multi-select
3424
3436
  * @returns (TValue | TValue[])
@@ -3690,8 +3702,7 @@ declare class NavbarTogglerDirective {
3690
3702
  constructor();
3691
3703
  /**
3692
3704
  * Reference to navbar collapse element (via # template variable)
3693
- * @returns string
3694
- * @default 'button'
3705
+ * @returns CollapseDirective
3695
3706
  */
3696
3707
  readonly collapseRef: _angular_core.InputSignal<CollapseDirective | undefined>;
3697
3708
  /**
@@ -4151,7 +4162,7 @@ declare class OneTimePasswordComponent implements ControlValueAccessor {
4151
4162
  * Sets the visual size of the Angular one-time password (OTP) input. Use 'sm' for small or 'lg' for large input fields.
4152
4163
  * @default: undefined
4153
4164
  */
4154
- readonly sizing: _angular_core.InputSignal<string | undefined>;
4165
+ readonly sizing: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
4155
4166
  /**
4156
4167
  * Input validation type: 'number' for digits only, or 'text' for free text.
4157
4168
  * @default: 'number'
@@ -4244,9 +4255,9 @@ declare class PaginationComponent {
4244
4255
  readonly align: _angular_core.InputSignal<"" | "start" | "end" | "center">;
4245
4256
  /**
4246
4257
  * Size the component small or large.
4247
- * @returns '' | 'sm' | 'lg' | string
4258
+ * @returns '' | 'sm' | 'lg'
4248
4259
  */
4249
- readonly size: _angular_core.InputSignal<string | undefined>;
4260
+ readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
4250
4261
  /**
4251
4262
  * Default role for pagination
4252
4263
  * @returns string
@@ -4602,7 +4613,7 @@ declare class RatingComponent implements ControlValueAccessor {
4602
4613
  * @returns: 'sm' | 'lg' | 'custom' | undefined
4603
4614
  * @default: undefined
4604
4615
  */
4605
- readonly size: _angular_core.InputSignal<string | undefined>;
4616
+ readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | "custom" | undefined>;
4606
4617
  /**
4607
4618
  * Enable tooltips with default values or set specific labels for each icon.
4608
4619
  * @returns: boolean | string[] | undefined
@@ -4637,7 +4648,7 @@ declare class RatingComponent implements ControlValueAccessor {
4637
4648
  readonly ratingItems: _angular_core.Signal<number[][]>;
4638
4649
  readonly ratingItemLabels: _angular_core.Signal<readonly RatingItemLabelComponent[]>;
4639
4650
  readonly hostClasses: _angular_core.Signal<{
4640
- [x: string]: string | boolean | undefined;
4651
+ [x: string]: boolean | "" | "sm" | "lg" | "custom" | undefined;
4641
4652
  rating: boolean;
4642
4653
  disabled: boolean;
4643
4654
  readonly: boolean;
@@ -5498,7 +5509,7 @@ declare class SmartPaginationComponent {
5498
5509
  * Size the component small or large.
5499
5510
  * @values 'sm', 'lg'
5500
5511
  */
5501
- readonly size: _angular_core.InputSignal<string | undefined>;
5512
+ readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
5502
5513
  /**
5503
5514
  * Default role for pagination.
5504
5515
  * @returns string
@@ -6551,6 +6562,11 @@ declare class TabPaneComponent implements OnDestroy {
6551
6562
  show: boolean;
6552
6563
  active: boolean;
6553
6564
  };
6565
+ /**
6566
+ * Element role.
6567
+ * @returns string
6568
+ * @default 'tabpanel'
6569
+ */
6554
6570
  role: string;
6555
6571
  ngOnDestroy(): void;
6556
6572
  subscribeTabService(subscribe?: boolean): void;
@@ -6636,7 +6652,7 @@ declare class TabsComponent {
6636
6652
  readonly tabsService: TabsService;
6637
6653
  /**
6638
6654
  * The active item key.
6639
- * @returns <string | number | undefined>
6655
+ * @returns number | string
6640
6656
  */
6641
6657
  readonly activeItemKey: _angular_core.ModelSignal<string | number | undefined>;
6642
6658
  /**
@@ -6892,7 +6908,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
6892
6908
  * @returns 'sm' | 'lg' | undefined
6893
6909
  * @default undefined
6894
6910
  */
6895
- readonly size: _angular_core.InputSignal<string | undefined>;
6911
+ readonly size: _angular_core.InputSignal<"" | "sm" | "lg" | undefined>;
6896
6912
  /**
6897
6913
  * Initially selected time.
6898
6914
  * @returns Date | string | null | number
@@ -7547,7 +7563,7 @@ declare class WidgetStatFComponent extends CardComponent {
7547
7563
  readonly title: _angular_core.InputSignal<string | undefined>;
7548
7564
  /**
7549
7565
  * Value for your widget to display
7550
- * @returns string
7566
+ * @returns string | number
7551
7567
  */
7552
7568
  readonly value: _angular_core.InputSignal<string | number | undefined>;
7553
7569
  readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
@@ -7567,4 +7583,4 @@ declare class WidgetModule {
7567
7583
  }
7568
7584
 
7569
7585
  export { AccordionButtonDirective, AccordionComponent, AccordionItemComponent, AccordionModule, AlertComponent, AlertHeadingDirective, AlertLinkDirective, AlertModule, AlignDirective, AutocompleteDirective, AutocompleteModule, AvatarComponent, AvatarModule, BackdropService, BadgeComponent, BadgeModule, BgColorDirective, BorderDirective, BreadcrumbComponent, BreadcrumbItemComponent, BreadcrumbModule, BreadcrumbRouterComponent, BreadcrumbRouterService, BreakpointInfix, ButtonCloseDirective, ButtonDirective, ButtonGroupComponent, ButtonGroupModule, ButtonModule, ButtonToolbarComponent, CalendarComponent, CalendarModule, CalendarMonthComponent, CalendarNavigationComponent, CalloutComponent, CalloutModule, CardBodyComponent, CardComponent, CardFooterComponent, CardGroupComponent, CardHeaderActionsComponent, CardHeaderComponent, CardImgDirective, CardImgOverlayComponent, CardLinkDirective, CardModule, CardSubtitleDirective, CardTextDirective, CardTitleDirective, CarouselCaptionComponent, CarouselComponent, CarouselConfig, CarouselControlComponent, CarouselIndicatorsComponent, CarouselInnerComponent, CarouselItemComponent, CarouselModule, ClassToggleService, ColComponent, ColDirective, CollapseDirective, CollapseModule, ColorModeService, ContainerComponent, DatePickerComponent, DatePickerModule, DateRangePickerComponent, DateRangePickerModule, DropdownCloseDirective, DropdownComponent, DropdownDividerDirective, DropdownHeaderDirective, DropdownItemDirective, DropdownItemPlainDirective, DropdownMenuDirective, DropdownModule, DropdownService, DropdownToggleDirective, ElementCoverComponent, ElementCoverModule, ElementRefDirective, FooterComponent, FooterModule, FormCheckComponent, FormCheckInputDirective, FormCheckLabelDirective, FormControlDirective, FormDirective, FormFeedbackComponent, FormFloatingDirective, FormLabelDirective, FormModule, FormPasswordDirective, FormSelectDirective, FormTextDirective, GridModule, GutterDirective, HeaderBrandComponent, HeaderComponent, HeaderDividerComponent, HeaderModule, HeaderNavComponent, HeaderTextComponent, HeaderTogglerDirective, HtmlAttributesDirective, ImgDirective, ImgModule, InMemoryStorageService, InputGroupComponent, InputGroupTextDirective, IntersectionService, ListGroupDirective, ListGroupItemDirective, ListGroupModule, ListenersService, LoadingButtonComponent, LoadingButtonModule, LocalStorageService, ModalBodyComponent, ModalComponent, ModalContentComponent, ModalDialogComponent, ModalFooterComponent, ModalHeaderComponent, ModalModule, ModalService, ModalTitleDirective, ModalToggleDirective, MultiSelectComponent, MultiSelectModule, MultiSelectOptgroupComponent, MultiSelectOptgroupLabelComponent, MultiSelectOptionComponent, NavComponent, NavItemComponent, NavLinkDirective, NavModule, NavbarBrandDirective, NavbarComponent, NavbarModule, NavbarNavComponent, NavbarTextComponent, NavbarTogglerDirective, OffcanvasBodyComponent, OffcanvasComponent, OffcanvasHeaderComponent, OffcanvasModule, OffcanvasService, OffcanvasTitleDirective, OffcanvasToggleDirective, OneTimePasswordComponent, OneTimePasswordModule, OtpDirective, PageItemComponent, PageItemDirective, PageLinkDirective, PaginationComponent, PaginationModule, PlaceholderAnimationDirective, PlaceholderDirective, PlaceholderModule, PopoverComponent, PopoverDirective, PopoverModule, ProgressBarComponent, ProgressBarDirective, ProgressComponent, ProgressModule, ProgressStackedComponent, RangeSliderComponent, RangeSliderModule, RatingComponent, RatingModule, RoundedDirective, RowComponent, RowDirective, RtlService, SearchButtonComponent, SearchButtonModule, ShadowOnScrollDirective, SharedModule, SidebarBrandComponent, SidebarComponent, SidebarFooterComponent, SidebarHeaderComponent, SidebarModule, SidebarNavComponent, SidebarNavHelper, SidebarService, SidebarToggleDirective, SidebarTogglerDirective, SmartPaginationComponent, SmartPaginationModule, SmartTableComponent, SmartTableFilterComponent, SmartTableModule, SpinnerComponent, SpinnerModule, StepButtonDirective, StepperComponent, StepperModule, StepperStepComponent, TabContentComponent, TabContentRefDirective, TabDirective, TabPaneComponent, TabPanelComponent, TabService, TableActiveDirective, TableColorDirective, TableDirective, TableModule, Tabs2Module, TabsComponent, TabsContentComponent, TabsListComponent, TabsModule, TabsService, TemplateIdDirective, TextBgColorDirective, TextColorDirective, ThemeDirective, TimePickerComponent, TimePickerModule, ToastBodyComponent, ToastCloseDirective, ToastComponent, ToastContentComponent, ToastHeaderComponent, ToastModule, ToasterComponent, ToasterHostDirective, ToasterPlacement, ToasterService, TooltipComponent, TooltipDirective, TooltipModule, UIDService, UtilitiesModule, WidgetModule, WidgetStatAComponent, WidgetStatBComponent, WidgetStatCComponent, WidgetStatDComponent, WidgetStatEComponent, WidgetStatFComponent };
7570
- export type { Alignment, AutocompleteOption, BackgroundColors, BadgePositions, BooleanInput, BreakpointInfixStrings, Breakpoints, ButtonType, ColorMode, Colors, Directions, IAutocompleteOption, IAutocompleteOptionBase, IAutocompleteOptionNorm, IBreadcrumbItem, ICalendarRanges, IColumn, IColumnFilter, IColumnFilterValue, IGroup, IIntersectionObserverInit, IItem, IItemInternal, IListenersConfig, INavAttributes$1 as INavAttributes, INavData, INavLinkProps$1 as INavLinkProps, IOption, IProgress, IProgressBar, IProgressBarStacked, ISmartTable, ISorter, ISorterValue, ITableCellProps, ITableFilter, ITableHeaderCellProps, ITableSectionProps, InputType, ItemsPerPageSelect, Label, NgCssClass, NumberInput, Placements, Positions, Search, SearchButtonShortcut, SearchFn, Shapes, Sizes, SortOrder, StepperRef, StepperStepData, StepperStepValidationResult, TToasterPlacement, TextColors, ThumbSize, Triggers, ValueOrigin };
7586
+ export type { Alignment, AutocompleteOption, BackgroundColors, BadgePositions, BooleanInput, BreakpointInfixStrings, Breakpoints, ButtonType, ColorMode, Colors, Directions, DropdownAlignment, DropdownDirection, IAutocompleteOption, IAutocompleteOptionBase, IAutocompleteOptionNorm, IBreadcrumbItem, ICalendarRanges, IColumn, IColumnFilter, IColumnFilterValue, IGroup, IIntersectionObserverInit, IItem, IItemInternal, IListenersConfig, INavAttributes$1 as INavAttributes, INavData, INavLinkProps$1 as INavLinkProps, IOption, IProgress, IProgressBar, IProgressBarStacked, ISmartTable, ISorter, ISorterValue, ITableCellProps, ITableFilter, ITableHeaderCellProps, ITableSectionProps, InputType, ItemsPerPageSelect, Label, NgCssClass, NumberInput, Placements, Positions, Search, SearchButtonShortcut, SearchFn, Shapes, Sizes, SortOrder, StepperRef, StepperStepData, StepperStepValidationResult, TToasterPlacement, TextColors, ThumbSize, Triggers, ValueOrigin };