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.
- package/README.md +29 -13
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,24 +1,40 @@
|
|
|
1
|
-
#
|
|
1
|
+
# angular-techs-logos
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
A list with logos company and techs
|
|
4
4
|
|
|
5
|
-
## Code scaffolding
|
|
6
5
|
|
|
7
|
-
|
|
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
|
-
|
|
8
|
+
Install
|
|
9
|
+
```bash
|
|
10
|
+
npm install angular-techs-logos
|
|
11
|
+
```
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
Usage basic
|
|
14
|
+
```ts
|
|
15
|
+
import VueTechsLogs from 'angular-techs-logos';
|
|
16
|
+
```
|
|
13
17
|
|
|
14
|
-
|
|
18
|
+
```html
|
|
19
|
+
<!-- list all logos -->
|
|
20
|
+
<angular-techs-logos />
|
|
15
21
|
|
|
16
|
-
|
|
22
|
+
<!-- single icon -->
|
|
23
|
+
<angular-techs-logos name="javascript" />
|
|
17
24
|
|
|
18
|
-
|
|
25
|
+
<!-- list limited logos -->
|
|
26
|
+
<angular-techs-logos [list]="['angular','javascript', 'react', 'angular']" />
|
|
19
27
|
|
|
20
|
-
|
|
28
|
+
<!-- list all logos with hiddenLogos -->
|
|
29
|
+
<angular-techs-logos [hiddenLogos]="['angular','javascript', 'react', 'angular', 'android']" />
|
|
21
30
|
|
|
22
|
-
|
|
31
|
+
<!-- Hidden label -->
|
|
32
|
+
<angular-techs-logos name="javascript" [hiddenLabel]="true" />
|
|
33
|
+
<angular-techs-logos [hiddenLabel]="true" />
|
|
23
34
|
|
|
24
|
-
|
|
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
|
+
```
|