@coreui/angular-pro 4.7.8 → 4.7.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Directive, Input, NgModule, HostBinding, Injectable, Component, EventEmitter, Output, booleanAttribute, ContentChildren, HostListener, inject, RendererFactory2, Pipe, ViewChildren, PLATFORM_ID, DestroyRef, Inject, ViewChild, forwardRef, Optional, ElementRef, ContentChild, ChangeDetectionStrategy, signal, computed, NgZone, numberAttribute, effect, TemplateRef, ViewContainerRef } from '@angular/core';
2
+ import { Directive, Input, NgModule, HostBinding, Injectable, Component, EventEmitter, Output, booleanAttribute, ContentChildren, HostListener, inject, RendererFactory2, Pipe, ViewChildren, PLATFORM_ID, Inject, DestroyRef, ViewChild, forwardRef, Optional, ElementRef, ContentChild, ChangeDetectionStrategy, signal, computed, NgZone, numberAttribute, effect, TemplateRef, ViewContainerRef } from '@angular/core';
3
3
  import { coerceBooleanProperty, coerceNumberProperty } from '@angular/cdk/coercion';
4
4
  import * as i1$2 from '@angular/common';
5
5
  import { NgTemplateOutlet, NgIf, NgClass, DOCUMENT, NgForOf, AsyncPipe, NgStyle, NgSwitch, NgSwitchCase, NgSwitchDefault, isPlatformServer, CommonModule, formatDate, I18nPluralPipe, isPlatformBrowser } from '@angular/common';
@@ -3163,6 +3163,53 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
3163
3163
  }]
3164
3164
  }] });
3165
3165
 
3166
+ class IntersectionService {
3167
+ constructor() {
3168
+ this.platformId = inject(PLATFORM_ID);
3169
+ this.#intersecting = new BehaviorSubject({ isIntersecting: false });
3170
+ this.intersecting$ = this.#intersecting.asObservable();
3171
+ this.defaultObserverOptions = {
3172
+ root: null,
3173
+ rootMargin: '0px',
3174
+ threshold: 0.2
3175
+ };
3176
+ this.hostElementRefs = new Map();
3177
+ }
3178
+ #intersecting;
3179
+ createIntersectionObserver(hostElement, observerOptions = this.defaultObserverOptions) {
3180
+ if (isPlatformServer(this.platformId)) {
3181
+ this.#intersecting.next({ isIntersecting: true, hostElement });
3182
+ return;
3183
+ }
3184
+ const options = { ...this.defaultObserverOptions, ...observerOptions };
3185
+ const handleIntersect = (entries, observer) => {
3186
+ entries.forEach((entry) => {
3187
+ this.#intersecting.next({ isIntersecting: entry.isIntersecting, hostElement });
3188
+ });
3189
+ };
3190
+ this.hostElementRefs.set(hostElement, new IntersectionObserver(handleIntersect, options));
3191
+ this.hostElementRefs.get(hostElement)?.observe(hostElement.nativeElement);
3192
+ }
3193
+ unobserve(elementRef) {
3194
+ this.hostElementRefs.get(elementRef)?.unobserve(elementRef.nativeElement);
3195
+ this.hostElementRefs.set(elementRef, null);
3196
+ this.hostElementRefs.delete(elementRef);
3197
+ }
3198
+ ngOnDestroy() {
3199
+ this.hostElementRefs.forEach((observer, elementRef) => {
3200
+ observer?.unobserve(elementRef.nativeElement);
3201
+ });
3202
+ }
3203
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3204
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionService, providedIn: 'root' }); }
3205
+ }
3206
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionService, decorators: [{
3207
+ type: Injectable,
3208
+ args: [{
3209
+ providedIn: 'root'
3210
+ }]
3211
+ }] });
3212
+
3166
3213
  class ListenersService {
3167
3214
  constructor(renderer) {
3168
3215
  this.renderer = renderer;
@@ -3202,6 +3249,33 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
3202
3249
  type: Injectable
3203
3250
  }], ctorParameters: () => [{ type: i0.Renderer2 }] });
3204
3251
 
