@softicons/angular 0.1.0 → 0.1.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/README.md +12 -2
- package/package.json +18 -1
package/README.md
CHANGED
|
@@ -1,7 +1,12 @@
|
|
|
1
1
|
# @softicons/angular
|
|
2
2
|
|
|
3
|
+
[](https://www.npmjs.com/package/@softicons/angular)
|
|
4
|
+
[](https://www.npmjs.com/package/@softicons/angular)
|
|
5
|
+
[](https://opensource.org/licenses/MIT)
|
|
6
|
+
|
|
3
7
|
Standalone, tree-shakeable Angular components for the
|
|
4
8
|
[Softicons](https://softicons.dev) icon set — 24×24, mono-line, `currentColor`.
|
|
9
|
+
Requires Angular 17+.
|
|
5
10
|
|
|
6
11
|
## Install
|
|
7
12
|
|
|
@@ -43,5 +48,10 @@ export class AppModule {}
|
|
|
43
48
|
| `strokeWidth` | `number \| string` | `1.5` |
|
|
44
49
|
| `aria-label` | `string` | — (adds `role="img"`, else `aria-hidden`) |
|
|
45
50
|
|
|
46
|
-
|
|
47
|
-
|
|
51
|
+
## Links
|
|
52
|
+
|
|
53
|
+
- 🌐 [softicons.dev](https://softicons.dev) — browse all icons
|
|
54
|
+
- 📖 [Docs](https://softicons.dev/docs)
|
|
55
|
+
- 📦 [All Softicons packages on npm](https://www.npmjs.com/org/softicons)
|
|
56
|
+
|
|
57
|
+
MIT © Softicons
|
package/package.json
CHANGED
|
@@ -1,9 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@softicons/angular",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Softicons for Angular — standalone, tree-shakeable SVG icon components.",
|
|
5
|
+
"homepage": "https://softicons.dev",
|
|
6
|
+
"author": "Softicons (https://softicons.dev)",
|
|
7
|
+
"keywords": [
|
|
8
|
+
"icons",
|
|
9
|
+
"svg",
|
|
10
|
+
"angular",
|
|
11
|
+
"angular-icons",
|
|
12
|
+
"icon-library",
|
|
13
|
+
"line-icons",
|
|
14
|
+
"soft-icons",
|
|
15
|
+
"softicons",
|
|
16
|
+
"standalone",
|
|
17
|
+
"tree-shakeable"
|
|
18
|
+
],
|
|
5
19
|
"license": "MIT",
|
|
6
20
|
"sideEffects": false,
|
|
21
|
+
"publishConfig": {
|
|
22
|
+
"directory": "dist"
|
|
23
|
+
},
|
|
7
24
|
"peerDependencies": {
|
|
8
25
|
"@angular/common": ">=17.0.0",
|
|
9
26
|
"@angular/core": ">=17.0.0"
|