@coreui/angular-pro 5.5.0 → 5.5.1
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/fesm2022/coreui-angular-pro.mjs +481 -8
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +271 -3
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -3800,7 +3800,7 @@ declare class ProgressComponent {
|
|
|
3800
3800
|
constructor();
|
|
3801
3801
|
readonly stacked: _angular_core.WritableSignal<boolean>;
|
|
3802
3802
|
readonly percent: _angular_core.Signal<number>;
|
|
3803
|
-
readonly
|
|
3803
|
+
readonly barValue: _angular_core.WritableSignal<number | undefined>;
|
|
3804
3804
|
readonly contentProgressBars: _angular_core.Signal<readonly ProgressBarComponent[]>;
|
|
3805
3805
|
/**
|
|
3806
3806
|
* Sets the height of the component. If you set that value the inner `<CProgressBar>` will automatically resize accordingly.
|
|
@@ -5354,6 +5354,274 @@ declare class SpinnerModule {
|
|
|
5354
5354
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<SpinnerModule>;
|
|
5355
5355
|
}
|
|
5356
5356
|
|
|
5357
|
+
interface StepperRef {
|
|
5358
|
+
next: () => void;
|
|
5359
|
+
prev: () => void;
|
|
5360
|
+
finish: () => void;
|
|
5361
|
+
reset: () => void;
|
|
5362
|
+
}
|
|
5363
|
+
interface StepperStepData {
|
|
5364
|
+
disabled?: boolean;
|
|
5365
|
+
editable?: boolean;
|
|
5366
|
+
id: string;
|
|
5367
|
+
indicator?: string | TemplateRef<any>;
|
|
5368
|
+
indicatorRef?: TemplateRef<any>;
|
|
5369
|
+
indicatorCtx?: any;
|
|
5370
|
+
label: string | TemplateRef<any>;
|
|
5371
|
+
labelRef?: TemplateRef<any>;
|
|
5372
|
+
labelCtx?: any;
|
|
5373
|
+
optional?: boolean;
|
|
5374
|
+
templateRef?: TemplateRef<any>;
|
|
5375
|
+
valid?: boolean;
|
|
5376
|
+
}
|
|
5377
|
+
type StepperStepValidationResult = {
|
|
5378
|
+
stepNumber: number;
|
|
5379
|
+
isValid: boolean;
|
|
5380
|
+
};
|
|
5381
|
+
|
|
5382
|
+
declare class StepperStepComponent {
|
|
5383
|
+
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
5384
|
+
static ngAcceptInputType_optional: BooleanInput$1;
|
|
5385
|
+
static ngAcceptInputType_editable: BooleanInput$1;
|
|
5386
|
+
/**
|
|
5387
|
+
* ViewContainerRef to render the step content.
|
|
5388
|
+
* This allows dynamic rendering of templates within the step.
|
|
5389
|
+
*/
|
|
5390
|
+
readonly viewContainerRef: ViewContainerRef;
|
|
5391
|
+
/**
|
|
5392
|
+
* Whether the step is disabled.
|
|
5393
|
+
* @return boolean
|
|
5394
|
+
* @default false
|
|
5395
|
+
*/
|
|
5396
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5397
|
+
/**
|
|
5398
|
+
* Unique identifier for the step.
|
|
5399
|
+
* @return string
|
|
5400
|
+
* @default undefined
|
|
5401
|
+
*/
|
|
5402
|
+
readonly id: _angular_core.InputSignal<string | undefined>;
|
|
5403
|
+
/**
|
|
5404
|
+
* Optional indicator to display in the step.
|
|
5405
|
+
* Can be a string or a TemplateRef for custom icons.
|
|
5406
|
+
* @return string | TemplateRef<any>
|
|
5407
|
+
* @default (step index will be used if not provided)
|
|
5408
|
+
*/
|
|
5409
|
+
readonly indicator: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
|
|
5410
|
+
/**
|
|
5411
|
+
* Context for the indicator template.
|
|
5412
|
+
* If `indicator` is a TemplateRef, this context will be passed to it.
|
|
5413
|
+
* @return unknown
|
|
5414
|
+
* @default undefined
|
|
5415
|
+
*/
|
|
5416
|
+
readonly indicatorCtx: _angular_core.InputSignal<unknown>;
|
|
5417
|
+
/**
|
|
5418
|
+
* Label for the step, which is required.
|
|
5419
|
+
* Can be a string or a TemplateRef for custom labels.
|
|
5420
|
+
* @return string | TemplateRef<any>
|
|
5421
|
+
*/
|
|
5422
|
+
readonly label: _angular_core.InputSignal<string | TemplateRef<any>>;
|
|
5423
|
+
/**
|
|
5424
|
+
* Context for the label template.
|
|
5425
|
+
* If `label` is a TemplateRef, this context will be passed to it.
|
|
5426
|
+
* @return unknown
|
|
5427
|
+
* @default undefined
|
|
5428
|
+
*/
|
|
5429
|
+
readonly labelCtx: _angular_core.InputSignal<unknown>;
|
|
5430
|
+
/**
|
|
5431
|
+
* Whether the step is valid.
|
|
5432
|
+
* This can be used to indicate if the step has been completed successfully.
|
|
5433
|
+
* @return boolean | undefined | null
|
|
5434
|
+
* @default undefined
|
|
5435
|
+
*/
|
|
5436
|
+
readonly valid: _angular_core.InputSignal<boolean | null | undefined>;
|
|
5437
|
+
/**
|
|
5438
|
+
* Whether the step is editable.
|
|
5439
|
+
* If true, the step can be modified by the user.
|
|
5440
|
+
* @return boolean
|
|
5441
|
+
* @default true
|
|
5442
|
+
* todo - implement editable functionality
|
|
5443
|
+
*/
|
|
5444
|
+
readonly editable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5445
|
+
/**
|
|
5446
|
+
* Whether the step is optional.
|
|
5447
|
+
* If true, the step does not need to be completed for the overall process to succeed.
|
|
5448
|
+
* @return boolean
|
|
5449
|
+
* @default false
|
|
5450
|
+
* todo - implement optional functionality
|
|
5451
|
+
*/
|
|
5452
|
+
readonly optional: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5453
|
+
/**
|
|
5454
|
+
* Template reference for the content of the step.
|
|
5455
|
+
* This is where the main content of the step will be rendered.
|
|
5456
|
+
*/
|
|
5457
|
+
readonly templateRef: _angular_core.Signal<TemplateRef<any>>;
|
|
5458
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StepperStepComponent, never>;
|
|
5459
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StepperStepComponent, "c-stepper-step", ["cStepperStep"], { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "indicator": { "alias": "indicator"; "required": false; "isSignal": true; }; "indicatorCtx": { "alias": "indicatorCtx"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "labelCtx": { "alias": "labelCtx"; "required": false; "isSignal": true; }; "valid": { "alias": "valid"; "required": false; "isSignal": true; }; "editable": { "alias": "editable"; "required": false; "isSignal": true; }; "optional": { "alias": "optional"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
5460
|
+
}
|
|
5461
|
+
|
|
5462
|
+
declare class StepperComponent {
|
|
5463
|
+
#private;
|
|
5464
|
+
static ngAcceptInputType_defaultActiveStepIndex: NumberInput$1;
|
|
5465
|
+
static ngAcceptInputType_linear: BooleanInput$1;
|
|
5466
|
+
static ngAcceptInputType_validation: BooleanInput$1;
|
|
5467
|
+
/**
|
|
5468
|
+
* Currently active step index
|
|
5469
|
+
* @returns number
|
|
5470
|
+
* @default 0
|
|
5471
|
+
*/
|
|
5472
|
+
readonly activeStepIndexInput: _angular_core.InputSignal<number | undefined>;
|
|
5473
|
+
/**
|
|
5474
|
+
* Linked signal for the active step index.
|
|
5475
|
+
* This signal updates based on the input value and emits changes.
|
|
5476
|
+
*/
|
|
5477
|
+
readonly activeStepIndex: _angular_core.WritableSignal<number>;
|
|
5478
|
+
/**
|
|
5479
|
+
* Initial active step index
|
|
5480
|
+
* @return number
|
|
5481
|
+
* @default 0
|
|
5482
|
+
*/
|
|
5483
|
+
readonly defaultActiveStepIndex: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
5484
|
+
/**
|
|
5485
|
+
* Unique identifier for the Stepper component.
|
|
5486
|
+
* If not provided, a default ID will be generated.
|
|
5487
|
+
* @return string
|
|
5488
|
+
* @default 'stepper-<nextId>'
|
|
5489
|
+
*/
|
|
5490
|
+
readonly idInput: _angular_core.InputSignal<string | undefined>;
|
|
5491
|
+
/**
|
|
5492
|
+
* Unique identifier for the Stepper component.
|
|
5493
|
+
* If `idInput` is not provided, a default ID will be generated.
|
|
5494
|
+
* @return string
|
|
5495
|
+
*/
|
|
5496
|
+
readonly id: _angular_core.Signal<string>;
|
|
5497
|
+
/**
|
|
5498
|
+
* Layout orientation
|
|
5499
|
+
* - `'horizontal'`: Step indicators and content are placed horizontally (default).
|
|
5500
|
+
* - `'vertical'`: Step indicators and content are stacked vertically.
|
|
5501
|
+
*
|
|
5502
|
+
* Choose `'vertical'` layout for mobile or narrow designs.
|
|
5503
|
+
* @return 'horizontal' | 'vertical'
|
|
5504
|
+
* @default 'horizontal'
|
|
5505
|
+
*/
|
|
5506
|
+
readonly layout: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
5507
|
+
/**
|
|
5508
|
+
* Enforces linear progression (cannot skip steps).
|
|
5509
|
+
* - `true`: Users must complete steps sequentially.
|
|
5510
|
+
* - `false`: Users can jump freely between steps.
|
|
5511
|
+
* @return boolean
|
|
5512
|
+
* @default true
|
|
5513
|
+
*/
|
|
5514
|
+
readonly linear: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5515
|
+
/**
|
|
5516
|
+
* Layout of the step indicator (icon and label)
|
|
5517
|
+
* - `'vertical'` – Places the label below the indicator icon.
|
|
5518
|
+
* - `'horizontal'` – Places the label beside the indicator icon (default).
|
|
5519
|
+
* This prop has no effect when `layout="vertical"` is used.
|
|
5520
|
+
* @return 'vertical' | 'horizontal'
|
|
5521
|
+
* @default 'horizontal'
|
|
5522
|
+
*/
|
|
5523
|
+
readonly stepButtonLayout: _angular_core.InputSignal<"horizontal" | "vertical">;
|
|
5524
|
+
/**
|
|
5525
|
+
* Enforces validation of steps.
|
|
5526
|
+
* Each step must be valid before advancing to the next.
|
|
5527
|
+
* @return boolean
|
|
5528
|
+
* @default false
|
|
5529
|
+
*/
|
|
5530
|
+
readonly validation: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
5531
|
+
/**
|
|
5532
|
+
* Event fired when the user completes the last step of the Form Wizard.
|
|
5533
|
+
* Use this to trigger a submit action or redirect after the final step.
|
|
5534
|
+
* @return boolean
|
|
5535
|
+
*/
|
|
5536
|
+
readonly finished: _angular_core.OutputEmitterRef<boolean>;
|
|
5537
|
+
/**
|
|
5538
|
+
* Event fired when the user triggers the reset() action.
|
|
5539
|
+
* Use this to reset or clear related form data.
|
|
5540
|
+
* @return void
|
|
5541
|
+
*/
|
|
5542
|
+
readonly onReset: _angular_core.OutputEmitterRef<void>;
|
|
5543
|
+
/**
|
|
5544
|
+
* Indicates if the Stepper is currently resetting.
|
|
5545
|
+
* This is set to `true` when the reset() method is called.
|
|
5546
|
+
* @return boolean
|
|
5547
|
+
*/
|
|
5548
|
+
readonly resetting: _angular_core.WritableSignal<boolean>;
|
|
5549
|
+
/**
|
|
5550
|
+
* Event fired when the active step changes in the Angular Stepper component.
|
|
5551
|
+
* @return number
|
|
5552
|
+
*/
|
|
5553
|
+
readonly activeStepIndexChange: _angular_core.OutputEmitterRef<number>;
|
|
5554
|
+
/**
|
|
5555
|
+
* Event fired after a validation check completes for a specific step in the Form Wizard.
|
|
5556
|
+
* Receives an object with the step index and the validation result (`true` or `false`).
|
|
5557
|
+
* Useful for custom validation handling across multistep forms.
|
|
5558
|
+
* todo - implement validation logic
|
|
5559
|
+
*/
|
|
5560
|
+
protected readonly stepsContent: _angular_core.Signal<readonly StepperStepComponent[]>;
|
|
5561
|
+
protected readonly steps: _angular_core.Signal<StepperStepData[]>;
|
|
5562
|
+
/**
|
|
5563
|
+
* Returns the number of steps in the Stepper.
|
|
5564
|
+
* This is useful for determining how many steps are available.
|
|
5565
|
+
* @return number
|
|
5566
|
+
*/
|
|
5567
|
+
readonly stepsCount: _angular_core.Signal<number>;
|
|
5568
|
+
/**
|
|
5569
|
+
* Indicates if the Stepper is currently finishing.
|
|
5570
|
+
* This is set to `true` when the finish() method is called and all steps are valid.
|
|
5571
|
+
* @return boolean
|
|
5572
|
+
*/
|
|
5573
|
+
readonly finishing: _angular_core.WritableSignal<boolean>;
|
|
5574
|
+
private readonly stepButtons;
|
|
5575
|
+
protected readonly hostClasses: _angular_core.Signal<{
|
|
5576
|
+
stepper: boolean;
|
|
5577
|
+
'stepper-vertical': boolean;
|
|
5578
|
+
}>;
|
|
5579
|
+
/**
|
|
5580
|
+
* Finish action. Attempts to finish the Stepper.
|
|
5581
|
+
*/
|
|
5582
|
+
finish(): void;
|
|
5583
|
+
/**
|
|
5584
|
+
* Next action. Moves to the next step in the Stepper.
|
|
5585
|
+
* If already on the last step, it will attempt to finish().
|
|
5586
|
+
*/
|
|
5587
|
+
next(): void;
|
|
5588
|
+
/**
|
|
5589
|
+
* Previous action. Moves to the previous step in the Stepper.
|
|
5590
|
+
* If already on the first step, it will do nothing.
|
|
5591
|
+
*/
|
|
5592
|
+
prev(): void;
|
|
5593
|
+
/**
|
|
5594
|
+
* Reset action. Resets the Stepper to its initial state.
|
|
5595
|
+
* This will reset the active step index and emit the onReset event.
|
|
5596
|
+
*/
|
|
5597
|
+
reset(): void;
|
|
5598
|
+
protected handleStepClick($event: MouseEvent, idx: number): void;
|
|
5599
|
+
protected handleKeyDown($event: KeyboardEvent): void;
|
|
5600
|
+
protected isStepDisabled(index: number): boolean;
|
|
5601
|
+
protected isStepOutOfScope(index: number): boolean;
|
|
5602
|
+
protected isStepValid(index: number): boolean;
|
|
5603
|
+
protected findNextStepIndex(startIndex: number): number;
|
|
5604
|
+
protected previousStepsValid(index: number): boolean;
|
|
5605
|
+
protected readonly allStepsValid: _angular_core.Signal<boolean>;
|
|
5606
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StepperComponent, never>;
|
|
5607
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<StepperComponent, "c-stepper", ["cStepper"], { "activeStepIndexInput": { "alias": "activeStepIndex"; "required": false; "isSignal": true; }; "defaultActiveStepIndex": { "alias": "defaultActiveStepIndex"; "required": false; "isSignal": true; }; "idInput": { "alias": "id"; "required": false; "isSignal": true; }; "layout": { "alias": "layout"; "required": false; "isSignal": true; }; "linear": { "alias": "linear"; "required": false; "isSignal": true; }; "stepButtonLayout": { "alias": "stepButtonLayout"; "required": false; "isSignal": true; }; "validation": { "alias": "validation"; "required": false; "isSignal": true; }; }, { "finished": "finished"; "onReset": "onReset"; "activeStepIndexChange": "activeStepIndexChange"; }, ["stepsContent"], ["*"], true, never>;
|
|
5608
|
+
}
|
|
5609
|
+
|
|
5610
|
+
declare class StepButtonDirective implements FocusableOption {
|
|
5611
|
+
readonly hostElement: ElementRef<HTMLButtonElement>;
|
|
5612
|
+
focus(origin?: FocusOrigin): void;
|
|
5613
|
+
get disabled(): boolean;
|
|
5614
|
+
getLabel(): string;
|
|
5615
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StepButtonDirective, never>;
|
|
5616
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<StepButtonDirective, "button[cStepButton]", ["cStepButton"], {}, {}, never, never, true, never>;
|
|
5617
|
+
}
|
|
5618
|
+
|
|
5619
|
+
declare class StepperModule {
|
|
5620
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<StepperModule, never>;
|
|
5621
|
+
static ɵmod: _angular_core.ɵɵNgModuleDeclaration<StepperModule, never, [typeof StepperComponent, typeof StepperStepComponent, typeof StepButtonDirective], [typeof StepperComponent, typeof StepperStepComponent, typeof StepButtonDirective]>;
|
|
5622
|
+
static ɵinj: _angular_core.ɵɵInjectorDeclaration<StepperModule>;
|
|
5623
|
+
}
|
|
5624
|
+
|
|
5357
5625
|
declare class TableColorDirective {
|
|
5358
5626
|
/**
|
|
5359
5627
|
* Use contextual color for tables, table rows or individual cells.
|
|
@@ -6460,5 +6728,5 @@ declare class WidgetModule {
|
|
|
6460
6728
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<WidgetModule>;
|
|
6461
6729
|
}
|
|
6462
6730
|
|
|
6463
|
-
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, 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 };
|
|
6464
|
-
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, TToasterPlacement, TextColors, ThumbSize, Triggers };
|
|
6731
|
+
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 };
|
|
6732
|
+
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 };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.1",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@angular/forms": "^20.0.3",
|
|
30
30
|
"@angular/router": "^20.0.3",
|
|
31
31
|
"@coreui/coreui-pro": "~5.14.1",
|
|
32
|
-
"@coreui/icons-angular": "~5.5.
|
|
32
|
+
"@coreui/icons-angular": "~5.5.1",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|