@coreui/angular-pro 4.5.6 → 4.5.7
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/README.md +11 -1
- package/esm2022/lib/multi-select/multi-select/multi-select.component.mjs +5 -4
- package/esm2022/lib/multi-select/multi-select-option/multi-select-option.component.mjs +65 -96
- package/esm2022/lib/multi-select/multi-select-tag/multi-select-tag.component.mjs +3 -3
- package/esm2022/lib/pagination/page-item/page-item.directive.mjs +1 -1
- package/fesm2022/coreui-angular-pro.mjs +70 -99
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/multi-select/multi-select-option/multi-select-option.component.d.ts +1 -2
- package/package.json +1 -1
|
@@ -65,7 +65,6 @@ export declare class MultiSelectOptionComponent implements AfterViewInit, Focusa
|
|
|
65
65
|
private contentDiv?;
|
|
66
66
|
hasContent: boolean;
|
|
67
67
|
set active(value: (boolean | undefined));
|
|
68
|
-
get active(): (boolean | undefined);
|
|
69
68
|
readonly focusChange: EventEmitter<MultiSelectOptionComponent>;
|
|
70
69
|
private get role();
|
|
71
70
|
get hostClasses(): {
|
|
@@ -74,7 +73,7 @@ export declare class MultiSelectOptionComponent implements AfterViewInit, Focusa
|
|
|
74
73
|
'form-multi-selected': boolean | undefined;
|
|
75
74
|
disabled: boolean;
|
|
76
75
|
'd-none': boolean;
|
|
77
|
-
active: boolean
|
|
76
|
+
active: boolean;
|
|
78
77
|
focused: boolean;
|
|
79
78
|
};
|
|
80
79
|
private get tabIndex();
|
package/package.json
CHANGED