@morozeckiy/dd-lib 0.1.30 → 0.1.31
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/assets/images/svg/close.svg +1 -1
- package/assets/scss/mixins.scss +119 -119
- package/assets/scss/reset.scss +4 -0
- package/assets/styles.scss +1 -1
- package/esm2022/lib/components/footer/footer.component.mjs +3 -3
- package/esm2022/lib/lib-accordion/lib-accordion.component.mjs +3 -3
- package/esm2022/lib/lib-file-loader/lib-file-loader.component.mjs +4 -3
- package/esm2022/lib/lib-filter-button/lib-filter-button.component.mjs +4 -3
- package/esm2022/lib/lib-svg-icon/lib-svg-icon.component.mjs +13 -10
- package/esm2022/lib/svg-icons/svg-icon.model.mjs +2 -2
- package/fesm2022/morozeckiy-dd-lib.mjs +21 -18
- package/fesm2022/morozeckiy-dd-lib.mjs.map +1 -1
- package/lib/lib-svg-icon/lib-svg-icon.component.d.ts +4 -3
- package/{morozeckiy-dd-lib-0.1.30.tgz → morozeckiy-dd-lib-0.1.31.tgz} +0 -0
- package/package.json +1 -1
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { ElementRef, Renderer2 } from '@angular/core';
|
|
1
|
+
import { ElementRef, OnInit, Renderer2 } from '@angular/core';
|
|
2
2
|
import { SvgIconsService } from "../core";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class LibSvgIconComponent {
|
|
4
|
+
export declare class LibSvgIconComponent implements OnInit {
|
|
5
5
|
private el;
|
|
6
6
|
private rdr;
|
|
7
7
|
private svgIconRegistry;
|
|
@@ -9,9 +9,10 @@ export declare class LibSvgIconComponent {
|
|
|
9
9
|
width: string | undefined;
|
|
10
10
|
height: string | undefined;
|
|
11
11
|
color: string | undefined;
|
|
12
|
-
|
|
12
|
+
icon: string | null | undefined;
|
|
13
13
|
private svgIcon;
|
|
14
14
|
constructor(el: ElementRef, rdr: Renderer2, svgIconRegistry: SvgIconsService, document: any);
|
|
15
|
+
ngOnInit(): void;
|
|
15
16
|
private svgElementFromString;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<LibSvgIconComponent, [null, null, null, { optional: true; }]>;
|
|
17
18
|
static ɵcmp: i0.ɵɵComponentDeclaration<LibSvgIconComponent, "dd-lib-svg-icon", never, { "width": { "alias": "width"; "required": false; }; "height": { "alias": "height"; "required": false; }; "color": { "alias": "color"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
Binary file
|