@unifesto/unicon 1.0.1 → 1.0.4
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.
|
Binary file
|
|
Binary file
|
package/dist/index.d.ts
CHANGED
package/dist/manifest.json
CHANGED
|
@@ -154,5 +154,21 @@
|
|
|
154
154
|
"question",
|
|
155
155
|
"info"
|
|
156
156
|
]
|
|
157
|
+
},
|
|
158
|
+
"verified-blue": {
|
|
159
|
+
"path": "icons/verified-blue.png",
|
|
160
|
+
"format": "png",
|
|
161
|
+
"width": 1024,
|
|
162
|
+
"height": 1024,
|
|
163
|
+
"category": "system",
|
|
164
|
+
"tags": []
|
|
165
|
+
},
|
|
166
|
+
"verified-green": {
|
|
167
|
+
"path": "icons/verified-green.png",
|
|
168
|
+
"format": "png",
|
|
169
|
+
"width": 1024,
|
|
170
|
+
"height": 1024,
|
|
171
|
+
"category": "system",
|
|
172
|
+
"tags": []
|
|
157
173
|
}
|
|
158
174
|
}
|
package/dist/react/index.js
CHANGED
|
@@ -23,7 +23,9 @@ const iconMap = {
|
|
|
23
23
|
"phone": require("../icons/phone.png"),
|
|
24
24
|
"rate": require("../icons/rate.png"),
|
|
25
25
|
"signout": require("../icons/signout.png"),
|
|
26
|
-
"support": require("../icons/support.png")
|
|
26
|
+
"support": require("../icons/support.png"),
|
|
27
|
+
"verified-blue": require("../icons/verified-blue.png"),
|
|
28
|
+
"verified-green": require("../icons/verified-green.png")
|
|
27
29
|
};
|
|
28
30
|
|
|
29
31
|
/**
|
|
@@ -139,7 +141,9 @@ export const iconNames = [
|
|
|
139
141
|
"phone",
|
|
140
142
|
"rate",
|
|
141
143
|
"signout",
|
|
142
|
-
"support"
|
|
144
|
+
"support",
|
|
145
|
+
"verified-blue",
|
|
146
|
+
"verified-green"
|
|
143
147
|
];
|
|
144
148
|
|
|
145
149
|
export default UnIcon;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unifesto/unicon",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Cross-platform icon library for React, Next.js, Expo and React Native",
|
|
5
5
|
"author": "Unifesto Private Limited",
|
|
6
6
|
"license": "UNLICENSED",
|
|
@@ -42,7 +42,7 @@
|
|
|
42
42
|
"rebuild": "npm run clean && npm run build",
|
|
43
43
|
"prepublishOnly": "npm run build",
|
|
44
44
|
"pack:test": "npm pack --dry-run",
|
|
45
|
-
"version": "npm run build && git add -A dist",
|
|
45
|
+
"version": "npm run build && git add -f -A dist",
|
|
46
46
|
"postversion": "git push && git push --tags"
|
|
47
47
|
},
|
|
48
48
|
"keywords": [
|