@coreui/angular-pro 5.5.19 → 5.5.20

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
@@ -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<"sm" | "lg" | undefined>;
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<Sizes, 'xxl'>>;
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<'sm' | undefined>;
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
- * @type InputSignal<Shapes>
764
+ * @return Shapes
765
765
  */
766
- readonly shape: InputSignal<Shapes | undefined>;
766
+ readonly shape: InputSignal<string | undefined>;
767
767
  /**
768
768
  * Size the component small or large.
769
- * @type InputSignal<'sm' | 'lg' | ''>
769
+ * @return sm' | 'lg' | ''
770
770
  */
771
- readonly size: InputSignal<'' | 'sm' | 'lg'>;
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
- * @type { 'sm' | 'lg' }
819
+ * @return { 'sm' | 'lg' }
820
820
  */
821
- readonly size: InputSignal<'sm' | 'lg' | undefined>;
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
- * @type InputSignal<string>
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<"sm" | "lg" | undefined>;
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
- * @type string
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<"sm" | "lg" | undefined>;
3198
+ readonly size: _angular_core.InputSignal<string | undefined>;
3199
3199
  /**
3200
3200
  * Initial value of multi-select
3201
3201
  * @type (TValue | TValue[])
@@ -3828,7 +3828,7 @@ declare class PaginationComponent {
3828
3828
  * Size the component small or large.
3829
3829
  * @values 'sm', 'lg'
3830
3830
  */
3831
- readonly size: _angular_core.InputSignal<"sm" | "lg" | undefined>;
3831
+ readonly size: _angular_core.InputSignal<string | undefined>;
3832
3832
  /**
3833
3833
  * Default role for pagination. [docs]
3834
3834
  * @return string
@@ -4157,7 +4157,7 @@ declare class RatingComponent implements ControlValueAccessor {
4157
4157
  * @returns: 'sm' | 'lg' | 'custom' | undefined
4158
4158
  * @default: undefined
4159
4159
  */
4160
- readonly size: _angular_core.InputSignal<"sm" | "lg" | "custom" | undefined>;
4160
+ readonly size: _angular_core.InputSignal<string | undefined>;
4161
4161
  /**
4162
4162
  * Enable tooltips with default values or set specific labels for each icon.
4163
4163
  * @returns: boolean | string[] | undefined
@@ -4189,7 +4189,7 @@ declare class RatingComponent implements ControlValueAccessor {
4189
4189
  readonly ratingItemLabels: _angular_core.Signal<readonly RatingItemLabelComponent[]>;
4190
4190
  readonly ratingItemLabelsEffect: _angular_core.EffectRef;
4191
4191
  readonly hostClasses: _angular_core.Signal<{
4192
- [x: string]: boolean | "sm" | "lg" | "custom" | undefined;
4192
+ [x: string]: string | boolean | undefined;
4193
4193
  rating: boolean;
4194
4194
  disabled: boolean;
4195
4195
  readonly: boolean;
@@ -5562,7 +5562,7 @@ declare class SpinnerComponent {
5562
5562
  readonly label: _angular_core.InputSignal<string>;
5563
5563
  /**
5564
5564
  * Size the component small.
5565
- * @type string
5565
+ * @return string
5566
5566
  * @values 'sm'
5567
5567
  */
5568
5568
  readonly size: _angular_core.InputSignal<"sm" | undefined>;
@@ -6329,7 +6329,7 @@ declare class TimePickerComponent implements OnChanges, OnInit, ControlValueAcce
6329
6329
  * @return 'sm' | 'lg' | undefined
6330
6330
  * @default undefined
6331
6331
  */
6332
- readonly size: _angular_core.InputSignal<"sm" | "lg" | undefined>;
6332
+ readonly size: _angular_core.InputSignal<string | undefined>;
6333
6333
  /**
6334
6334
  * Initial selected time.
6335
6335
  * @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.19",
3
+ "version": "5.5.20",
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.19",
32
+ "@coreui/icons-angular": "~5.5.20",
33
33
  "rxjs": "^7.8.2"
34
34
  },
35
35
  "repository": {