@unifesto/unicon 1.0.1 → 1.0.5

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
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
package/dist/index.d.ts CHANGED
@@ -13,15 +13,23 @@ export type IconName =
13
13
  | "appearance"
14
14
  | "apple"
15
15
  | "at"
16
+ | "calendar"
17
+ | "camera"
16
18
  | "google"
17
19
  | "instagram"
18
20
  | "mail"
21
+ | "megaphone"
19
22
  | "notification"
20
23
  | "permission"
21
24
  | "phone"
25
+ | "photo"
26
+ | "profile"
22
27
  | "rate"
23
28
  | "signout"
24
- | "support";
29
+ | "support"
30
+ | "tag"
31
+ | "verified-blue"
32
+ | "verified-green";
25
33
 
26
34
  /**
27
35
  * Icon categories for organization and search
@@ -47,6 +47,22 @@
47
47
  "email"
48
48
  ]
49
49
  },
50
+ "calendar": {
51
+ "path": "icons/calendar.png",
52
+ "format": "png",
53
+ "width": 1024,
54
+ "height": 1024,
55
+ "category": "system",
56
+ "tags": []
57
+ },
58
+ "camera": {
59
+ "path": "icons/camera.png",
60
+ "format": "png",
61
+ "width": 1024,
62
+ "height": 1024,
63
+ "category": "system",
64
+ "tags": []
65
+ },
50
66
  "google": {
51
67
  "path": "icons/google.png",
52
68
  "format": "png",
@@ -83,6 +99,14 @@
83
99
  "contact"
84
100
  ]
85
101
  },
102
+ "megaphone": {
103
+ "path": "icons/megaphone.png",
104
+ "format": "png",
105
+ "width": 1024,
106
+ "height": 1024,
107
+ "category": "system",
108
+ "tags": []
109
+ },
86
110
  "notification": {
87
111
  "path": "icons/notification.png",
88
112
  "format": "png",
@@ -119,6 +143,22 @@
119
143
  "contact"
120
144
  ]
121
145
  },
146
+ "photo": {
147
+ "path": "icons/photo.png",
148
+ "format": "png",
149
+ "width": 1024,
150
+ "height": 1024,
151
+ "category": "system",
152
+ "tags": []
153
+ },
154
+ "profile": {
155
+ "path": "icons/profile.png",
156
+ "format": "png",
157
+ "width": 1024,
158
+ "height": 1024,
159
+ "category": "system",
160
+ "tags": []
161
+ },
122
162
  "rate": {
123
163
  "path": "icons/rate.png",
124
164
  "format": "png",
@@ -154,5 +194,29 @@
154
194
  "question",
155
195
  "info"
156
196
  ]
197
+ },
198
+ "tag": {
199
+ "path": "icons/tag.png",
200
+ "format": "png",
201
+ "width": 1024,
202
+ "height": 1024,
203
+ "category": "system",
204
+ "tags": []
205
+ },
206
+ "verified-blue": {
207
+ "path": "icons/verified-blue.png",
208
+ "format": "png",
209
+ "width": 1024,
210
+ "height": 1024,
211
+ "category": "system",
212
+ "tags": []
213
+ },
214
+ "verified-green": {
215
+ "path": "icons/verified-green.png",
216
+ "format": "png",
217
+ "width": 1024,
218
+ "height": 1024,
219
+ "category": "system",
220
+ "tags": []
157
221
  }
158
222
  }
@@ -109,15 +109,23 @@ export const iconNames = [
109
109
  "appearance",
110
110
  "apple",
111
111
  "at",
112
+ "calendar",
113
+ "camera",
112
114
  "google",
113
115
  "instagram",
114
116
  "mail",
117
+ "megaphone",
115
118
  "notification",
116
119
  "permission",
117
120
  "phone",
121
+ "photo",
122
+ "profile",
118
123
  "rate",
119
124
  "signout",
120
- "support"
125
+ "support",
126
+ "tag",
127
+ "verified-blue",
128
+ "verified-green"
121
129
  ];
122
130
 
123
131
  export default UnIcon;
@@ -15,15 +15,23 @@ const iconMap = {
15
15
  "appearance": require("../icons/appearance.png"),
16
16
  "apple": require("../icons/apple.png"),
17
17
  "at": require("../icons/at.png"),
18
+ "calendar": require("../icons/calendar.png"),
19
+ "camera": require("../icons/camera.png"),
18
20
  "google": require("../icons/google.png"),
19
21
  "instagram": require("../icons/instagram.png"),
20
22
  "mail": require("../icons/mail.png"),
23
+ "megaphone": require("../icons/megaphone.png"),
21
24
  "notification": require("../icons/notification.png"),
22
25
  "permission": require("../icons/permission.png"),
23
26
  "phone": require("../icons/phone.png"),
27
+ "photo": require("../icons/photo.png"),
28
+ "profile": require("../icons/profile.png"),
24
29
  "rate": require("../icons/rate.png"),
25
30
  "signout": require("../icons/signout.png"),
26
- "support": require("../icons/support.png")
31
+ "support": require("../icons/support.png"),
32
+ "tag": require("../icons/tag.png"),
33
+ "verified-blue": require("../icons/verified-blue.png"),
34
+ "verified-green": require("../icons/verified-green.png")
27
35
  };
28
36
 
29
37
  /**
@@ -131,15 +139,23 @@ export const iconNames = [
131
139
  "appearance",
132
140
  "apple",
133
141
  "at",
142
+ "calendar",
143
+ "camera",
134
144
  "google",
135
145
  "instagram",
136
146
  "mail",
147
+ "megaphone",
137
148
  "notification",
138
149
  "permission",
139
150
  "phone",
151
+ "photo",
152
+ "profile",
140
153
  "rate",
141
154
  "signout",
142
- "support"
155
+ "support",
156
+ "tag",
157
+ "verified-blue",
158
+ "verified-green"
143
159
  ];
144
160
 
145
161
  export default UnIcon;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unifesto/unicon",
3
- "version": "1.0.1",
3
+ "version": "1.0.5",
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": [