@coreui/angular-pro 5.7.22 → 5.7.24

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coreui/angular-pro",
3
- "version": "5.7.22",
3
+ "version": "5.7.24",
4
4
  "description": "CoreUI Pro Components Library for Angular",
5
5
  "copyright": "Copyright 2026 creativeLabs Łukasz Holeczek",
6
6
  "license": "SEE LICENSE IN LICENSE",
@@ -31,7 +31,7 @@
31
31
  "@angular/forms": "^22.1.0",
32
32
  "@angular/router": "^22.1.0",
33
33
  "@coreui/coreui-pro": "^5.27.1",
34
- "@coreui/icons-angular": "~5.7.21",
34
+ "@coreui/icons-angular": "~5.7.24",
35
35
  "rxjs": "^7.8.2"
36
36
  },
37
37
  "repository": {
@@ -80,6 +80,7 @@ declare class HtmlAttributesDirective {
80
80
  * @returns Record<string, any>
81
81
  */
82
82
  readonly cHtmlAttr: _angular_core.InputSignal<Record<string, any> | undefined>;
83
+ constructor();
83
84
  private setStyle;
84
85
  private addClass;
85
86
  private setAttrib;
@@ -2167,6 +2168,7 @@ declare class DropdownMenuDirective implements OnInit, AfterContentInit {
2167
2168
  readonly visible: _angular_core.WritableSignal<boolean>;
2168
2169
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
2169
2170
  readonly hostStyles: _angular_core.Signal<Record<string, any>>;
2171
+ readonly dataPopper: _angular_core.Signal<"static" | null>;
2170
2172
  onKeyDown($event: KeyboardEvent): void;
2171
2173
  onKeyUp($event: KeyboardEvent): void;
2172
2174
  readonly dropdownItemsContent: _angular_core.Signal<readonly DropdownItemDirective[]>;
@@ -2186,6 +2188,7 @@ declare class DropdownService {
2186
2188
  #private;
2187
2189
  readonly dropdownState$: rxjs.Observable<any>;
2188
2190
  readonly alignment: _angular_core.WritableSignal<DropdownAlignment | undefined>;
2191
+ readonly popper: _angular_core.WritableSignal<boolean>;
2189
2192
  toggle(state: IDropdownState): void;
2190
2193
  static ɵfac: _angular_core.ɵɵFactoryDeclaration<DropdownService, never>;
2191
2194
  static ɵprov: _angular_core.ɵɵInjectableDeclaration<DropdownService>;
@@ -3105,11 +3108,11 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
3105
3108
  readonly elementRef: ElementRef<any>;
3106
3109
  /**
3107
3110
  * Option style
3108
- * @returns ('checkbox' | 'text')
3111
+ * @returns 'checkbox' | 'text'
3109
3112
  * @default 'checkbox'
3110
3113
  */
3111
- readonly optionsStyleInput: _angular_core.InputSignal<string | undefined>;
3112
- readonly optionsStyle: WritableSignal<string>;
3114
+ readonly optionsStyleInput: _angular_core.InputSignal<"text" | "checkbox" | undefined>;
3115
+ readonly optionsStyle: WritableSignal<"text" | "checkbox">;
3113
3116
  /**
3114
3117
  * Option label
3115
3118
  * @returns string
@@ -3126,8 +3129,12 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
3126
3129
  * Option visible.
3127
3130
  * @returns boolean
3128
3131
  * @default true
3132
+ * @ignore
3129
3133
  */
3130
3134
  set visible(value: boolean);
3135
+ /**
3136
+ * @ignore
3137
+ */
3131
3138
  get visible(): boolean;
3132
3139
  /**
3133
3140
  * Option disabled.
@@ -3154,13 +3161,27 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
3154
3161
  */
3155
3162
  set value(value: string | number);
3156
3163
  get value(): string | number;
3164
+ /**
3165
+ * Marks the option as the active one for keyboard navigation. Reads back as `false`
3166
+ * while the option is hidden or disabled.
3167
+ * @returns boolean
3168
+ * @default false
3169
+ * @ignore
3170
+ */
3157
3171
  set active(value: boolean);
3172
+ /**
3173
+ * @ignore
3174
+ */
3158
3175
  get active(): boolean;
3159
3176
  /**
3160
3177
  * Role for the option element.
3161
3178
  * @returns string
3162
3179
  */
3163
3180
  readonly role: _angular_core.InputSignal<string>;
3181
+ /**
3182
+ * Emits the option when it gains focus.
3183
+ * @returns MultiSelectOptionComponent
3184
+ */
3164
3185
  readonly focusChange: _angular_core.OutputEmitterRef<MultiSelectOptionComponent>;
3165
3186
  readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
3166
3187
  protected get tabIndex(): 0 | -1;
@@ -4081,10 +4102,27 @@ declare class OtpDirective implements FocusableOption {
4081
4102
  #private;
4082
4103
  readonly hostElement: ElementRef<any>;
4083
4104
  readonly focusable: _angular_core.WritableSignal<boolean>;
4105
+ /**
4106
+ * Placeholder for the slot. A string longer than one character is spread across the
4107
+ * slots, one character each; when unset the parent component's placeholder is used.
4108
+ * @returns string
4109
+ * @default ''
4110
+ */
4084
4111
  readonly placeholderInput: _angular_core.InputSignal<string>;
4085
4112
  readonly placeholder: _angular_core.Signal<string>;
4113
+ /**
4114
+ * Value of the slot, kept in sync with the input element.
4115
+ * @returns string | number
4116
+ * @default ''
4117
+ */
4086
4118
  readonly valueInput: _angular_core.InputSignal<string | number>;
4087
4119
  readonly value: _angular_core.WritableSignal<string | number>;
4120
+ /**
4121
+ * Toggle the disabled state for the slot. Disabled slots are skipped when moving focus
4122
+ * between them.
4123
+ * @returns boolean
4124
+ * @default false
4125
+ */
4088
4126
  readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
4089
4127
  set disabled(disabled: boolean);
4090
4128
  get disabled(): boolean;
@@ -6242,7 +6280,8 @@ declare class StepperStepComponent {
6242
6280
  * If true, the step can be modified by the user.
6243
6281
  * @returns boolean
6244
6282
  * @default true
6245
- * todo - implement editable functionality
6283
+ * @ignore
6284
+ * @todo implement editable functionality
6246
6285
  */
6247
6286
  readonly editable: _angular_core.InputSignalWithTransform<boolean, unknown>;
6248
6287
  /**
@@ -6250,7 +6289,8 @@ declare class StepperStepComponent {
6250
6289
  * If true, the step does not need to be completed for the overall process to succeed.
6251
6290
  * @returns boolean
6252
6291
  * @default false
6253
- * todo - implement optional functionality
6292
+ * @ignore
6293
+ * @todo implement optional functionality
6254
6294
  */
6255
6295
  readonly optional: _angular_core.InputSignalWithTransform<boolean, unknown>;
6256
6296
  /**