@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.
Files changed (37) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/README.md +15 -18
  3. package/ng-package.json +7 -0
  4. package/package.json +18 -31
  5. package/{fesm2015/updevs-icons.mjs → src/assets/icons/icons.ts} +3 -100
  6. package/src/assets/icons/v2.0.13.txt +1 -0
  7. package/src/index.ts +1 -0
  8. package/src/lib/icon/icon.component.html +1 -0
  9. package/src/lib/icon/icon.component.scss +13 -0
  10. package/src/lib/icon/icon.component.spec.ts +23 -0
  11. package/src/lib/icon/icon.component.ts +49 -0
  12. package/src/lib/icon/icon.model.ts +11 -0
  13. package/src/lib/icon/size.enum.ts +4 -0
  14. package/src/lib/icon/type.enum.ts +4 -0
  15. package/src/lib/upd-icons.module.ts +17 -0
  16. package/{public-api.d.ts → src/public-api.ts} +3 -0
  17. package/tsconfig.lib.json +14 -0
  18. package/tsconfig.lib.prod.json +10 -0
  19. package/tsconfig.spec.json +14 -0
  20. package/assets/icons/icons.d.ts +0 -4
  21. package/esm2020/assets/icons/icons.mjs +0 -4241
  22. package/esm2020/lib/icon/icon.component.mjs +0 -51
  23. package/esm2020/lib/icon/icon.model.mjs +0 -6
  24. package/esm2020/lib/icon/size.enum.mjs +0 -6
  25. package/esm2020/lib/icon/type.enum.mjs +0 -6
  26. package/esm2020/lib/upd-icons.module.mjs +0 -24
  27. package/esm2020/public-api.mjs +0 -8
  28. package/esm2020/updevs-icons.mjs +0 -5
  29. package/fesm2015/updevs-icons.mjs.map +0 -1
  30. package/fesm2020/updevs-icons.mjs +0 -4338
  31. package/fesm2020/updevs-icons.mjs.map +0 -1
  32. package/index.d.ts +0 -5
  33. package/lib/icon/icon.component.d.ts +0 -16
  34. package/lib/icon/icon.model.d.ts +0 -6
  35. package/lib/icon/size.enum.d.ts +0 -4
  36. package/lib/icon/type.enum.d.ts +0 -4
  37. package/lib/upd-icons.module.d.ts +0 -8
package/index.d.ts DELETED
@@ -1,5 +0,0 @@
1
- /**
2
- * Generated bundle index. Do not edit.
3
- */
4
- /// <amd-module name="@updevs/icons" />
5
- export * from './public-api';
@@ -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
- }
@@ -1,6 +0,0 @@
1
- export declare class IconModel {
2
- smallSolid?: string;
3
- regularOutline?: string;
4
- regularSolid?: string;
5
- constructor(init: IconModel);
6
- }
@@ -1,4 +0,0 @@
1
- export declare enum SizeEnum {
2
- Small = "small",
3
- Regular = "regular"
4
- }
@@ -1,4 +0,0 @@
1
- export declare enum TypeEnum {
2
- Solid = "solid",
3
- Outline = "outline"
4
- }
@@ -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
- }