@coreui/angular-pro 5.2.22 → 5.2.23
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/esm2022/lib/multi-select/multi-select/multi-select.component.mjs +5 -3
- package/esm2022/lib/shared/html-attr.directive.mjs +28 -27
- package/fesm2022/coreui-angular-pro.mjs +30 -27
- package/fesm2022/coreui-angular-pro.mjs.map +1 -1
- package/lib/multi-select/multi-select/multi-select.component.d.ts +1 -1
- package/lib/shared/html-attr.directive.d.ts +5 -10
- package/package.json +2 -2
|
@@ -300,7 +300,7 @@ export declare class MultiSelectComponent<TValue extends string | number> implem
|
|
|
300
300
|
ngOnDestroy(): void;
|
|
301
301
|
ngOnChanges(changes: SimpleChanges): void;
|
|
302
302
|
makeOptions(options: IOption[]): void;
|
|
303
|
-
userOptions: import("@angular/core").Signal<IOption[]>;
|
|
303
|
+
readonly userOptions: import("@angular/core").Signal<IOption[]>;
|
|
304
304
|
addUserOption(): void;
|
|
305
305
|
removeAllUserOptions(): void;
|
|
306
306
|
ngAfterViewInit(): void;
|
|
@@ -1,16 +1,11 @@
|
|
|
1
|
-
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
1
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class HtmlAttributesDirective
|
|
4
|
-
private
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
[key: string]: any;
|
|
8
|
-
};
|
|
9
|
-
constructor(renderer: Renderer2, el: ElementRef);
|
|
10
|
-
ngOnInit(): void;
|
|
2
|
+
export declare class HtmlAttributesDirective {
|
|
3
|
+
#private;
|
|
4
|
+
readonly cHtmlAttr: import("@angular/core").InputSignal<Record<string, any> | undefined>;
|
|
5
|
+
readonly attrEffect: import("@angular/core").EffectRef;
|
|
11
6
|
private setStyle;
|
|
12
7
|
private addClass;
|
|
13
8
|
private setAttrib;
|
|
14
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<HtmlAttributesDirective, never>;
|
|
15
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<HtmlAttributesDirective, "[cHtmlAttr]", ["cHtmlAttr"], { "cHtmlAttr": { "alias": "cHtmlAttr"; "required": false; }; }, {}, never, never, true, never>;
|
|
10
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<HtmlAttributesDirective, "[cHtmlAttr]", ["cHtmlAttr"], { "cHtmlAttr": { "alias": "cHtmlAttr"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
16
11
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@coreui/angular-pro",
|
|
3
|
-
"version": "5.2.
|
|
3
|
+
"version": "5.2.23",
|
|
4
4
|
"description": "CoreUI Pro Components Library for Angular",
|
|
5
5
|
"copyright": "Copyright 2024 creativeLabs Łukasz Holeczek",
|
|
6
6
|
"homepage": "https://coreui.io/angular",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"@angular/forms": "^18.2.0",
|
|
30
30
|
"@angular/router": "^18.2.0",
|
|
31
31
|
"@coreui/coreui-pro": "^5.6.0",
|
|
32
|
-
"@coreui/icons-angular": "~5.2.
|
|
32
|
+
"@coreui/icons-angular": "~5.2.23",
|
|
33
33
|
"rxjs": "^7.8.1"
|
|
34
34
|
},
|
|
35
35
|
"repository": {
|