@coreui/angular-pro 5.5.20 → 5.5.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/coreui-angular-pro.mjs +1050 -1054
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +56 -135
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -3789,12 +3789,16 @@ declare class OffcanvasModule {
|
|
|
3789
3789
|
}
|
|
3790
3790
|
|
|
3791
3791
|
declare class PageLinkDirective {
|
|
3792
|
+
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
3793
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3794
|
+
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
3792
3795
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<PageLinkDirective, never>;
|
|
3793
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PageLinkDirective, "[cPageLink]", never, {}, {}, never, never, true, never>;
|
|
3796
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<PageLinkDirective, "[cPageLink]", never, { "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
3794
3797
|
}
|
|
3795
3798
|
|
|
3796
3799
|
declare class PageItemDirective {
|
|
3797
3800
|
#private;
|
|
3801
|
+
static ngAcceptInputType_disabled: BooleanInput$1;
|
|
3798
3802
|
/**
|
|
3799
3803
|
* Toggle the active state for the component.
|
|
3800
3804
|
* @return boolean
|
|
@@ -3804,7 +3808,7 @@ declare class PageItemDirective {
|
|
|
3804
3808
|
* Toggle the disabled state for the component.
|
|
3805
3809
|
* @return boolean
|
|
3806
3810
|
*/
|
|
3807
|
-
readonly disabled: _angular_core.
|
|
3811
|
+
readonly disabled: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
3808
3812
|
readonly ariaCurrent: _angular_core.Signal<"page" | null>;
|
|
3809
3813
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
3810
3814
|
readonly pageLinkElementRef: _angular_core.Signal<ElementRef<any> | undefined>;
|
|
@@ -4807,186 +4811,103 @@ declare class SidebarModule {
|
|
|
4807
4811
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<SidebarModule>;
|
|
4808
4812
|
}
|
|
4809
4813
|
|
|
4810
|
-
|
|
4811
|
-
/**
|
|
4812
|
-
* Current page number. [docs]
|
|
4813
|
-
* @default 1
|
|
4814
|
-
* @type number
|
|
4815
|
-
*/
|
|
4816
|
-
activePage?: number;
|
|
4817
|
-
/**
|
|
4818
|
-
* Event triggered on activePage change.
|
|
4819
|
-
* @type EventEmitter<number>
|
|
4820
|
-
*/
|
|
4821
|
-
activePageChange: EventEmitter<number>;
|
|
4822
|
-
/**
|
|
4823
|
-
* Show/hide arrows. [docs]
|
|
4824
|
-
* @default true
|
|
4825
|
-
* @type boolean
|
|
4826
|
-
*/
|
|
4827
|
-
arrows?: boolean;
|
|
4828
|
-
/**
|
|
4829
|
-
* Show double arrows buttons. [docs]
|
|
4830
|
-
* @default true
|
|
4831
|
-
* @type boolean
|
|
4832
|
-
*/
|
|
4833
|
-
doubleArrows?: boolean;
|
|
4834
|
-
/**
|
|
4835
|
-
* Show/hide dots. [docs]
|
|
4836
|
-
* @default true
|
|
4837
|
-
* @type boolean
|
|
4838
|
-
*/
|
|
4839
|
-
dots?: boolean;
|
|
4840
|
-
/**
|
|
4841
|
-
* Maximum items number. [docs]
|
|
4842
|
-
* @default 5
|
|
4843
|
-
* @type number
|
|
4844
|
-
*/
|
|
4845
|
-
limit?: number;
|
|
4846
|
-
/**
|
|
4847
|
-
* Number of pages. [docs]
|
|
4848
|
-
* @type number
|
|
4849
|
-
*/
|
|
4850
|
-
pages?: number;
|
|
4851
|
-
/**
|
|
4852
|
-
* The content of 'firstButton' button. [docs]
|
|
4853
|
-
* @default '«'
|
|
4854
|
-
*/
|
|
4855
|
-
firstButton?: string | TemplateRef<any>;
|
|
4856
|
-
/**
|
|
4857
|
-
* The content of 'lastButton' button. [docs]
|
|
4858
|
-
* @default '»'
|
|
4859
|
-
*/
|
|
4860
|
-
lastButton?: string | TemplateRef<any>;
|
|
4861
|
-
/**
|
|
4862
|
-
* The content of 'previousButton' button. [docs]
|
|
4863
|
-
* @default '‹'
|
|
4864
|
-
*/
|
|
4865
|
-
nextButton?: string | TemplateRef<any>;
|
|
4866
|
-
/**
|
|
4867
|
-
* The content of 'nextButton' button. [docs]
|
|
4868
|
-
* @default '›'
|
|
4869
|
-
*/
|
|
4870
|
-
previousButton?: string | TemplateRef<any>;
|
|
4871
|
-
/**
|
|
4872
|
-
* Size of pagination, valid values: 'sm', 'lg'. [docs]
|
|
4873
|
-
*/
|
|
4874
|
-
size?: 'sm' | 'lg';
|
|
4875
|
-
/**
|
|
4876
|
-
* Set the alignment of pagination components.
|
|
4877
|
-
* @values 'start', 'center', 'end'
|
|
4878
|
-
* @type string
|
|
4879
|
-
*/
|
|
4880
|
-
align?: 'start' | 'center' | 'end' | '';
|
|
4881
|
-
/**
|
|
4882
|
-
* Default role for pagination. [docs]
|
|
4883
|
-
* @type string
|
|
4884
|
-
* @default 'navigation'
|
|
4885
|
-
*/
|
|
4886
|
-
role?: string;
|
|
4887
|
-
}
|
|
4888
|
-
|
|
4889
|
-
declare class SmartPaginationComponent implements ISmartPagination {
|
|
4814
|
+
declare class SmartPaginationComponent {
|
|
4890
4815
|
/**
|
|
4891
|
-
* Current page number.
|
|
4816
|
+
* Current page number.
|
|
4892
4817
|
* @default 1
|
|
4893
|
-
* @
|
|
4818
|
+
* @returns number
|
|
4894
4819
|
*/
|
|
4895
|
-
|
|
4820
|
+
readonly activePageInput: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
4821
|
+
readonly activePage: _angular_core.WritableSignal<number>;
|
|
4896
4822
|
/**
|
|
4897
4823
|
* Event triggered on activePage change.
|
|
4898
|
-
* @
|
|
4824
|
+
* @return number
|
|
4899
4825
|
*/
|
|
4900
|
-
activePageChange:
|
|
4826
|
+
readonly activePageChange: _angular_core.OutputEmitterRef<number>;
|
|
4901
4827
|
/**
|
|
4902
4828
|
* Show/hide arrows
|
|
4903
4829
|
* @default true
|
|
4904
|
-
* @
|
|
4830
|
+
* @returns boolean
|
|
4905
4831
|
*/
|
|
4906
|
-
arrows: boolean
|
|
4832
|
+
readonly arrows: _angular_core.InputSignal<boolean>;
|
|
4907
4833
|
/**
|
|
4908
4834
|
* Show double arrows buttons
|
|
4909
4835
|
* @default true
|
|
4910
|
-
* @
|
|
4836
|
+
* @returns boolean
|
|
4911
4837
|
*/
|
|
4912
|
-
doubleArrows: boolean
|
|
4838
|
+
readonly doubleArrows: _angular_core.InputSignal<boolean>;
|
|
4913
4839
|
/**
|
|
4914
|
-
* Show/hide dots.
|
|
4840
|
+
* Show/hide dots.
|
|
4915
4841
|
* @default true
|
|
4842
|
+
* returns boolean
|
|
4916
4843
|
*/
|
|
4917
|
-
dots: boolean
|
|
4844
|
+
readonly dots: _angular_core.InputSignal<boolean>;
|
|
4918
4845
|
/**
|
|
4919
|
-
* Maximum items number.
|
|
4846
|
+
* Maximum items number.
|
|
4920
4847
|
* @default 5
|
|
4921
|
-
* @
|
|
4848
|
+
* @return number
|
|
4922
4849
|
*/
|
|
4923
|
-
|
|
4924
|
-
get limit(): number;
|
|
4925
|
-
private _limit;
|
|
4850
|
+
readonly limit: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
4926
4851
|
/**
|
|
4927
|
-
* Number of pages.
|
|
4928
|
-
* @
|
|
4852
|
+
* Number of pages.
|
|
4853
|
+
* @default 1
|
|
4854
|
+
* @return number
|
|
4929
4855
|
*/
|
|
4930
|
-
|
|
4931
|
-
get pages(): number;
|
|
4932
|
-
private _pages;
|
|
4856
|
+
readonly pages: _angular_core.InputSignalWithTransform<number, unknown>;
|
|
4933
4857
|
/**
|
|
4934
|
-
* The content of 'firstButton' button.
|
|
4858
|
+
* The content of 'firstButton' button.
|
|
4935
4859
|
* @default '«'
|
|
4936
|
-
* todo TemplateRef
|
|
4937
4860
|
*/
|
|
4938
|
-
firstButton
|
|
4861
|
+
readonly firstButton: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
|
|
4862
|
+
protected readonly firstBtnRef: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
4939
4863
|
/**
|
|
4940
|
-
* The content of 'lastButton' button.
|
|
4864
|
+
* The content of 'lastButton' button.
|
|
4941
4865
|
* @default '»'
|
|
4942
|
-
* todo TemplateRef
|
|
4943
4866
|
*/
|
|
4944
|
-
lastButton
|
|
4867
|
+
readonly lastButton: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
|
|
4868
|
+
protected readonly lastBtnRef: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
4945
4869
|
/**
|
|
4946
|
-
* The content of 'nextButton' button.
|
|
4870
|
+
* The content of 'nextButton' button.
|
|
4947
4871
|
* @default '&lsaquo'
|
|
4948
|
-
* todo TemplateRef
|
|
4949
4872
|
*/
|
|
4950
|
-
nextButton
|
|
4873
|
+
readonly nextButton: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
|
|
4874
|
+
protected readonly nextBtnRef: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
4951
4875
|
/**
|
|
4952
|
-
* The content of 'previousButton' button.
|
|
4876
|
+
* The content of 'previousButton' button.
|
|
4953
4877
|
* @default '&rsaquo'
|
|
4954
|
-
* todo TemplateRef
|
|
4955
4878
|
*/
|
|
4956
|
-
previousButton
|
|
4879
|
+
readonly previousButton: _angular_core.InputSignal<string | TemplateRef<any> | undefined>;
|
|
4880
|
+
protected readonly prevBtnRef: _angular_core.Signal<TemplateRef<any> | undefined>;
|
|
4957
4881
|
/**
|
|
4958
4882
|
* Set the alignment of pagination components.
|
|
4959
4883
|
* @values 'start', 'center', 'end'
|
|
4960
4884
|
*/
|
|
4961
|
-
align
|
|
4885
|
+
readonly align: _angular_core.InputSignal<"" | "start" | "end" | "center" | undefined>;
|
|
4962
4886
|
/**
|
|
4963
4887
|
* Size the component small or large.
|
|
4964
4888
|
* @values 'sm', 'lg'
|
|
4965
4889
|
*/
|
|
4966
|
-
size
|
|
4890
|
+
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
4967
4891
|
/**
|
|
4968
|
-
* Default role for pagination.
|
|
4969
|
-
* @
|
|
4892
|
+
* Default role for pagination.
|
|
4893
|
+
* @return string
|
|
4970
4894
|
* @default 'navigation'
|
|
4971
4895
|
*/
|
|
4972
|
-
role: string
|
|
4973
|
-
|
|
4974
|
-
|
|
4975
|
-
|
|
4976
|
-
|
|
4977
|
-
|
|
4978
|
-
|
|
4979
|
-
|
|
4980
|
-
|
|
4981
|
-
|
|
4982
|
-
|
|
4983
|
-
|
|
4896
|
+
readonly role: _angular_core.InputSignal<string>;
|
|
4897
|
+
readonly paginationClass: _angular_core.Signal<Record<string, boolean>>;
|
|
4898
|
+
readonly maxPrevItems: _angular_core.Signal<number>;
|
|
4899
|
+
readonly maxNextItems: _angular_core.Signal<number>;
|
|
4900
|
+
readonly range: _angular_core.Signal<number>;
|
|
4901
|
+
readonly lastItem: _angular_core.Signal<number>;
|
|
4902
|
+
readonly computedLimit: _angular_core.Signal<number>;
|
|
4903
|
+
readonly itemsLimit: _angular_core.Signal<number>;
|
|
4904
|
+
readonly showDots: _angular_core.Signal<boolean>;
|
|
4905
|
+
readonly beforeDots: _angular_core.Signal<boolean>;
|
|
4906
|
+
readonly afterDots: _angular_core.Signal<boolean>;
|
|
4907
|
+
readonly items: _angular_core.Signal<number[]>;
|
|
4984
4908
|
setPage(page: number): void;
|
|
4985
4909
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<SmartPaginationComponent, never>;
|
|
4986
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SmartPaginationComponent, "c-smart-pagination", ["cSmartPagination"], { "
|
|
4987
|
-
static ngAcceptInputType_activePage: unknown;
|
|
4988
|
-
static ngAcceptInputType_limit: unknown;
|
|
4989
|
-
static ngAcceptInputType_pages: unknown;
|
|
4910
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<SmartPaginationComponent, "c-smart-pagination", ["cSmartPagination"], { "activePageInput": { "alias": "activePage"; "required": false; "isSignal": true; }; "arrows": { "alias": "arrows"; "required": false; "isSignal": true; }; "doubleArrows": { "alias": "doubleArrows"; "required": false; "isSignal": true; }; "dots": { "alias": "dots"; "required": false; "isSignal": true; }; "limit": { "alias": "limit"; "required": false; "isSignal": true; }; "pages": { "alias": "pages"; "required": false; "isSignal": true; }; "firstButton": { "alias": "firstButton"; "required": false; "isSignal": true; }; "lastButton": { "alias": "lastButton"; "required": false; "isSignal": true; }; "nextButton": { "alias": "nextButton"; "required": false; "isSignal": true; }; "previousButton": { "alias": "previousButton"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, { "activePageChange": "activePageChange"; }, never, never, true, never>;
|
|
4990
4911
|
}
|
|
4991
4912
|
|
|
4992
4913
|
declare class SmartPaginationModule {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.22",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2025 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"sideEffects": false,
|
|
24
24
|
"peerDependencies": {
|
|
25
25
|
"@angular/animations": "^20.3.0",
|
|
26
|
-
"@angular/cdk": "^20.2.
|
|
26
|
+
"@angular/cdk": "^20.2.12",
|
|
27
27
|
"@angular/common": "^20.3.0",
|
|
28
28
|
"@angular/core": "^20.3.0",
|
|
29
29
|
"@angular/forms": "^20.3.0",
|
|
30
30
|
"@angular/router": "^20.3.0",
|
|
31
31
|
"@coreui/coreui-pro": "^5.21.1",
|
|
32
|
-
"@coreui/icons-angular": "~5.5.
|
|
32
|
+
"@coreui/icons-angular": "~5.5.22",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|