@coreui/angular-pro 5.5.10 → 5.5.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index.d.ts CHANGED
@@ -1,14 +1,15 @@
1
1
  import { IsActiveMatchOptions, UrlTree, Router, NavigationEnd } from '@angular/router';
2
2
  import * as _angular_core from '@angular/core';
3
- import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ModelSignal, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, OnChanges, SimpleChanges, Renderer2, WritableSignal, EventEmitter, ComponentRef, Injector, NgModuleRef } from '@angular/core';
3
+ import { ElementRef, TemplateRef, ModuleWithProviders, OnInit, OnDestroy, InputSignal, InputSignalWithTransform, QueryList, AfterViewInit, PipeTransform, AfterContentInit, AfterContentChecked, ModelSignal, ChangeDetectorRef, ViewContainerRef, OutputEmitterRef, WritableSignal, OnChanges, SimpleChanges, Renderer2, EventEmitter, ComponentRef, Injector, NgModuleRef } from '@angular/core';
4
+ import * as _coreui_angular_pro from '@coreui/angular-pro';
5
+ import { BooleanInput as BooleanInput$1, NumberInput as NumberInput$1 } from '@angular/cdk/coercion';
6
+ import { ControlValueAccessor, FormGroup, FormControl } from '@angular/forms';
7
+ import * as _popperjs_core from '@popperjs/core';
8
+ import { Options, Placement, Modifier } from '@popperjs/core';
4
9
  import { AnimationEvent } from '@angular/animations';
5
10
  import * as rxjs from 'rxjs';
6
11
  import { Observable, Subscription, Subject, BehaviorSubject } from 'rxjs';
7
12
  import { FocusableOption, FocusMonitor, FocusOrigin } from '@angular/cdk/a11y';
8
- import { ControlValueAccessor, FormGroup, FormControl } from '@angular/forms';
9
- import { BooleanInput as BooleanInput$1, NumberInput as NumberInput$1 } from '@angular/cdk/coercion';
10
- import * as _popperjs_core from '@popperjs/core';
11
- import { Options, Placement, Modifier } from '@popperjs/core';
12
13
  import { CdkVirtualScrollViewport } from '@angular/cdk/scrolling';
13
14
  import { SelectionModel, SelectionChange } from '@angular/cdk/collections';
14
15
 
@@ -172,6 +173,285 @@ declare class AccordionModule {
172
173
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<AccordionModule>;
173
174
  }
174
175
 