3252
+ class ClassToggleService {
3253
+ constructor(document, rendererFactory) {
3254
+ this.document = document;
3255
+ this.rendererFactory = rendererFactory;
3256
+ this.renderer = rendererFactory.createRenderer(null, null);
3257
+ }
3258
+ toggle(selector, className) {
3259
+ const element = document.querySelector(selector);
3260
+ if (element) {
3261
+ element.classList.contains(className) ?
3262
+ this.renderer.removeClass(element, className) :
3263
+ this.renderer.addClass(element, className);
3264
+ }
3265
+ }
3266
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClassToggleService, deps: [{ token: DOCUMENT }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
3267
+ static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClassToggleService, providedIn: 'root' }); }
3268
+ }
3269
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClassToggleService, decorators: [{
3270
+ type: Injectable,
3271
+ args: [{
3272
+ providedIn: 'root'
3273
+ }]
3274
+ }], ctorParameters: () => [{ type: Document, decorators: [{
3275
+ type: Inject,
3276
+ args: [DOCUMENT]
3277
+ }] }, { type: i0.RendererFactory2 }] });
3278
+
3205
3279
  class CarouselService {
3206
3280
  constructor() {
3207
3281
  this.carouselIndex = new BehaviorSubject({});
@@ -3311,53 +3385,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
3311
3385
  type: Injectable
3312
3386
  }] });
3313
3387
 
