@coreui/angular-pro 5.7.18 → 5.7.20

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.
@@ -12,6 +12,7 @@ import { FocusableOption, FocusMonitor, FocusOrigin } from '@angular/cdk/a11y';
12
12
  import * as node_modules_rxjs_dist_types from 'node_modules/rxjs/dist/types';
13
13
  import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
14
14
  import { SelectionModel, SelectionChange } from '@angular/cdk/collections';
15
+ import { DomPortal, DomPortalOutlet } from '@angular/cdk/portal';
15
16
  import { AnimationEvent } from '@angular/animations';
16
17
 
17
18
  declare type BooleanInput = string | boolean | null | undefined;
@@ -72,6 +73,10 @@ declare class ElementRefDirective {
72
73
 
73
74
  declare class HtmlAttributesDirective {
74
75
  #private;
76
+ /**
77
+ * A map of HTML attributes (including `class` and `style`) to set on the host element.
78
+ * @returns Record<string, any>
79
+ */
75
80
  readonly cHtmlAttr: _angular_core.InputSignal<Record<string, any> | undefined>;
76
81
  private setStyle;
77
82
  private addClass;
@@ -82,6 +87,10 @@ declare class HtmlAttributesDirective {
82
87
 
83
88
  declare class TemplateIdDirective {
84
89
  readonly templateRef: TemplateRef<any>;
90
+ /**
91
+ * Predefined template name (id) for optional slots
92
+ * @returns string
93
+ */
85
94
  readonly cTemplateId: _angular_core.InputSignal<string>;
86
95
  get id(): string;
87
96
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TemplateIdDirective, never>;
@@ -92,12 +101,12 @@ declare class ThemeDirective {
92
101
  #private;
93
102
  /**
94
103
  * Add dark theme attribute.
95
- * @return 'dark' | 'light' | undefined
104
+ * @returns 'dark' | 'light' | undefined
96
105
  */
97
106
  readonly colorScheme: _angular_core.InputSignal<"dark" | "light" | undefined>;
98
107
  /**
99
108
  * Add darker controls, indicators, and captions.
100
- * @return boolean
109
+ * @returns boolean
101
110
  * @default false
102
111
  */
103
112
  readonly dark: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -116,13 +125,13 @@ declare class SharedModule {
116
125
 
117
126
  declare class AccordionButtonDirective {
118
127
  /**
119
- * Toggles an accordion button collapsed state. Use in accordionHeaderTemplate. [docs]
120
- * @type boolean
128
+ * Toggles an accordion button collapsed state. Use in accordionHeaderTemplate.
129
+ * @returns boolean
121
130
  */
122
131
  readonly collapsed: _angular_core.InputSignal<boolean | undefined>;
123
132
  /**
124
- * Default type for cAccordionButton. [docs]
125
- * @type string
133
+ * Default type for cAccordionButton
134
+ * @returns string
126
135
  * @default 'button'
127
136
  */
128
137
  readonly type: _angular_core.InputSignal<string>;
@@ -136,12 +145,12 @@ declare class AccordionComponent {
136
145
  #private;
137
146
  /**
138
147
  * Removes the default background-color, some borders, and some rounded corners to render accordions edge-to-edge with their parent container.
139
- * @type boolean
148
+ * @returns boolean
140
149
  */
141
150
  readonly flush: _angular_core.InputSignalWithTransform<boolean, unknown>;
142
151
  /**
143
152
  * Make accordion items stay open when another item is opened
144
- * @type boolean
153
+ * @returns boolean
145
154
  */
146
155
  readonly alwaysOpen: _angular_core.InputSignalWithTransform<boolean, unknown>;
147
156
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -153,7 +162,7 @@ declare class AccordionItemComponent implements OnInit, OnDestroy {
153
162
  #private;
154
163
  /**
155
164
  * Toggle an accordion item programmatically
156
- * @return boolean
165
+ * @returns boolean
157
166
  * @default false
158
167
  */
159
168
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -224,7 +233,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
224
233
  static ngAcceptInputType_visibleItems: NumberInput$1;
225
234
  /**
226
235
  * Optional popper Options object
227
- * @return Partial<Options>
236
+ * @returns Partial<Options>
228
237
  */
229
238
  readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
230
239
  readonly popperOptions: _angular_core.Signal<Partial<Options>>;
@@ -237,13 +246,13 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
237
246
  readonly allowOnlyDefinedOptions: _angular_core.InputSignalWithTransform<boolean, unknown>;
238
247
  /**
239
248
  * Sets the accessible label (`aria-label`) for the button that clears the current selection. This improves accessibility for screen readers.
240
- * @return string
249
+ * @returns string
241
250
  * @since 5.7.7
242
251
  */
243
252
  readonly ariaCleanerLabel: _angular_core.InputSignal<string>;
244
253
  /**
245
254
  * Sets the accessible label (`aria-label`) for the dropdown toggle indicator button. This improves accessibility for screen readers.
246
- * @return string
255
+ * @returns string
247
256
  * @since 5.7.7
248
257
  */
249
258
  readonly ariaIndicatorLabel: _angular_core.InputSignal<string>;
@@ -290,14 +299,14 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
290
299
  /**
291
300
  * Unique identifier for the Autocomplete component.
292
301
  * If not provided, a default ID will be generated.
293
- * @return string
302
+ * @returns string
294
303
  * @default 'autocomplete-<nextId>'
295
304
  */
296
305
  readonly idInput: _angular_core.InputSignal<string | undefined>;
297
306
  /**
298
307
  * Unique identifier for the Autocomplete component.
299
308
  * If `idInput` is not provided, a default ID will be generated.
300
- * @return string
309
+ * @returns string
301
310
  */
302
311
  readonly id: _angular_core.Signal<string>;
303
312
  /**
@@ -308,7 +317,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
308
317
  readonly indicator: _angular_core.InputSignalWithTransform<boolean, unknown>;
309
318
  /**
310
319
  * The size of the option item in the list (in pixels).
311
- * @return number
320
+ * @returns number
312
321
  * @default 40
313
322
  */
314
323
  readonly itemSize: _angular_core.InputSignalWithTransform<number, unknown>;
@@ -450,7 +459,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
450
459
  readonly optionChange: _angular_core.OutputEmitterRef<IAutocompleteOption | null>;
451
460
  /**
452
461
  * Event emitted on `value` change.
453
- * @return string | null
462
+ * @returns string | null
454
463
  */
455
464
  readonly valueChange: _angular_core.OutputEmitterRef<string | null>;
456
465
  /**
@@ -492,41 +501,44 @@ declare class AlertComponent {
492
501
  #private;
493
502
  /**
494
503
  * Sets the color context of the component to one of CoreUI’s themed colors.
495
- * @return Colors
504
+ * @returns Colors
496
505
  * @default 'primary'
497
506
  */
498
507
  readonly color: _angular_core.InputSignal<string>;
499
508
  /**
500
- * Default role for alert. [docs]
501
- * @return string
509
+ * Default role for alert
510
+ * @returns string
502
511
  * @default 'alert'
503
512
  */
504
513
  readonly role: _angular_core.InputSignal<string>;
505
514
  /**
506
515
  * Set the alert variant to a solid.
507
- * @return string
516
+ * @returns string
517
+ * @default 'solid'
508
518
  */
509
519
  readonly variant: _angular_core.InputSignal<"solid" | undefined>;
510
520
  /**
511
521
  * Optionally adds a close button to the alert and allow it to self-dismiss.
512
- * @return boolean
522
+ * @returns boolean
513
523
  * @default false
514
524
  */
515
525
  readonly dismissible: _angular_core.InputSignalWithTransform<boolean, unknown>;
516
526
  /**
517
527
  * Adds animation for dismissible alert.
518
- * @return boolean
528
+ * @returns boolean
529
+ * @default false
519
530
  */
520
531
  readonly fade: _angular_core.InputSignalWithTransform<boolean, unknown>;
521
532
  /**
522
533
  * Toggle the visibility of the alert component.
523
- * @return boolean
534
+ * @returns boolean
535
+ * @default true
524
536
  */
525
537
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
526
538
  readonly visible: _angular_core.WritableSignal<boolean>;
527
539
  /**
528
540
  * Event triggered on the alert visibility change.
529
- * @return boolean
541
+ * @returns boolean
530
542
  */
531
543
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
532
544
  protected readonly hide: _angular_core.WritableSignal<boolean>;
@@ -549,7 +561,7 @@ declare class AlertModule {
549
561
  declare class TextColorDirective {
550
562
  /**
551
563
  * Set text-color of element
552
- * @type TextColors
564
+ * @returns TextColors
553
565
  */
554
566
  readonly color: InputSignal<TextColors>;
555
567
  readonly hostClasses: _angular_core.Signal<{
@@ -562,38 +574,39 @@ declare class TextColorDirective {
562
574
  declare class AvatarComponent {
563
575
  /**
564
576
  * Sets the background color context of the component to one of CoreUI’s themed colors.
565
- * @return Colors
577
+ * @returns Colors
566
578
  */
567
579
  readonly color: _angular_core.InputSignal<string | undefined>;
568
580
  /**
569
581
  * Select the shape of the component.
570
- * @return Shapes
582
+ * @returns Shapes
571
583
  */
572
584
  readonly shape: _angular_core.InputSignal<string | undefined>;
573
585
  /**
574
586
  * Size the component small, large, or extra large.
587
+ * @returns Omit<Sizes, 'xxl'>
575
588
  * @default 'md'
576
589
  */
577
590
  readonly size: _angular_core.InputSignal<Omit<string, "xxl">>;
578
591
  /**
579
592
  * The alt attribute for the img element alternate text.
580
- * @return string
593
+ * @returns string
581
594
  */
582
595
  readonly alt: _angular_core.InputSignal<string>;
583
596
  /**
584
597
  * The src attribute for the img element.
585
- * @return string
598
+ * @returns string
586
599
  */
587
600
  readonly src: _angular_core.InputSignal<string | undefined>;
588
601
  /**
589
602
  * Sets the color context of the status indicator to one of CoreUI’s themed colors.
590
- * @return Colors
603
+ * @returns Colors
591
604
  */
592
605
  readonly status: _angular_core.InputSignal<string | undefined>;
593
606
  /**
594
- * Sets the text color of the component to one of CoreUI’s themed colors.
607
+ * Sets the text color of the component to one of CoreUI’s themed colors
595
608
  * via TextColorDirective
596
- * @return TextColors
609
+ * @returns TextColors
597
610
  */
598
611
  readonly textColor: _angular_core.InputSignal<string | undefined>;
599
612
  readonly statusClass: _angular_core.Signal<Record<string, boolean>>;
@@ -611,7 +624,7 @@ declare class AvatarModule {
611
624
  declare class TextBgColorDirective {
612
625
  /**
613
626
  * Set text-bg-color of element
614
- * @type Colors
627
+ * @returns Colors
615
628
  */
616
629
  readonly textBgColor: InputSignal<Colors>;
617
630
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -622,17 +635,17 @@ declare class TextBgColorDirective {
622
635
  declare class BadgeComponent {
623
636
  /**
624
637
  * Sets the color context of the component to one of CoreUI’s themed colors.
625
- * @type Colors
638
+ * @returns Colors
626
639
  */
627
640
  readonly color: InputSignal<Colors | undefined>;
628
641
  /**
629
642
  * Position badge in one of the corners of a link or button.
630
- * @type BadgePositions
643
+ * @returns BadgePositions
631
644
  */
632
645
  readonly position: InputSignal<BadgePositions | undefined>;
633
646
  /**
634
647
  * Select the shape of the component.
635
- * @type Shapes
648
+ * @returns Shapes
636
649
  */
637
650
  readonly shape: InputSignal<Shapes | undefined>;
638
651
  /**
@@ -642,13 +655,13 @@ declare class BadgeComponent {
642
655
  /**
643
656
  * Sets the text color of the component to one of CoreUI’s themed colors.
644
657
  * via TextColorDirective
645
- * @type TextColors
658
+ * @returns TextColors
646
659
  */
647
660
  readonly textColor: InputSignal<TextColors | undefined>;
648
661
  /**
649
662
  * Sets the component's color scheme to one of CoreUI's themed colors, ensuring the text color contrast adheres to the WCAG 4.5:1 contrast ratio standard for accessibility.
650
663
  * via TextBgColorDirective
651
- * @type Colors
664
+ * @returns Colors
652
665
  * @since 5.0.0
653
666
  */
654
667
  readonly textBgColor: InputSignal<Colors | undefined>;
@@ -691,24 +704,27 @@ interface IBreadcrumbItem {
691
704
  declare class BreadcrumbItemComponent {
692
705
  #private;
693
706
  /**
694
- * Toggle the active state for the component. [docs]
695
- * @return boolean
707
+ * Toggle the active state for the component
708
+ * @returns boolean
696
709
  */
697
710
  readonly active: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
698
711
  /**
699
- * The `url` prop for the inner `[routerLink]` directive. [docs]
700
- * @return string
712
+ * The `url` prop for the inner `[routerLink]` directive
713
+ * @returns string
701
714
  */
702
715
  readonly url: _angular_core.InputSignal<string | any[] | undefined>;
703
716
  /**
704
- * Additional html attributes for link. [docs]
705
- * @return INavAttributes
717
+ * Additional html attributes for link
718
+ * @returns INavAttributes
706
719
  */
707
720
  readonly attribs: _angular_core.InputSignal<INavAttributes$1 | undefined>;
721
+ /**
722
+ * @deprecated The `attributes` prop is deprecated, use `attribs` instead
723
+ */
708
724
  protected readonly _attributes: _angular_core.InputSignal<INavAttributes$1 | undefined>;
709
725
  /**
710
- * Some `NavigationExtras` props for the inner `[routerLink]` directive and `routerLinkActiveOptions`. [docs]
711
- * @return INavLinkProps
726
+ * Some `NavigationExtras` props for the inner `[routerLink]` directive and `routerLinkActiveOptions`
727
+ * @returns INavLinkProps
712
728
  */
713
729
  readonly linkProps: _angular_core.InputSignal<INavLinkProps$1 | undefined>;
714
730
  readonly ariaCurrent: _angular_core.Signal<string | null>;
@@ -719,14 +735,14 @@ declare class BreadcrumbItemComponent {
719
735
 
720
736
  declare class BreadcrumbComponent {
721
737
  /**
722
- * Default aria-label for breadcrumb. [docs]
723
- * @return string
738
+ * Default aria-label for breadcrumb
739
+ * @returns string
724
740
  * @default 'breadcrumb'
725
741
  */
726
742
  readonly ariaLabel: _angular_core.InputSignal<string>;
727
743
  /**
728
- * Default role for breadcrumb. [docs]
729
- * @return string
744
+ * Default role for breadcrumb
745
+ * @returns string
730
746
  * @default 'navigation'
731
747
  */
732
748
  readonly role: _angular_core.InputSignal<string>;
@@ -737,8 +753,8 @@ declare class BreadcrumbComponent {
737
753
  declare class BreadcrumbRouterComponent {
738
754
  #private;
739
755
  /**
740
- * Optional array of IBreadcrumbItem to override default BreadcrumbRouter behavior. [docs]
741
- * @return IBreadcrumbItem[]
756
+ * Optional array of IBreadcrumbItem to override default BreadcrumbRouter behavior
757
+ * @returns IBreadcrumbItem[]
742
758
  */
743
759
  readonly items: _angular_core.InputSignal<IBreadcrumbItem[] | undefined>;
744
760
  readonly breadcrumbs: _angular_core.Signal<IBreadcrumbItem[]>;
@@ -765,28 +781,28 @@ declare class ButtonDirective {
765
781
  static ngAcceptInputType_active: BooleanInput;
766
782
  static ngAcceptInputType_disabled: BooleanInput;
767
783
  /**
768
- * Toggle the active state for the component. [docs]
769
- * @type InputSignalWithTransform<boolean, unknown>
784
+ * Toggle the active state for the component
785
+ * @returns boolean
770
786
  */
771
787
  readonly active: InputSignalWithTransform<boolean, unknown>;
772
788
  /**
773
- * Sets the color context of the component to one of CoreUI’s themed colors. [docs]
774
- * @type InputSignal<Colors>
789
+ * Sets the color context of the component to one of CoreUI’s themed colors
790
+ * @returns Colors
775
791
  */
776
- readonly color: InputSignal<Colors>;
792
+ readonly color: InputSignal<string>;
777
793
  /**
778
794
  * Toggle the disabled state for the component.
779
- * @type InputSignalWithTransform<boolean, unknown>
795
+ * @returns boolean
780
796
  */
781
797
  readonly disabled: InputSignalWithTransform<boolean, unknown>;
782
798
  /**
783
799
  * Select the shape of the component.
784
- * @return Shapes
800
+ * @returns Shapes
785
801
  */
786
802
  readonly shape: InputSignal<string | undefined>;
787
803
  /**
788
804
  * Size the component small or large.
789
- * @return sm' | 'lg' | ''
805
+ * @returns 'sm' | 'lg' | ''
790
806
  */
791
807
  readonly size: InputSignal<string>;
792
808
  /**
@@ -796,15 +812,15 @@ declare class ButtonDirective {
796
812
  /**
797
813
  * Specifies the type of button. Always specify the type attribute for the `<button>` element.
798
814
  * Different browsers may use different default types for the `<button>` element.
799
- * @type InputSignal<ButtonType>
815
+ * @returns ButtonType
800
816
  * @default 'button'
801
817
  */
802
818
  readonly type: InputSignal<ButtonType>;
803
819
  /**
804
820
  * Set the button variant to an outlined button or a ghost button.
805
- * @type InputSignal<'ghost' | 'outline' | undefined>
821
+ * @returns 'ghost' | 'outline' | undefined
806
822
  */
807
- readonly variant: InputSignal<'ghost' | 'outline' | undefined>;
823
+ readonly variant: InputSignal<"outline" | "ghost" | undefined>;
808
824
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
809
825
  readonly _disabled: _angular_core.Signal<boolean>;
810
826
  readonly ariaDisabled: _angular_core.Signal<true | null>;
@@ -818,7 +834,7 @@ declare class ButtonDirective {
818
834
  declare class ButtonCloseDirective extends ButtonDirective {
819
835
  /**
820
836
  * Change the default color to white.
821
- * @type boolean
837
+ * @returns boolean
822
838
  * @deprecated 5.0.0. Use `cButtonClose.dark` instead.
823
839
  */
824
840
  readonly white: InputSignalWithTransform<boolean, unknown>;
@@ -836,17 +852,17 @@ declare class ButtonModule {
836
852
  declare class ButtonGroupComponent {
837
853
  /**
838
854
  * Size the component small or large.
839
- * @return { 'sm' | 'lg' }
855
+ * @returns '' | 'sm' | 'lg' | string
840
856
  */
841
857
  readonly size: _angular_core.InputSignal<string | undefined>;
842
858
  /**
843
859
  * Create a set of buttons that appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.
844
- * @type boolean
860
+ * @returns boolean
845
861
  */
846
862
  readonly vertical: InputSignalWithTransform<boolean, unknown>;
847
863
  /**
848
- * Default role attr for ButtonGroup. [docs]
849
- * @return string
864
+ * Default role attr for ButtonGroup
865
+ * @returns string
850
866
  * @default 'group'
851
867
  */
852
868
  readonly role: _angular_core.InputSignal<string>;
@@ -857,8 +873,8 @@ declare class ButtonGroupComponent {
857
873
 
858
874
  declare class ButtonToolbarComponent {
859
875
  /**
860
- * Default role attr for ButtonToolbar. [docs]
861
- * @type InputSignal<string>
876
+ * Default role attr for ButtonToolbar
877
+ * @returns string
862
878
  * @default 'toolbar'
863
879
  */
864
880
  readonly role: InputSignal<string>;
@@ -987,18 +1003,18 @@ declare class CalendarMonthComponent {
987
1003
  readonly addMonths: _angular_core.Signal<number>;
988
1004
  /**
989
1005
  * Initial selected date.
990
- * @type (Date | null)
1006
+ * @returns (Date | null)
991
1007
  */
992
1008
  readonly startDate: _angular_core.WritableSignal<Date | null>;
993
1009
  /**
994
1010
  * Initial selected to date (range).
995
- * @type Date | null
1011
+ * @returns Date | null
996
1012
  */
997
1013
  readonly endDate: _angular_core.WritableSignal<Date | null>;
998
1014
  readonly datesEffect: _angular_core.EffectRef;
999
1015
  /**
1000
1016
  * Specify the list of dates that cannot be selected.
1001
- * @type Date[] | Date[][]
1017
+ * @returns Date[] | Date[][]
1002
1018
  */
1003
1019
  readonly disabledDates: _angular_core.WritableSignal<(Date | Date[])[]>;
1004
1020
  /**
@@ -1019,19 +1035,19 @@ declare class CalendarMonthComponent {
1019
1035
  readonly locale: _angular_core.WritableSignal<string>;
1020
1036
  /**
1021
1037
  * Allow range selection.
1022
- * @type boolean
1038
+ * @returns boolean
1023
1039
  * @default false
1024
1040
  */
1025
1041
  readonly range: _angular_core.WritableSignal<boolean>;
1026
1042
  /**
1027
1043
  * Set length or format of day name.
1028
- * @type number | 'long' | 'narrow' | 'short'
1044
+ * @returns number | 'long' | 'narrow' | 'short'
1029
1045
  * @default 'short'
1030
1046
  */
1031
1047
  readonly weekdayFormat: _angular_core.WritableSignal<number | "long" | "short" | "narrow">;
1032
1048
  /**
1033
1049
  * Set calendar view.
1034
- * @type 'days' | 'months' | 'years'
1050
+ * @returns 'days' | 'months' | 'years'
1035
1051
  * @default 'days'
1036
1052
  */
1037
1053
  readonly view: _angular_core.WritableSignal<"days" | "months" | "years">;
@@ -1050,7 +1066,7 @@ declare class CalendarMonthComponent {
1050
1066
  readonly listOfYears: _angular_core.Signal<number[][]>;
1051
1067
  /**
1052
1068
  * Default date of the component
1053
- * @type Date
1069
+ * @returns Date
1054
1070
  */
1055
1071
  readonly calendarDate: _angular_core.WritableSignal<Date>;
1056
1072
  readonly date: _angular_core.Signal<Date>;
@@ -1102,7 +1118,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1102
1118
  static ngAcceptInputType_showWeekNumber: BooleanInput$1;
1103
1119
  /**
1104
1120
  * Event emitted on calendar month change.
1105
- * @return Date
1121
+ * @returns Date
1106
1122
  */
1107
1123
  readonly calendarDateChange: _angular_core.OutputEmitterRef<Date>;
1108
1124
  /**
@@ -1123,24 +1139,24 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1123
1139
  /**
1124
1140
  * Set the format of day name.
1125
1141
  * @default 'numeric'
1126
- * @type DayFormatType
1142
+ * @returns DayFormatType
1127
1143
  */
1128
1144
  readonly dayFormat: _angular_core.InputSignal<DayFormatType>;
1129
1145
  readonly dayFormatEffect: _angular_core.EffectRef;
1130
1146
  /**
1131
1147
  * Specify the list of dates that cannot be selected.
1132
- * @type (Date | Date[])[]
1148
+ * @returns (Date | Date[])[]
1133
1149
  */
1134
1150
  readonly disabledDates: _angular_core.InputSignal<(Date | Date[])[]>;
1135
1151
  readonly disabledDatesEffect: _angular_core.EffectRef;
1136
1152
  /**
1137
1153
  * Event emitted on `endDate` change.
1138
- * @return Date | null
1154
+ * @returns Date | null
1139
1155
  */
1140
1156
  readonly endDateChange: _angular_core.OutputEmitterRef<Date | null>;
1141
1157
  /**
1142
1158
  * Event emitted on `startDate` change.
1143
- * @return Date | null
1159
+ * @returns Date | null
1144
1160
  */
1145
1161
  readonly startDateChange: _angular_core.OutputEmitterRef<Date | null>;
1146
1162
  /**
@@ -1167,7 +1183,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1167
1183
  * - 5 - Friday,
1168
1184
  * - 6 - Saturday,
1169
1185
  *
1170
- * @type number
1186
+ * @returns number
1171
1187
  * @default 1
1172
1188
  */
1173
1189
  readonly firstDayOfWeek: _angular_core.InputSignal<DaysOfWeek>;
@@ -1190,45 +1206,45 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1190
1206
  readonly minDateEffect: _angular_core.EffectRef;
1191
1207
  /**
1192
1208
  * Show navigation.
1193
- * @type boolean
1209
+ * @returns boolean
1194
1210
  */
1195
1211
  readonly navigation: _angular_core.InputSignalWithTransform<boolean, unknown>;
1196
1212
  /**
1197
1213
  * Reorder year-month navigation, and render year first.
1198
- * @type boolean
1214
+ * @returns boolean
1199
1215
  * @default false
1200
1216
  */
1201
1217
  readonly navYearFirst: _angular_core.InputSignalWithTransform<boolean, unknown>;
1202
1218
  readonly navYearFirstEffect: _angular_core.EffectRef;
1203
1219
  /**
1204
1220
  * Allow range selection.
1205
- * @type boolean
1221
+ * @returns boolean
1206
1222
  * @default false
1207
1223
  */
1208
1224
  readonly range: _angular_core.InputSignalWithTransform<boolean, unknown>;
1209
1225
  readonly rangeEffect: _angular_core.EffectRef;
1210
1226
  /**
1211
1227
  * Set calendar view.
1212
- * @type 'days' | 'months' | 'years'
1228
+ * @returns 'days' | 'months' | 'years'
1213
1229
  * @default 'days'
1214
1230
  */
1215
1231
  readonly view: _angular_core.ModelSignal<"days" | "months" | "years">;
1216
1232
  /**
1217
1233
  * Set length or format of day name.
1218
- * @type number | 'long' | 'narrow' | 'short'
1234
+ * @returns number | 'long' | 'narrow' | 'short'
1219
1235
  * @default 'short'
1220
1236
  */
1221
1237
  readonly weekdayFormat: _angular_core.InputSignal<WeekdayFormatType>;
1222
1238
  readonly weekdayFormatEffect: _angular_core.EffectRef;
1223
1239
  /**
1224
1240
  * Custom function to determine selectable dates.
1225
- * @return DateFilterType
1241
+ * @returns DateFilterType
1226
1242
  */
1227
1243
  readonly dateFilter: _angular_core.InputSignal<DateFilterType | undefined>;
1228
1244
  readonly dateFilterEffect: _angular_core.EffectRef;
1229
1245
  /**
1230
1246
  * Set whether days in adjacent months shown before or after the current month are selectable. This only applies if the `showAdjacentDays` option is set to true.
1231
- * @type boolean
1247
+ * @returns boolean
1232
1248
  * @default false
1233
1249
  * @since 4.4.10
1234
1250
  */
@@ -1236,7 +1252,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1236
1252
  readonly selectAdjacentDaysEffect: _angular_core.EffectRef;
1237
1253
  /**
1238
1254
  * Set whether to display dates in adjacent months (non-selectable) at the start and end of the current month.
1239
- * @type boolean
1255
+ * @returns boolean
1240
1256
  * @default true
1241
1257
  * @since 4.4.10
1242
1258
  */
@@ -1244,7 +1260,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1244
1260
  readonly showAdjacentDaysEffect: _angular_core.EffectRef;
1245
1261
  /**
1246
1262
  * Specify the type of date selection as day, week, month, or year.
1247
- * @type 'day' | 'week' | 'month' | 'year'
1263
+ * @returns 'day' | 'week' | 'month' | 'year'
1248
1264
  * @default 'day'
1249
1265
  * @since 5.0.0
1250
1266
  */
@@ -1252,7 +1268,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1252
1268
  readonly selectionTypeEffect: _angular_core.EffectRef;
1253
1269
  /**
1254
1270
  * Set whether to display week numbers in the calendar.
1255
- * @type boolean
1271
+ * @returns boolean
1256
1272
  * @default false
1257
1273
  * @since 5.0.0
1258
1274
  */
@@ -1260,7 +1276,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1260
1276
  readonly showWeekNumberEffect: _angular_core.EffectRef;
1261
1277
  /**
1262
1278
  * Label displayed over week numbers in the calendar.
1263
- * @type string
1279
+ * @returns string
1264
1280
  * @default undefined
1265
1281
  * @since 5.0.0
1266
1282
  */
@@ -1268,22 +1284,22 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1268
1284
  readonly weekNumbersLabelEffect: _angular_core.EffectRef;
1269
1285
  /**
1270
1286
  * A string that provides an accessible label for the button that moves to the next month.
1271
- * @return string
1287
+ * @returns string
1272
1288
  */
1273
1289
  readonly ariaNextMonthLabel: _angular_core.InputSignal<string>;
1274
1290
  /**
1275
1291
  * A string that provides an accessible label for the button that moves to the next year.
1276
- * @return string
1292
+ * @returns string
1277
1293
  */
1278
1294
  readonly ariaNextYearLabel: _angular_core.InputSignal<string>;
1279
1295
  /**
1280
1296
  * A string that provides an accessible label for the button that moves to the previous month.
1281
- * @return string
1297
+ * @returns string
1282
1298
  */
1283
1299
  readonly ariaPrevMonthLabel: _angular_core.InputSignal<string>;
1284
1300
  /**
1285
1301
  * A string that provides an accessible label for the button that moves to the previous year.
1286
- * @return string
1302
+ * @returns string
1287
1303
  */
1288
1304
  readonly ariaPrevYearLabel: _angular_core.InputSignal<string>;
1289
1305
  readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
@@ -1297,7 +1313,7 @@ declare class CalendarComponent implements OnInit, AfterViewInit {
1297
1313
  handleNavigationClick(direction: 'prev' | 'next', years?: boolean): void;
1298
1314
  /**
1299
1315
  * Clear startDate and endDate
1300
- * @type void
1316
+ * @returns void
1301
1317
  */
1302
1318
  clearDates(): void;
1303
1319
  handleFocusChange($event: FocusOrigin): void;
@@ -1386,7 +1402,7 @@ declare class CalendarModule {
1386
1402
  declare class CalloutComponent {
1387
1403
  /**
1388
1404
  * Sets the color context of the component to one of CoreUI’s themed colors.
1389
- * @type Colors
1405
+ * @returns Colors
1390
1406
  */
1391
1407
  readonly color: _angular_core.InputSignal<string | undefined>;
1392
1408
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -1403,19 +1419,19 @@ declare class CalloutModule {
1403
1419
  declare class CardComponent {
1404
1420
  /**
1405
1421
  * Sets the color context of the component to one of CoreUI’s themed colors.
1406
- * @type Colors
1422
+ * @returns Colors
1407
1423
  */
1408
1424
  readonly color: InputSignal<Colors | undefined>;
1409
1425
  /**
1410
1426
  * Sets the text color context of the component to one of CoreUI’s themed colors.
1411
1427
  * via TextColorDirective
1412
- * @type TextColors
1428
+ * @returns TextColors
1413
1429
  */
1414
1430
  readonly textColor: InputSignal<TextColors | undefined>;
1415
1431
  /**
1416
1432
  * Sets the component's color scheme to one of CoreUI themed colors, ensuring the text color contrast adheres to the WCAG 4.5:1 contrast ratio standard for accessibility.
1417
1433
  * via TextBgColorDirective
1418
- * @type Colors
1434
+ * @returns Colors
1419
1435
  * @since 5.0.0
1420
1436
  */
1421
1437
  readonly textBgColor: InputSignal<Colors | undefined>;
@@ -1452,7 +1468,7 @@ declare class CardHeaderActionsComponent {
1452
1468
  declare class CardImgDirective {
1453
1469
  /**
1454
1470
  * Optionally orientate the image to the top, bottom, or make it overlaid across the card.
1455
- * @type {'top | 'bottom'}
1471
+ * @returns {'top | 'bottom'}
1456
1472
  */
1457
1473
  readonly orientation: _angular_core.InputSignal<"start" | "end" | "top" | "bottom" | undefined>;
1458
1474
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -1498,55 +1514,55 @@ declare class CarouselComponent implements OnInit, OnDestroy, AfterContentInit {
1498
1514
  loadConfig(): void;
1499
1515
  /**
1500
1516
  * Index of the active item.
1501
- * @return number
1517
+ * @returns number
1502
1518
  */
1503
1519
  readonly activeIndexInput: _angular_core.InputSignalWithTransform<number, unknown>;
1504
1520
  readonly activeIndex: _angular_core.WritableSignal<number>;
1505
1521
  /**
1506
1522
  * Carousel automatically starts cycle items.
1507
- * @return boolean
1523
+ * @returns boolean
1508
1524
  */
1509
1525
  readonly animateInput: _angular_core.InputSignal<boolean>;
1510
1526
  readonly animate: _angular_core.WritableSignal<boolean>;
1511
1527
  /**
1512
- * Carousel direction. [docs]
1513
- * @return {'next' | 'prev'}
1528
+ * Carousel direction
1529
+ * @returns 'next' | 'prev'
1514
1530
  */
1515
1531
  readonly directionInput: _angular_core.InputSignal<"next" | "prev">;
1516
1532
  readonly direction: _angular_core.WritableSignal<"next" | "prev">;
1517
1533
  /**
1518
1534
  * The amount of time to delay between automatically cycling an item. If false, carousel will not automatically cycle.
1519
- * @return number
1535
+ * @returns number
1520
1536
  * @default 0
1521
1537
  */
1522
1538
  readonly intervalInput: _angular_core.InputSignalWithTransform<number, unknown>;
1523
1539
  readonly interval: _angular_core.WritableSignal<number>;
1524
1540
  /**
1525
1541
  * Sets which event handlers you’d like provided to your pause prop. You can specify one trigger or an array of them.
1526
- * @return {'hover' | 'focus' | 'click'}
1542
+ * @returns 'hover' | 'focus' | 'click'
1527
1543
  */
1528
1544
  readonly pause: _angular_core.InputSignal<false | Triggers | Triggers[]>;
1529
1545
  /**
1530
1546
  * Support left/right swipe interactions on touchscreen devices.
1531
- * @return boolean
1547
+ * @returns boolean
1532
1548
  * @default true
1533
1549
  */
1534
1550
  readonly touch: _angular_core.InputSignal<boolean>;
1535
1551
  /**
1536
1552
  * Set the type of the transition.
1537
- * @return {'slide' | 'crossfade'}
1553
+ * @returns 'slide' | 'crossfade'
1538
1554
  * @default 'slide'
1539
1555
  */
1540
1556
  readonly transition: _angular_core.InputSignal<"slide" | "crossfade">;
1541
1557
  /**
1542
1558
  * Set whether the carousel should cycle continuously or have hard stops.
1543
- * @return boolean
1559
+ * @returns boolean
1544
1560
  * @default true
1545
1561
  */
1546
1562
  readonly wrap: _angular_core.InputSignal<boolean>;
1547
1563
  /**
1548
- * Event emitted on carousel item change. [docs]
1549
- * @return number
1564
+ * Event emitted on carousel item change
1565
+ * @returns number
1550
1566
  */
1551
1567
  readonly itemChange: _angular_core.OutputEmitterRef<number>;
1552
1568
  private timerId;
@@ -1576,19 +1592,19 @@ declare class CarouselCaptionComponent {
1576
1592
  declare class CarouselControlComponent {
1577
1593
  #private;
1578
1594
  /**
1579
- * Carousel control caption. [docs]
1580
- * @return string
1595
+ * Carousel control caption
1596
+ * @returns string
1581
1597
  */
1582
1598
  readonly captionInput: _angular_core.InputSignal<string | undefined>;
1583
1599
  readonly caption: _angular_core.WritableSignal<string>;
1584
1600
  /**
1585
1601
  * Carousel control direction.
1586
- * @return {'next' | 'prev'}
1602
+ * @returns 'next' | 'prev'
1587
1603
  */
1588
1604
  readonly direction: _angular_core.InputSignal<"next" | "prev">;
1589
1605
  /**
1590
1606
  * Carousel control role.
1591
- * @return string
1607
+ * @returns string
1592
1608
  */
1593
1609
  readonly role: _angular_core.InputSignal<string>;
1594
1610
  readonly hostClasses: _angular_core.Signal<string>;
@@ -1621,13 +1637,13 @@ declare class CarouselItemComponent implements OnInit {
1621
1637
  readonly active: _angular_core.WritableSignal<boolean>;
1622
1638
  /**
1623
1639
  * Time delay before cycling to the next item. If -1, uses carousel interval value.
1624
- * @return number
1640
+ * @returns number
1625
1641
  * @default -1
1626
1642
  */
1627
1643
  readonly interval: _angular_core.InputSignal<number>;
1628
1644
  /**
1629
1645
  * Carousel item role.
1630
- * @return string
1646
+ * @returns string
1631
1647
  * @default 'group'
1632
1648
  */
1633
1649
  readonly role: _angular_core.InputSignal<string>;
@@ -1697,31 +1713,31 @@ declare class CollapseDirective implements OnDestroy {
1697
1713
  readonly animate: _angular_core.WritableSignal<boolean>;
1698
1714
  /**
1699
1715
  * Set horizontal collapsing to transition the width instead of height.
1700
- * @return boolean
1716
+ * @returns boolean
1701
1717
  * @default false
1702
1718
  */
1703
1719
  readonly horizontal: _angular_core.InputSignalWithTransform<boolean, unknown>;
1704
1720
  /**
1705
1721
  * Toggle the visibility of a collapsible element.
1706
- * @return boolean
1722
+ * @returns boolean
1707
1723
  * @default false
1708
1724
  */
1709
1725
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1710
1726
  /**
1711
- * Event emitted on visibility change. [docs]
1712
- * @return boolean
1727
+ * Event emitted on visibility change
1728
+ * @returns boolean
1713
1729
  */
1714
1730
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
1715
1731
  readonly visible: _angular_core.WritableSignal<boolean>;
1716
1732
  /**
1717
1733
  * Add a `navbar` prop for grouping and hiding navbar contents by a parent breakpoint.
1718
- * @return boolean
1734
+ * @returns boolean
1719
1735
  * @default false
1720
1736
  */
1721
1737
  readonly navbar: _angular_core.InputSignalWithTransform<boolean, unknown>;
1722
1738
  /**
1723
- * Event emitted on visibility change. [docs]
1724
- * @return string
1739
+ * Event emitted on visibility change
1740
+ * @returns string
1725
1741
  */
1726
1742
  readonly collapseChange: _angular_core.OutputEmitterRef<string>;
1727
1743
  protected readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -1768,24 +1784,24 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1768
1784
  /**
1769
1785
  * Set the format of day name.
1770
1786
  * @default 'numeric'
1771
- * @return DayFormatType
1787
+ * @returns DayFormatType
1772
1788
  */
1773
1789
  readonly dayFormat: _angular_core.InputSignal<DayFormatType>;
1774
1790
  /**
1775
1791
  * The number of calendars that render on desktop devices.
1776
- * @return number
1792
+ * @returns number
1777
1793
  * @default 2
1778
1794
  */
1779
1795
  readonly calendars: _angular_core.InputSignalWithTransform<number, unknown>;
1780
1796
  /**
1781
1797
  * Toggle visibility or set the content of the cleaner button.
1782
- * @return boolean
1798
+ * @returns boolean
1783
1799
  * @default true
1784
1800
  */
1785
1801
  readonly cleaner: _angular_core.InputSignalWithTransform<boolean, unknown>;
1786
1802
  /**
1787
1803
  * Determine if the dropdown should be closed after value setting.
1788
- * @return boolean
1804
+ * @returns boolean
1789
1805
  * @default false
1790
1806
  */
1791
1807
  readonly closeOnSelect: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -1798,7 +1814,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1798
1814
  readonly format: _angular_core.InputSignal<string | undefined>;
1799
1815
  /**
1800
1816
  * Toggle visibility or set the content of the input indicator.
1801
- * @return boolean
1817
+ * @returns boolean
1802
1818
  * @default true
1803
1819
  */
1804
1820
  readonly indicator: _angular_core.InputSignal<boolean>;
@@ -1814,14 +1830,14 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1814
1830
  readonly inputDateParse: _angular_core.InputSignal<((date: string | Date) => Date) | undefined>;
1815
1831
  /**
1816
1832
  * Toggle the readonly state for the component.
1817
- * @return boolean
1833
+ * @returns boolean
1818
1834
  * @default false
1819
1835
  */
1820
1836
  readonly inputReadOnlyInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1821
1837
  readonly inputReadOnly: _angular_core.Signal<boolean>;
1822
1838
  /**
1823
1839
  * Reorder year-month navigation, and render year first.
1824
- * @return boolean
1840
+ * @returns boolean
1825
1841
  * @default false
1826
1842
  */
1827
1843
  readonly navYearFirst: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -1832,66 +1848,66 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1832
1848
  readonly placeholder: _angular_core.InputSignal<string | string[]>;
1833
1849
  /**
1834
1850
  * Predefined date ranges the user can select from.
1835
- * @return ICalendarRanges
1851
+ * @returns ICalendarRanges
1836
1852
  */
1837
1853
  readonly ranges: _angular_core.InputSignal<ICalendarRanges | undefined>;
1838
1854
  /**
1839
1855
  * Sets the color context of the cancel button to one of CoreUI’s themed colors.
1840
- * @return 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
1856
+ * @returns 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
1841
1857
  * @default 'secondary'
1842
1858
  */
1843
1859
  readonly rangesButtonsColor: _angular_core.InputSignal<string>;
1844
1860
  /**
1845
1861
  * Size the ranges button small or large.
1846
- * @return 'sm' | 'lg' | ''
1862
+ * @returns 'sm' | 'lg' | ''
1847
1863
  */
1848
1864
  readonly rangesButtonsSize: _angular_core.InputSignal<"" | "sm" | "lg">;
1849
1865
  /**
1850
1866
  * Set the ranges button variant to an outlined button or a ghost button.
1851
- * @return 'outline' | 'ghost' | undefined
1867
+ * @returns 'outline' | 'ghost' | undefined
1852
1868
  */
1853
1869
  readonly rangesButtonsVariant: _angular_core.InputSignal<"outline" | "ghost">;
1854
1870
  /**
1855
1871
  * Default icon or character that separates two dates.
1856
- * @return boolean
1872
+ * @returns boolean
1857
1873
  * @default true
1858
1874
  */
1859
1875
  readonly separator: _angular_core.InputSignalWithTransform<boolean, unknown>;
1860
1876
  /**
1861
1877
  * Size the component small or large.
1862
- * @return 'sm' | 'lg' | undefined
1878
+ * @returns 'sm' | 'lg' | undefined
1863
1879
  * @default undefined
1864
1880
  */
1865
1881
  readonly size: _angular_core.InputSignal<string | undefined>;
1866
1882
  /**
1867
1883
  * Keep track of the time with the date value.
1868
- * @return boolean
1884
+ * @returns boolean
1869
1885
  * @default false
1870
1886
  */
1871
1887
  readonly withTime: _angular_core.InputSignalWithTransform<boolean, unknown>;
1872
1888
  /**
1873
1889
  * Provide an additional time selection by adding select boxes to choose time.
1874
- * @return boolean
1890
+ * @returns boolean
1875
1891
  * @default false
1876
1892
  */
1877
1893
  readonly timepickerInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1878
1894
  get timepicker(): boolean;
1879
1895
  /**
1880
1896
  * Toggle visual validation feedback.
1881
- * @return boolean | undefined
1897
+ * @returns boolean | undefined
1882
1898
  * @default undefined
1883
1899
  */
1884
1900
  readonly valid: _angular_core.InputSignal<boolean | undefined>;
1885
1901
  /**
1886
1902
  * Toggle the visibility of the dropdown date-picker component.
1887
- * @return boolean
1903
+ * @returns boolean
1888
1904
  * @default false
1889
1905
  */
1890
1906
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1891
1907
  readonly visible: _angular_core.WritableSignal<boolean>;
1892
1908
  /**
1893
1909
  * Initial selected start date.
1894
- * @return Date | null
1910
+ * @returns Date | null
1895
1911
  * @default null
1896
1912
  */
1897
1913
  readonly startDateModel: _angular_core.ModelSignal<Date | null>;
@@ -1902,7 +1918,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1902
1918
  readonly startDateChange: rxjs.Observable<Date | null>;
1903
1919
  /**
1904
1920
  * Initial selected end date.
1905
- * @return Date | null
1921
+ * @returns Date | null
1906
1922
  * @default null
1907
1923
  */
1908
1924
  readonly endDateModel: _angular_core.ModelSignal<Date | null>;
@@ -1910,19 +1926,19 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1910
1926
  readonly endDateChange: rxjs.Observable<Date | null>;
1911
1927
  /**
1912
1928
  * Default date month of the component.
1913
- * @return Date
1929
+ * @returns Date
1914
1930
  * @default new Date()
1915
1931
  */
1916
1932
  readonly calendarDateInput: _angular_core.InputSignalWithTransform<Date, number | Date>;
1917
1933
  readonly calendarDate: _angular_core.WritableSignal<Date>;
1918
1934
  /**
1919
1935
  * Specify the list of dates that cannot be selected.
1920
- * @return (Date | Date[])[]
1936
+ * @returns (Date | Date[])[]
1921
1937
  */
1922
1938
  readonly disabledDates: _angular_core.InputSignal<(Date | Date[])[]>;
1923
1939
  /**
1924
1940
  * Set the first day of the week.
1925
- * @return DaysOfWeek
1941
+ * @returns DaysOfWeek
1926
1942
  * @default 1 (Monday)
1927
1943
  */
1928
1944
  readonly firstDayOfWeek: _angular_core.InputSignal<DaysOfWeek>;
@@ -1933,37 +1949,37 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1933
1949
  readonly locale: _angular_core.InputSignal<string>;
1934
1950
  /**
1935
1951
  * Max selectable date.
1936
- * @return Date | null
1952
+ * @returns Date | null
1937
1953
  * @default null
1938
1954
  */
1939
1955
  readonly maxDate: _angular_core.InputSignal<Date | null>;
1940
1956
  /**
1941
1957
  * Min selectable date.
1942
- * @return Date | null
1958
+ * @returns Date | null
1943
1959
  * @default null
1944
1960
  */
1945
1961
  readonly minDate: _angular_core.InputSignal<Date | null>;
1946
1962
  /**
1947
1963
  * Show calendar navigation.
1948
- * @return boolean
1964
+ * @returns boolean
1949
1965
  * @default true
1950
1966
  */
1951
1967
  readonly navigation: _angular_core.InputSignalWithTransform<boolean, unknown>;
1952
1968
  /**
1953
1969
  * Allow range selection.
1954
- * @return boolean
1970
+ * @returns boolean
1955
1971
  * @default true
1956
1972
  */
1957
1973
  readonly rangeInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
1958
1974
  readonly range: _angular_core.Signal<boolean>;
1959
1975
  /**
1960
1976
  * Custom function to determine selectable dates.
1961
- * @return DateFilterType
1977
+ * @returns DateFilterType
1962
1978
  */
1963
1979
  readonly dateFilter: _angular_core.InputSignal<DateFilterType | undefined>;
1964
1980
  /**
1965
1981
  * Toggle the disabled state for the component.
1966
- * @return boolean
1982
+ * @returns boolean
1967
1983
  * @default false
1968
1984
  */
1969
1985
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -1986,53 +2002,53 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1986
2002
  } | null;
1987
2003
  /**
1988
2004
  * Set the length or format of the day name.
1989
- * @return WeekdayFormatType
2005
+ * @returns WeekdayFormatType
1990
2006
  * @default 'short'
1991
2007
  */
1992
2008
  readonly weekdayFormat: _angular_core.InputSignal<WeekdayFormatType>;
1993
2009
  /**
1994
2010
  * Optional popper Options object
1995
- * @return Partial<Options>
2011
+ * @returns Partial<Options>
1996
2012
  */
1997
2013
  readonly popperjsOptions: _angular_core.InputSignal<Partial<Options>>;
1998
2014
  /**
1999
2015
  * Set whether days in adjacent months shown before or after the current month are selectable. This only applies if the `showAdjacentDays` option is set to true.
2000
- * @return boolean
2016
+ * @returns boolean
2001
2017
  * @default false
2002
2018
  * @since 4.4.10
2003
2019
  */
2004
2020
  readonly selectAdjacentDays: _angular_core.InputSignalWithTransform<boolean, unknown>;
2005
2021
  /**
2006
2022
  * Set whether to display dates in adjacent months (non-selectable) at the start and end of the current month.
2007
- * @return boolean
2023
+ * @returns boolean
2008
2024
  * @default true
2009
2025
  * @since 4.4.10
2010
2026
  */
2011
2027
  readonly showAdjacentDays: _angular_core.InputSignalWithTransform<boolean, unknown>;
2012
2028
  /**
2013
2029
  * Specify the type of date selection as day, week, month, or year.
2014
- * @return 'day' | 'week' | 'month' | 'year'
2030
+ * @returns 'day' | 'week' | 'month' | 'year'
2015
2031
  * @default 'day'
2016
2032
  * @since 5.0.0
2017
2033
  */
2018
2034
  readonly selectionType: _angular_core.InputSignal<SelectionType>;
2019
2035
  /**
2020
2036
  * Set whether to display week numbers in the calendar.
2021
- * @return boolean
2037
+ * @returns boolean
2022
2038
  * @default false
2023
2039
  * @since 5.0.0
2024
2040
  */
2025
2041
  readonly showWeekNumber: _angular_core.InputSignalWithTransform<boolean, unknown>;
2026
2042
  /**
2027
2043
  * Label displayed over week numbers in the calendar.
2028
- * @return string
2044
+ * @returns string
2029
2045
  * @default undefined
2030
2046
  * @since 5.0.0
2031
2047
  */
2032
2048
  readonly weekNumbersLabel: _angular_core.InputSignal<string | undefined>;
2033
2049
  /**
2034
2050
  * Event emitted on `value` change.
2035
- * @return Date | { startDate, endDate } | undefined
2051
+ * @returns Date | { startDate, endDate } | undefined
2036
2052
  */
2037
2053
  readonly valueChange: _angular_core.OutputEmitterRef<Date | {
2038
2054
  startDate?: Date | null;
@@ -2040,12 +2056,12 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
2040
2056
  } | null | undefined>;
2041
2057
  /**
2042
2058
  * Event emitted on calendar cell hover.
2043
- * @return Date | null
2059
+ * @returns Date | null
2044
2060
  */
2045
2061
  readonly calendarCellHover: _angular_core.OutputEmitterRef<Date | null>;
2046
2062
  /**
2047
2063
  * Event emitted on calendar month change.
2048
- * @return Date
2064
+ * @returns Date
2049
2065
  */
2050
2066
  readonly calendarDateChange: _angular_core.OutputEmitterRef<Date>;
2051
2067
  readonly startDateElementRef: _angular_core.Signal<ElementRef<HTMLInputElement> | undefined>;
@@ -2134,12 +2150,12 @@ declare class DropdownMenuDirective implements OnInit, AfterContentInit {
2134
2150
  readonly elementRef: ElementRef;
2135
2151
  /**
2136
2152
  * Set alignment of dropdown menu.
2137
- * @return 'start' | 'end'
2153
+ * @returns 'start' | 'end'
2138
2154
  */
2139
2155
  readonly alignment: _angular_core.InputSignal<string | undefined>;
2140
2156
  /**
2141
2157
  * Toggle the visibility of dropdown menu component.
2142
- * @return boolean
2158
+ * @returns boolean
2143
2159
  */
2144
2160
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
2145
2161
  readonly visible: _angular_core.WritableSignal<boolean>;
@@ -2176,25 +2192,26 @@ declare class DropdownToggleDirective implements AfterViewInit {
2176
2192
  dropdown: DropdownToken | null;
2177
2193
  /**
2178
2194
  * Reference to dropdown component.
2179
- * @return DropdownComponent | undefined
2195
+ * @returns DropdownComponent | undefined
2180
2196
  * @default undefined
2181
2197
  */
2182
2198
  readonly dropdownComponent: _angular_core.InputSignal<DropdownComponent | undefined>;
2183
2199
  /**
2184
2200
  * Disables the toggler.
2185
- * @return boolean
2201
+ * @returns boolean
2186
2202
  * @default false
2187
2203
  */
2188
2204
  readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
2189
2205
  /**
2190
2206
  * Enables pseudo-element caret on toggler.
2191
- * @return boolean
2207
+ * @returns boolean
2208
+ * @default true
2192
2209
  */
2193
2210
  readonly caret: _angular_core.InputSignal<boolean>;
2194
2211
  /**
2195
2212
  * Create split button dropdowns with virtually the same markup as single button dropdowns,
2196
2213
  * but with the addition of `.dropdown-toggle-split` class for proper spacing around the dropdown caret.
2197
- * @return boolean
2214
+ * @returns boolean
2198
2215
  * @default false
2199
2216
  */
2200
2217
  readonly split: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -2211,33 +2228,36 @@ declare class DropdownComponent implements OnDestroy, OnInit {
2211
2228
  constructor();
2212
2229
  /**
2213
2230
  * Set alignment of dropdown menu.
2214
- * @return {'start' | 'end' | { xs: 'start' | 'end' } | { sm: 'start' | 'end' } | { md: 'start' | 'end' } | { lg: 'start' | 'end' } | { xl: 'start' | 'end'} | { xxl: 'start' | 'end'}}
2231
+ * @returns {'start' | 'end' | { xs: 'start' | 'end' } | { sm: 'start' | 'end' } | { md: 'start' | 'end' } | { lg: 'start' | 'end' } | { xl: 'start' | 'end'} | { xxl: 'start' | 'end'}}
2215
2232
  */
2216
2233
  readonly alignment: _angular_core.InputSignal<string | undefined>;
2217
2234
  /**
2218
2235
  * Automatically close dropdown when clicking outside the dropdown menu.
2236
+ * @returns boolean | 'inside' | 'outside'
2237
+ * @default true
2219
2238
  */
2220
2239
  readonly autoClose: _angular_core.InputSignal<boolean | "inside" | "outside">;
2221
2240
  /**
2222
2241
  * Sets a specified direction and location of the dropdown menu.
2223
- * @return 'dropup' | 'dropend' | 'dropstart'
2242
+ * @returns 'dropup' | 'dropend' | 'dropstart'
2224
2243
  */
2225
2244
  readonly direction: _angular_core.InputSignal<"center" | "dropup" | "dropup-center" | "dropend" | "dropstart" | undefined>;
2226
2245
  /**
2227
2246
  * Describes the placement of your component after Popper.js has applied all the modifiers
2228
2247
  * that may have flipped or altered the originally provided placement property.
2229
- * @return Placement
2248
+ * @returns Placement
2249
+ * @default 'bottom-start'
2230
2250
  */
2231
2251
  readonly placement: _angular_core.InputSignal<Placement>;
2232
2252
  /**
2233
2253
  * If you want to disable dynamic positioning set this property to `false`.
2234
- * @return boolean
2254
+ * @returns boolean
2235
2255
  * @default true
2236
2256
  */
2237
2257
  readonly popper: _angular_core.InputSignalWithTransform<boolean, unknown>;
2238
2258
  /**
2239
- * Optional popper Options object, placement prop takes precedence over
2240
- * @return Partial<Options>
2259
+ * Optional popper Options object, `placement` prop takes precedence over
2260
+ * @returns Partial<Options>
2241
2261
  */
2242
2262
  readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
2243
2263
  set popperOptions(value: Partial<Options>);
@@ -2248,11 +2268,15 @@ declare class DropdownComponent implements OnDestroy, OnInit {
2248
2268
  readonly variant: _angular_core.InputSignal<"btn-group" | "dropdown" | "input-group" | "nav-item" | undefined>;
2249
2269
  /**
2250
2270
  * Toggle the visibility of dropdown menu component.
2251
- * @return boolean
2271
+ * @returns boolean
2252
2272
  * @default false
2253
2273
  */
2254
2274
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
2255
2275
  readonly visible: _angular_core.WritableSignal<boolean>;
2276
+ /**
2277
+ * Event emitted on `visible` change.
2278
+ * @returns boolean
2279
+ */
2256
2280
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
2257
2281
  dropdownContext: {
2258
2282
  $implicit: boolean;
@@ -2290,25 +2314,35 @@ declare class DropdownItemDirective implements FocusableOption {
2290
2314
  dropdown?: DropdownComponent | null | undefined;
2291
2315
  /**
2292
2316
  * Set active state to a dropdown-item.
2293
- * @return boolean
2317
+ * @returns boolean
2294
2318
  * @default undefined
2295
2319
  */
2296
2320
  readonly active: _angular_core.InputSignal<boolean | undefined>;
2297
2321
  /**
2298
2322
  * Configure dropdown-item close dropdown behavior.
2299
- * @return boolean
2323
+ * @returns boolean
2300
2324
  * @default true
2301
2325
  */
2302
2326
  readonly autoClose: _angular_core.InputSignal<boolean>;
2303
2327
  /**
2304
2328
  * Disables a dropdown-item.
2305
- * @return boolean
2329
+ * @returns boolean
2306
2330
  * @default undefined
2307
2331
  */
2308
2332
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
2309
2333
  set disabled(value: boolean);
2310
2334
  get disabled(): boolean;
2335
+ /**
2336
+ * Default role for dropdown-item.
2337
+ * @returns string
2338
+ * @default 'list-item'
2339
+ */
2311
2340
  readonly role: _angular_core.InputSignal<string>;
2341
+ /**
2342
+ * Tab index of the dropdown-item.
2343
+ * @returns string | number | null
2344
+ * @default '0'
2345
+ */
2312
2346
  readonly tabIndexInput: _angular_core.InputSignal<string | number | null>;
2313
2347
  readonly tabIndex: _angular_core.WritableSignal<string | number | null>;
2314
2348
  focus(origin?: FocusOrigin | undefined): void;
@@ -2332,13 +2366,22 @@ declare class DropdownCloseDirective implements AfterViewInit {
2332
2366
  dropdown?: DropdownComponent | null | undefined;
2333
2367
  /**
2334
2368
  * Disables a dropdown-close directive.
2335
- * @return boolean
2369
+ * @returns boolean
2336
2370
  * @default false
2337
2371
  */
2338
2372
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
2339
2373
  readonly disabled: _angular_core.WritableSignal<true | null>;
2374
+ /**
2375
+ * The dropdown component instance this cDropdownClose belongs to.
2376
+ * @returns DropdownComponent
2377
+ */
2340
2378
  readonly dropdownComponent: _angular_core.InputSignal<DropdownComponent | undefined>;
2341
2379
  ngAfterViewInit(): void;
2380
+ /**
2381
+ * Tab index of the dropdown-close element.
2382
+ * @returns string | number | null
2383
+ * @default null
2384
+ */
2342
2385
  readonly tabIndexInput: _angular_core.InputSignal<string | number | null>;
2343
2386
  readonly tabIndex: _angular_core.WritableSignal<string | number | null>;
2344
2387
  onClick($event: MouseEvent): void;
@@ -2362,16 +2405,16 @@ declare class ElementCoverComponent {
2362
2405
  /**
2363
2406
  * Array of custom boundaries. Use to create custom cover area (instead of parent element area). Area is defined by four sides: 'top', 'bottom', 'right', 'left'. If side is not defined by any custom boundary it is equal to parent element boundary. Each custom boundary is object with keys:
2364
2407
  * - sides (array) - select boundaries of element to define boundaries. Side names: 'top', 'bottom', 'right', 'left'.
2365
- * - query (string) - query used to get element which define boundaries. Search will be done only inside parent element, by parent.querySelector(query) function. [docs]
2366
- * @type {sides: string[], query: string}[]
2408
+ * - query (string) - query used to get element which define boundaries. Search will be done only inside parent element, by parent.querySelector(query) function.
2409
+ * @returns {sides: string[], query: string}[]
2367
2410
  */
2368
2411
  readonly boundaries: _angular_core.InputSignal<{
2369
2412
  sides: ("top" | "bottom" | "right" | "left")[];
2370
2413
  query: string;
2371
2414
  }[] | undefined>;
2372
2415
  /**
2373
- * Opacity of cover. [docs]
2374
- * @type <number>
2416
+ * Opacity of cover.
2417
+ * @returns <number>
2375
2418
  */
2376
2419
  readonly opacity: _angular_core.InputSignal<number>;
2377
2420
  readonly hostStyles: _angular_core.Signal<Record<string, unknown>>;
@@ -2387,13 +2430,13 @@ declare class ElementCoverModule {
2387
2430
 
2388
2431
  declare class FooterComponent {
2389
2432
  /**
2390
- * Place footer in non-static positions. [docs]
2391
- * @type Positions
2433
+ * Place footer in non-static positions
2434
+ * @returns Positions
2392
2435
  */
2393
2436
  readonly position: InputSignal<Positions | undefined>;
2394
2437
  /**
2395
- * Default role for footer. [docs]
2396
- * @return string
2438
+ * Default role for footer
2439
+ * @returns string
2397
2440
  * @default 'contentinfo'
2398
2441
  */
2399
2442
  readonly role: InputSignal<string>;
@@ -2410,8 +2453,8 @@ declare class FooterModule {
2410
2453
 
2411
2454
  declare class FormDirective {
2412
2455
  /**
2413
- * Mark a form as validated. If you set it `true`, all validation styles will be applied to the form. [docs]
2414
- * @return boolean
2456
+ * Mark a form as validated. If you set it `true`, all validation styles will be applied to the form
2457
+ * @returns boolean
2415
2458
  * @default false
2416
2459
  */
2417
2460
  readonly validated: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -2440,7 +2483,7 @@ declare class FormCheckComponent {
2440
2483
  */
2441
2484
  readonly reverse: _angular_core.InputSignalWithTransform<boolean, unknown>;
2442
2485
  /**
2443
- * Size the component large or extra large. Works only with `[switch]="true"` [docs]
2486
+ * Size the component large or extra large. Works only with `[switch]="true"`
2444
2487
  * @default undefined
2445
2488
  */
2446
2489
  readonly sizing: _angular_core.InputSignal<string | undefined>;
@@ -2648,11 +2691,14 @@ declare class FormModule {
2648
2691
  declare class ContainerComponent {
2649
2692
  /**
2650
2693
  * Set container 100% wide until a breakpoint.
2694
+ * @returns 'sm' | 'md' | 'lg' | 'xl' | 'xxl'
2695
+ * @default ''
2651
2696
  */
2652
2697
  readonly breakpoint: _angular_core.InputSignal<string>;
2653
2698
  /**
2654
2699
  * Set container 100% wide, spanning the entire width of the viewport.
2655
- * @return boolean
2700
+ * @returns boolean
2701
+ * @default false
2656
2702
  */
2657
2703
  readonly fluid: _angular_core.InputSignalWithTransform<boolean, unknown>;
2658
2704
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -2688,46 +2734,55 @@ declare class ColDirective {
2688
2734
  static ngAcceptInputType_xxl: BooleanInput$1 | NumberInput$1;
2689
2735
  /**
2690
2736
  * The number of columns/offset/order on extra small devices (<576px).
2691
- * @return { 'auto' | number | boolean }
2737
+ * @returns 'auto' | number | boolean
2738
+ * @default false
2692
2739
  */
2693
2740
  readonly cCol: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
2694
2741
  /**
2695
2742
  * The number of columns on extra small devices (<576px).
2696
- * @return { 'auto' | number | boolean }
2743
+ * @returns { 'auto' | number | boolean }
2744
+ * @default false
2697
2745
  */
2698
2746
  readonly xs: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
2699
2747
  /**
2700
2748
  * The number of columns/offset/order on small devices (<768px).
2701
- * @return { 'auto' | number | boolean }
2749
+ * @returns 'auto' | number | boolean
2750
+ * @default false
2702
2751
  */
2703
2752
  readonly sm: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
2704
2753
  /**
2705
2754
  * The number of columns/offset/order on medium devices (<992px).
2706
- * @return { 'auto' | number | boolean }
2755
+ * @returns 'auto' | number | boolean
2756
+ * @default false
2707
2757
  */
2708
2758
  readonly md: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
2709
2759
  /**
2710
2760
  * The number of columns/offset/order on large devices (<1200px).
2711
- * @return { 'auto' | number | boolean }
2761
+ * @returns 'auto' | number | boolean
2762
+ * @default false
2712
2763
  */
2713
2764
  readonly lg: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
2714
2765
  /**
2715
2766
  * The number of columns/offset/order on X-Large devices (<1400px).
2716
- * @return { 'auto' | number | boolean }
2767
+ * @returns 'auto' | number | boolean
2768
+ * @default false
2717
2769
  */
2718
2770
  readonly xl: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
2719
2771
  /**
2720
2772
  * The number of columns/offset/order on XX-Large devices (≥1400px).
2721
- * @return { 'auto' | number | boolean }
2773
+ * @returns 'auto' | number | boolean
2774
+ * @default false
2722
2775
  */
2723
2776
  readonly xxl: _angular_core.InputSignalWithTransform<number | boolean | "auto", string | number | boolean | null | undefined>;
2724
2777
  readonly breakpoints: _angular_core.Signal<Record<string, any>>;
2725
2778
  /**
2726
2779
  * Offset grid columns.
2780
+ * @returns ColOffsetType
2727
2781
  */
2728
2782
  readonly offset: _angular_core.InputSignal<ColOffsetType | undefined>;
2729
2783
  /**
2730
2784
  * Controls the visual order of your columns. Includes support for `1` through `5` across all breakpoints.
2785
+ * @returns ColOrderType
2731
2786
  */
2732
2787
  readonly order: _angular_core.InputSignal<ColOrderType | undefined>;
2733
2788
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -2746,32 +2801,32 @@ type NumberOfColumns = number | 'auto';
2746
2801
  declare class RowDirective {
2747
2802
  /**
2748
2803
  * The number of columns/offset/order on extra small devices (<576px).
2749
- * @return { cols: 'auto' | number }
2804
+ * @returns NumberOfColumns
2750
2805
  */
2751
2806
  readonly xs: _angular_core.InputSignal<NumberOfColumns | undefined>;
2752
2807
  /**
2753
2808
  * The number of columns/offset/order on small devices (<768px).
2754
- * @return { cols: 'auto' | number }
2809
+ * @returns NumberOfColumns
2755
2810
  */
2756
2811
  readonly sm: _angular_core.InputSignal<NumberOfColumns | undefined>;
2757
2812
  /**
2758
2813
  * The number of columns/offset/order on medium devices (<992px).
2759
- * @return { cols: 'auto' | number }
2814
+ * @returns NumberOfColumns
2760
2815
  */
2761
2816
  readonly md: _angular_core.InputSignal<NumberOfColumns | undefined>;
2762
2817
  /**
2763
2818
  * The number of columns/offset/order on large devices (<1200px).
2764
- * @return { cols: 'auto' | number }
2819
+ * @returns NumberOfColumns
2765
2820
  */
2766
2821
  readonly lg: _angular_core.InputSignal<NumberOfColumns | undefined>;
2767
2822
  /**
2768
2823
  * The number of columns/offset/order on X-Large devices (<1400px).
2769
- * @return { cols: 'auto' | number }
2824
+ * @returns NumberOfColumns
2770
2825
  */
2771
2826
  readonly xl: _angular_core.InputSignal<NumberOfColumns | undefined>;
2772
2827
  /**
2773
2828
  * The number of columns/offset/order on XX-Large devices (≥1400px).
2774
- * @return { cols: 'auto' | number }
2829
+ * @returns NumberOfColumns
2775
2830
  */
2776
2831
  readonly xxl: _angular_core.InputSignal<NumberOfColumns | undefined>;
2777
2832
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -2817,16 +2872,18 @@ declare class GridModule {
2817
2872
  type Container = boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl' | 'fluid';
2818
2873
  declare class HeaderComponent {
2819
2874
  /**
2820
- * Defines optional container wrapping children elements.
2875
+ * Defines optional container wrapping children elements
2876
+ * @returns Container
2821
2877
  */
2822
2878
  readonly container: InputSignal<Container | undefined>;
2823
2879
  /**
2824
- * Place header in non-static positions.
2880
+ * Place header in non-static positions
2881
+ * @returns Positions
2825
2882
  */
2826
2883
  readonly position: InputSignal<Positions | undefined>;
2827
2884
  /**
2828
- * Default role for header. [docs]
2829
- * @type string
2885
+ * Default role for header
2886
+ * @returns string
2830
2887
  * @default 'banner'
2831
2888
  */
2832
2889
  readonly role: InputSignal<string>;
@@ -2839,8 +2896,8 @@ declare class HeaderComponent {
2839
2896
 
2840
2897
  declare class HeaderBrandComponent {
2841
2898
  /**
2842
- * Default role for header-brand. [docs]
2843
- * @return string
2899
+ * Default role for header-brand
2900
+ * @returns string
2844
2901
  * @default 'button'
2845
2902
  */
2846
2903
  readonly role: _angular_core.InputSignal<string>;
@@ -2855,8 +2912,8 @@ declare class HeaderDividerComponent {
2855
2912
 
2856
2913
  declare class HeaderNavComponent {
2857
2914
  /**
2858
- * Default role for header-nav. [docs]
2859
- * @return string
2915
+ * Default role for header-nav
2916
+ * @returns string
2860
2917
  * @default 'navigation'
2861
2918
  */
2862
2919
  readonly role: _angular_core.InputSignal<string>;
@@ -2872,14 +2929,14 @@ declare class HeaderTextComponent {
2872
2929
  declare class HeaderTogglerDirective implements AfterContentInit {
2873
2930
  #private;
2874
2931
  /**
2875
- * Default type for header-toggler button. [docs]
2876
- * @return string
2932
+ * Default type for header-toggler button
2933
+ * @returns string
2877
2934
  * @default 'button'
2878
2935
  */
2879
2936
  readonly type: _angular_core.InputSignal<string>;
2880
2937
  /**
2881
- * Default aria-label attr for header-toggler. [docs]
2882
- * @type string
2938
+ * Default aria-label attr for header-toggler
2939
+ * @returns string
2883
2940
  * @default 'Toggle navigation'
2884
2941
  */
2885
2942
  readonly ariaLabel: _angular_core.InputSignal<string>;
@@ -2898,22 +2955,22 @@ declare class HeaderModule {
2898
2955
  declare class ImgDirective {
2899
2956
  /**
2900
2957
  * Set the horizontal aligment.
2901
- * @type {'' | 'start' | 'end' | 'center'}
2958
+ * @returns {'' | 'start' | 'end' | 'center'}
2902
2959
  */
2903
2960
  readonly align: InputSignal<'' | 'start' | 'end' | 'center'>;
2904
2961
  /**
2905
2962
  * Make image responsive.
2906
- * @type boolean
2963
+ * @returns boolean
2907
2964
  */
2908
2965
  readonly fluid: InputSignalWithTransform<boolean, unknown>;
2909
2966
  /**
2910
2967
  * Make image rounded.
2911
- * @type boolean
2968
+ * @returns boolean
2912
2969
  */
2913
2970
  readonly rounded: InputSignalWithTransform<boolean, unknown>;
2914
2971
  /**
2915
2972
  * Give an image a rounded 1px border appearance.
2916
- * @type boolean
2973
+ * @returns boolean
2917
2974
  */
2918
2975
  readonly thumbnail: InputSignalWithTransform<boolean, unknown>;
2919
2976
  /**
@@ -2938,7 +2995,7 @@ declare class ListGroupDirective {
2938
2995
  static ngAcceptInputType_flush: BooleanInput;
2939
2996
  /**
2940
2997
  * Remove some borders and rounded corners to render list group items edge-to-edge in a parent component (e.g., `<CCard>`).
2941
- * @type boolean
2998
+ * @returns boolean
2942
2999
  */
2943
3000
  readonly flush: InputSignalWithTransform<boolean, unknown>;
2944
3001
  /**
@@ -2956,21 +3013,22 @@ declare class ListGroupItemDirective {
2956
3013
  readonly hostElement: ElementRef<any>;
2957
3014
  /**
2958
3015
  * Toggle the active state for the component.
2959
- * @type InputSignalWithTransform<boolean, unknown>
3016
+ * @returns boolean
2960
3017
  */
2961
3018
  readonly active: InputSignalWithTransform<boolean, unknown>;
2962
3019
  /**
2963
3020
  * Sets the color context of the component to one of CoreUI’s themed colors.
2964
- * @type InputSignal<boolean | undefined>
3021
+ * @returns InputSignal<Colors | undefined>
2965
3022
  */
2966
- readonly color: InputSignal<Colors | undefined>;
3023
+ readonly color: InputSignal<string | undefined>;
2967
3024
  /**
2968
- * Set disabled attr for the host element. [docs]
2969
- * @type boolean
3025
+ * Set disabled attr for the host element
3026
+ * @returns boolean
2970
3027
  */
2971
3028
  readonly disabled: InputSignalWithTransform<boolean, unknown>;
2972
3029
  /**
2973
3030
  * The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
3031
+ * @returns number | undefined
2974
3032
  */
2975
3033
  readonly tabindex: InputSignalWithTransform<number | undefined, unknown>;
2976
3034
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -2992,24 +3050,24 @@ declare class ListGroupModule {
2992
3050
  declare class LoadingButtonComponent extends ButtonDirective {
2993
3051
  /**
2994
3052
  * Makes a button disabled when loading.
2995
- * @return boolean
3053
+ * @returns boolean
2996
3054
  * @default false
2997
3055
  */
2998
3056
  disabledOnLoading: _angular_core.InputSignalWithTransform<boolean, unknown>;
2999
3057
  /**
3000
3058
  * Loading state (set to true to start animation).
3001
- * @return boolean
3059
+ * @returns boolean
3002
3060
  */
3003
3061
  loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
3004
3062
  /**
3005
3063
  * Event emitted on loading change
3006
- * @return boolean
3064
+ * @returns boolean
3007
3065
  */
3008
3066
  loadingChange: _angular_core.OutputEmitterRef<boolean>;
3009
3067
  loadingEffect: _angular_core.EffectRef;
3010
3068
  /**
3011
3069
  * Sets a type of spinner.
3012
- * @return {'border' | 'grow'}
3070
+ * @returns {'border' | 'grow'}
3013
3071
  */
3014
3072
  spinnerType: _angular_core.InputSignal<"border" | "grow">;
3015
3073
  constructor();
@@ -3035,51 +3093,51 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
3035
3093
  readonly elementRef: ElementRef<any>;
3036
3094
  /**
3037
3095
  * Option style
3038
- * @return ('checkbox' | 'text')
3096
+ * @returns ('checkbox' | 'text')
3039
3097
  * @default 'checkbox'
3040
3098
  */
3041
3099
  readonly optionsStyleInput: _angular_core.InputSignal<string | undefined>;
3042
3100
  readonly optionsStyle: WritableSignal<string>;
3043
3101
  /**
3044
3102
  * Option label
3045
- * @type string
3103
+ * @returns string
3046
3104
  * @default undefined
3047
3105
  */
3048
3106
  label?: string;
3049
3107
  /**
3050
3108
  * Option inner text
3051
- * @type string
3109
+ * @returns string
3052
3110
  * @default undefined
3053
3111
  */
3054
3112
  text?: string;
3055
3113
  /**
3056
3114
  * Option visible.
3057
- * @type boolean
3115
+ * @returns boolean
3058
3116
  * @default true
3059
3117
  */
3060
3118
  set visible(value: boolean);
3061
3119
  get visible(): boolean;
3062
3120
  /**
3063
3121
  * Option disabled.
3064
- * @type boolean
3122
+ * @returns boolean
3065
3123
  * @default false
3066
3124
  */
3067
3125
  disabled: boolean;
3068
3126
  /**
3069
3127
  * Option selected.
3070
- * @type boolean
3128
+ * @returns boolean
3071
3129
  * @default false
3072
3130
  */
3073
3131
  set selected(value: boolean | undefined);
3074
3132
  get selected(): boolean | undefined;
3075
3133
  /**
3076
3134
  * Emits option selected change
3077
- * @return boolean
3135
+ * @returns boolean
3078
3136
  */
3079
3137
  readonly selectedChange: _angular_core.OutputEmitterRef<boolean>;
3080
3138
  /**
3081
3139
  * Option value.
3082
- * @type string | number
3140
+ * @returns string | number
3083
3141
  * @default undefined
3084
3142
  */
3085
3143
  set value(value: string | number);
@@ -3088,7 +3146,7 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
3088
3146
  get active(): boolean;
3089
3147
  /**
3090
3148
  * Role for the option element.
3091
- * @return string
3149
+ * @returns string
3092
3150
  */
3093
3151
  readonly role: _angular_core.InputSignal<string>;
3094
3152
  readonly focusChange: _angular_core.OutputEmitterRef<MultiSelectOptionComponent>;
@@ -3119,12 +3177,12 @@ declare class MultiSelectOptgroupComponent implements AfterContentInit {
3119
3177
  static ngAcceptInputType_disabled: BooleanInput$1;
3120
3178
  /**
3121
3179
  * Options group label.
3122
- * @return string
3180
+ * @returns string
3123
3181
  */
3124
3182
  readonly label: _angular_core.InputSignal<string | undefined>;
3125
3183
  /**
3126
3184
  * Disables all options in the group.
3127
- * @return boolean
3185
+ * @returns boolean
3128
3186
  * @default false
3129
3187
  */
3130
3188
  readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -3218,46 +3276,46 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
3218
3276
  setDisabledState(isDisabled: boolean): void;
3219
3277
  /**
3220
3278
  * Allow users to create options if they are not in the list of options.
3221
- * @return boolean
3279
+ * @returns boolean
3222
3280
  * @default false
3223
3281
  * @since 4.5.11
3224
3282
  */
3225
3283
  readonly allowCreateOptions: _angular_core.InputSignalWithTransform<boolean, unknown>;
3226
3284
  /**
3227
3285
  * Sets the accessible label (`aria-label`) for the button that clears the current selection. This label is read by screen readers.
3228
- * @return string
3286
+ * @returns string
3229
3287
  * @since 5.7.7
3230
3288
  */
3231
3289
  readonly ariaCleanerLabel: _angular_core.InputSignal<string>;
3232
3290
  /**
3233
3291
  * Sets the accessible label (`aria-label`) for the indicator button that toggles the options menu. This label is read by screen readers.
3234
- * @return string
3292
+ * @returns string
3235
3293
  * @since 5.7.7
3236
3294
  */
3237
3295
  readonly ariaIndicatorLabel: _angular_core.InputSignal<string>;
3238
3296
  /**
3239
3297
  * Enables selection cleaner element
3240
- * @return boolean
3298
+ * @returns boolean
3241
3299
  * @default true | 'active'
3242
3300
  */
3243
3301
  readonly cleaner: _angular_core.InputSignal<boolean | "active">;
3244
3302
  /**
3245
3303
  * Clear current search on selecting an item
3246
- * @return boolean
3304
+ * @returns boolean
3247
3305
  * @default false
3248
3306
  * @since 4.5.11
3249
3307
  */
3250
3308
  readonly clearSearchOnSelect: _angular_core.InputSignalWithTransform<boolean, unknown>;
3251
3309
  /**
3252
3310
  * Disables multi-select component
3253
- * @return boolean
3311
+ * @returns boolean
3254
3312
  * @default false
3255
3313
  */
3256
3314
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
3257
3315
  readonly disabled: _angular_core.WritableSignal<boolean>;
3258
3316
  /**
3259
3317
  * Add loading spinner and reduced opacity.
3260
- * @return boolean
3318
+ * @returns boolean
3261
3319
  * @default false
3262
3320
  * @since 4.5.2
3263
3321
  */
@@ -3270,27 +3328,27 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
3270
3328
  readonly multiple: _angular_core.InputSignalWithTransform<boolean, unknown>;
3271
3329
  /**
3272
3330
  * List of option elements
3273
- * @type IOption[]
3331
+ * @returns IOption[]
3274
3332
  * @default []
3275
3333
  */
3276
3334
  set options(options: IOption[]);
3277
3335
  get options(): IOption[];
3278
3336
  /**
3279
3337
  * Sets maxHeight of options list in px
3280
- * @return string | number
3338
+ * @returns string | number
3281
3339
  * @default 'auto'
3282
3340
  */
3283
3341
  readonly optionsMaxHeightInput: _angular_core.InputSignal<string | number>;
3284
3342
  readonly optionsMaxHeight: _angular_core.WritableSignal<string | number>;
3285
3343
  /**
3286
3344
  * Sets option style
3287
- * @return 'checkbox' | 'text'
3345
+ * @returns 'checkbox' | 'text'
3288
3346
  * @default 'checkbox'
3289
3347
  */
3290
3348
  readonly optionsStyle: _angular_core.InputSignal<"text" | "checkbox">;
3291
3349
  /**
3292
3350
  * Specifies a short hint that is visible in the search input
3293
- * @return string
3351
+ * @returns string
3294
3352
  * @default 'Select...'
3295
3353
  */
3296
3354
  readonly placeholder: _angular_core.InputSignal<string>;
@@ -3303,19 +3361,19 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
3303
3361
  readonly resetSelectionOnOptionsChange: _angular_core.InputSignalWithTransform<boolean, unknown>;
3304
3362
  /**
3305
3363
  * Enables search input element
3306
- * @return boolean | SearchFn | 'external'
3364
+ * @returns boolean | SearchFn | 'external'
3307
3365
  * @default true
3308
3366
  */
3309
3367
  readonly search: _angular_core.InputSignal<boolean | "external" | SearchFn>;
3310
3368
  /**
3311
3369
  * Sets the label for no results when filtering
3312
- * @return string
3370
+ * @returns string
3313
3371
  * @default 'no items'
3314
3372
  */
3315
3373
  readonly searchNoResultsLabel: _angular_core.InputSignal<string>;
3316
3374
  /**
3317
3375
  * Sets initial search string
3318
- * @type string
3376
+ * @returns string
3319
3377
  * @default ''
3320
3378
  */
3321
3379
  set searchValue(value: string);
@@ -3323,83 +3381,83 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
3323
3381
  private _searchValue;
3324
3382
  /**
3325
3383
  * Emits searchValue string for external filtering
3326
- * @return string
3384
+ * @returns string
3327
3385
  */
3328
3386
  readonly searchValueChange: _angular_core.OutputEmitterRef<string>;
3329
3387
  /**
3330
3388
  * Enables select all button
3331
- * @return boolean
3389
+ * @returns boolean
3332
3390
  * @default true
3333
3391
  */
3334
3392
  readonly selectAll: _angular_core.InputSignalWithTransform<boolean, unknown>;
3335
3393
  /**
3336
3394
  * Sets the select all button label
3337
- * @return string
3395
+ * @returns string
3338
3396
  * @default 'Select all options'
3339
3397
  */
3340
3398
  readonly selectAllLabel: _angular_core.InputSignal<string>;
3341
3399
  /**
3342
3400
  * Selection type
3343
- * @return 'counter' | 'tags' | 'text'
3401
+ * @returns 'counter' | 'tags' | 'text'
3344
3402
  * @default 'tags'
3345
3403
  */
3346
3404
  readonly selectionType: _angular_core.InputSignal<"text" | "counter" | "tags">;
3347
3405
  /**
3348
3406
  * Counter selection label value
3349
- * @return string
3407
+ * @returns string
3350
3408
  * @default 'item(s) selected'
3351
3409
  */
3352
3410
  readonly selectionTypeCounterText: _angular_core.InputSignal<string>;
3353
3411
  /**
3354
3412
  * Counter selection label plural map for I18nPluralPipe
3355
- * @return IPluralMap
3413
+ * @returns IPluralMap
3356
3414
  * @default { '=1': 'item selected', 'other': 'items selected' }
3357
3415
  */
3358
3416
  readonly selectionTypeCounterTextPluralMap: _angular_core.InputSignal<IPluralMap | undefined>;
3359
3417
  /**
3360
3418
  * Size the component small or large.
3361
- * @return 'sm' | 'lg' | undefined
3419
+ * @returns 'sm' | 'lg' | undefined
3362
3420
  */
3363
3421
  readonly size: _angular_core.InputSignal<string | undefined>;
3364
3422
  /**
3365
3423
  * Initial value of multi-select
3366
- * @type (TValue | TValue[])
3424
+ * @returns (TValue | TValue[])
3367
3425
  */
3368
3426
  set value(value: TValue | TValue[]);
3369
3427
  get value(): TValue | TValue[];
3370
3428
  /**
3371
3429
  * Emits valueChange
3372
- * @return TValue | TValue[]
3430
+ * @returns TValue | TValue[]
3373
3431
  */
3374
3432
  readonly valueChange: _angular_core.OutputEmitterRef<TValue | TValue[]>;
3375
3433
  /**
3376
3434
  * Toggle visual validation feedback.
3377
- * @return boolean | undefined
3435
+ * @returns boolean | undefined
3378
3436
  * @default undefined
3379
3437
  */
3380
3438
  readonly valid: _angular_core.InputSignal<boolean | undefined>;
3381
3439
  /**
3382
3440
  * Enable virtual scroller for options list.
3383
- * @return boolean
3441
+ * @returns boolean
3384
3442
  * @default false
3385
3443
  */
3386
3444
  readonly virtualScroller: _angular_core.InputSignalWithTransform<boolean, unknown>;
3387
3445
  /**
3388
3446
  * Amount of visible options, if set - overwrites optionsMaxHeight
3389
- * @return number
3447
+ * @returns number
3390
3448
  * @default 8
3391
3449
  */
3392
3450
  readonly visibleItemsInput: _angular_core.InputSignalWithTransform<number, unknown>;
3393
3451
  readonly visibleItems: _angular_core.Signal<number>;
3394
3452
  /**
3395
3453
  * The size of the option item in the list (in pixels).
3396
- * @return number
3454
+ * @returns number
3397
3455
  * @default 40
3398
3456
  */
3399
3457
  readonly itemSize: _angular_core.InputSignalWithTransform<number, unknown>;
3400
3458
  /**
3401
3459
  * Min width of the options list (in pixels).
3402
- * @return number
3460
+ * @returns number
3403
3461
  * @default 196
3404
3462
  */
3405
3463
  readonly itemMinWidthInput: _angular_core.InputSignalWithTransform<number, unknown>;
@@ -3407,19 +3465,19 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
3407
3465
  readonly minWidth: _angular_core.WritableSignal<number>;
3408
3466
  /**
3409
3467
  * Toggle the visibility of the dropdown select component.
3410
- * @type boolean
3468
+ * @returns boolean
3411
3469
  * @default false
3412
3470
  */
3413
3471
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
3414
3472
  readonly visible: _angular_core.WritableSignal<boolean>;
3415
3473
  /**
3416
3474
  * Emits visibleChange
3417
- * @return boolean
3475
+ * @returns boolean
3418
3476
  */
3419
3477
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
3420
3478
  /**
3421
3479
  * Optional popper Options object
3422
- * @type Partial<Options>
3480
+ * @returns Partial<Options>
3423
3481
  */
3424
3482
  readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
3425
3483
  readonly popperOptions: _angular_core.Signal<{
@@ -3508,22 +3566,26 @@ declare class NavLinkDirective {
3508
3566
  #private;
3509
3567
  static ngAcceptInputType_disabled: BooleanInput;
3510
3568
  /**
3511
- * Sets .nav-link class to the host. [docs]
3569
+ * Sets .nav-link class to the host
3570
+ * @returns boolean
3512
3571
  * @default true
3513
3572
  */
3514
3573
  readonly cNavLink: _angular_core.InputSignalWithTransform<boolean, unknown>;
3515
3574
  /**
3516
- * Toggle the active state for the component. [docs]
3575
+ * Toggle the active state for the component
3576
+ * @returns boolean
3517
3577
  * @default undefined
3518
3578
  */
3519
3579
  readonly active: _angular_core.InputSignal<boolean | undefined>;
3520
3580
  /**
3521
- * Set disabled attr for the host element. [docs]
3581
+ * Set disabled attr for the host element
3582
+ * @returns boolean
3522
3583
  * @default false
3523
3584
  */
3524
3585
  readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
3525
3586
  /**
3526
3587
  * The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
3588
+ * @returns number | undefined
3527
3589
  */
3528
3590
  readonly tabindex: _angular_core.InputSignalWithTransform<number | undefined, unknown>;
3529
3591
  readonly ariaCurrent: _angular_core.Signal<"page" | null>;
@@ -3567,7 +3629,7 @@ declare class NavbarComponent {
3567
3629
  #private;
3568
3630
  /**
3569
3631
  * Sets the color context of the component to one of CoreUI’s themed colors.
3570
- * @type Colors
3632
+ * @returns Colors
3571
3633
  */
3572
3634
  readonly color: _angular_core.InputSignal<string | undefined>;
3573
3635
  /**
@@ -3584,7 +3646,7 @@ declare class NavbarComponent {
3584
3646
  readonly placement: _angular_core.InputSignal<"fixed-top" | "fixed-bottom" | "sticky-top" | undefined>;
3585
3647
  /**
3586
3648
  * HTML element role.
3587
- * @return string
3649
+ * @returns string
3588
3650
  */
3589
3651
  readonly role: _angular_core.InputSignal<string>;
3590
3652
  readonly collapse: _angular_core.Signal<CollapseDirective | undefined>;
@@ -3597,6 +3659,11 @@ declare class NavbarComponent {
3597
3659
  }
3598
3660
 
3599
3661
  declare class NavbarBrandDirective {
3662
+ /**
3663
+ * Default role for navbar-brand.
3664
+ * @returns string
3665
+ * @default 'button'
3666
+ */
3600
3667
  readonly role: _angular_core.InputSignal<string>;
3601
3668
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<NavbarBrandDirective, never>;
3602
3669
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<NavbarBrandDirective, "[cNavbarBrand]", never, { "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -3605,7 +3672,7 @@ declare class NavbarBrandDirective {
3605
3672
  declare class NavbarNavComponent {
3606
3673
  /**
3607
3674
  * Enable vertical scrolling of a collapsed navbar toggleable contents.
3608
- * @type boolean
3675
+ * @returns boolean
3609
3676
  */
3610
3677
  readonly scroll: _angular_core.InputSignalWithTransform<boolean, unknown>;
3611
3678
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -3622,20 +3689,20 @@ declare class NavbarTogglerDirective {
3622
3689
  #private;
3623
3690
  constructor();
3624
3691
  /**
3625
- * Reference to navbar collapse element (via # template variable) . [docs]
3626
- * @return string
3692
+ * Reference to navbar collapse element (via # template variable)
3693
+ * @returns string
3627
3694
  * @default 'button'
3628
3695
  */
3629
3696
  readonly collapseRef: _angular_core.InputSignal<CollapseDirective | undefined>;
3630
3697
  /**
3631
- * Default type for navbar-toggler. [docs]
3632
- * @return string
3698
+ * Default type for navbar-toggler
3699
+ * @returns string
3633
3700
  * @default 'button'
3634
3701
  */
3635
3702
  readonly type: _angular_core.InputSignal<string>;
3636
3703
  /**
3637
- * Default aria-label attr for navbar-toggler. [docs]
3638
- * @return string
3704
+ * Default aria-label attr for navbar-toggler
3705
+ * @returns string
3639
3706
  * @default 'Toggle navigation'
3640
3707
  */
3641
3708
  readonly ariaLabel: _angular_core.InputSignal<string>;
@@ -3669,19 +3736,19 @@ declare class ModalDialogComponent {
3669
3736
  readonly alignment: _angular_core.InputSignal<"top" | "center" | undefined>;
3670
3737
  /**
3671
3738
  * Set modal to covers the entire user viewport.
3672
- * @return {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
3739
+ * @returns {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
3673
3740
  */
3674
3741
  readonly fullscreen: _angular_core.InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
3675
3742
  /**
3676
3743
  * Does the modal dialog itself scroll, or does the whole dialog scroll within the window.
3677
3744
  * @default false
3678
- * @return {boolean}
3745
+ * @returns {boolean}
3679
3746
  */
3680
3747
  readonly scrollable: _angular_core.InputSignalWithTransform<boolean, unknown>;
3681
3748
  /**
3682
3749
  * Size the component small, large, or extra large.
3683
3750
  * @default undefined
3684
- * @return {'sm' | 'lg' | 'xl'}
3751
+ * @returns {'sm' | 'lg' | 'xl'}
3685
3752
  */
3686
3753
  readonly size: _angular_core.InputSignal<"sm" | "lg" | "xl" | undefined>;
3687
3754
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -3723,37 +3790,51 @@ declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
3723
3790
  static ngAcceptInputType_visibleInput: BooleanInput$1;
3724
3791
  /**
3725
3792
  * Align the modal in the center or top of the screen.
3726
- * @return {'top' | 'center'}
3793
+ * @returns {'top' | 'center'}
3727
3794
  * @default 'top'
3728
3795
  */
3729
3796
  readonly alignment: _angular_core.InputSignal<"top" | "center">;
3730
3797
  /**
3731
3798
  * Apply a backdrop on the body while the modal is open.
3732
- * @return boolean | 'static'
3799
+ * @returns boolean | 'static'
3733
3800
  * @default true
3734
3801
  */
3735
3802
  readonly backdrop: _angular_core.InputSignal<boolean | "static">;
3803
+ /**
3804
+ * Appends the angular modal to a specific element. You can pass an HTML element or function that returns a single element. By default, `document.body`.
3805
+ * @since 5.7.20
3806
+ * @returns Element | (() => Element | null) | null
3807
+ * @default document.body
3808
+ */
3809
+ readonly container: _angular_core.InputSignal<Element | (() => Element | null) | null>;
3736
3810
  /**
3737
3811
  * Set modal to cover the entire user viewport.
3738
- * @return {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
3812
+ * @returns {boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'}
3739
3813
  * @default undefined
3740
3814
  */
3741
3815
  readonly fullscreen: _angular_core.InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
3742
3816
  /**
3743
3817
  * Closes the modal when the escape key is pressed.
3744
- * @return boolean
3818
+ * @returns boolean
3745
3819
  * @default true
3746
3820
  */
3747
3821
  readonly keyboard: _angular_core.InputSignalWithTransform<boolean, unknown>;
3748
3822
  /**
3749
- * Html id attribute, required for programmatic visibility change.
3750
- * @return string
3823
+ * HTML id attribute, required for programmatic visibility change.
3824
+ * @returns string
3751
3825
  */
3752
3826
  readonly attrId: _angular_core.InputSignal<string | undefined>;
3753
3827
  get id(): string | undefined;
3828
+ /**
3829
+ * Generates modal using a portal
3830
+ * @since 5.7.20
3831
+ * @returns boolean
3832
+ * @default false
3833
+ */
3834
+ readonly portal: _angular_core.InputSignalWithTransform<boolean, unknown>;
3754
3835
  /**
3755
3836
  * Size the component small, large, or extra large.
3756
- * @return {'sm' | 'lg' | 'xl'}
3837
+ * @returns {'sm' | 'lg' | 'xl'}
3757
3838
  * @default undefined
3758
3839
  */
3759
3840
  readonly size: _angular_core.InputSignal<"sm" | "lg" | "xl" | undefined>;
@@ -3763,33 +3844,36 @@ declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
3763
3844
  readonly transition: _angular_core.InputSignalWithTransform<boolean, unknown>;
3764
3845
  /**
3765
3846
  * Default role for modal
3766
- * @return string
3847
+ * @returns string
3767
3848
  * @default 'dialog'
3768
3849
  */
3769
3850
  readonly role: _angular_core.InputSignal<string>;
3770
3851
  /**
3771
3852
  * Set aria-modal html attr for modal
3772
- * @type boolean
3853
+ * @returns boolean
3773
3854
  * @default null
3774
3855
  */
3775
3856
  readonly ariaModalInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
3776
3857
  readonly ariaModal: _angular_core.Signal<true | null>;
3777
3858
  /**
3778
3859
  * Create a scrollable modal that allows scrolling the modal body.
3779
- * @return boolean
3860
+ * @returns boolean
3780
3861
  * @default false
3781
3862
  */
3782
3863
  readonly scrollable: _angular_core.InputSignalWithTransform<boolean, unknown>;
3783
3864
  /**
3784
3865
  * Toggle the visibility of modal component.
3785
- * @return boolean
3866
+ * @returns boolean
3786
3867
  * @default false
3787
3868
  */
3788
3869
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
3789
3870
  readonly visible: _angular_core.WritableSignal<boolean>;
3871
+ protected readonly domPortal: DomPortal<any>;
3872
+ protected domPortalOutlet: DomPortalOutlet;
3873
+ protected domPortalCleanup: () => void;
3790
3874
  /**
3791
3875
  * Event triggered on modal dismiss.
3792
- * @return boolean
3876
+ * @returns boolean
3793
3877
  */
3794
3878
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
3795
3879
  readonly modalContentRef: _angular_core.Signal<ElementRef<any> | undefined>;
@@ -3811,7 +3895,7 @@ declare class ModalComponent implements OnInit, OnDestroy, AfterViewInit {
3811
3895
  private setBodyStyles;
3812
3896
  private setStaticBackdrop;
3813
3897
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ModalComponent, never>;
3814
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<ModalComponent, "c-modal", ["cModal"], { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; "keyboard": { "alias": "keyboard"; "required": false; "isSignal": true; }; "attrId": { "alias": "id"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaModalInput": { "alias": "ariaModal"; "required": false; "isSignal": true; }; "scrollable": { "alias": "scrollable"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
3898
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<ModalComponent, "c-modal", ["cModal"], { "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; "backdrop": { "alias": "backdrop"; "required": false; "isSignal": true; }; "container": { "alias": "container"; "required": false; "isSignal": true; }; "fullscreen": { "alias": "fullscreen"; "required": false; "isSignal": true; }; "keyboard": { "alias": "keyboard"; "required": false; "isSignal": true; }; "attrId": { "alias": "id"; "required": false; "isSignal": true; }; "portal": { "alias": "portal"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "transition": { "alias": "transition"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; "ariaModalInput": { "alias": "ariaModal"; "required": false; "isSignal": true; }; "scrollable": { "alias": "scrollable"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; }, { "visibleChange": "visibleChange"; }, never, ["*"], true, never>;
3815
3899
  }
3816
3900
 
3817
3901
  interface IModalAction {
@@ -3841,55 +3925,55 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
3841
3925
  static ngAcceptInputType_visible: BooleanInput$1;
3842
3926
  /**
3843
3927
  * Apply a backdrop on the body while offcanvas is open.
3844
- * @return boolean | 'static'
3928
+ * @returns boolean | 'static'
3845
3929
  * @default true
3846
3930
  */
3847
3931
  readonly backdrop: _angular_core.InputSignal<boolean | "static">;
3848
3932
  /**
3849
3933
  * Closes the offcanvas when the escape key is pressed
3850
- * @return boolean
3934
+ * @returns boolean
3851
3935
  * @default true
3852
3936
  */
3853
3937
  readonly keyboard: _angular_core.InputSignalWithTransform<boolean, unknown>;
3854
3938
  /**
3855
3939
  * Component placement
3856
- * @return {'start' | 'end' | 'top' | 'bottom'}
3940
+ * @returns string | 'start' | 'end' | 'top' | 'bottom'
3857
3941
  * @default 'start'
3858
3942
  */
3859
3943
  readonly placement: _angular_core.InputSignal<string>;
3860
3944
  /**
3861
3945
  * Responsive offcanvas property hides content outside the viewport from a specified breakpoint and down.
3862
- * @return boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
3946
+ * @returns boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl';
3863
3947
  * @default true
3864
3948
  * @since 4.3.10
3865
3949
  */
3866
3950
  readonly responsive: _angular_core.InputSignal<boolean | "sm" | "md" | "lg" | "xl" | "xxl" | undefined>;
3867
3951
  /**
3868
3952
  * Html id attribute, required for programmatic visibility change.
3869
- * @return string
3953
+ * @returns string
3870
3954
  */
3871
3955
  readonly id: _angular_core.InputSignal<string>;
3872
3956
  /**
3873
- * Default role for offcanvas. [docs]
3874
- * @return string
3957
+ * Default role for offcanvas
3958
+ * @returns string
3875
3959
  * @default 'dialog'
3876
3960
  */
3877
3961
  readonly role: _angular_core.InputSignal<string>;
3878
3962
  /**
3879
- * Set aria-modal html attr for offcanvas. [docs]
3880
- * @return boolean
3963
+ * Set aria-modal html attr for offcanvas
3964
+ * @returns boolean
3881
3965
  * @default true
3882
3966
  */
3883
3967
  readonly ariaModal: _angular_core.InputSignalWithTransform<boolean, unknown>;
3884
3968
  /**
3885
3969
  * Allow body scrolling while offcanvas is visible.
3886
- * @return boolean
3970
+ * @returns boolean
3887
3971
  * @default false
3888
3972
  */
3889
3973
  readonly scroll: _angular_core.InputSignalWithTransform<boolean, unknown>;
3890
3974
  /**
3891
3975
  * Toggle the visibility of offcanvas component.
3892
- * @return boolean
3976
+ * @returns boolean
3893
3977
  * @default false
3894
3978
  */
3895
3979
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -3897,7 +3981,7 @@ declare class OffcanvasComponent implements OnInit, OnDestroy {
3897
3981
  readonly visibleEffect: _angular_core.EffectRef;
3898
3982
  /**
3899
3983
  * Event triggered on visible change.
3900
- * @return <boolean>
3984
+ * @returns boolean
3901
3985
  */
3902
3986
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
3903
3987
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -3938,7 +4022,7 @@ declare class OffcanvasToggleDirective {
3938
4022
  #private;
3939
4023
  /**
3940
4024
  * Html id attr of offcanvas to toggle.
3941
- * @return string
4025
+ * @returns string
3942
4026
  */
3943
4027
  readonly id: _angular_core.InputSignal<string | undefined>;
3944
4028
  protected toggleOpen($event: MouseEvent): void;
@@ -4099,6 +4183,10 @@ declare class OneTimePasswordModule {
4099
4183
 
4100
4184
  declare class PageLinkDirective {
4101
4185
  static ngAcceptInputType_disabled: BooleanInput$1;
4186
+ /**
4187
+ * Toggle the disabled state for the component.
4188
+ * @returns boolean
4189
+ */
4102
4190
  readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
4103
4191
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
4104
4192
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageLinkDirective, never>;
@@ -4110,12 +4198,12 @@ declare class PageItemDirective {
4110
4198
  static ngAcceptInputType_disabled: BooleanInput$1;
4111
4199
  /**
4112
4200
  * Toggle the active state for the component.
4113
- * @return boolean
4201
+ * @returns boolean
4114
4202
  */
4115
4203
  readonly active: _angular_core.InputSignal<boolean | undefined>;
4116
4204
  /**
4117
4205
  * Toggle the disabled state for the component.
4118
- * @return boolean
4206
+ * @returns boolean
4119
4207
  */
4120
4208
  readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
4121
4209
  readonly ariaCurrent: _angular_core.Signal<"page" | null>;
@@ -4134,17 +4222,17 @@ declare class PageItemComponent extends PageItemDirective {
4134
4222
  declare class PaginationComponent {
4135
4223
  /**
4136
4224
  * Set the alignment of pagination components.
4137
- * @values 'start', 'center', 'end'
4225
+ * @returns 'start' | 'center' | 'end' | ''
4138
4226
  */
4139
4227
  readonly align: _angular_core.InputSignal<"" | "start" | "end" | "center">;
4140
4228
  /**
4141
4229
  * Size the component small or large.
4142
- * @values 'sm', 'lg'
4230
+ * @returns '' | 'sm' | 'lg' | string
4143
4231
  */
4144
4232
  readonly size: _angular_core.InputSignal<string | undefined>;
4145
4233
  /**
4146
- * Default role for pagination. [docs]
4147
- * @return string
4234
+ * Default role for pagination
4235
+ * @returns string
4148
4236
  * @default 'navigation'
4149
4237
  */
4150
4238
  readonly role: _angular_core.InputSignal<string>;
@@ -4162,7 +4250,7 @@ declare class PaginationModule {
4162
4250
  declare class PlaceholderDirective {
4163
4251
  /**
4164
4252
  * placeholder toggler
4165
- * @type boolean
4253
+ * @returns boolean
4166
4254
  * @default false
4167
4255
  */
4168
4256
  readonly visible: InputSignalWithTransform<boolean, unknown>;
@@ -4179,7 +4267,7 @@ declare class PlaceholderDirective {
4179
4267
  declare class PlaceholderAnimationDirective {
4180
4268
  /**
4181
4269
  * Animation type for placeholder
4182
- * @type 'glow' | 'wave'
4270
+ * @returns 'glow' | 'wave'
4183
4271
  * @default undefined
4184
4272
  */
4185
4273
  readonly animation: InputSignal<'glow' | 'wave' | undefined>;
@@ -4200,15 +4288,24 @@ declare class PopoverComponent implements OnDestroy {
4200
4288
  readonly renderer: Renderer2;
4201
4289
  /**
4202
4290
  * Content of popover
4203
- * @return {string | TemplateRef}
4291
+ * @returns {string | TemplateRef}
4204
4292
  */
4205
4293
  readonly content: _angular_core.InputSignal<string | TemplateRef<any>>;
4206
4294
  /**
4207
4295
  * Toggle the visibility of popover component.
4208
- * @return boolean
4296
+ * @returns boolean
4209
4297
  */
4210
4298
  readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
4299
+ /**
4300
+ * The `id` HTML attribute of the popover.
4301
+ * @returns string
4302
+ */
4211
4303
  readonly id: _angular_core.InputSignal<string | undefined>;
4304
+ /**
4305
+ * Default role for popover.
4306
+ * @returns string
4307
+ * @default 'tooltip'
4308
+ */
4212
4309
  readonly role: _angular_core.InputSignal<string>;
4213
4310
  readonly viewContainerRef: _angular_core.Signal<ViewContainerRef | undefined>;
4214
4311
  private textNode;
@@ -4224,12 +4321,12 @@ declare class PopoverDirective implements OnDestroy, OnInit, AfterViewInit {
4224
4321
  #private;
4225
4322
  /**
4226
4323
  * Content of popover
4227
- * @return {string | TemplateRef}
4324
+ * @returns {string | TemplateRef}
4228
4325
  */
4229
4326
  readonly content: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
4230
4327
  /**
4231
4328
  * Optional popper Options object, takes precedence over cPopoverPlacement prop
4232
- * @return Partial<Options>
4329
+ * @returns Partial<Options>
4233
4330
  */
4234
4331
  readonly popperOptions: _angular_core.InputSignal<Partial<Options>>;
4235
4332
  readonly popperOptionsComputed: _angular_core.Signal<{
@@ -4258,7 +4355,7 @@ declare class PopoverDirective implements OnDestroy, OnInit, AfterViewInit {
4258
4355
  readonly trigger: _angular_core.InputSignal<Triggers | Triggers[]>;
4259
4356
  /**
4260
4357
  * Toggle the visibility of popover component.
4261
- * @return boolean
4358
+ * @returns boolean
4262
4359
  */
4263
4360
  readonly visible: _angular_core.ModelSignal<boolean>;
4264
4361
  get ariaDescribedBy(): string | null;
@@ -4310,7 +4407,7 @@ declare class ProgressBarDirective {
4310
4407
  #private;
4311
4408
  /**
4312
4409
  * Use to animate the stripes right to left via CSS3 animations.
4313
- * @return boolean
4410
+ * @returns boolean
4314
4411
  */
4315
4412
  readonly animated: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
4316
4413
  /**
@@ -4318,10 +4415,15 @@ declare class ProgressBarDirective {
4318
4415
  * @values 'primary', 'secondary', 'success', 'danger', 'warning', 'info', 'dark', 'light'
4319
4416
  */
4320
4417
  readonly color: _angular_core.InputSignal<string | undefined>;
4418
+ /**
4419
+ * Number of decimal places to round the computed percent value to.
4420
+ * @returns number
4421
+ * @default 0
4422
+ */
4321
4423
  readonly precision: _angular_core.InputSignalWithTransform<number, unknown>;
4322
4424
  /**
4323
4425
  * The percent value the ProgressBar.
4324
- * @return number
4426
+ * @returns number
4325
4427
  * @default 0
4326
4428
  */
4327
4429
  readonly value: _angular_core.InputSignalWithTransform<number, unknown>;
@@ -4333,13 +4435,13 @@ declare class ProgressBarDirective {
4333
4435
  readonly variant: _angular_core.InputSignal<"striped" | undefined>;
4334
4436
  /**
4335
4437
  * The max value of the ProgressBar.
4336
- * @return number
4438
+ * @returns number
4337
4439
  * @default 100
4338
4440
  */
4339
4441
  readonly max: _angular_core.InputSignalWithTransform<number, unknown>;
4340
4442
  /**
4341
4443
  * Set default html role attribute.
4342
- * @return string
4444
+ * @returns string
4343
4445
  */
4344
4446
  readonly role: _angular_core.InputSignal<string>;
4345
4447
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressBarDirective, never>;
@@ -4363,17 +4465,17 @@ declare class ProgressComponent {
4363
4465
  readonly contentProgressBars: _angular_core.Signal<readonly ProgressBarComponent[]>;
4364
4466
  /**
4365
4467
  * Sets the height of the component. If you set that value the inner `<CProgressBar>` will automatically resize accordingly.
4366
- * @return number
4468
+ * @returns number
4367
4469
  */
4368
4470
  readonly height: _angular_core.InputSignalWithTransform<number, unknown>;
4369
4471
  /**
4370
4472
  * Displays thin progress.
4371
- * @return boolean
4473
+ * @returns boolean
4372
4474
  */
4373
4475
  readonly thin: _angular_core.InputSignalWithTransform<boolean, unknown>;
4374
4476
  /**
4375
4477
  * Change the default color to white.
4376
- * @return boolean
4478
+ * @returns boolean
4377
4479
  */
4378
4480
  readonly white: _angular_core.InputSignalWithTransform<boolean, unknown>;
4379
4481
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -4383,6 +4485,11 @@ declare class ProgressComponent {
4383
4485
  }
4384
4486
 
4385
4487
  declare class ProgressStackedComponent {
4488
+ /**
4489
+ * Toggle the `progress-stacked` class on the host element.
4490
+ * @returns boolean
4491
+ * @default true
4492
+ */
4386
4493
  readonly stacked: _angular_core.InputSignal<boolean>;
4387
4494
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ProgressStackedComponent, never>;
4388
4495
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<ProgressStackedComponent, "c-progress-stacked", ["cProgressStacked"], { "stacked": { "alias": "stacked"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
@@ -4500,7 +4607,7 @@ declare class RatingComponent implements ControlValueAccessor {
4500
4607
  readonly hoverValue: _angular_core.WritableSignal<number | null>;
4501
4608
  /**
4502
4609
  * Event emitted on `mouseenter` and `mouseleave`.
4503
- * @return number | null
4610
+ * @returns number | null
4504
4611
  */
4505
4612
  readonly hoverValueChange: _angular_core.OutputEmitterRef<number | null>;
4506
4613
  readonly hoverValueEffect: _angular_core.EffectRef;
@@ -4647,7 +4754,7 @@ declare class RangeSliderComponent implements ControlValueAccessor, OnInit {
4647
4754
  readonly value: _angular_core.WritableSignal<number | number[]>;
4648
4755
  /**
4649
4756
  * Event emitted on `value` change.
4650
- * @return number | number[]
4757
+ * @returns number | number[]
4651
4758
  */
4652
4759
  readonly valueChange: _angular_core.OutputEmitterRef<number | number[]>;
4653
4760
  readonly currentValue: _angular_core.Signal<number[]>;
@@ -4697,6 +4804,68 @@ declare class RangeSliderModule {
4697
4804
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<RangeSliderModule>;
4698
4805
  }
4699
4806
 
4807
+ declare class SearchButtonComponent {
4808
+ #private;
4809
+ /**
4810
+ * Toggle the disabled state for the component.
4811
+ * @returns boolean
4812
+ * @default false
4813
+ */
4814
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
4815
+ /**
4816
+ * Placeholder content rendered inside `.search-button-placeholder`.
4817
+ * @returns string
4818
+ * @default 'Search'
4819
+ */
4820
+ readonly placeholder: _angular_core.InputSignal<string>;
4821
+ /**
4822
+ * Prevent the browser's default behavior when the configured shortcut matches.
4823
+ * @returns boolean
4824
+ * @default true
4825
+ */
4826
+ readonly preventDefault: _angular_core.InputSignalWithTransform<boolean, unknown>;
4827
+ /**
4828
+ * Comma-separated shortcut list. The component matches all configured shortcuts and renders the platform-preferred one.
4829
+ * @returns string
4830
+ * @default 'meta+/,ctrl+/'
4831
+ */
4832
+ readonly shortcut: _angular_core.InputSignal<string>;
4833
+ /**
4834
+ * Event emitted when the component is activated by click or keyboard shortcut.
4835
+ */
4836
+ readonly trigger: _angular_core.OutputEmitterRef<void>;
4837
+ protected readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
4838
+ protected readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
4839
+ protected readonly activeKeys: _angular_core.WritableSignal<string[]>;
4840
+ protected readonly shortcuts: _angular_core.Signal<_coreui_angular_pro.SearchButtonShortcut[]>;
4841
+ protected readonly preferredShortcut: _angular_core.Signal<_coreui_angular_pro.SearchButtonShortcut>;
4842
+ protected readonly shortcutTokens: _angular_core.Signal<string[]>;
4843
+ protected onClick(): void;
4844
+ protected onDocumentKeydown(event: KeyboardEvent): void;
4845
+ protected onDocumentKeyup(event: KeyboardEvent): void;
4846
+ protected onWindowBlur(): void;
4847
+ private handleShortcut;
4848
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchButtonComponent, never>;
4849
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<SearchButtonComponent, "c-search-button", ["cSearchButton"], { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "preventDefault": { "alias": "preventDefault"; "required": false; "isSignal": true; }; "shortcut": { "alias": "shortcut"; "required": false; "isSignal": true; }; }, { "trigger": "trigger"; }, ["contentTemplates"], ["ng-template", "*"], true, never>;
4850
+ }
4851
+
4852
+ declare class SearchButtonModule {
4853
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<SearchButtonModule, never>;
4854
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<SearchButtonModule, never, [typeof SearchButtonComponent], [typeof SearchButtonComponent]>;
4855
+ static ɵinj: _angular_core.ɵɵInjectorDeclaration<SearchButtonModule>;
4856
+ }
4857
+
4858
+ type SearchButtonShortcut = {
4859
+ key: string;
4860
+ modifiers: {
4861
+ alt: boolean;
4862
+ ctrl: boolean;
4863
+ meta: boolean;
4864
+ shift: boolean;
4865
+ };
4866
+ shortcut: string;
4867
+ };
4868
+
4700
4869
  interface IIntersectionObserverInit {
4701
4870
  root?: Element | null;
4702
4871
  rootMargin?: string;
@@ -4822,17 +4991,17 @@ declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
4822
4991
  readonly state: _angular_core.WritableSignal<ISidebarAction>;
4823
4992
  /**
4824
4993
  * Sets if the color of text should be colored for a light or dark background.
4825
- * @return 'dark' | 'light'
4994
+ * @returns 'dark' | 'light'
4826
4995
  */
4827
4996
  readonly colorScheme: _angular_core.InputSignal<"dark" | "light" | undefined>;
4828
4997
  /**
4829
4998
  * Sets html attribute id.
4830
- * @return string
4999
+ * @returns string
4831
5000
  */
4832
5001
  readonly id: _angular_core.InputSignal<string | undefined>;
4833
5002
  /**
4834
5003
  * Make sidebar narrow.
4835
- * @return boolean
5004
+ * @returns boolean
4836
5005
  * @default false
4837
5006
  */
4838
5007
  readonly narrowInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -4840,36 +5009,36 @@ declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
4840
5009
  get narrow(): boolean;
4841
5010
  /**
4842
5011
  * Set sidebar to overlaid variant.
4843
- * @return boolean
5012
+ * @returns boolean
4844
5013
  * @default false
4845
5014
  */
4846
5015
  readonly overlaid: _angular_core.InputSignalWithTransform<boolean, unknown>;
4847
5016
  /**
4848
5017
  * Components placement, there’s no default placement.
4849
- * @return 'start' | 'end'
5018
+ * @returns 'start' | 'end'
4850
5019
  */
4851
5020
  readonly placement: _angular_core.InputSignal<"start" | "end" | undefined>;
4852
5021
  /**
4853
5022
  * Place sidebar in non-static positions.
4854
- * @return 'fixed' | 'sticky'
5023
+ * @returns 'fixed' | 'sticky'
4855
5024
  * @default 'fixed'
4856
5025
  */
4857
5026
  readonly position: _angular_core.InputSignal<"fixed" | "sticky">;
4858
5027
  /**
4859
5028
  * Size the component small, large, or extra large.
4860
- * @return 'sm' | 'lg' | 'xl'
5029
+ * @returns 'sm' | 'lg' | 'xl'
4861
5030
  */
4862
5031
  readonly size: _angular_core.InputSignal<"sm" | "lg" | "xl" | undefined>;
4863
5032
  /**
4864
5033
  * Expand narrowed sidebar on hover.
4865
- * @type boolean
5034
+ * @returns boolean
4866
5035
  * @default false
4867
5036
  */
4868
5037
  readonly unfoldableInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
4869
5038
  readonly unfoldable: _angular_core.WritableSignal<boolean>;
4870
5039
  /**
4871
5040
  * Toggle the visibility of sidebar component.
4872
- * @type boolean
5041
+ * @returns boolean
4873
5042
  * @default false
4874
5043
  */
4875
5044
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -4877,7 +5046,7 @@ declare class SidebarComponent implements OnChanges, OnDestroy, OnInit {
4877
5046
  get visible(): boolean;
4878
5047
  /**
4879
5048
  * Event emitted on visibility change.
4880
- * @return boolean
5049
+ * @returns boolean
4881
5050
  */
4882
5051
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
4883
5052
  set sidebarState(value: ISidebarAction);
@@ -4929,13 +5098,13 @@ declare class SidebarToggleDirective {
4929
5098
  #private;
4930
5099
  /**
4931
5100
  * Id of sidebar for toggle action.
4932
- * @return string
5101
+ * @returns string
4933
5102
  */
4934
5103
  readonly id: _angular_core.InputSignal<string | undefined>;
4935
5104
  /**
4936
5105
  * Sidebar property name for toggle action.
4937
5106
  *
4938
- * @return 'visible' | 'unfoldable'
5107
+ * @returns 'visible' | 'unfoldable'
4939
5108
  * @default 'visible'
4940
5109
  */
4941
5110
  readonly toggle: _angular_core.InputSignal<"visible" | "unfoldable">;
@@ -4945,6 +5114,11 @@ declare class SidebarToggleDirective {
4945
5114
  }
4946
5115
 
4947
5116
  declare class SidebarTogglerDirective {
5117
+ /**
5118
+ * Default role for sidebar toggler.
5119
+ * @returns string
5120
+ * @default 'button'
5121
+ */
4948
5122
  readonly role: _angular_core.InputSignal<string>;
4949
5123
  get getStyles(): any;
4950
5124
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarTogglerDirective, never>;
@@ -5029,6 +5203,10 @@ declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
5029
5203
  #private;
5030
5204
  readonly helper: SidebarNavHelper;
5031
5205
  constructor();
5206
+ /**
5207
+ * The nav data item rendered as a sidebar nav group.
5208
+ * @returns INavData
5209
+ */
5032
5210
  readonly item: _angular_core.InputSignal<INavData | undefined>;
5033
5211
  /**
5034
5212
  * Determines when an inactive `c-sidebar-nav-group` closes.
@@ -5037,7 +5215,15 @@ declare class SidebarNavGroupComponent implements OnInit, OnDestroy {
5037
5215
  * - `none`: never, the group stays open
5038
5216
  */
5039
5217
  readonly dropdownMode: _angular_core.InputSignal<"path" | "none" | "close">;
5218
+ /**
5219
+ * Sets the group's initial expanded state.
5220
+ * @returns boolean
5221
+ */
5040
5222
  readonly show: _angular_core.InputSignal<boolean | undefined>;
5223
+ /**
5224
+ * Renders the group's nested nav in compact mode.
5225
+ * @returns boolean
5226
+ */
5041
5227
  readonly compact: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
5042
5228
  readonly hostClasses: _angular_core.Signal<{
5043
5229
  'nav-group': boolean;
@@ -5067,7 +5253,7 @@ declare class SidebarNavComponent implements OnChanges {
5067
5253
  readonly router: Router;
5068
5254
  /**
5069
5255
  * Configuration object for sidebar-nav.
5070
- * @return INavData[]
5256
+ * @returns INavData[]
5071
5257
  * @default []
5072
5258
  */
5073
5259
  readonly navItems: _angular_core.InputSignal<INavData[] | undefined>;
@@ -5078,8 +5264,21 @@ declare class SidebarNavComponent implements OnChanges {
5078
5264
  * - `none`: never, the group stays open
5079
5265
  */
5080
5266
  readonly dropdownMode: _angular_core.InputSignal<"path" | "none" | "close">;
5267
+ /**
5268
+ * Renders `c-sidebar-nav` as a nested group's item list rather than the top-level sidebar nav.
5269
+ * @returns boolean
5270
+ */
5081
5271
  readonly groupItems: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
5272
+ /**
5273
+ * Renders the nav in compact mode.
5274
+ * @returns boolean
5275
+ */
5082
5276
  readonly compact: _angular_core.InputSignalWithTransform<boolean | undefined, unknown>;
5277
+ /**
5278
+ * Default role for sidebar nav.
5279
+ * @returns string
5280
+ * @default 'navigation'
5281
+ */
5083
5282
  readonly role: _angular_core.InputSignal<string>;
5084
5283
  readonly hostClasses: _angular_core.Signal<{
5085
5284
  'sidebar-nav': boolean;
@@ -5094,6 +5293,10 @@ declare class SidebarNavComponent implements OnChanges {
5094
5293
  }
5095
5294
 
5096
5295
  declare class SidebarNavDividerComponent {
5296
+ /**
5297
+ * The nav data item rendered as a sidebar nav divider.
5298
+ * @returns INavData
5299
+ */
5097
5300
  readonly item: _angular_core.InputSignal<INavData | undefined>;
5098
5301
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavDividerComponent, never>;
5099
5302
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavDividerComponent, "c-sidebar-nav-divider", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -5101,13 +5304,26 @@ declare class SidebarNavDividerComponent {
5101
5304
 
5102
5305
  declare class SidebarNavLinkContentComponent {
5103
5306
  readonly helper: SidebarNavHelper;
5307
+ /**
5308
+ * The nav data item rendered as the link content.
5309
+ * @returns INavData
5310
+ * @default {}
5311
+ */
5104
5312
  readonly item: _angular_core.InputSignal<INavData>;
5105
5313
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<SidebarNavLinkContentComponent, never>;
5106
5314
  static ɵcmp: _angular_core.ɵɵComponentDeclaration<SidebarNavLinkContentComponent, "c-sidebar-nav-link-content", never, { "item": { "alias": "item"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
5107
5315
  }
5108
5316
  declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
5109
5317
  readonly router: Router;
5318
+ /**
5319
+ * The nav data item rendered as a sidebar nav link.
5320
+ * @returns INavData
5321
+ */
5110
5322
  readonly item: _angular_core.InputSignal<INavData | undefined>;
5323
+ /**
5324
+ * Event emitted when the sidebar nav link is clicked.
5325
+ * @returns void
5326
+ */
5111
5327
  readonly linkClick: _angular_core.OutputEmitterRef<void>;
5112
5328
  linkType: string;
5113
5329
  href: string;
@@ -5128,6 +5344,10 @@ declare class SidebarNavLinkComponent implements OnInit, OnDestroy {
5128
5344
 
5129
5345
  declare class SidebarNavTitleComponent {
5130
5346
  #private;
5347
+ /**
5348
+ * The nav data item rendered as a sidebar nav title.
5349
+ * @returns INavData
5350
+ */
5131
5351
  readonly item: _angular_core.InputSignal<INavData | undefined>;
5132
5352
  private addAttribs;
5133
5353
  private setStyle;
@@ -5139,6 +5359,11 @@ declare class SidebarNavTitleComponent {
5139
5359
 
5140
5360
  declare class SidebarNavLabelComponent {
5141
5361
  readonly helper: SidebarNavHelper;
5362
+ /**
5363
+ * The nav data item rendered as a sidebar nav label.
5364
+ * @returns INavData
5365
+ * @default {}
5366
+ */
5142
5367
  readonly item: _angular_core.InputSignal<INavData>;
5143
5368
  readonly itemClass: _angular_core.Signal<Record<string, boolean>>;
5144
5369
  readonly labelIconClass: _angular_core.Signal<Record<string, boolean>>;
@@ -5190,7 +5415,7 @@ declare class SmartPaginationComponent {
5190
5415
  readonly activePage: _angular_core.WritableSignal<number>;
5191
5416
  /**
5192
5417
  * Event triggered on activePage change.
5193
- * @return number
5418
+ * @returns number
5194
5419
  */
5195
5420
  readonly activePageChange: _angular_core.OutputEmitterRef<number>;
5196
5421
  /**
@@ -5214,13 +5439,13 @@ declare class SmartPaginationComponent {
5214
5439
  /**
5215
5440
  * Maximum items number.
5216
5441
  * @default 5
5217
- * @return number
5442
+ * @returns number
5218
5443
  */
5219
5444
  readonly limit: _angular_core.InputSignalWithTransform<number, unknown>;
5220
5445
  /**
5221
5446
  * Number of pages.
5222
5447
  * @default 1
5223
- * @return number
5448
+ * @returns number
5224
5449
  */
5225
5450
  readonly pages: _angular_core.InputSignalWithTransform<number, unknown>;
5226
5451
  /**
@@ -5259,7 +5484,7 @@ declare class SmartPaginationComponent {
5259
5484
  readonly size: _angular_core.InputSignal<string | undefined>;
5260
5485
  /**
5261
5486
  * Default role for pagination.
5262
- * @return string
5487
+ * @returns string
5263
5488
  * @default 'navigation'
5264
5489
  */
5265
5490
  readonly role: _angular_core.InputSignal<string>;
@@ -5299,23 +5524,23 @@ declare class SmartTableFilterComponent {
5299
5524
  interface ITable {
5300
5525
  /**
5301
5526
  * Set the vertical alignment.
5302
- * @type string
5527
+ * @returns string
5303
5528
  * @values 'bottom' | 'middle' | 'top'
5304
5529
  */
5305
5530
  align?: 'bottom' | 'middle' | 'top';
5306
5531
  /**
5307
5532
  * Sets the border color of the component to one of CoreUI’s themed colors.
5308
- * @type Colors
5533
+ * @returns Colors
5309
5534
  */
5310
5535
  borderColor?: Colors;
5311
5536
  /**
5312
5537
  * Add borders on all sides of the table and cells.
5313
- * @type boolean
5538
+ * @returns boolean
5314
5539
  */
5315
5540
  bordered?: boolean | string;
5316
5541
  /**
5317
5542
  * Remove borders on all sides of the table and cells.
5318
- * @type boolean
5543
+ * @returns boolean
5319
5544
  */
5320
5545
  borderless?: boolean | string;
5321
5546
  /**
@@ -5325,12 +5550,12 @@ interface ITable {
5325
5550
  caption?: 'top';
5326
5551
  /**
5327
5552
  * Sets the color context of the component to one of CoreUI’s themed colors.
5328
- * @type Colors
5553
+ * @returns Colors
5329
5554
  */
5330
5555
  color?: Colors;
5331
5556
  /**
5332
5557
  * Enable a hover state on table rows within table body.
5333
- * @type boolean
5558
+ * @returns boolean
5334
5559
  */
5335
5560
  hover?: boolean | string;
5336
5561
  /**
@@ -5340,12 +5565,12 @@ interface ITable {
5340
5565
  responsive?: boolean | Omit<Breakpoints, 'xs'>;
5341
5566
  /**
5342
5567
  * Make table more compact by cutting all cell `padding` in half.
5343
- * @type boolean
5568
+ * @returns boolean
5344
5569
  */
5345
5570
  small?: boolean | string;
5346
5571
  /**
5347
5572
  * Add zebra-striping to any table row within the table body`.
5348
- * @type boolean
5573
+ * @returns boolean
5349
5574
  */
5350
5575
  striped?: boolean | string;
5351
5576
  attributes?: Partial<HTMLTableElement>;
@@ -5353,12 +5578,12 @@ interface ITable {
5353
5578
  interface ITableElementProps {
5354
5579
  /**
5355
5580
  * Set the vertical alignment.
5356
- @type 'bottom' | 'middle' | 'top'
5581
+ @returns 'bottom' | 'middle' | 'top'
5357
5582
  */
5358
5583
  align?: ('bottom' | 'middle' | 'top');
5359
5584
  /**
5360
5585
  * Sets the color context of the component to one of CoreUI’s themed colors.
5361
- * @type Colors
5586
+ * @returns Colors
5362
5587
  */
5363
5588
  color?: Colors;
5364
5589
  /** @deprecated */
@@ -5367,7 +5592,7 @@ interface ITableElementProps {
5367
5592
  interface ITableRowCellProps extends ITableElementProps {
5368
5593
  /**
5369
5594
  * Highlight a table row or cell
5370
- @type boolean
5595
+ @returns boolean
5371
5596
  */
5372
5597
  active?: boolean;
5373
5598
  /** @deprecated */
@@ -5377,7 +5602,7 @@ interface ITableRowCellProps extends ITableElementProps {
5377
5602
  interface ISmartTable {
5378
5603
  /**
5379
5604
  * Sets active page. If 'pagination' prop is enabled, activePage is set only initially.
5380
- * @type number
5605
+ * @returns number
5381
5606
  * @default 1
5382
5607
  */
5383
5608
  activePage?: number;
@@ -5386,12 +5611,12 @@ interface ISmartTable {
5386
5611
  * Cleaner resets `tableFilterValue`, `columnFilterValue`, `sorterValue`.
5387
5612
  * If clean is possible it is clickable (`tabIndex="0"` `role="button"`, `color="danger"`), otherwise it is not clickable and transparent.
5388
5613
  * Cleaner can be customized through the `cleaner` slot.
5389
- * @type boolean
5614
+ * @returns boolean
5390
5615
  */
5391
5616
  cleaner?: boolean;
5392
5617
  /**
5393
5618
  * Style table items as clickable.
5394
- * @type boolean
5619
+ * @returns boolean
5395
5620
  */
5396
5621
  clickableRows?: boolean;
5397
5622
  /**
@@ -5399,7 +5624,7 @@ interface ISmartTable {
5399
5624
  * Column filter can be customized, by passing prop as object with additional options as keys. Available options:
5400
5625
  * - external (Boolean) - Disables automatic filtering inside component.
5401
5626
  * - lazy (Boolean) - Set to true to trigger filter updates only on change event.
5402
- * @type boolean | ColumnFilter
5627
+ * @returns boolean | ColumnFilter
5403
5628
  */
5404
5629
  columnFilter?: boolean | IColumnFilter;
5405
5630
  /**
@@ -5427,13 +5652,13 @@ interface ISmartTable {
5427
5652
  * Sorter can be customized, by passing prop as object with additional options as keys. Available options:
5428
5653
  * - external (Boolean) - Disables automatic sorting inside component.
5429
5654
  * - resettable (Boolean) - If set to true clicking on sorter have three states: ascending, descending and null. That means that third click on sorter will reset sorting, and restore table to original order.
5430
- * @type boolean | Sorter
5655
+ * @returns boolean | Sorter
5431
5656
  */
5432
5657
  columnSorter: InputSignal<boolean | ISorter>;
5433
5658
  /**
5434
5659
  * Displays table footer, which mirrors table header. (without column filter).
5435
5660
  * @default false
5436
- * @type boolean
5661
+ * @returns boolean
5437
5662
  */
5438
5663
  footer?: boolean;
5439
5664
  /**
@@ -5447,25 +5672,25 @@ interface ISmartTable {
5447
5672
  * Example item:
5448
5673
  * { name: 'John' , age: 12, _props: { color: 'success' }, _cellProps: { age: { class: 'fw-bold'}}}
5449
5674
  * For column generation description see columns prop.
5450
- * @type Array<IItem>
5675
+ * @returns Array<IItem>
5451
5676
  */
5452
5677
  items?: IItem[];
5453
5678
  /**
5454
5679
  * Number of items per site, when pagination is enabled.
5455
5680
  * @default 10
5456
- * @type number
5681
+ * @returns number
5457
5682
  */
5458
5683
  itemsPerPage?: number;
5459
5684
  /**
5460
5685
  * Label for items per page selector.
5461
5686
  * @default 'Items per page:'
5462
- * @type string
5687
+ * @returns string
5463
5688
  */
5464
5689
  itemsPerPageLabel?: string;
5465
5690
  /**
5466
5691
  * Items per page selector options.
5467
5692
  * @default [5, 10, 20, 50]
5468
- * @type number[]
5693
+ * @returns number[]
5469
5694
  */
5470
5695
  itemsPerPageOptions?: number[];
5471
5696
  /**
@@ -5477,7 +5702,7 @@ interface ISmartTable {
5477
5702
  /**
5478
5703
  * When set, table will have loading style: loading spinner and reduced opacity.
5479
5704
  * When 'small' prop is enabled spinner will be also smaller.
5480
- * @type boolean
5705
+ * @returns boolean
5481
5706
  */
5482
5707
  loading?: boolean;
5483
5708
  /**
@@ -5499,22 +5724,22 @@ interface ISmartTable {
5499
5724
  */
5500
5725
  /**
5501
5726
  * Scoped columns.
5502
- // * @type ScopedColumns
5727
+ // * @returns ScopedColumns
5503
5728
  * todo or remove?
5504
5729
  */
5505
5730
  /**
5506
5731
  * Add checkboxes to make table rows selectable.
5507
- * @type boolean
5732
+ * @returns boolean
5508
5733
  */
5509
5734
  selectable?: boolean;
5510
5735
  /**
5511
5736
  * Enables select all checkbox displayed in the header of the table.
5512
- * @type boolean
5737
+ * @returns boolean
5513
5738
  */
5514
5739
  selectAll?: boolean;
5515
5740
  /**
5516
5741
  * State of the sorter. Name key is column name, direction can be 'asc' or 'desc'.
5517
- * @type ISorterValue
5742
+ * @returns ISorterValue
5518
5743
  */
5519
5744
  sorterValue?: ISorterValue;
5520
5745
  /**
@@ -5566,7 +5791,7 @@ interface ISmartTable {
5566
5791
  tableFilterPlaceholder?: string;
5567
5792
  /**
5568
5793
  * Value of table filter. Set .sync modifier to track changes.
5569
- * @type string
5794
+ * @returns string
5570
5795
  */
5571
5796
  tableFilterValue?: string;
5572
5797
  /**
@@ -5644,7 +5869,7 @@ interface ITableHeaderCellProps {
5644
5869
  /**
5645
5870
  * Sets the color context of the component to one of CoreUI’s themed colors.
5646
5871
  *
5647
- * @type 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
5872
+ * @returns 'primary' | 'secondary' | 'success' | 'danger' | 'warning' | 'info' | 'dark' | 'light' | string
5648
5873
  */
5649
5874
  color?: Colors;
5650
5875
  [key: string]: any;
@@ -5764,12 +5989,12 @@ declare class SmartTableComponent implements ISmartTable, AfterContentInit, OnCh
5764
5989
  readonly sorterValueChange: _angular_core.OutputEmitterRef<ISorterValue>;
5765
5990
  /**
5766
5991
  * Event emitted on `activePage` change.
5767
- * @return number
5992
+ * @returns number
5768
5993
  */
5769
5994
  readonly activePageChange: _angular_core.OutputEmitterRef<number>;
5770
5995
  /**
5771
5996
  * Event emitted on `itemsPerPage` change.
5772
- * @return number
5997
+ * @returns number
5773
5998
  */
5774
5999
  readonly itemsPerPageChange: _angular_core.OutputEmitterRef<number>;
5775
6000
  /**
@@ -5866,30 +6091,30 @@ declare class SmartTableModule {
5866
6091
  declare class SpinnerComponent {
5867
6092
  /**
5868
6093
  * Sets the color context of the component to one of CoreUI’s themed colors.
5869
- * @type Colors
6094
+ * @returns Colors
5870
6095
  */
5871
6096
  readonly color: _angular_core.InputSignal<string | undefined>;
5872
6097
  /**
5873
6098
  * Label for accessibility.
5874
- * @type string
6099
+ * @returns string
5875
6100
  * @default 'Loading...'
5876
6101
  */
5877
6102
  readonly label: _angular_core.InputSignal<string>;
5878
6103
  /**
5879
6104
  * Size the component small.
5880
- * @return string
6105
+ * @returns string
5881
6106
  * @values 'sm'
5882
6107
  */
5883
6108
  readonly size: _angular_core.InputSignal<"sm" | undefined>;
5884
6109
  /**
5885
6110
  * Set the button variant to an outlined button or a ghost button.
5886
- * @values 'border' | 'grow'
6111
+ * @returns 'border' | 'grow'
5887
6112
  * @default 'border'
5888
6113
  */
5889
6114
  readonly variant: _angular_core.InputSignal<"border" | "grow">;
5890
6115
  /**
5891
- * Default role attr for Spinner. [docs]
5892
- * @type string
6116
+ * Default role attr for spinner
6117
+ * @returns string
5893
6118
  * @default 'status'
5894
6119
  */
5895
6120
  readonly role: _angular_core.InputSignal<string>;
@@ -5940,54 +6165,54 @@ declare class StepperStepComponent {
5940
6165
  readonly viewContainerRef: ViewContainerRef;
5941
6166
  /**
5942
6167
  * Whether the step is disabled.
5943
- * @return boolean
6168
+ * @returns boolean
5944
6169
  * @default false
5945
6170
  */
5946
6171
  readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
5947
6172
  /**
5948
6173
  * Unique identifier for the step.
5949
- * @return string
6174
+ * @returns string
5950
6175
  * @default undefined
5951
6176
  */
5952
6177
  readonly id: _angular_core.InputSignal<string | undefined>;
5953
6178
  /**
5954
6179
  * Optional indicator to display in the step.
5955
6180
  * Can be a string or a TemplateRef for custom icons.
5956
- * @return string | TemplateRef<any>
6181
+ * @returns string | TemplateRef<any>
5957
6182
  * @default (step index will be used if not provided)
5958
6183
  */
5959
6184
  readonly indicator: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
5960
6185
  /**
5961
6186
  * Context for the indicator template.
5962
6187
  * If `indicator` is a TemplateRef, this context will be passed to it.
5963
- * @return unknown
6188
+ * @returns unknown
5964
6189
  * @default undefined
5965
6190
  */
5966
6191
  readonly indicatorCtx: _angular_core.InputSignal<unknown>;
5967
6192
  /**
5968
6193
  * Label for the step, which is required.
5969
6194
  * Can be a string or a TemplateRef for custom labels.
5970
- * @return string | TemplateRef<any>
6195
+ * @returns string | TemplateRef<any>
5971
6196
  */
5972
6197
  readonly label: _angular_core.InputSignal<string | TemplateRef<any>>;
5973
6198
  /**
5974
6199
  * Context for the label template.
5975
6200
  * If `label` is a TemplateRef, this context will be passed to it.
5976
- * @return unknown
6201
+ * @returns unknown
5977
6202
  * @default undefined
5978
6203
  */
5979
6204
  readonly labelCtx: _angular_core.InputSignal<unknown>;
5980
6205
  /**
5981
6206
  * Whether the step is valid.
5982
6207
  * This can be used to indicate if the step has been completed successfully.
5983
- * @return boolean | undefined | null
6208
+ * @returns boolean | undefined | null
5984
6209
  * @default undefined
5985
6210
  */
5986
6211
  readonly valid: _angular_core.InputSignal<boolean | null | undefined>;
5987
6212
  /**
5988
6213
  * Whether the step is editable.
5989
6214
  * If true, the step can be modified by the user.
5990
- * @return boolean
6215
+ * @returns boolean
5991
6216
  * @default true
5992
6217
  * todo - implement editable functionality
5993
6218
  */
@@ -5995,7 +6220,7 @@ declare class StepperStepComponent {
5995
6220
  /**
5996
6221
  * Whether the step is optional.
5997
6222
  * If true, the step does not need to be completed for the overall process to succeed.
5998
- * @return boolean
6223
+ * @returns boolean
5999
6224
  * @default false
6000
6225
  * todo - implement optional functionality
6001
6226
  */
@@ -6028,21 +6253,21 @@ declare class StepperComponent {
6028
6253
  readonly activeStepIndex: _angular_core.WritableSignal<number>;
6029
6254
  /**
6030
6255
  * Initial active step index
6031
- * @return number
6256
+ * @returns number
6032
6257
  * @default 0
6033
6258
  */
6034
6259
  readonly defaultActiveStepIndex: _angular_core.InputSignalWithTransform<number, unknown>;
6035
6260
  /**
6036
6261
  * Unique identifier for the Stepper component.
6037
6262
  * If not provided, a default ID will be generated.
6038
- * @return string
6263
+ * @returns string
6039
6264
  * @default 'stepper-<nextId>'
6040
6265
  */
6041
6266
  readonly idInput: _angular_core.InputSignal<string | undefined>;
6042
6267
  /**
6043
6268
  * Unique identifier for the Stepper component.
6044
6269
  * If `idInput` is not provided, a default ID will be generated.
6045
- * @return string
6270
+ * @returns string
6046
6271
  */
6047
6272
  readonly id: _angular_core.Signal<string>;
6048
6273
  /**
@@ -6051,7 +6276,7 @@ declare class StepperComponent {
6051
6276
  * - `'vertical'`: Step indicators and content are stacked vertically.
6052
6277
  *
6053
6278
  * Choose `'vertical'` layout for mobile or narrow designs.
6054
- * @return 'horizontal' | 'vertical'
6279
+ * @returns 'horizontal' | 'vertical'
6055
6280
  * @default 'horizontal'
6056
6281
  */
6057
6282
  readonly layout: _angular_core.InputSignal<"horizontal" | "vertical">;
@@ -6059,7 +6284,7 @@ declare class StepperComponent {
6059
6284
  * Enforces linear progression (cannot skip steps).
6060
6285
  * - `true`: Users must complete steps sequentially.
6061
6286
  * - `false`: Users can jump freely between steps.
6062
- * @return boolean
6287
+ * @returns boolean
6063
6288
  * @default true
6064
6289
  */
6065
6290
  readonly linear: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -6068,38 +6293,38 @@ declare class StepperComponent {
6068
6293
  * - `'vertical'` – Places the label below the indicator icon.
6069
6294
  * - `'horizontal'` – Places the label beside the indicator icon (default).
6070
6295
  * This prop has no effect when `layout="vertical"` is used.
6071
- * @return 'vertical' | 'horizontal'
6296
+ * @returns 'vertical' | 'horizontal'
6072
6297
  * @default 'horizontal'
6073
6298
  */
6074
6299
  readonly stepButtonLayout: _angular_core.InputSignal<"horizontal" | "vertical">;
6075
6300
  /**
6076
6301
  * Enforces validation of steps.
6077
6302
  * Each step must be valid before advancing to the next.
6078
- * @return boolean
6303
+ * @returns boolean
6079
6304
  * @default false
6080
6305
  */
6081
6306
  readonly validation: _angular_core.InputSignalWithTransform<boolean, unknown>;
6082
6307
  /**
6083
6308
  * Event fired when the user completes the last step of the Form Wizard.
6084
6309
  * Use this to trigger a submit action or redirect after the final step.
6085
- * @return boolean
6310
+ * @returns boolean
6086
6311
  */
6087
6312
  readonly finished: _angular_core.OutputEmitterRef<boolean>;
6088
6313
  /**
6089
6314
  * Event fired when the user triggers the reset() action.
6090
6315
  * Use this to reset or clear related form data.
6091
- * @return void
6316
+ * @returns void
6092
6317
  */
6093
6318
  readonly onReset: _angular_core.OutputEmitterRef<void>;
6094
6319
  /**
6095
6320
  * Indicates if the Stepper is currently resetting.
6096
6321
  * This is set to `true` when the reset() method is called.
6097
- * @return boolean
6322
+ * @returns boolean
6098
6323
  */
6099
6324
  readonly resetting: _angular_core.WritableSignal<boolean>;
6100
6325
  /**
6101
6326
  * Event fired when the active step changes in the Angular Stepper component.
6102
- * @return number
6327
+ * @returns number
6103
6328
  */
6104
6329
  readonly activeStepIndexChange: _angular_core.OutputEmitterRef<number>;
6105
6330
  /**
@@ -6113,13 +6338,13 @@ declare class StepperComponent {
6113
6338
  /**
6114
6339
  * Returns the number of steps in the Stepper.
6115
6340
  * This is useful for determining how many steps are available.
6116
- * @return number
6341
+ * @returns number
6117
6342
  */
6118
6343
  readonly stepsCount: _angular_core.Signal<number>;
6119
6344
  /**
6120
6345
  * Indicates if the Stepper is currently finishing.
6121
6346
  * This is set to `true` when the finish() method is called and all steps are valid.
6122
- * @return boolean
6347
+ * @returns boolean
6123
6348
  */
6124
6349
  readonly finishing: _angular_core.WritableSignal<boolean>;
6125
6350
  private readonly stepButtons;
@@ -6176,7 +6401,7 @@ declare class StepperModule {
6176
6401
  declare class TableColorDirective {
6177
6402
  /**
6178
6403
  * Use contextual color for tables, table rows or individual cells.
6179
- * @return Colors
6404
+ * @returns Colors
6180
6405
  */
6181
6406
  readonly color: _angular_core.InputSignal<string | undefined>;
6182
6407
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -6187,7 +6412,7 @@ declare class TableColorDirective {
6187
6412
  declare class TableActiveDirective {
6188
6413
  /**
6189
6414
  * Highlight a table row or cell
6190
- * @return boolean
6415
+ * @returns boolean
6191
6416
  */
6192
6417
  readonly active: _angular_core.InputSignalWithTransform<boolean, unknown>;
6193
6418
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableActiveDirective, never>;
@@ -6204,39 +6429,39 @@ declare class TableDirective {
6204
6429
  static ngAcceptInputType_stripedColumns: BooleanInput$1;
6205
6430
  /**
6206
6431
  * Set the vertical alignment.
6207
- * @return string
6432
+ * @returns string
6208
6433
  * @values 'bottom' | 'middle' | 'top'
6209
6434
  */
6210
6435
  readonly align: _angular_core.InputSignal<"top" | "middle" | "bottom" | undefined>;
6211
6436
  /**
6212
6437
  * Sets the border color of the component to one of CoreUI’s themed colors.
6213
- * @return Colors
6438
+ * @returns Colors
6214
6439
  */
6215
6440
  readonly borderColor: _angular_core.InputSignal<string | undefined>;
6216
6441
  /**
6217
6442
  * Add borders on all sides of the table and cells.
6218
- * @return boolean
6443
+ * @returns boolean
6219
6444
  */
6220
6445
  readonly bordered: _angular_core.InputSignalWithTransform<boolean, unknown>;
6221
6446
  /**
6222
6447
  * Remove borders on all sides of the table and cells.
6223
- * @return boolean
6448
+ * @returns boolean
6224
6449
  */
6225
6450
  readonly borderless: _angular_core.InputSignalWithTransform<boolean, unknown>;
6226
6451
  /**
6227
6452
  * Put the `<caption>` on the top of the table.
6228
- * @return 'top'
6453
+ * @returns 'top'
6229
6454
  * @values 'top'
6230
6455
  */
6231
6456
  readonly caption: _angular_core.InputSignal<"top" | undefined>;
6232
6457
  /**
6233
6458
  * Sets the color context of the component to one of CoreUI’s themed colors.
6234
- * @return Colors
6459
+ * @returns Colors
6235
6460
  */
6236
6461
  readonly color: _angular_core.InputSignal<string | undefined>;
6237
6462
  /**
6238
6463
  * Enable a hover state on table rows within table body.
6239
- * @return boolean
6464
+ * @returns boolean
6240
6465
  */
6241
6466
  readonly hover: _angular_core.InputSignalWithTransform<boolean, unknown>;
6242
6467
  /**
@@ -6246,17 +6471,17 @@ declare class TableDirective {
6246
6471
  readonly responsive: _angular_core.InputSignal<boolean | Omit<string, "xs"> | undefined>;
6247
6472
  /**
6248
6473
  * Make table more compact by cutting all cell `padding` in half.
6249
- * @return boolean
6474
+ * @returns boolean
6250
6475
  */
6251
6476
  readonly small: _angular_core.InputSignalWithTransform<boolean, unknown>;
6252
6477
  /**
6253
6478
  * Add zebra-striping to any table row within the table body.
6254
- * @return boolean
6479
+ * @returns boolean
6255
6480
  */
6256
6481
  readonly striped: _angular_core.InputSignalWithTransform<boolean, unknown>;
6257
6482
  /**
6258
6483
  * Add zebra-striping to any table column.
6259
- * @return boolean
6484
+ * @returns boolean
6260
6485
  * @since 4.2.4
6261
6486
  */
6262
6487
  readonly stripedColumns: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -6275,12 +6500,13 @@ declare class TabContentComponent implements AfterContentChecked, AfterContentIn
6275
6500
  #private;
6276
6501
  /**
6277
6502
  * Set active tabPane index
6278
- * @type number
6503
+ * @returns number
6279
6504
  */
6280
6505
  set activeTabPaneIdx(value: number);
6281
6506
  get activeTabPaneIdx(): number;
6282
6507
  /**
6283
6508
  * Event emitted on the active tab pane index change.
6509
+ * @returns number
6284
6510
  */
6285
6511
  readonly activeTabPaneIdxChange: _angular_core.OutputEmitterRef<number>;
6286
6512
  panes: QueryList<TabPaneComponent>;
@@ -6320,25 +6546,25 @@ declare class TabContentRefDirective implements OnChanges, OnDestroy {
6320
6546
  constructor();
6321
6547
  /**
6322
6548
  * Template Ref
6323
- * @type TemplateRef
6549
+ * @returns TemplateRef
6324
6550
  */
6325
6551
  tabContentRef: any;
6326
6552
  /**
6327
6553
  * Set active state of tab content
6328
- * @type boolean
6554
+ * @returns boolean
6329
6555
  * @default false
6330
6556
  */
6331
6557
  set active(value: boolean);
6332
6558
  get active(): boolean;
6333
6559
  /**
6334
6560
  * Set disabled state of tab content
6335
- * @type boolean
6561
+ * @returns boolean
6336
6562
  */
6337
6563
  set disabled(value: boolean);
6338
6564
  get disabled(): boolean;
6339
6565
  /**
6340
6566
  * c-tab-pane index respectively
6341
- * @type number
6567
+ * @returns number
6342
6568
  */
6343
6569
  tabPaneIdx: number;
6344
6570
  get hostClasses(): {
@@ -6393,17 +6619,17 @@ declare class TabsComponent {
6393
6619
  readonly tabsService: TabsService;
6394
6620
  /**
6395
6621
  * The active item key.
6396
- * @return <string | number | undefined>
6622
+ * @returns <string | number | undefined>
6397
6623
  */
6398
6624
  readonly activeItemKey: _angular_core.ModelSignal<string | number | undefined>;
6399
6625
  /**
6400
6626
  * The id attribute
6401
- * @return string
6627
+ * @returns string
6402
6628
  */
6403
6629
  tabsId: string;
6404
6630
  /**
6405
6631
  * HTML id attribute.
6406
- * @return string
6632
+ * @returns string
6407
6633
  * @default `tabs-{n}`
6408
6634
  */
6409
6635
  readonly id: _angular_core.InputSignal<string>;
@@ -6415,7 +6641,7 @@ declare class TabDirective implements FocusableOption, OnInit {
6415
6641
  #private;
6416
6642
  /**
6417
6643
  * Disabled attribute
6418
- * @return boolean
6644
+ * @returns boolean
6419
6645
  * @default false
6420
6646
  */
6421
6647
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -6424,19 +6650,19 @@ declare class TabDirective implements FocusableOption, OnInit {
6424
6650
  get disabled(): boolean;
6425
6651
  /**
6426
6652
  * Item key.
6427
- * @type string | number
6653
+ * @returns string | number
6428
6654
  * @required
6429
6655
  */
6430
6656
  readonly itemKey: InputSignal<string | number>;
6431
6657
  /**
6432
6658
  * Element id attribute
6433
- * @type string
6659
+ * @returns string
6434
6660
  * @default undefined
6435
6661
  */
6436
6662
  readonly id: InputSignal<string | undefined>;
6437
6663
  /**
6438
6664
  * aria-controls attribute
6439
- * @type string
6665
+ * @returns string
6440
6666
  * @default undefined
6441
6667
  */
6442
6668
  readonly ariaControls: InputSignal<string | undefined>;
@@ -6456,13 +6682,13 @@ declare class TabsListComponent {
6456
6682
  constructor();
6457
6683
  /**
6458
6684
  * Specify a layout type for component.
6459
- * @type 'fill' | 'justified' | undefined
6685
+ * @returns 'fill' | 'justified' | undefined
6460
6686
  * @default undefined
6461
6687
  */
6462
6688
  readonly layout: InputSignal<'fill' | 'justified' | undefined>;
6463
6689
  /**
6464
6690
  * Set the variant to tabs, pills or underline.
6465
- * @type 'pills' | 'tabs' | 'underline' | 'underline-border' | undefined
6691
+ * @returns 'pills' | 'tabs' | 'underline' | 'underline-border' | undefined
6466
6692
  * @default undefined
6467
6693
  */
6468
6694
  readonly variant: InputSignal<'pills' | 'tabs' | 'underline' | 'underline-border' | undefined>;
@@ -6491,43 +6717,43 @@ declare class TabPanelComponent {
6491
6717
  #private;
6492
6718
  /**
6493
6719
  * aria-labelledby attribute
6494
- * @return string
6720
+ * @returns string
6495
6721
  * @default undefined
6496
6722
  */
6497
6723
  readonly ariaLabelledBy: _angular_core.InputSignal<string | undefined>;
6498
6724
  /**
6499
6725
  * Element id attribute
6500
- * @return string
6726
+ * @returns string
6501
6727
  * @default undefined
6502
6728
  */
6503
6729
  readonly id: _angular_core.InputSignal<string | undefined>;
6504
6730
  /**
6505
6731
  * Item key.
6506
- * @return string | number
6732
+ * @returns string | number
6507
6733
  * @required
6508
6734
  */
6509
6735
  readonly itemKey: _angular_core.InputSignal<string | number>;
6510
6736
  /**
6511
6737
  * Element role.
6512
- * @return string
6738
+ * @returns string
6513
6739
  * @default 'tabpanel'
6514
6740
  */
6515
6741
  readonly role: _angular_core.InputSignal<string>;
6516
6742
  /**
6517
6743
  * tabindex attribute.
6518
- * @return number
6744
+ * @returns number
6519
6745
  * @default 0
6520
6746
  */
6521
6747
  readonly tabindex: _angular_core.InputSignalWithTransform<number, unknown>;
6522
6748
  /**
6523
6749
  * Enable fade in transition.
6524
- * @return boolean
6750
+ * @returns boolean
6525
6751
  * @default true
6526
6752
  */
6527
6753
  readonly transition: _angular_core.InputSignal<boolean>;
6528
6754
  /**
6529
6755
  * visible change output
6530
- * @return VisibleChangeEvent
6756
+ * @returns VisibleChangeEvent
6531
6757
  */
6532
6758
  readonly visibleChange: _angular_core.OutputEmitterRef<VisibleChangeEvent>;
6533
6759
  protected readonly show: _angular_core.WritableSignal<boolean>;
@@ -6577,20 +6803,20 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
6577
6803
  static ngAcceptInputType_visible: BooleanInput$1;
6578
6804
  /**
6579
6805
  * Toggle visibility or set the content of the cleaner button.
6580
- * @return boolean
6806
+ * @returns boolean
6581
6807
  * @default true
6582
6808
  */
6583
6809
  readonly cleaner: _angular_core.InputSignalWithTransform<boolean, unknown>;
6584
6810
  /**
6585
6811
  * Sets DateTime format options including timeZone
6586
- * @return DateTimeFormatOptions
6812
+ * @returns DateTimeFormatOptions
6587
6813
  * @default {}
6588
6814
  * @note The date object doesn't store timeZone, it keeps the local timezone of the browser, regardless if you parsed UTC dates.
6589
6815
  */
6590
6816
  readonly dateTimeFormatOptions: _angular_core.InputSignal<DateTimeFormatOptions>;
6591
6817
  /**
6592
6818
  * Toggle the disabled state for the component.
6593
- * @return boolean
6819
+ * @returns boolean
6594
6820
  * @default false
6595
6821
  */
6596
6822
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -6598,61 +6824,61 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
6598
6824
  readonly disabledEffect: _angular_core.EffectRef;
6599
6825
  /**
6600
6826
  * Filter available hours to pick.
6601
- * @return (value: number) => boolean;
6827
+ * @returns (value: number) => boolean;
6602
6828
  * @default undefined
6603
6829
  */
6604
6830
  readonly filterHours: _angular_core.InputSignal<((value: number) => boolean) | undefined>;
6605
6831
  /**
6606
6832
  * Filter available minutes to pick.
6607
- * @return (value: number) => boolean;
6833
+ * @returns (value: number) => boolean;
6608
6834
  * @default undefined
6609
6835
  */
6610
6836
  readonly filterMinutes: _angular_core.InputSignal<((value: number) => boolean) | undefined>;
6611
6837
  /**
6612
6838
  * Filter available seconds to pick.
6613
- * @return (value: number) => boolean;
6839
+ * @returns (value: number) => boolean;
6614
6840
  * @default undefined
6615
6841
  */
6616
6842
  readonly filterSeconds: _angular_core.InputSignal<((value: number) => boolean) | undefined>;
6617
6843
  /**
6618
6844
  * Toggle visibility or set the content of the input indicator.
6619
- * @return boolean
6845
+ * @returns boolean
6620
6846
  * @default true
6621
6847
  */
6622
6848
  readonly indicator: _angular_core.InputSignalWithTransform<boolean, unknown>;
6623
6849
  /**
6624
6850
  * Toggle the readonly state for the component.
6625
- * @return boolean
6851
+ * @returns boolean
6626
6852
  * @default false
6627
6853
  */
6628
6854
  readonly inputReadOnly: _angular_core.InputSignalWithTransform<boolean, unknown>;
6629
6855
  /**
6630
6856
  * Sets the default locale for components. If not set, it is inherited from the browser.
6631
- * @return string
6857
+ * @returns string
6632
6858
  * @default default
6633
6859
  */
6634
6860
  readonly locale: _angular_core.InputSignal<string>;
6635
6861
  /**
6636
6862
  * Specifies a short hint visible in time input.
6637
- * @return string
6863
+ * @returns string
6638
6864
  * @default 'Select time'
6639
6865
  */
6640
6866
  readonly placeholder: _angular_core.InputSignal<string>;
6641
6867
  /**
6642
6868
  * Toggle seconds visibility.
6643
- * @return boolean
6869
+ * @returns boolean
6644
6870
  * @default false
6645
6871
  */
6646
6872
  readonly seconds: _angular_core.InputSignalWithTransform<boolean, unknown>;
6647
6873
  /**
6648
6874
  * Size the component small or large.
6649
- * @return 'sm' | 'lg' | undefined
6875
+ * @returns 'sm' | 'lg' | undefined
6650
6876
  * @default undefined
6651
6877
  */
6652
6878
  readonly size: _angular_core.InputSignal<string | undefined>;
6653
6879
  /**
6654
6880
  * Initially selected time.
6655
- * @return Date | string | null | number
6881
+ * @returns Date | string | null | number
6656
6882
  * @default undefined
6657
6883
  */
6658
6884
  set time(value: Date | string | undefined);
@@ -6661,19 +6887,19 @@ declare class TimePickerComponent implements OnChanges, OnInit, AfterViewInit, C
6661
6887
  private _timeInternal?;
6662
6888
  /**
6663
6889
  * Set the time picker variant to a roll or select.
6664
- * @return 'roll' | 'select'
6890
+ * @returns 'roll' | 'select'
6665
6891
  * @default 'roll'
6666
6892
  */
6667
6893
  readonly variant: _angular_core.InputSignal<"select" | "roll">;
6668
6894
  /**
6669
6895
  * Toggle visual validation feedback.
6670
- * @return boolean | undefined
6896
+ * @returns boolean | undefined
6671
6897
  * @default undefined
6672
6898
  */
6673
6899
  readonly valid: _angular_core.InputSignal<boolean | undefined>;
6674
6900
  /**
6675
6901
  * Toggle the visibility of dropdown timepicker menu component.
6676
- * @return boolean
6902
+ * @returns boolean
6677
6903
  * @default false
6678
6904
  */
6679
6905
  readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
@@ -6781,13 +7007,13 @@ declare class ToasterComponent implements OnInit {
6781
7007
  toastsDynamic: ComponentRef<any>[];
6782
7008
  /**
6783
7009
  * Toaster placement
6784
- * @return TToasterPlacement
7010
+ * @returns TToasterPlacement
6785
7011
  */
6786
7012
  readonly placementInput: _angular_core.InputSignal<string>;
6787
7013
  get placement(): string;
6788
7014
  /**
6789
7015
  * Toaster position
6790
- * @return (string | 'absolute' | 'fixed' | 'static')
7016
+ * @returns (string | 'absolute' | 'fixed' | 'static')
6791
7017
  */
6792
7018
  readonly position: _angular_core.InputSignal<string>;
6793
7019
  readonly toasterHost: _angular_core.Signal<ToasterHostDirective>;
@@ -6826,37 +7052,45 @@ declare class ToastComponent implements OnInit, OnDestroy {
6826
7052
  readonly hostElement: ElementRef<any>;
6827
7053
  readonly renderer: Renderer2;
6828
7054
  readonly toasterService: ToasterService;
7055
+ /**
7056
+ * Marks the toast as dynamically created by `ToasterService`, rather than declared in the template.
7057
+ * @returns boolean
7058
+ */
6829
7059
  readonly dynamic: _angular_core.InputSignal<boolean | undefined>;
7060
+ /**
7061
+ * Placement of the toast within its toaster, set by `ToasterComponent`.
7062
+ * @returns TToasterPlacement
7063
+ */
6830
7064
  readonly placementInput: _angular_core.InputSignal<string | undefined>;
6831
7065
  get placement(): string | undefined;
6832
7066
  /**
6833
7067
  * Auto hide the toast.
6834
- * @return boolean
7068
+ * @returns boolean
6835
7069
  */
6836
7070
  readonly autohide: _angular_core.InputSignal<boolean>;
6837
7071
  /**
6838
7072
  * Sets the color context of the component to one of CoreUI’s themed colors.
6839
- * @return Colors
7073
+ * @returns Colors
6840
7074
  */
6841
7075
  readonly color: _angular_core.InputSignal<string>;
6842
7076
  /**
6843
7077
  * Delay hiding the toast (ms).
6844
- * @return number
7078
+ * @returns number
6845
7079
  */
6846
7080
  readonly delay: _angular_core.InputSignalWithTransform<number, unknown>;
6847
7081
  /**
6848
7082
  * Apply fade transition to the toast.
6849
- * @return boolean
7083
+ * @returns boolean
6850
7084
  */
6851
7085
  readonly fade: _angular_core.InputSignal<boolean>;
6852
7086
  /**
6853
7087
  * ARIA role attribute.
6854
- * @return string
7088
+ * @returns string
6855
7089
  */
6856
7090
  readonly role: _angular_core.InputSignal<string>;
6857
7091
  /**
6858
7092
  * Toggle the visibility of component.
6859
- * @return boolean
7093
+ * @returns boolean
6860
7094
  */
6861
7095
  readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
6862
7096
  set visible(value: boolean);
@@ -6866,13 +7100,13 @@ declare class ToastComponent implements OnInit, OnDestroy {
6866
7100
  */
6867
7101
  readonly index: _angular_core.InputSignalWithTransform<number, unknown>;
6868
7102
  /**
6869
- * Event emitted on visibility change. [docs]
6870
- * @return <boolean>
7103
+ * Event emitted on visibility change
7104
+ * @returns boolean
6871
7105
  */
6872
7106
  readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
6873
7107
  /**
6874
- * Event emitted on timer tick. [docs]
6875
- * @return number
7108
+ * Event emitted on timer tick
7109
+ * @returns number
6876
7110
  */
6877
7111
  readonly timer: _angular_core.OutputEmitterRef<number>;
6878
7112
  private timerId;
@@ -6911,7 +7145,7 @@ declare class ToastHeaderComponent {
6911
7145
  readonly toast: _angular_core.WritableSignal<ToastComponent | undefined>;
6912
7146
  /**
6913
7147
  * Add close button to a toast header
6914
- * @return boolean
7148
+ * @returns boolean
6915
7149
  */
6916
7150
  readonly closeButton: _angular_core.InputSignal<boolean>;
6917
7151
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ToastHeaderComponent, never>;
@@ -6922,7 +7156,7 @@ declare class ToastCloseDirective {
6922
7156
  #private;
6923
7157
  /**
6924
7158
  * Toast to close.
6925
- * @return ToastComponent
7159
+ * @returns ToastComponent
6926
7160
  */
6927
7161
  readonly cToastClose: _angular_core.InputSignal<ToastComponent | undefined>;
6928
7162
  toggleOpen($event: MouseEvent): void;
@@ -6941,15 +7175,24 @@ declare class TooltipComponent implements OnDestroy {
6941
7175
  readonly renderer: Renderer2;
6942
7176
  /**
6943
7177
  * Content of tooltip
6944
- * @type {string | TemplateRef}
7178
+ * @returns {string | TemplateRef}
6945
7179
  */
6946
7180
  readonly content: _angular_core.InputSignal<string | TemplateRef<any>>;
6947
7181
  /**
6948
7182
  * Toggle the visibility of popover component.
6949
- * @type boolean
7183
+ * @returns boolean
6950
7184
  */
6951
7185
  readonly visible: _angular_core.InputSignalWithTransform<boolean, unknown>;
7186
+ /**
7187
+ * The `id` HTML attribute of the tooltip.
7188
+ * @returns string
7189
+ */
6952
7190
  readonly id: _angular_core.InputSignal<string | undefined>;
7191
+ /**
7192
+ * Default role for tooltip.
7193
+ * @returns string
7194
+ * @default 'tooltip'
7195
+ */
6953
7196
  readonly role: _angular_core.InputSignal<string>;
6954
7197
  readonly viewContainerRef: _angular_core.Signal<ViewContainerRef | undefined>;
6955
7198
  private textNode;
@@ -6965,12 +7208,12 @@ declare class TooltipDirective implements OnDestroy, OnInit, AfterViewInit {
6965
7208
  #private;
6966
7209
  /**
6967
7210
  * Content of tooltip
6968
- * @return {string | TemplateRef}
7211
+ * @returns {string | TemplateRef}
6969
7212
  */
6970
7213
  readonly content: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
6971
7214
  /**
6972
7215
  * Optional popper Options object, takes precedence over cPopoverPlacement prop
6973
- * @return Partial<Options>
7216
+ * @returns Partial<Options>
6974
7217
  */
6975
7218
  readonly popperOptions: _angular_core.InputSignal<Partial<Options>>;
6976
7219
  readonly popperOptionsComputed: _angular_core.Signal<{
@@ -6999,7 +7242,7 @@ declare class TooltipDirective implements OnDestroy, OnInit, AfterViewInit {
6999
7242
  readonly trigger: _angular_core.InputSignal<Triggers | Triggers[]>;
7000
7243
  /**
7001
7244
  * Toggle the visibility of tooltip component.
7002
- * @return boolean
7245
+ * @returns boolean
7003
7246
  */
7004
7247
  readonly visible: _angular_core.ModelSignal<boolean>;
7005
7248
  get ariaDescribedBy(): string | null;
@@ -7032,7 +7275,7 @@ declare class TooltipModule {
7032
7275
  declare class AlignDirective {
7033
7276
  /**
7034
7277
  * Set vertical alignment of inline, inline-block, inline-table, and table cell elements
7035
- * @return Alignment
7278
+ * @returns Alignment
7036
7279
  */
7037
7280
  readonly align: _angular_core.InputSignal<Alignment | undefined>;
7038
7281
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7047,7 +7290,7 @@ declare class BgColorDirective {
7047
7290
  readonly cBgColor: _angular_core.InputSignal<string>;
7048
7291
  /**
7049
7292
  * Add linear gradient as background image to the backgrounds.
7050
- * @return boolean
7293
+ * @returns boolean
7051
7294
  */
7052
7295
  readonly gradient: _angular_core.InputSignal<boolean | undefined>;
7053
7296
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7073,7 +7316,7 @@ interface IBorderElement {
7073
7316
  declare class BorderDirective {
7074
7317
  /**
7075
7318
  * Add or remove an element’s borders
7076
- * @return Border
7319
+ * @returns Border
7077
7320
  */
7078
7321
  readonly cBorder: _angular_core.InputSignal<Border>;
7079
7322
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7097,7 +7340,7 @@ type RoundedElement = 'top' | 'end' | 'bottom' | 'start' | 'circle' | 'pill';
7097
7340
  declare class RoundedDirective {
7098
7341
  /**
7099
7342
  * Set border radius variant and radius size
7100
- * @type Rounded
7343
+ * @returns Rounded
7101
7344
  */
7102
7345
  readonly cRounded: _angular_core.InputSignal<Rounded>;
7103
7346
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7108,6 +7351,11 @@ declare class RoundedDirective {
7108
7351
  declare class ShadowOnScrollDirective {
7109
7352
  #private;
7110
7353
  constructor();
7354
+ /**
7355
+ * Shadow size applied to the host element once the document has been scrolled; `false`/`'none'` disables it.
7356
+ * @returns 'sm' | 'lg' | 'none' | boolean
7357
+ * @default true
7358
+ */
7111
7359
  readonly cShadowOnScroll: _angular_core.InputSignal<boolean | "sm" | "lg" | "none">;
7112
7360
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<ShadowOnScrollDirective, never>;
7113
7361
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<ShadowOnScrollDirective, "[cShadowOnScroll]", ["cShadowOnScroll"], { "cShadowOnScroll": { "alias": "cShadowOnScroll"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
@@ -7120,23 +7368,22 @@ declare class UtilitiesModule {
7120
7368
  }
7121
7369
 
7122
7370
  declare class WidgetStatAComponent extends CardComponent {
7123
- #private;
7124
7371
  /**
7125
7372
  * Sets the color context of the component to one of CoreUI’s themed colors.
7126
- * @type Colors
7373
+ * @returns Colors
7127
7374
  */
7128
7375
  /**
7129
7376
  * Title of the widget to display
7130
- * @type string
7377
+ * @returns string
7131
7378
  */
7132
7379
  readonly title: InputSignal<string | undefined>;
7133
7380
  /**
7134
7381
  * Value for your widget to display
7135
- * @type string
7382
+ * @returns string
7136
7383
  */
7137
7384
  readonly value: InputSignal<string | undefined>;
7138
- templates: Record<string, TemplateRef<any>>;
7139
7385
  readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
7386
+ readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
7140
7387
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
7141
7388
  get bodyClasses(): {
7142
7389
  'pb-0': boolean;
@@ -7152,31 +7399,31 @@ declare class WidgetStatBComponent extends CardComponent {
7152
7399
  constructor();
7153
7400
  /**
7154
7401
  * Sets the color context of the component to one of CoreUI themed colors.
7155
- * @type Colors
7402
+ * @returns Colors
7156
7403
  */
7157
7404
  /**
7158
7405
  * Sets the text-color context of the component to one of CoreUI themed colors.
7159
7406
  * via TextColorDirective
7160
- * @type TextColors
7407
+ * @returns TextColors
7161
7408
  */
7162
7409
  /**
7163
7410
  * Title of the widget to display
7164
- * @type string
7411
+ * @returns string
7165
7412
  */
7166
7413
  readonly title: InputSignal<string | undefined>;
7167
7414
  /**
7168
7415
  * Helper text for your widget.
7169
- * @type string
7416
+ * @returns string
7170
7417
  */
7171
7418
  readonly text: InputSignal<string | undefined>;
7172
7419
  /**
7173
7420
  * Value for your widget to display
7174
- * @type string
7421
+ * @returns string
7175
7422
  */
7176
7423
  readonly value: InputSignal<string | undefined>;
7177
7424
  /**
7178
7425
  * Invert colors from their default dark shade.
7179
- * @type boolean
7426
+ * @returns boolean
7180
7427
  */
7181
7428
  readonly inverse: InputSignalWithTransform<boolean, unknown>;
7182
7429
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7185,30 +7432,29 @@ declare class WidgetStatBComponent extends CardComponent {
7185
7432
  }
7186
7433
 
7187
7434
  declare class WidgetStatCComponent extends CardComponent {
7188
- #private;
7189
7435
  constructor();
7190
7436
  /**
7191
7437
  * Icon for your component.
7192
- * @type string
7438
+ * @returns string
7193
7439
  */
7194
7440
  readonly icon: _angular_core.InputSignal<string | undefined>;
7195
7441
  /**
7196
7442
  * Title of the widget to display
7197
- * @type string
7443
+ * @returns string
7198
7444
  */
7199
7445
  readonly title: _angular_core.InputSignal<string | undefined>;
7200
7446
  /**
7201
7447
  * Value for your widget to display
7202
- * @type string|number
7448
+ * @returns string|number
7203
7449
  */
7204
7450
  readonly value: _angular_core.InputSignal<string | number | undefined>;
7205
7451
  /**
7206
7452
  * Invert colors from their default dark shade.
7207
- * @type boolean
7453
+ * @returns boolean
7208
7454
  */
7209
7455
  readonly inverse: _angular_core.InputSignalWithTransform<boolean, unknown>;
7210
- templates: Record<string, TemplateRef<any>>;
7211
7456
  readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
7457
+ readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
7212
7458
  readonly hostExtendedClass: _angular_core.Signal<Record<string, boolean>>;
7213
7459
  readonly titleClasses: _angular_core.Signal<Record<string, boolean>>;
7214
7460
  readonly valueClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7224,11 +7470,11 @@ type WidgetStatDValue = {
7224
7470
  declare class WidgetStatDComponent extends CardComponent {
7225
7471
  /**
7226
7472
  * Sets the color context of the component to one of CoreUI’s themed colors.
7227
- * @type Colors
7473
+ * @returns Colors
7228
7474
  */
7229
7475
  /**
7230
7476
  * Values and subtitles for your component.
7231
- * @type WidgetStatDValue
7477
+ * @returns WidgetStatDValue
7232
7478
  */
7233
7479
  readonly values: _angular_core.InputSignal<WidgetStatDValue[] | undefined>;
7234
7480
  readonly headerClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7240,12 +7486,12 @@ declare class WidgetStatEComponent extends CardComponent {
7240
7486
  constructor();
7241
7487
  /**
7242
7488
  * Title of the widget to display
7243
- * @type string
7489
+ * @returns string
7244
7490
  */
7245
7491
  readonly title: _angular_core.InputSignal<string | undefined>;
7246
7492
  /**
7247
7493
  * Value for your widget to display
7248
- * @type string | number
7494
+ * @returns string | number
7249
7495
  */
7250
7496
  readonly value: _angular_core.InputSignal<string | number | undefined>;
7251
7497
  readonly titleClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7254,42 +7500,41 @@ declare class WidgetStatEComponent extends CardComponent {
7254
7500
  }
7255
7501
 
7256
7502
  declare class WidgetStatFComponent extends CardComponent {
7257
- #private;
7258
7503
  /**
7259
7504
  * Sets the color context of the component to one of CoreUI’s themed colors.
7260
- * @type Colors
7505
+ * @returns Colors
7261
7506
  */
7262
7507
  /**
7263
7508
  * Sets the text-color context of the component to one of CoreUI’s themed colors.
7264
- * @type Colors
7509
+ * @returns Colors
7265
7510
  */
7266
7511
  /**
7267
7512
  * Footer for your widget
7268
- * @type string
7513
+ * @returns string
7269
7514
  */
7270
7515
  readonly footer: _angular_core.InputSignal<string | undefined>;
7271
7516
  /**
7272
7517
  * Icon for your widget
7273
- * @type string
7518
+ * @returns string
7274
7519
  */
7275
7520
  readonly icon: _angular_core.InputSignal<string | undefined>;
7276
7521
  /**
7277
7522
  * Set padding of your component.
7278
- * @type boolean
7523
+ * @returns boolean
7279
7524
  */
7280
7525
  readonly padding: _angular_core.InputSignalWithTransform<boolean, unknown>;
7281
7526
  /**
7282
7527
  * Title of the widget to display
7283
- * @type string
7528
+ * @returns string
7284
7529
  */
7285
7530
  readonly title: _angular_core.InputSignal<string | undefined>;
7286
7531
  /**
7287
7532
  * Value for your widget to display
7288
- * @type string
7533
+ * @returns string
7289
7534
  */
7290
7535
  readonly value: _angular_core.InputSignal<string | number | undefined>;
7291
- templates: Record<string, TemplateRef<any>>;
7292
7536
  readonly contentTemplates: _angular_core.Signal<readonly TemplateIdDirective[]>;
7537
+ readonly templates: _angular_core.Signal<Record<string, TemplateRef<any>>>;
7293
7538
  readonly cardBodyClasses: _angular_core.Signal<Record<string, boolean>>;
7294
7539
  readonly iconClasses: _angular_core.Signal<Record<string, boolean>>;
7295
7540
  readonly titleClasses: _angular_core.Signal<Record<string, boolean>>;
@@ -7304,5 +7549,5 @@ declare class WidgetModule {
7304
7549
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<WidgetModule>;
7305
7550
  }
7306
7551
 
7307
- 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, 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 };
7308
- 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, SearchFn, Shapes, Sizes, SortOrder, StepperRef, StepperStepData, StepperStepValidationResult, TToasterPlacement, TextColors, ThumbSize, Triggers, ValueOrigin };
7552
+ 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 };
7553
+ 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 };