@updevs/icons 1.0.0 → 1.0.1
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/CHANGELOG.md +8 -0
- package/README.md +15 -18
- package/ng-package.json +7 -0
- package/package.json +18 -31
- package/{fesm2015/updevs-icons.mjs → src/assets/icons/icons.ts} +3 -100
- package/src/assets/icons/v2.0.13.txt +1 -0
- package/src/index.ts +1 -0
- package/src/lib/icon/icon.component.html +1 -0
- package/src/lib/icon/icon.component.scss +13 -0
- package/src/lib/icon/icon.component.spec.ts +23 -0
- package/src/lib/icon/icon.component.ts +49 -0
- package/src/lib/icon/icon.model.ts +11 -0
- package/src/lib/icon/size.enum.ts +4 -0
- package/src/lib/icon/type.enum.ts +4 -0
- package/src/lib/upd-icons.module.ts +17 -0
- package/{public-api.d.ts → src/public-api.ts} +3 -0
- package/tsconfig.lib.json +14 -0
- package/tsconfig.lib.prod.json +10 -0
- package/tsconfig.spec.json +14 -0
- package/assets/icons/icons.d.ts +0 -4
- package/esm2020/assets/icons/icons.mjs +0 -4241
- package/esm2020/lib/icon/icon.component.mjs +0 -51
- package/esm2020/lib/icon/icon.model.mjs +0 -6
- package/esm2020/lib/icon/size.enum.mjs +0 -6
- package/esm2020/lib/icon/type.enum.mjs +0 -6
- package/esm2020/lib/upd-icons.module.mjs +0 -24
- package/esm2020/public-api.mjs +0 -8
- package/esm2020/updevs-icons.mjs +0 -5
- package/fesm2015/updevs-icons.mjs.map +0 -1
- package/fesm2020/updevs-icons.mjs +0 -4338
- package/fesm2020/updevs-icons.mjs.map +0 -1
- package/index.d.ts +0 -5
- package/lib/icon/icon.component.d.ts +0 -16
- package/lib/icon/icon.model.d.ts +0 -6
- package/lib/icon/size.enum.d.ts +0 -4
- package/lib/icon/type.enum.d.ts +0 -4
- package/lib/upd-icons.module.d.ts +0 -8
package/index.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { DomSanitizer, SafeHtml } from '@angular/platform-browser';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class IconComponent implements OnChanges {
|
|
5
|
-
private sanitizer;
|
|
6
|
-
name: string;
|
|
7
|
-
size: 'small' | 'regular';
|
|
8
|
-
type: 'solid' | 'outline';
|
|
9
|
-
color: string;
|
|
10
|
-
icon?: SafeHtml;
|
|
11
|
-
constructor(sanitizer: DomSanitizer);
|
|
12
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
13
|
-
private generateIcon;
|
|
14
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<IconComponent, never>;
|
|
15
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<IconComponent, "upd-icon", never, { "name": "name"; "size": "size"; "type": "type"; "color": "color"; }, {}, never, never, false, never>;
|
|
16
|
-
}
|
package/lib/icon/icon.model.d.ts
DELETED
package/lib/icon/size.enum.d.ts
DELETED
package/lib/icon/type.enum.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "./icon/icon.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
export declare class UpdIconsModule {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UpdIconsModule, never>;
|
|
6
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<UpdIconsModule, [typeof i1.IconComponent], [typeof i2.CommonModule], [typeof i1.IconComponent]>;
|
|
7
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<UpdIconsModule>;
|
|
8
|
-
}
|