3314
- class IntersectionService {
3315
- constructor() {
3316
- this.platformId = inject(PLATFORM_ID);
3317
- this.#intersecting = new BehaviorSubject({ isIntersecting: false });
3318
- this.intersecting$ = this.#intersecting.asObservable();
3319
- this.defaultObserverOptions = {
3320
- root: null,
3321
- rootMargin: '0px',
3322
- threshold: 0.2
3323
- };
3324
- this.hostElementRefs = new Map();
3325
- }
3326
- #intersecting;
3327
- createIntersectionObserver(hostElement, observerOptions = this.defaultObserverOptions) {
3328
- if (isPlatformServer(this.platformId)) {
3329
- this.#intersecting.next({ isIntersecting: true, hostElement });
3330
- return;
3331
- }
3332
- const options = { ...this.defaultObserverOptions, ...observerOptions };
3333
- const handleIntersect = (entries, observer) => {
3334
- entries.forEach((entry) => {
3335
- this.#intersecting.next({ isIntersecting: entry.isIntersecting, hostElement });
3336
- });
3337
- };
3338
- this.hostElementRefs.set(hostElement, new IntersectionObserver(handleIntersect, options));
3339
- this.hostElementRefs.get(hostElement)?.observe(hostElement.nativeElement);
3340
- }
3341
- unobserve(elementRef) {
3342
- this.hostElementRefs.get(elementRef)?.unobserve(elementRef.nativeElement);
3343
- this.hostElementRefs.set(elementRef, null);
3344
- this.hostElementRefs.delete(elementRef);
3345
- }
3346
- ngOnDestroy() {
3347
- this.hostElementRefs.forEach((observer, elementRef) => {
3348
- observer?.unobserve(elementRef.nativeElement);
3349
- });
3350
- }
3351
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
3352
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionService, providedIn: 'root' }); }
3353
- }
3354
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: IntersectionService, decorators: [{
3355
- type: Injectable,
3356
- args: [{
3357
- providedIn: 'root'
3358
- }]
3359
- }] });
3360
-
3361
3388
  class CarouselComponent {
3362
3389
  get hostClasses() {
3363
3390
  return {
@@ -3424,7 +3451,6 @@ class CarouselComponent {
3424
3451
  * @type number
3425
3452
  */
3426
3453
  this.itemChange = new EventEmitter();
3427
- this.timerId = undefined;
3428
3454
  this.activeItemInterval = 0;
3429
3455
  this.#destroyRef = inject(DestroyRef);
3430
3456
  this._visible = true;
@@ -7130,7 +7156,7 @@ class DateRangePickerComponent {
7130
7156
  this.endDate = time ?? this.endDate;
7131
7157
  }
7132
7158
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: DateRangePickerComponent, deps: [{ token: i1$4.BreakpointObserver }], target: i0.ɵɵFactoryTarget.Component }); }
7133
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: DateRangePickerComponent, isStandalone: true, selector: "c-date-range-picker", inputs: { dayFormat: "dayFormat", calendars: "calendars", cleaner: "cleaner", closeOnSelect: "closeOnSelect", format: "format", indicator: "indicator", inputReadOnly: "inputReadOnly", navYearFirst: "navYearFirst", placeholder: "placeholder", ranges: "ranges", rangesButtonsColor: "rangesButtonsColor", rangesButtonsSize: "rangesButtonsSize", rangesButtonsVariant: "rangesButtonsVariant", separator: "separator", size: "size", timepicker: "timepicker", valid: "valid", visible: "visible", startDate: "startDate", endDate: "endDate", calendarDate: "calendarDate", disabledDates: "disabledDates", firstDayOfWeek: "firstDayOfWeek", locale: "locale", maxDate: "maxDate", minDate: "minDate", navigation: "navigation", range: "range", dateFilter: "dateFilter", disabled: "disabled", value: "value", weekdayFormat: "weekdayFormat", popperjsOptions: ["popperOptions", "popperjsOptions"], selectAdjacentDays: "selectAdjacentDays", showAdjacentDays: "showAdjacentDays" }, outputs: { valueChange: "valueChange", calendarCellHover: "calendarCellHover", calendarDateChange: "calendarDateChange", endDateChange: "endDateChange", startDateChange: "startDateChange" }, host: { listeners: { "blur": "onBlur()" } }, providers: [
7159
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: DateRangePickerComponent, isStandalone: true, selector: "c-date-range-picker", inputs: { dayFormat: "dayFormat", calendars: "calendars", cleaner: "cleaner", closeOnSelect: "closeOnSelect", format: "format", indicator: "indicator", inputReadOnly: "inputReadOnly", navYearFirst: "navYearFirst", placeholder: "placeholder", ranges: "ranges", rangesButtonsColor: "rangesButtonsColor", rangesButtonsSize: "rangesButtonsSize", rangesButtonsVariant: "rangesButtonsVariant", separator: "separator", size: "size", timepicker: "timepicker", valid: "valid", visible: "visible", startDate: "startDate", endDate: "endDate", calendarDate: "calendarDate", disabledDates: "disabledDates", firstDayOfWeek: "firstDayOfWeek", locale: "locale", maxDate: "maxDate", minDate: "minDate", navigation: "navigation", range: "range", dateFilter: "dateFilter", disabled: "disabled", value: "value", weekdayFormat: "weekdayFormat", popperjsOptions: ["popperOptions", "popperjsOptions"], selectAdjacentDays: "selectAdjacentDays", showAdjacentDays: "showAdjacentDays" }, outputs: { valueChange: "valueChange", calendarCellHover: "calendarCellHover", calendarDateChange: "calendarDateChange", endDateChange: "endDateChange", startDateChange: "startDateChange" }, host: { listeners: { "focusout": "onBlur()" }, properties: { "class": "this.datePickerClasses" } }, providers: [
7134
7160
  {
7135
7161
  provide: NG_VALUE_ACCESSOR,
7136
7162
  useExisting: forwardRef(() => DateRangePickerComponent),
@@ -7255,7 +7281,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
7255
7281
  args: [TemplateIdDirective, { descendants: true }]
7256
7282
  }], onBlur: [{
7257
7283
  type: HostListener,
7258
- args: ['blur']
7284
+ args: ['focusout']
7285
+ }], datePickerClasses: [{
7286
+ type: HostBinding,
7287
+ args: ['class']
7259
7288
  }] } });
7260
7289
 
7261
7290
  class DateRangePickerModule {
@@ -11919,33 +11948,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
11919
11948
  args: ['class']
11920
11949
  }] } });
11921
11950
 
