angular-techs-logos 0.0.19 → 0.0.20

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 (2) hide show
  1. package/README.md +29 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,24 +1,40 @@
1
- # AngularTechsLogos
1
+ # angular-techs-logos
2
2
 
3
- This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 18.0.0.
3
+ A list with logos company and techs
4
4
 
5
- ## Code scaffolding
6
5
 
7
- Run `ng generate component component-name --project angular-techs-logos` to generate a new component. You can also use `ng generate directive|pipe|service|class|guard|interface|enum|module --project angular-techs-logos`.
8
- > Note: Don't forget to add `--project angular-techs-logos` or else it will be added to the default project in your `angular.json` file.
6
+ <img alt="A list with logos company and techs screenshot" width="100%" src="https://raw.githubusercontent.com/criar-art/angular-techs-logos/master/public/screen-angular-techs-logos.png" />
9
7
 
10
- ## Build
8
+ Install
9
+ ```bash
10
+ npm install angular-techs-logos
11
+ ```
11
12
 
12
- Run `ng build angular-techs-logos` to build the project. The build artifacts will be stored in the `dist/` directory.
13
+ Usage basic
14
+ ```ts
15
+ import VueTechsLogs from 'angular-techs-logos';
16
+ ```
13
17
 
14
- ## Publishing
18
+ ```html
19
+ <!-- list all logos -->
20
+ <angular-techs-logos />
15
21
 
16
- After building your library with `ng build angular-techs-logos`, go to the dist folder `cd dist/angular-techs-logos` and run `npm publish`.
22
+ <!-- single icon -->
23
+ <angular-techs-logos name="javascript" />
17
24
 
18
- ## Running unit tests
25
+ <!-- list limited logos -->
26
+ <angular-techs-logos [list]="['angular','javascript', 'react', 'angular']" />
19
27
 
20
- Run `ng test angular-techs-logos` to execute the unit tests via [Karma](https://karma-runner.github.io).
28
+ <!-- list all logos with hiddenLogos -->
29
+ <angular-techs-logos [hiddenLogos]="['angular','javascript', 'react', 'angular', 'android']" />
21
30
 
22
- ## Further help
31
+ <!-- Hidden label -->
32
+ <angular-techs-logos name="javascript" [hiddenLabel]="true" />
33
+ <angular-techs-logos [hiddenLabel]="true" />
23
34
 
24
- To get more help on the Angular CLI use `ng help` or go check out the [Angular CLI Overview and Command Reference](https://angular.dev/tools/cli) page.
35
+ <!-- single change label name -->
36
+ <angular-techs-logos name="javascript" label="New JavaScript" />
37
+
38
+ <!-- Modification of size component -->
39
+ <angular-techs-logos name="javascript" size="220px" />
40
+ ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "angular-techs-logos",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "public": true,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^18.0.0",