@central-icons-react/round-filled-radius-0-stroke-1 0.0.33 → 0.0.36
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 +57 -98
- package/icons-index.json +1492 -0
- package/package.json +10 -70
- package/tsconfig.json +23 -0
- package/icons.d.ts +0 -938
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@central-icons-react/round-filled-radius-0-stroke-1",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.36",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
5
5
|
"homepage": "https://iconists.co/central",
|
|
6
6
|
"sideEffects": false,
|
|
@@ -24,7 +24,8 @@
|
|
|
24
24
|
"**/*.mjs",
|
|
25
25
|
"**/*.map",
|
|
26
26
|
"**/*.d.ts",
|
|
27
|
-
"**/*.md"
|
|
27
|
+
"**/*.md",
|
|
28
|
+
"**/*.json"
|
|
28
29
|
],
|
|
29
30
|
"scripts": {
|
|
30
31
|
"preinstall": "node ./license-check.js",
|
|
@@ -51,76 +52,15 @@
|
|
|
51
52
|
"svg",
|
|
52
53
|
"ui",
|
|
53
54
|
"design-system",
|
|
55
|
+
"sharp",
|
|
54
56
|
"round",
|
|
55
57
|
"filled",
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
+
"outlined",
|
|
59
|
+
"stroke",
|
|
60
|
+
"radius",
|
|
58
61
|
"central-icons",
|
|
59
|
-
"icon-library"
|
|
62
|
+
"icon-library",
|
|
63
|
+
"icon-pack"
|
|
60
64
|
],
|
|
61
|
-
"
|
|
62
|
-
"author": "Central Icons",
|
|
63
|
-
"repository": {
|
|
64
|
-
"type": "git",
|
|
65
|
-
"url": "https://github.com/central-icons/central-core"
|
|
66
|
-
},
|
|
67
|
-
"bugs": {
|
|
68
|
-
"url": "https://github.com/central-icons/central-core/issues"
|
|
69
|
-
},
|
|
70
|
-
"centralIcons": {
|
|
71
|
-
"style": "round-filled-radius-0-stroke-1",
|
|
72
|
-
"iconCount": 1748,
|
|
73
|
-
"categories": [
|
|
74
|
-
"Accessibility",
|
|
75
|
-
"AI & Magic",
|
|
76
|
-
"Arrows",
|
|
77
|
-
"Augmented Reality",
|
|
78
|
-
"Building",
|
|
79
|
-
"Clouds",
|
|
80
|
-
"Code",
|
|
81
|
-
"Communication",
|
|
82
|
-
"Crypto",
|
|
83
|
-
"Devices & Signals",
|
|
84
|
-
"Edit",
|
|
85
|
-
"Filter & Settings",
|
|
86
|
-
"Folders & Files",
|
|
87
|
-
"Food",
|
|
88
|
-
"Furniture & Household",
|
|
89
|
-
"Gaming",
|
|
90
|
-
"Hands",
|
|
91
|
-
"Interface General",
|
|
92
|
-
"Keyboard",
|
|
93
|
-
"Layout",
|
|
94
|
-
"Location",
|
|
95
|
-
"Nature & Energy",
|
|
96
|
-
"People",
|
|
97
|
-
"Photography & Video",
|
|
98
|
-
"Security",
|
|
99
|
-
"Shopping & Payment",
|
|
100
|
-
"Social Media & Brands",
|
|
101
|
-
"Sound & Music",
|
|
102
|
-
"Sports",
|
|
103
|
-
"Statistics & Charts",
|
|
104
|
-
"Things",
|
|
105
|
-
"Time & Date",
|
|
106
|
-
"Typography",
|
|
107
|
-
"Weather"
|
|
108
|
-
],
|
|
109
|
-
"properties": {
|
|
110
|
-
"iconJoin": "round",
|
|
111
|
-
"iconFill": "filled",
|
|
112
|
-
"iconRadius": "0",
|
|
113
|
-
"iconStroke": "1"
|
|
114
|
-
},
|
|
115
|
-
"searchableTerms": [
|
|
116
|
-
"round icons",
|
|
117
|
-
"filled icons",
|
|
118
|
-
"sharp corners",
|
|
119
|
-
"1px stroke",
|
|
120
|
-
"react icons",
|
|
121
|
-
"svg icons",
|
|
122
|
-
"ui icons",
|
|
123
|
-
"design system icons"
|
|
124
|
-
]
|
|
125
|
-
}
|
|
65
|
+
"author": "Iconists"
|
|
126
66
|
}
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"target": "ES2018",
|
|
4
|
+
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
5
|
+
"module": "ESNext",
|
|
6
|
+
"moduleResolution": "node",
|
|
7
|
+
"jsx": "react",
|
|
8
|
+
"declaration": true,
|
|
9
|
+
"declarationDir": ".",
|
|
10
|
+
"sourceMap": true,
|
|
11
|
+
"outDir": ".",
|
|
12
|
+
"strict": true,
|
|
13
|
+
"allowSyntheticDefaultImports": true,
|
|
14
|
+
"esModuleInterop": true,
|
|
15
|
+
"skipLibCheck": true,
|
|
16
|
+
"forceConsistentCasingInFileNames": true,
|
|
17
|
+
"resolveJsonModule": true,
|
|
18
|
+
"isolatedModules": true,
|
|
19
|
+
"removeComments": false
|
|
20
|
+
},
|
|
21
|
+
"include": ["src/**/*", "licenseCheck.js"],
|
|
22
|
+
"exclude": ["node_modules", "**/*.d.ts"]
|
|
23
|
+
}
|