11922
- class ClassToggleService {
11923
- constructor(document, rendererFactory) {
11924
- this.document = document;
11925
- this.rendererFactory = rendererFactory;
11926
- this.renderer = rendererFactory.createRenderer(null, null);
11927
- }
11928
- toggle(selector, className) {
11929
- const element = document.querySelector(selector);
11930
- if (element) {
11931
- element.classList.contains(className) ?
11932
- this.renderer.removeClass(element, className) :
11933
- this.renderer.addClass(element, className);
11934
- }
11935
- }
11936
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClassToggleService, deps: [{ token: DOCUMENT }, { token: i0.RendererFactory2 }], target: i0.ɵɵFactoryTarget.Injectable }); }
11937
- static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClassToggleService, providedIn: 'root' }); }
11938
- }
11939
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ClassToggleService, decorators: [{
11940
- type: Injectable,
11941
- args: [{
11942
- providedIn: 'root'
11943
- }]
11944
- }], ctorParameters: () => [{ type: Document, decorators: [{
11945
- type: Inject,
11946
- args: [DOCUMENT]
11947
- }] }, { type: i0.RendererFactory2 }] });
11948
-
11949
11951
  class PopoverDirective {
11950
11952
  /**
11951
11953
  * Optional popper Options object, takes precedence over cPopoverPlacement prop
@@ -15428,7 +15430,7 @@ class ToastComponent {
15428
15430
  this._visible = false;
15429
15431
  /**
15430
15432
  * Event emitted on visibility change. [docs]
15431
- * @type boolean
15433
+ * @type EventEmitter<boolean>
15432
15434
  */
15433
15435
  this.visibleChange = new EventEmitter();
15434
15436
  /**
@@ -15498,14 +15500,14 @@ class ToastComponent {
15498
15500
  setTimer() {
15499
15501
  this.clearTimer();
15500
15502
  if (this.autohide && this.visible) {
15501
- this.timerId = this.delay > 0 ? setTimeout(() => this.onClose(), this.delay) : null;
15503
+ this.timerId = this.delay > 0 ? setTimeout(() => this.onClose(), this.delay) : undefined;
15502
15504
  this.setClock();
15503
15505
  }
15504
15506
  }
15505
15507
  clearTimer() {
15506
15508
  this.clearClock();
15507
15509
  clearTimeout(this.timerId);
15508
- this.timerId = null;
15510
+ this.timerId = undefined;
15509
15511
  }
15510
15512
  onClose() {
15511
15513
  this.clearTimer();
@@ -15529,7 +15531,7 @@ class ToastComponent {
15529
15531
  clearClock() {
15530
15532
  clearTimeout(this.clockTimerId);
15531
15533
  clearInterval(this.clockId);
15532
- this.clockId = null;
15534
+ this.clockId = undefined;
15533
15535
  }
15534
15536
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.0.8", ngImport: i0, type: ToastComponent, deps: [{ token: i0.ElementRef }, { token: i0.Renderer2 }, { token: ToasterService }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
15535
15537
  static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "17.0.8", type: ToastComponent, isStandalone: true, selector: "c-toast", inputs: { autohide: "autohide", color: "color", delay: "delay", fade: "fade", visible: "visible", index: "index" }, outputs: { visibleChange: "visibleChange", timer: "timer" }, host: { listeners: { "mouseover": "onMouseOver()", "mouseout": "onMouseOut()" }, properties: { "@.disabled": "this.animationDisabled", "@fadeInOut": "this.animateType", "class": "this.hostClasses" } }, exportAs: ["cToast"], ngImport: i0, template: '<ng-content></ng-content>', isInline: true, styles: [":host{display:block;overflow:hidden}\n"], animations: [
@@ -16494,5 +16496,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.0.8", ngImpor
16494
16496
  * Generated bundle index. Do not edit.
16495
16497
  */
16496
16498
 
16497
- 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, ContainerComponent, DatePickerComponent, DatePickerModule, DateRangePickerComponent, DateRangePickerModule, DropdownCloseDirective, DropdownComponent, DropdownDividerDirective, DropdownHeaderDirective, DropdownItemDirective, DropdownItemPlainDirective, DropdownMenuDirective, DropdownModule, DropdownService, DropdownToggleDirective, ElementCoverComponent, ElementCoverModule, FooterComponent, FooterModule, FormCheckComponent, FormCheckInputDirective, FormCheckLabelDirective, FormControlDirective, FormDirective, FormFeedbackComponent, FormFloatingDirective, FormLabelDirective, FormModule, FormSelectDirective, FormTextDirective, GridModule, GutterDirective, HeaderBrandComponent, HeaderComponent, HeaderDividerComponent, HeaderModule, HeaderNavComponent, HeaderTextComponent, HeaderTogglerDirective, HtmlAttributesDirective, ImgDirective, ImgModule, InputGroupComponent, InputGroupTextDirective, IntersectionService, ListGroupDirective, ListGroupItemDirective, ListGroupModule, ListenersService, LoadingButtonComponent, LoadingButtonModule, 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, ProgressComponent, ProgressModule, RoundedDirective, RowComponent, RowDirective, SharedModule, SidebarBrandComponent, SidebarComponent, SidebarFooterComponent, SidebarHeaderComponent, SidebarModule, SidebarNavComponent, SidebarService, SidebarToggleDirective, SidebarTogglerComponent, SmartPaginationComponent, SmartPaginationModule, SmartTableComponent, SmartTableFilterComponent, SmartTableModule, SpinnerComponent, SpinnerModule, TabContentComponent, TabContentRefDirective, TabPaneComponent, TabService, TableActiveDirective, TableColorDirective, TableDirective, TableModule, TabsModule, TemplateIdDirective, TextColorDirective, TimePickerComponent, TimePickerModule, ToastBodyComponent, ToastCloseDirective, ToastComponent, ToastHeaderComponent, ToastModule, ToasterComponent, ToasterHostDirective, ToasterPlacement, ToasterService, TooltipComponent, TooltipDirective, TooltipModule, UtilitiesModule, WidgetModule, WidgetStatAComponent, WidgetStatBComponent, WidgetStatCComponent, WidgetStatDComponent, WidgetStatEComponent, WidgetStatFComponent };
16499
+ 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, ContainerComponent, DatePickerComponent, DatePickerModule, DateRangePickerComponent, DateRangePickerModule, DropdownCloseDirective, DropdownComponent, DropdownDividerDirective, DropdownHeaderDirective, DropdownItemDirective, DropdownItemPlainDirective, DropdownMenuDirective, DropdownModule, DropdownService, DropdownToggleDirective, ElementCoverComponent, ElementCoverModule, FooterComponent, FooterModule, FormCheckComponent, FormCheckInputDirective, FormCheckLabelDirective, FormControlDirective, FormDirective, FormFeedbackComponent, FormFloatingDirective, FormLabelDirective, FormModule, FormSelectDirective, FormTextDirective, GridModule, GutterDirective, HeaderBrandComponent, HeaderComponent, HeaderDividerComponent, HeaderModule, HeaderNavComponent, HeaderTextComponent, HeaderTogglerDirective, HtmlAttributesDirective, ImgDirective, ImgModule, InputGroupComponent, InputGroupTextDirective, IntersectionService, ListGroupDirective, ListGroupItemDirective, ListGroupModule, ListenersService, LoadingButtonComponent, LoadingButtonModule, 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, ProgressComponent, ProgressModule, RoundedDirective, RowComponent, RowDirective, SharedModule, SidebarBrandComponent, SidebarComponent, SidebarFooterComponent, SidebarHeaderComponent, SidebarModule, SidebarNavComponent, SidebarNavHelper, SidebarService, SidebarToggleDirective, SidebarTogglerComponent, SmartPaginationComponent, SmartPaginationModule, SmartTableComponent, SmartTableFilterComponent, SmartTableModule, SpinnerComponent, SpinnerModule, TabContentComponent, TabContentRefDirective, TabPaneComponent, TabService, TableActiveDirective, TableColorDirective, TableDirective, TableModule, TabsModule, TemplateIdDirective, TextColorDirective, TimePickerComponent, TimePickerModule, ToastBodyComponent, ToastCloseDirective, ToastComponent, ToastHeaderComponent, ToastModule, ToasterComponent, ToasterHostDirective, ToasterPlacement, ToasterService, TooltipComponent, TooltipDirective, TooltipModule, UtilitiesModule, WidgetModule, WidgetStatAComponent, WidgetStatBComponent, WidgetStatCComponent, WidgetStatDComponent, WidgetStatEComponent, WidgetStatFComponent };
16498
16500
  //# sourceMappingURL=coreui-angular-pro.mjs.map