@coreui/angular-pro 5.7.23 → 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.
|
|
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.
|
|
34
|
+
"@coreui/icons-angular": "~5.7.24",
|
|
35
35
|
"rxjs": "^7.8.2"
|
|
36
36
|
},
|
|
37
37
|
"repository": {
|
|
@@ -3108,11 +3108,11 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
3108
3108
|
readonly elementRef: ElementRef<any>;
|
|
3109
3109
|
/**
|
|
3110
3110
|
* Option style
|
|
3111
|
-
* @returns
|
|
3111
|
+
* @returns 'checkbox' | 'text'
|
|
3112
3112
|
* @default 'checkbox'
|
|
3113
3113
|
*/
|
|
3114
|
-
readonly optionsStyleInput: _angular_core.InputSignal<
|
|
3115
|
-
readonly optionsStyle: WritableSignal<
|
|
3114
|
+
readonly optionsStyleInput: _angular_core.InputSignal<"text" | "checkbox" | undefined>;
|
|
3115
|
+
readonly optionsStyle: WritableSignal<"text" | "checkbox">;
|
|
3116
3116
|
/**
|
|
3117
3117
|
* Option label
|
|
3118
3118
|
* @returns string
|
|
@@ -3129,8 +3129,12 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
3129
3129
|
* Option visible.
|
|
3130
3130
|
* @returns boolean
|
|
3131
3131
|
* @default true
|
|
3132
|
+
* @ignore
|
|
3132
3133
|
*/
|
|
3133
3134
|
set visible(value: boolean);
|
|
3135
|
+
/**
|
|
3136
|
+
* @ignore
|
|
3137
|
+
*/
|
|
3134
3138
|
get visible(): boolean;
|
|
3135
3139
|
/**
|
|
3136
3140
|
* Option disabled.
|
|
@@ -3157,13 +3161,27 @@ declare class MultiSelectOptionComponent implements AfterViewInit, FocusableOpti
|
|
|
3157
3161
|
*/
|
|
3158
3162
|
set value(value: string | number);
|
|
3159
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
|
+
*/
|
|
3160
3171
|
set active(value: boolean);
|
|
3172
|
+
/**
|
|
3173
|
+
* @ignore
|
|
3174
|
+
*/
|
|
3161
3175
|
get active(): boolean;
|
|
3162
3176
|
/**
|
|
3163
3177
|
* Role for the option element.
|
|
3164
3178
|
* @returns string
|
|
3165
3179
|
*/
|
|
3166
3180
|
readonly role: _angular_core.InputSignal<string>;
|
|
3181
|
+
/**
|
|
3182
|
+
* Emits the option when it gains focus.
|
|
3183
|
+
* @returns MultiSelectOptionComponent
|
|
3184
|
+
*/
|
|
3167
3185
|
readonly focusChange: _angular_core.OutputEmitterRef<MultiSelectOptionComponent>;
|
|
3168
3186
|
readonly hostClasses: _angular_core.Signal<Record<string, boolean>>;
|
|
3169
3187
|
protected get tabIndex(): 0 | -1;
|
|
@@ -4084,10 +4102,27 @@ declare class OtpDirective implements FocusableOption {
|
|
|
4084
4102
|
#private;
|
|
4085
4103
|
readonly hostElement: ElementRef<any>;
|
|
4086
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
|
+
*/
|
|
4087
4111
|
readonly placeholderInput: _angular_core.InputSignal<string>;
|
|
4088
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
|
+
*/
|
|
4089
4118
|
readonly valueInput: _angular_core.InputSignal<string | number>;
|
|
4090
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
|
+
*/
|
|
4091
4126
|
readonly disabledInput: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
4092
4127
|
set disabled(disabled: boolean);
|
|
4093
4128
|
get disabled(): boolean;
|
|
@@ -6245,7 +6280,8 @@ declare class StepperStepComponent {
|
|
|
6245
6280
|
* If true, the step can be modified by the user.
|
|
6246
6281
|
* @returns boolean
|
|
6247
6282
|
* @default true
|
|
6248
|
-
*
|
|
6283
|
+
* @ignore
|
|
6284
|
+
* @todo implement editable functionality
|
|
6249
6285
|
*/
|
|
6250
6286
|
readonly editable: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6251
6287
|
/**
|
|
@@ -6253,7 +6289,8 @@ declare class StepperStepComponent {
|
|
|
6253
6289
|
* If true, the step does not need to be completed for the overall process to succeed.
|
|
6254
6290
|
* @returns boolean
|
|
6255
6291
|
* @default false
|
|
6256
|
-
*
|
|
6292
|
+
* @ignore
|
|
6293
|
+
* @todo implement optional functionality
|
|
6257
6294
|
*/
|
|
6258
6295
|
readonly optional: _angular_core.InputSignalWithTransform<boolean, unknown>;
|
|
6259
6296
|
/**
|