@ng-icons/lets-icons 27.5.0 → 27.5.2
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 +2 -1
- package/duotone/index.d.ts +223 -0
- package/duotone-line/index.d.ts +176 -0
- package/esm2022/duotone/index.mjs +224 -0
- package/esm2022/duotone/ng-icons-lets-icons-duotone.mjs +5 -0
- package/esm2022/duotone-line/index.mjs +177 -0
- package/esm2022/duotone-line/ng-icons-lets-icons-duotone-line.mjs +5 -0
- package/esm2022/fill/index.mjs +232 -0
- package/esm2022/fill/ng-icons-lets-icons-fill.mjs +5 -0
- package/esm2022/light/index.mjs +435 -0
- package/esm2022/light/ng-icons-lets-icons-light.mjs +5 -0
- package/esm2022/regular/index.mjs +481 -0
- package/esm2022/regular/ng-icons-lets-icons-regular.mjs +5 -0
- package/fesm2022/ng-icons-lets-icons-duotone-line.mjs +183 -0
- package/fesm2022/ng-icons-lets-icons-duotone-line.mjs.map +1 -0
- package/fesm2022/ng-icons-lets-icons-duotone.mjs +230 -0
- package/fesm2022/ng-icons-lets-icons-duotone.mjs.map +1 -0
- package/fesm2022/ng-icons-lets-icons-fill.mjs +238 -0
- package/fesm2022/ng-icons-lets-icons-fill.mjs.map +1 -0
- package/fesm2022/ng-icons-lets-icons-light.mjs +441 -0
- package/fesm2022/ng-icons-lets-icons-light.mjs.map +1 -0
- package/fesm2022/ng-icons-lets-icons-regular.mjs +487 -0
- package/fesm2022/ng-icons-lets-icons-regular.mjs.map +1 -0
- package/fill/index.d.ts +231 -0
- package/light/index.d.ts +434 -0
- package/package.json +31 -1
- package/regular/index.d.ts +480 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ng-icons/lets-icons",
|
|
3
|
-
"version": "27.5.
|
|
3
|
+
"version": "27.5.2",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/ng-icons/ng-icons"
|
|
6
6
|
},
|
|
@@ -20,6 +20,36 @@
|
|
|
20
20
|
"esm2022": "./esm2022/ng-icons-lets-icons.mjs",
|
|
21
21
|
"esm": "./esm2022/ng-icons-lets-icons.mjs",
|
|
22
22
|
"default": "./fesm2022/ng-icons-lets-icons.mjs"
|
|
23
|
+
},
|
|
24
|
+
"./duotone": {
|
|
25
|
+
"types": "./duotone/index.d.ts",
|
|
26
|
+
"esm2022": "./esm2022/duotone/ng-icons-lets-icons-duotone.mjs",
|
|
27
|
+
"esm": "./esm2022/duotone/ng-icons-lets-icons-duotone.mjs",
|
|
28
|
+
"default": "./fesm2022/ng-icons-lets-icons-duotone.mjs"
|
|
29
|
+
},
|
|
30
|
+
"./duotone-line": {
|
|
31
|
+
"types": "./duotone-line/index.d.ts",
|
|
32
|
+
"esm2022": "./esm2022/duotone-line/ng-icons-lets-icons-duotone-line.mjs",
|
|
33
|
+
"esm": "./esm2022/duotone-line/ng-icons-lets-icons-duotone-line.mjs",
|
|
34
|
+
"default": "./fesm2022/ng-icons-lets-icons-duotone-line.mjs"
|
|
35
|
+
},
|
|
36
|
+
"./fill": {
|
|
37
|
+
"types": "./fill/index.d.ts",
|
|
38
|
+
"esm2022": "./esm2022/fill/ng-icons-lets-icons-fill.mjs",
|
|
39
|
+
"esm": "./esm2022/fill/ng-icons-lets-icons-fill.mjs",
|
|
40
|
+
"default": "./fesm2022/ng-icons-lets-icons-fill.mjs"
|
|
41
|
+
},
|
|
42
|
+
"./light": {
|
|
43
|
+
"types": "./light/index.d.ts",
|
|
44
|
+
"esm2022": "./esm2022/light/ng-icons-lets-icons-light.mjs",
|
|
45
|
+
"esm": "./esm2022/light/ng-icons-lets-icons-light.mjs",
|
|
46
|
+
"default": "./fesm2022/ng-icons-lets-icons-light.mjs"
|
|
47
|
+
},
|
|
48
|
+
"./regular": {
|
|
49
|
+
"types": "./regular/index.d.ts",
|
|
50
|
+
"esm2022": "./esm2022/regular/ng-icons-lets-icons-regular.mjs",
|
|
51
|
+
"esm": "./esm2022/regular/ng-icons-lets-icons-regular.mjs",
|
|
52
|
+
"default": "./fesm2022/ng-icons-lets-icons-regular.mjs"
|
|
23
53
|
}
|
|
24
54
|
},
|
|
25
55
|
"sideEffects": false
|