@coreui/angular-pro 5.5.19 → 5.5.21
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 +1102 -1084
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/index.d.ts +75 -154
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -379,7 +379,7 @@ declare class AutocompleteDirective implements OnInit, ControlValueAccessor {
|
|
|
379
379
|
* - `'lg'`: Large size variant
|
|
380
380
|
* - `undefined`: Default/medium size
|
|
381
381
|
*/
|
|
382
|
-
readonly sizing: _angular_core.InputSignal<
|
|
382
|
+
readonly sizing: _angular_core.InputSignal<string | undefined>;
|
|
383
383
|
/**
|
|
384
384
|
* Set form input validation state to valid.
|
|
385
385
|
* @default undefined
|
|
@@ -554,7 +554,7 @@ declare class AvatarComponent {
|
|
|
554
554
|
* Size the component small, large, or extra large.
|
|
555
555
|
* @default 'md'
|
|
556
556
|
*/
|
|
557
|
-
readonly size: InputSignal<Omit<
|
|
557
|
+
readonly size: InputSignal<Omit<string, "xxl">>;
|
|
558
558
|
/**
|
|
559
559
|
* The alt attribute for the img element alternate text.
|
|
560
560
|
* @type string
|
|
@@ -618,7 +618,7 @@ declare class BadgeComponent {
|
|
|
618
618
|
/**
|
|
619
619
|
* Size the component small.
|
|
620
620
|
*/
|
|
621
|
-
readonly size: InputSignal<
|
|
621
|
+
readonly size: InputSignal<"sm" | undefined>;
|
|
622
622
|
/**
|
|
623
623
|
* Sets the text color of the component to one of CoreUI’s themed colors.
|
|
624
624
|
* via TextColorDirective
|
|
@@ -761,14 +761,14 @@ declare class ButtonDirective {
|
|
|
761
761
|
readonly disabled: InputSignalWithTransform<boolean, unknown>;
|
|
762
762
|
/**
|
|
763
763
|
* Select the shape of the component.
|
|
764
|
-
* @
|
|
764
|
+
* @return Shapes
|
|
765
765
|
*/
|
|
766
|
-
readonly shape: InputSignal<
|
|
766
|
+
readonly shape: InputSignal<string | undefined>;
|
|
767
767
|
/**
|
|
768
768
|
* Size the component small or large.
|
|
769
|
-
* @
|
|
769
|
+
* @return sm' | 'lg' | ''
|
|
770
770
|
*/
|
|
771
|
-
readonly size: InputSignal<
|
|
771
|
+
readonly size: InputSignal<string>;
|
|
772
772
|
/**
|
|
773
773
|
* The tabindex attribute specifies the tab order of an element (when the "tab" button is used for navigating).
|
|
774
774
|
*/
|
|
@@ -816,9 +816,9 @@ declare class ButtonModule {
|
|
|
816
816
|
declare class ButtonGroupComponent {
|
|
817
817
|
/**
|
|
818
818
|
* Size the component small or large.
|
|
819
|
-
* @
|
|
819
|
+
* @return { 'sm' | 'lg' }
|
|
820
820
|
*/
|
|
821
|
-
readonly size: InputSignal<
|
|
821
|
+
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
822
822
|
/**
|
|
823
823
|
* Create a set of buttons that appear vertically stacked rather than horizontally. Split button dropdowns are not supported here.
|
|
824
824
|
* @type boolean
|
|
@@ -826,10 +826,10 @@ declare class ButtonGroupComponent {
|
|
|
826
826
|
readonly vertical: InputSignalWithTransform<boolean, unknown>;
|
|
827
827
|
/**
|
|
828
828
|
* Default role attr for ButtonGroup. [docs]
|
|
829
|
-
* @
|
|
829
|
+
* @return string
|
|
830
830
|
* @default 'group'
|
|
831
831
|
*/
|
|
832
|
-
readonly role: InputSignal<string>;
|
|
832
|
+
readonly role: _angular_core.InputSignal<string>;
|
|
833
833
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
834
834
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ButtonGroupComponent, never>;
|
|
835
835
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ButtonGroupComponent, "c-button-group", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; "isSignal": true; }; "role": { "alias": "role"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
@@ -1784,7 +1784,7 @@ declare class DateRangePickerComponent implements OnInit, OnDestroy, ControlValu
|
|
|
1784
1784
|
* @return 'sm' | 'lg' | undefined
|
|
1785
1785
|
* @default undefined
|
|
1786
1786
|
*/
|
|
1787
|
-
readonly size: _angular_core.InputSignal<
|
|
1787
|
+
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
1788
1788
|
/**
|
|
1789
1789
|
* Keep track of the time with the date value.
|
|
1790
1790
|
* @return boolean
|
|
@@ -2257,7 +2257,7 @@ declare class FooterComponent {
|
|
|
2257
2257
|
readonly position: InputSignal<Positions | undefined>;
|
|
2258
2258
|
/**
|
|
2259
2259
|
* Default role for footer. [docs]
|
|
2260
|
-
* @
|
|
2260
|
+
* @return string
|
|
2261
2261
|
* @default 'contentinfo'
|
|
2262
2262
|
*/
|
|
2263
2263
|
readonly role: InputSignal<string>;
|
|
@@ -3195,7 +3195,7 @@ declare class MultiSelectComponent<TValue extends string | number> implements IM
|
|
|
3195
3195
|
* Size the component small or large.
|
|
3196
3196
|
* @return 'sm' | 'lg' | undefined
|
|
3197
3197
|
*/
|
|
3198
|
-
readonly size: _angular_core.InputSignal<
|
|
3198
|
+
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
3199
3199
|
/**
|
|
3200
3200
|
* Initial value of multi-select
|
|
3201
3201
|
* @type (TValue | TValue[])
|
|
@@ -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>;
|
|
@@ -3828,7 +3832,7 @@ declare class PaginationComponent {
|
|
|
3828
3832
|
* Size the component small or large.
|
|
3829
3833
|
* @values 'sm', 'lg'
|
|
3830
3834
|
*/
|
|
3831
|
-
readonly size: _angular_core.InputSignal<
|
|
3835
|
+
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
3832
3836
|
/**
|
|
3833
3837
|
* Default role for pagination. [docs]
|
|
3834
3838
|
* @return string
|
|
@@ -4157,7 +4161,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4157
4161
|
* @returns: 'sm' | 'lg' | 'custom' | undefined
|
|
4158
4162
|
* @default: undefined
|
|
4159
4163
|
*/
|
|
4160
|
-
readonly size: _angular_core.InputSignal<
|
|
4164
|
+
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
4161
4165
|
/**
|
|
4162
4166
|
* Enable tooltips with default values or set specific labels for each icon.
|
|
4163
4167
|
* @returns: boolean | string[] | undefined
|
|
@@ -4189,7 +4193,7 @@ declare class RatingComponent implements ControlValueAccessor {
|
|
|
4189
4193
|
readonly ratingItemLabels: _angular_core.Signal<readonly RatingItemLabelComponent[]>;
|
|
4190
4194
|
readonly ratingItemLabelsEffect: _angular_core.EffectRef;
|
|
4191
4195
|
readonly hostClasses: _angular_core.Signal<{
|
|
4192
|
-
[x: string]:
|
|
4196
|
+
[x: string]: string | boolean | undefined;
|
|
4193
4197
|
rating: boolean;
|
|
4194
4198
|
disabled: boolean;
|
|
4195
4199
|
readonly: boolean;
|
|
@@ -4807,186 +4811,103 @@ declare class SidebarModule {
|
|
|
4807
4811
|
static ɵinj: _angular_core.ɵɵInjectorDeclaration<SidebarModule>;
|
|
4808
4812
|
}
|
|
4809
4813
|
|
|
4810
|
-
|
|
4814
|
+
declare class SmartPaginationComponent {
|
|
4811
4815
|
/**
|
|
4812
|
-
* Current page number.
|
|
4816
|
+
* Current page number.
|
|
4813
4817
|
* @default 1
|
|
4814
|
-
* @
|
|
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 {
|
|
4890
|
-
/**
|
|
4891
|
-
* Current page number. [docs]
|
|
4892
|
-
* @default 1
|
|
4893
|
-
* @type number
|
|
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 {
|
|
@@ -5562,7 +5483,7 @@ declare class SpinnerComponent {
|
|
|
5562
5483
|
readonly label: _angular_core.InputSignal<string>;
|
|
5563
5484
|
/**
|
|
5564
5485
|
* Size the component small.
|
|
5565
|
-
* @
|
|
5486
|
+
* @return string
|
|
5566
5487
|
* @values 'sm'
|
|
5567
5488
|
*/
|
|
5568
5489
|
readonly size: _angular_core.InputSignal<"sm" | undefined>;
|
|
@@ -6329,7 +6250,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
|
|
|
6329
6250
|
* @return 'sm' | 'lg' | undefined
|
|
6330
6251
|
* @default undefined
|
|
6331
6252
|
*/
|
|
6332
|
-
readonly size: _angular_core.InputSignal<
|
|
6253
|
+
readonly size: _angular_core.InputSignal<string | undefined>;
|
|
6333
6254
|
/**
|
|
6334
6255
|
* Initial selected time.
|
|
6335
6256
|
* @return Date | string | null | number
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.5.
|
|
3
|
+
"version": "5.5.21",
|
|
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.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.21",
|
|
33
33
|
"rxjs": "^7.8.2"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|