176
+ interface IAutocompleteOptionBase {
177
+ disabled?: boolean;
178
+ label: string;
179
+ custom?: boolean;
180
+ selected?: boolean;
181
+ value?: number | string;
182
+ [key: string]: unknown;
183
+ }
184
+ interface IAutocompleteOption extends IAutocompleteOptionBase {
185
+ options?: (string | IAutocompleteOption)[];
186
+ }
187
+ interface IAutocompleteOptionNorm extends IAutocompleteOptionBase {
188
+ options?: IAutocompleteOptionBase[];
189
+ }
190
+ type AutocompleteOption = string | IAutocompleteOption;
191
+ type Search = 'external' | 'global' | {
192
+ external?: boolean;
193
+ global?: boolean;
194
+ };
195
+
196
+ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
197
+ #private;
198
+ writeValue(value: string): void;
199
+ registerOnChange(fn: any): void;
200
+ registerOnTouched(fn: any): void;
201
+ onChange: (value: any) => void;
202
+ onTouched: () => void;
203
+ static ngAcceptInputType_allowOnlyDefinedOptions: BooleanInput$1;
204
+ static ngAcceptInputType_cleaner: BooleanInput$1;
205
+ static ngAcceptInputType_clearSearchOnSelect: BooleanInput$1;
206
+ static ngAcceptInputType_delay: NumberInput$1;
207
+ static ngAcceptInputType_disabled: BooleanInput$1;
208
+ static ngAcceptInputType_highlightOptionsOnSearch: BooleanInput$1;
209
+ static ngAcceptInputType_indicator: BooleanInput$1;
210
+ static ngAcceptInputType_loading: BooleanInput$1;
211
+ static ngAcceptInputType_readOnly: BooleanInput$1;
212
+ static ngAcceptInputType_resetSelectionOnOptionsChange: BooleanInput$1;
213
+ static ngAcceptInputType_showHints: BooleanInput$1;
214
+ static ngAcceptInputType_virtualScroller: BooleanInput$1;
215
+ static ngAcceptInputType_visible: BooleanInput$1;
216
+ static ngAcceptInputType_visibleItems: NumberInput$1;
217
+ /**
218
+ * Optional popper Options object
219
+ * @return Partial<Options>
220
+ */
221
+ readonly popperOptionsInput: _angular_core.InputSignal<Partial<Options>>;
222
+ readonly popperOptions: _angular_core.Signal<Partial<Options>>;
223
+ /**
224
+ * Only allow selection of predefined options.
225
+ * When `true`, users cannot enter custom values that are not in the options list.
226
+ * When `false`, users can enter and select custom values.
227
+ * @default false
228
+ */
229
+ readonly allowOnlyDefinedOptions: _angular_core.InputSignalWithTransform<boolean, unknown>;
230
+ /**
231
+ * Enables selection cleaner element.
232
+ * When `true`, displays a clear button that allows users to reset the selection.
233
+ * The cleaner button is only shown when there is a selection and the component is not disabled or read-only.
234
+ * @default false
235
+ */
236
+ readonly cleaner: _angular_core.InputSignalWithTransform<boolean, unknown>;
237
+ /**
238
+ * Whether to clear the internal search state after selecting an option.
239
+ *
240
+ * When set to `true`, the internal search value used for filtering options is cleared
241
+ * after a selection is made. This affects only the component's internal logic.
242
+ *
243
+ * Note: This does **not** clear the visible input field if the component is using external search
244
+ * or is controlled via the `searchValue` prop. In such cases, clearing must be handled externally.
245
+ * @default true
246
+ */
247
+ readonly clearSearchOnSelect: _angular_core.InputSignalWithTransform<boolean, unknown>;
248
+ /**
249
+ * Debounce delay in milliseconds for filtering options based on search input.
250
+ * Controls how quickly the options list updates as the user types.
251
+ * Higher values reduce update frequency for better performance with large datasets.
252
+ * @default 150
253
+ */
254
+ readonly delay: _angular_core.InputSignalWithTransform<number, unknown>;
255
+ /**
256
+ * Toggle the disabled state for the component.
257
+ * When `true`, the Angular autocomplete is non-interactive and appears visually disabled.
258
+ * Users cannot type, select options, or trigger the dropdown.
259
+ */
260
+ readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
261
+ readonly disabledState: _angular_core.WritableSignal<boolean | null>;
262
+ /**
263
+ * Highlight options that match the search criteria.
264
+ * When `true`, matching portions of option labels are visually highlighted
265
+ * based on the current search input value.
266
+ *
267
+ * @default false
268
+ */
269
+ readonly highlightOptionsOnSearch: _angular_core.InputSignalWithTransform<boolean, unknown>;
270
+ /**
271
+ * Unique identifier for the Autocomplete component.
272
+ * If not provided, a default ID will be generated.
273
+ * @return string
274
+ * @default 'autocomplete-<nextId>'
275
+ */
276
+ readonly idInput: _angular_core.InputSignal<string | undefined>;
277
+ /**
278
+ * Unique identifier for the Autocomplete component.
279
+ * If `idInput` is not provided, a default ID will be generated.
280
+ * @return string
281
+ */
282
+ readonly id: _angular_core.Signal<string>;
283
+ /**
284
+ * Show dropdown indicator/arrow button.
285
+ * When `true`, displays a dropdown arrow button that can be clicked
286
+ * to manually show or hide options dropdown.
287
+ */
288
+ readonly indicator: _angular_core.InputSignalWithTransform<boolean, unknown>;
289
+ /**
290
+ * The size of the option item in the list (in pixels).
291
+ * @return number
292
+ * @default 40
293
+ */
294
+ readonly itemSize: _angular_core.InputSignalWithTransform<number, unknown>;
295
+ /**
296
+ * When set, the options list will have a loading style: loading spinner and reduced opacity.
297
+ * Use this to indicate that options are being fetched asynchronously.
298
+ * The dropdown remains functional but shows visual loading indicators.
299
+ */
300
+ readonly loading: _angular_core.InputSignalWithTransform<boolean, unknown>;
301
+ /**
302
+ * List of option elements.
303
+ * Can contain Option objects, OptionsGroup objects, or plain strings.
304
+ * Plain strings are converted to simple Option objects internally.
305
+ * This is a required prop - the Angular autocomplete needs options to function.
306
+ */
307
+ readonly optionsInput: _angular_core.InputSignal<(string | IAutocompleteOption)[]>;
308
+ readonly options: _angular_core.Signal<_coreui_angular_pro.IAutocompleteOptionNorm[]>;
309
+ /**
310
+ * Sets maxHeight of options list.
311
+ * Controls the maximum height of the dropdown options container.
312
+ * Can be a number (pixels) or a CSS length string (e.g., '200px', '10rem').
313
+ * When content exceeds this height, a scrollbar will appear.
314
+ * @default 'auto'
315
+ */
316
+ readonly optionsMaxHeightInput: _angular_core.InputSignal<string | number>;
317
+ readonly optionsMaxHeight: _angular_core.WritableSignal<string | number>;
318
+ /**
319
+ * Custom template for rendering individual options.
320
+ * Allows complete customization of how each option appears in the dropdown.
321
+ */
322
+ readonly optionTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
323
+ /**
324
+ * Custom template for rendering option groups.
325
+ * Allows customization of how option group headers appear in the dropdown.
326
+ */
327
+ readonly optionGroupTemplate: _angular_core.InputSignal<TemplateRef<any> | undefined>;
328
+ /**
329
+ * Specifies a short hint that is visible in the search input.
330
+ * Displayed when the input is empty to guide user interaction.
331
+ * Standard HTML input placeholder behavior.
332
+ */
333
+ readonly placeholder: _angular_core.InputSignal<string | undefined>;
334
+ /**
335
+ * Toggle the readonly state for the component.
336
+ * When `true`, users can view and interact with the dropdown but cannot
337
+ * type in the search input or modify the selection through typing.
338
+ * Selection via clicking options may still be possible.
339
+ */
340
+ readonly readOnly: _angular_core.InputSignalWithTransform<boolean, unknown>;
341
+ /**
342
+ * Determines whether the selected options should be cleared when the options list is updated.
343
+ * When `true`, any previously selected options will be reset whenever the options
344
+ * list undergoes a change. This ensures that outdated selections are not retained
345
+ * when new options are provided.
346
+ *
347
+ * @default false
348
+ */
349
+ readonly resetSelectionOnOptionsChange: _angular_core.InputSignalWithTransform<boolean, unknown>;
350
+ /**
351
+ * Enables and configures search functionality.
352
+ * - `'external'`: Search is handled externally, filtering is not applied internally
353
+ * - `'global'`: Enables global keyboard search when dropdown is closed
354
+ * - Object with `external` and `global` boolean properties for fine-grained control
355
+ */
356
+ readonly search: _angular_core.InputSignal<Search | undefined>;
357
+ /**
358
+ * Sets the label for no results when filtering.
359
+ * - `false`: Don't show any message when no results found
360
+ * - `true`: Show default "No results found" message
361
+ * - `string`: Show custom text message
362
+ * - `TemplateRef`: Show custom component/element
363
+ *
364
+ * @default false
365
+ */
366
+ readonly searchNoResultsLabel: _angular_core.InputSignal<string | boolean | TemplateRef<any>>;
367
+ /**
368
+ * Show hint options based on the current input value.
369
+ * When `true`, displays a preview/hint of the first matching option
370
+ * as semi-transparent text in the input field, similar to browser autocomplete.
371
+ *
372
+ * @default false
373
+ */
374
+ readonly showHints: _angular_core.InputSignalWithTransform<boolean, unknown>;
375
+ /**
376
+ * Size the component small or large.
377
+ * - `'sm'`: Small size variant
378
+ * - `'lg'`: Large size variant
379
+ * - `undefined`: Default/medium size
380
+ */
381
+ readonly sizing: _angular_core.InputSignal<"sm" | "lg" | undefined>;
382
+ /**
383
+ * Set form input validation state to valid.
384
+ * @default undefined
385
+ */
386
+ readonly valid: _angular_core.InputSignal<boolean | undefined>;
387
+ /**
388
+ * Sets the initially selected value for the Angular autocomplete component.
389
+ * Can be a string (matched against option labels) or number (matched against option values).
390
+ * The component will attempt to find and select the matching option on mount.
391
+ */
392
+ readonly valueInput: _angular_core.InputSignal<string | number | undefined>;
393
+ readonly value: _angular_core.WritableSignal<string | number | undefined>;
394
+ /**
395
+ * Enable virtual scroller for the options list.
396
+ * When `true`, only visible options are rendered in the DOM for better performance
397
+ * with large option lists. Works in conjunction with `visibleItems` prop.
398
+ * @default false
399
+ */
400
+ readonly virtualScroller: _angular_core.InputSignalWithTransform<boolean, unknown>;
401
+ /**
402
+ * Toggle the visibility of autocomplete dropdown.
403
+ * Controls whether the dropdown is initially visible.
404
+ * The dropdown visibility can still be toggled through user interaction.
405
+ */
406
+ readonly visibleInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
407
+ readonly visible: _angular_core.WritableSignal<boolean>;
408
+ /**
409
+ * Amount of visible items when virtualScroller is enabled.
410
+ * Determines how many option items are rendered at once when virtual scrolling is active.
411
+ * Higher values show more items but use more memory. Lower values improve performance.
412
+ * @default 8
413
+ */
414
+ readonly visibleItemsInput: _angular_core.InputSignalWithTransform<number, unknown>;
415
+ readonly visibleItems: _angular_core.Signal<number>;
416
+ /**
417
+ * Emits an event when the filter/search value changes.
418
+ * Called whenever the user types in the search input.
419
+ * Useful for implementing external search functionality or analytics.
420
+ * @param value - The current search input value
421
+ */
422
+ readonly inputChange: _angular_core.OutputEmitterRef<string>;
423
+ /**
424
+ * Emits an event when a user changes the selected option.
425
+ * Called with the selected option object or `undefined` when cleared.
426
+ * This is the primary callback for handling selection changes.
427
+ * @param option - The selected option object, or `undefined` if cleared
428
+ */
429
+ readonly optionChange: _angular_core.OutputEmitterRef<IAutocompleteOption | null>;
430
+ readonly valueChange: _angular_core.OutputEmitterRef<string | null>;
431
+ /**
432
+ * The callback is fired when the dropdown requests to be hidden.
433
+ * Called when the dropdown closes due to user interaction, clicks outside,
434
+ * escape key, or programmatic changes.
435
+ */
436
+ readonly visibleChange: _angular_core.OutputEmitterRef<boolean>;
437
+ ngOnInit(): void;
438
+ protected onBlur($event?: FocusEvent): void;
439
+ readonly filteredOptions: _angular_core.Signal<_coreui_angular_pro.IAutocompleteOptionNorm[]>;
440
+ protected handleSearch(value: string): void;
441
+ protected handleClear(): void;
442
+ protected handleSelect(option?: IAutocompleteOption | null): void;
443
+ protected handleDropdownHide(): void;
444
+ protected handleDropdownShow(): void;
445
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteDirective, never>;
446
+ static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AutocompleteDirective, "input[cAutocomplete]", ["cAutocomplete"], { "popperOptionsInput": { "alias": "popperOptionsInput"; "required": false; "isSignal": true; }; "allowOnlyDefinedOptions": { "alias": "allowOnlyDefinedOptions"; "required": false; "isSignal": true; }; "cleaner": { "alias": "cleaner"; "required": false; "isSignal": true; }; "clearSearchOnSelect": { "alias": "clearSearchOnSelect"; "required": false; "isSignal": true; }; "delay": { "alias": "delay"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "highlightOptionsOnSearch": { "alias": "highlightOptionsOnSearch"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "itemSize": { "alias": "itemSize"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "optionsInput": { "alias": "options"; "required": true; "isSignal": true; }; "optionsMaxHeightInput": { "alias": "optionsMaxHeight"; "required": false; "isSignal": true; }; "optionTemplate": { "alias": "optionTemplate"; "required": false; "isSignal": true; }; "optionGroupTemplate": { "alias": "optionGroupTemplate"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readOnly": { "alias": "readOnly"; "required": false; "isSignal": true; }; "resetSelectionOnOptionsChange": { "alias": "resetSelectionOnOptionsChange"; "required": false; "isSignal": true; }; "search": { "alias": "search"; "required": false; "isSignal": true; }; "searchNoResultsLabel": { "alias": "searchNoResultsLabel"; "required": false; "isSignal": true; }; "showHints": { "alias": "showHints"; "required": false; "isSignal": true; }; "sizing": { "alias": "sizing"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "valueInput": { "alias": "value"; "required": false; "isSignal": true; }; "virtualScroller": { "alias": "virtualScroller"; "required": false; "isSignal": true; }; "visibleInput": { "alias": "visible"; "required": false; "isSignal": true; }; "visibleItemsInput": { "alias": "visibleItems"; "required": false; "isSignal": true; }; }, { "inputChange": "inputChange"; "optionChange": "optionChange"; "valueChange": "valueChange"; "visibleChange": "visibleChange"; }, never, never, true, never>;
447
+ }
448
+
449
+ declare class AutocompleteModule {
450
+ static ɵfac: _angular_core.ɵɵFactoryDeclaration<AutocompleteModule, never>;
451
+ static ɵmod: _angular_core.ɵɵNgModuleDeclaration<AutocompleteModule, never, [typeof AutocompleteDirective], [typeof AutocompleteDirective]>;
452
+ static ɵinj: _angular_core.ɵɵInjectorDeclaration<AutocompleteModule>;
453
+ }
454
+
175
455
  declare class AlertHeadingDirective {
176
456
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<AlertHeadingDirective, never>;
177
457
  static ɵdir: _angular_core.ɵɵDirectiveDeclaration<AlertHeadingDirective, "[cAlertHeading]", never, {}, {}, never, never, true, never>;
@@ -1490,7 +1770,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
1490
1770
  * Set the ranges button variant to an outlined button or a ghost button.
1491
1771
  * @return 'outline' | 'ghost' | undefined
1492
1772
  */
1493
- readonly rangesButtonsVariant: _angular_core.InputSignal<"ghost" | "outline">;
1773
+ readonly rangesButtonsVariant: _angular_core.InputSignal<"outline" | "ghost">;
1494
1774
  /**
1495
1775
  * Default icon or character that separates two dates.
1496
1776
  * @return boolean
@@ -2610,7 +2890,8 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
2610
2890
  * @return ('checkbox' | 'text')
2611
2891
  * @default 'checkbox'
2612
2892
  */
2613
- readonly optionsStyle: _angular_core.InputSignal<"text" | "checkbox">;
2893
+ readonly optionsStyleInput: _angular_core.InputSignal<string | undefined>;
2894
+ readonly optionsStyle: WritableSignal<string>;
2614
2895
  /**
2615
2896
  * Option label
2616
2897
  * @type string
@@ -2675,7 +2956,7 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
2675
2956
  private setSubscriptions;
2676
2957
  isSelected(value?: string | number): boolean;
2677
2958
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<MultiSelectOptionComponent, never>;
2678
- static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectOptionComponent, "c-multi-select-option", ["cMultiSelectOption"], { "optionsStyle": { "alias": "optionsStyle"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; }; "text": { "alias": "text"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; "active": { "alias": "active"; "required": false; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, { "selectedChange": "selectedChange"; "focusChange": "focusChange"; }, never, ["*"], true, never>;
2959
+ static ɵcmp: _angular_core.ɵɵComponentDeclaration<MultiSelectOptionComponent, "c-multi-select-option", ["cMultiSelectOption"], { "optionsStyleInput": { "alias": "optionsStyle"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; }; "text": { "alias": "text"; "required": false; }; "visible": { "alias": "visible"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "value": { "alias": "value"; "required": false; }; "active": { "alias": "active"; "required": false; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, { "selectedChange": "selectedChange"; "focusChange": "focusChange"; }, never, ["*"], true, never>;
2679
2960
  static ngAcceptInputType_visible: unknown;
2680
2961
  static ngAcceptInputType_disabled: unknown;
2681
2962
  static ngAcceptInputType_active: unknown;
@@ -2723,7 +3004,7 @@ interface IOption {
2723
3004
 
2724
3005
  declare class MultiSelectService {
2725
3006
  #private;
2726
- optionsStyle: 'checkbox' | 'text';
3007
+ readonly optionsStyle: _angular_core.WritableSignal<"text" | "checkbox">;
2727
3008
  selectionModel: SelectionModel<any>;
2728
3009
  readonly selectionModelChanged$: Subject<SelectionChange<any>>;
2729
3010
  setSelectionModel(multiple?: boolean, initiallySelectedValues?: string[]): void;
@@ -2858,7 +3139,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
2858
3139
  * @return boolean | SearchFn | 'external'
2859
3140
  * @default true
2860
3141
  */
2861
- readonly search: _angular_core.InputSignal<boolean | SearchFn | "external">;
3142
+ readonly search: _angular_core.InputSignal<boolean | "external" | SearchFn>;
2862
3143
  /**
2863
3144
  * Sets the label for no results when filtering
2864
3145
  * @return string
@@ -2997,7 +3278,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
2997
3278
  };
2998
3279
  contentTemplates: QueryList<TemplateIdDirective>;
2999
3280
  private focusKeyManager;
3000
- inputElement: ElementRef;
3281
+ inputElement: ElementRef<HTMLInputElement>;
3001
3282
  dropdownMenu: ElementRef;
3002
3283
  dropdown: ElementRef;
3003
3284
  dropdownToggle: ElementRef;
@@ -6688,5 +6969,5 @@ declare class WidgetModule {
6688
6969
  static ɵinj: _angular_core.ɵɵInjectorDeclaration<WidgetModule>;
6689
6970
  }
6690
6971
 
6691
- export { AccordionButtonDirective, AccordionComponent, AccordionItemComponent, AccordionModule, AlertComponent, AlertHeadingDirective, AlertLinkDirective, AlertModule, AlignDirective, 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, 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, ToastHeaderComponent, ToastModule, ToasterComponent, ToasterHostDirective, ToasterPlacement, ToasterService, TooltipComponent, TooltipDirective, TooltipModule, UIDService, UtilitiesModule, WidgetModule, WidgetStatAComponent, WidgetStatBComponent, WidgetStatCComponent, WidgetStatDComponent, WidgetStatEComponent, WidgetStatFComponent };
6692
- export type { Alignment, BackgroundColors, BadgePositions, BooleanInput, BreakpointInfixStrings, Breakpoints, ButtonType, ColorMode, Colors, Directions, 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, SearchFn, Shapes, Sizes, SortOrder, StepperRef, StepperStepData, StepperStepValidationResult, TToasterPlacement, TextColors, ThumbSize, Triggers };
6972
+ 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, 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, ToastHeaderComponent, ToastModule, ToasterComponent, ToasterHostDirective, ToasterPlacement, ToasterService, TooltipComponent, TooltipDirective, TooltipModule, UIDService, UtilitiesModule, WidgetModule, WidgetStatAComponent, WidgetStatBComponent, WidgetStatCComponent, WidgetStatDComponent, WidgetStatEComponent, WidgetStatFComponent };
6973
+ 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 };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/angular-pro",
3
- "version": "5.5.10",
3
+ "version": "5.5.12",
4
4
  "description": "CoreUI Pro Components Library for Angular",
5
5
  "copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
6
6
  "homepage": "https://coreui.io/angular",
@@ -28,8 +28,8 @@
28
28
  "@angular/core": "^20.2.0",
29
29
  "@angular/forms": "^20.2.0",
30
30
  "@angular/router": "^20.2.0",
31
- "@coreui/coreui-pro": "~5.18.0",
32
- "@coreui/icons-angular": "~5.5.10",
31
+ "@coreui/coreui-pro": "~5.19.0",
32
+ "@coreui/icons-angular": "~5.5.12",
33
33
  "rxjs": "^7.8.2"
34
34
  },
35
35
  "repository": {