@guideveloper/design-assets 0.1.11 → 0.1.13
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 +11 -1
- package/assets/animations/bounce.json +59 -0
- package/assets/animations/bounce.meta.json +7 -0
- package/assets/animations/card-order-success.json +1 -0
- package/assets/animations/card-order-success.meta.json +6 -0
- package/assets/animations/check-email.json +3269 -0
- package/assets/animations/check-email.meta.json +6 -0
- package/assets/animations/loading-hourglass-purple.json +1 -0
- package/assets/animations/loading-hourglass-purple.meta.json +6 -0
- package/assets/animations/pleased-to-meet-you.json +3416 -0
- package/assets/animations/pleased-to-meet-you.meta.json +6 -0
- package/assets/animations/pulse.json +84 -0
- package/assets/animations/pulse.meta.json +9 -0
- package/assets/icons/ambulance.json +12 -0
- package/assets/icons/ambulance.svg +16 -0
- package/assets/icons/atom.json +5 -0
- package/assets/icons/atom.svg +1 -0
- package/assets/icons/cable-car.json +12 -0
- package/assets/icons/cable-car.svg +13 -0
- package/assets/icons/cheese-icon-2.json +9 -0
- package/assets/icons/cheese-icon-2.svg +3 -0
- package/assets/icons/cheese-icon.json +9 -0
- package/assets/icons/cheese-icon.svg +3 -0
- package/assets/icons/heart-activity.json +9 -0
- package/assets/icons/heart-activity.svg +13 -0
- package/assets/icons/search.json +5 -0
- package/assets/icons/search.svg +4 -0
- package/assets/icons/versions/atom/v1.json +10 -0
- package/assets/icons/versions/atom/v1.svg +15 -0
- package/assets/icons/versions/atom/v2.json +6 -0
- package/assets/icons/versions/atom/v2.svg +1 -0
- package/assets/illustrations/rooster-head.json +9 -0
- package/assets/illustrations/rooster-head.svg +9 -0
- package/assets/illustrations/sunrise.json +6 -0
- package/assets/illustrations/sunrise.svg +5 -0
- package/assets/illustrations/svg-icon.json +9 -0
- package/assets/illustrations/svg-icon.png +0 -0
- package/dist/index.d.mts +169 -2
- package/dist/index.d.ts +169 -2
- package/dist/index.js +9090 -106
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9088 -107
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
- package/src/components/animations/AnimationCheckEmail.tsx +8817 -0
- package/src/components/icons/IconAtom.tsx +1 -1
- package/src/components/index.ts +1 -0
- package/src/metadata/index.ts +181 -6
package/dist/index.d.ts
CHANGED
|
@@ -34,6 +34,12 @@ declare const AnimationCardOrderSuccess: React.FC<{
|
|
|
34
34
|
className?: string;
|
|
35
35
|
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
36
36
|
|
|
37
|
+
declare const AnimationCheckEmail: React.FC<{
|
|
38
|
+
loop?: boolean;
|
|
39
|
+
autoplay?: boolean;
|
|
40
|
+
className?: string;
|
|
41
|
+
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
42
|
+
|
|
37
43
|
declare const AnimationLoadingHourglassPurple: React.FC<{
|
|
38
44
|
loop?: boolean;
|
|
39
45
|
autoplay?: boolean;
|
|
@@ -52,13 +58,14 @@ declare const AnimationPulse: React.FC<{
|
|
|
52
58
|
className?: string;
|
|
53
59
|
} & Partial<React.ComponentProps<typeof Lottie>>>;
|
|
54
60
|
|
|
61
|
+
declare const packageVersion: "0.1.13";
|
|
55
62
|
declare const icons: readonly [{
|
|
56
63
|
readonly name: "ambulance";
|
|
57
64
|
readonly tags: readonly ["vehicle", "car", "hospital", "ward", "doctor", "rescuer"];
|
|
58
65
|
readonly description: "";
|
|
59
66
|
}, {
|
|
60
67
|
readonly name: "atom";
|
|
61
|
-
readonly tags: readonly [
|
|
68
|
+
readonly tags: readonly [];
|
|
62
69
|
readonly description: "";
|
|
63
70
|
}, {
|
|
64
71
|
readonly name: "cable-car";
|
|
@@ -106,6 +113,11 @@ declare const animations: readonly [{
|
|
|
106
113
|
readonly frameRate: 30;
|
|
107
114
|
readonly loop: true;
|
|
108
115
|
readonly tags: readonly [];
|
|
116
|
+
}, {
|
|
117
|
+
readonly name: "check-email";
|
|
118
|
+
readonly frameRate: 30;
|
|
119
|
+
readonly loop: true;
|
|
120
|
+
readonly tags: readonly [];
|
|
109
121
|
}, {
|
|
110
122
|
readonly name: "loading-hourglass-purple";
|
|
111
123
|
readonly frameRate: 30;
|
|
@@ -122,8 +134,163 @@ declare const animations: readonly [{
|
|
|
122
134
|
readonly loop: true;
|
|
123
135
|
readonly tags: readonly ["circle", "pulsing"];
|
|
124
136
|
}];
|
|
137
|
+
declare const assetVersions: readonly [{
|
|
138
|
+
readonly type: "icon";
|
|
139
|
+
readonly name: "ambulance";
|
|
140
|
+
readonly version: 1;
|
|
141
|
+
readonly packageVersion: "0.1.13";
|
|
142
|
+
readonly extension: "svg";
|
|
143
|
+
readonly assetPath: "assets/icons/ambulance.svg";
|
|
144
|
+
readonly metaPath: "assets/icons/ambulance.json";
|
|
145
|
+
readonly isLatest: true;
|
|
146
|
+
}, {
|
|
147
|
+
readonly type: "icon";
|
|
148
|
+
readonly name: "atom";
|
|
149
|
+
readonly version: 2;
|
|
150
|
+
readonly packageVersion: "0.1.13";
|
|
151
|
+
readonly extension: "svg";
|
|
152
|
+
readonly assetPath: "assets/icons/versions/atom/v2.svg";
|
|
153
|
+
readonly metaPath: "assets/icons/versions/atom/v2.json";
|
|
154
|
+
readonly isLatest: true;
|
|
155
|
+
}, {
|
|
156
|
+
readonly type: "icon";
|
|
157
|
+
readonly name: "atom";
|
|
158
|
+
readonly version: 1;
|
|
159
|
+
readonly packageVersion: "0.1.13";
|
|
160
|
+
readonly extension: "svg";
|
|
161
|
+
readonly assetPath: "assets/icons/versions/atom/v1.svg";
|
|
162
|
+
readonly metaPath: "assets/icons/versions/atom/v1.json";
|
|
163
|
+
readonly isLatest: false;
|
|
164
|
+
}, {
|
|
165
|
+
readonly type: "icon";
|
|
166
|
+
readonly name: "cable-car";
|
|
167
|
+
readonly version: 1;
|
|
168
|
+
readonly packageVersion: "0.1.13";
|
|
169
|
+
readonly extension: "svg";
|
|
170
|
+
readonly assetPath: "assets/icons/cable-car.svg";
|
|
171
|
+
readonly metaPath: "assets/icons/cable-car.json";
|
|
172
|
+
readonly isLatest: true;
|
|
173
|
+
}, {
|
|
174
|
+
readonly type: "icon";
|
|
175
|
+
readonly name: "cheese-icon-2";
|
|
176
|
+
readonly version: 1;
|
|
177
|
+
readonly packageVersion: "0.1.13";
|
|
178
|
+
readonly extension: "svg";
|
|
179
|
+
readonly assetPath: "assets/icons/cheese-icon-2.svg";
|
|
180
|
+
readonly metaPath: "assets/icons/cheese-icon-2.json";
|
|
181
|
+
readonly isLatest: true;
|
|
182
|
+
}, {
|
|
183
|
+
readonly type: "icon";
|
|
184
|
+
readonly name: "cheese-icon";
|
|
185
|
+
readonly version: 1;
|
|
186
|
+
readonly packageVersion: "0.1.13";
|
|
187
|
+
readonly extension: "svg";
|
|
188
|
+
readonly assetPath: "assets/icons/cheese-icon.svg";
|
|
189
|
+
readonly metaPath: "assets/icons/cheese-icon.json";
|
|
190
|
+
readonly isLatest: true;
|
|
191
|
+
}, {
|
|
192
|
+
readonly type: "icon";
|
|
193
|
+
readonly name: "heart-activity";
|
|
194
|
+
readonly version: 1;
|
|
195
|
+
readonly packageVersion: "0.1.13";
|
|
196
|
+
readonly extension: "svg";
|
|
197
|
+
readonly assetPath: "assets/icons/heart-activity.svg";
|
|
198
|
+
readonly metaPath: "assets/icons/heart-activity.json";
|
|
199
|
+
readonly isLatest: true;
|
|
200
|
+
}, {
|
|
201
|
+
readonly type: "icon";
|
|
202
|
+
readonly name: "search";
|
|
203
|
+
readonly version: 1;
|
|
204
|
+
readonly packageVersion: "0.1.13";
|
|
205
|
+
readonly extension: "svg";
|
|
206
|
+
readonly assetPath: "assets/icons/search.svg";
|
|
207
|
+
readonly metaPath: "assets/icons/search.json";
|
|
208
|
+
readonly isLatest: true;
|
|
209
|
+
}, {
|
|
210
|
+
readonly type: "illustration";
|
|
211
|
+
readonly name: "rooster-head";
|
|
212
|
+
readonly version: 1;
|
|
213
|
+
readonly packageVersion: "0.1.13";
|
|
214
|
+
readonly extension: "svg";
|
|
215
|
+
readonly assetPath: "assets/illustrations/rooster-head.svg";
|
|
216
|
+
readonly metaPath: "assets/illustrations/rooster-head.json";
|
|
217
|
+
readonly isLatest: true;
|
|
218
|
+
}, {
|
|
219
|
+
readonly type: "illustration";
|
|
220
|
+
readonly name: "sunrise";
|
|
221
|
+
readonly version: 1;
|
|
222
|
+
readonly packageVersion: "0.1.13";
|
|
223
|
+
readonly extension: "svg";
|
|
224
|
+
readonly assetPath: "assets/illustrations/sunrise.svg";
|
|
225
|
+
readonly metaPath: "assets/illustrations/sunrise.json";
|
|
226
|
+
readonly isLatest: true;
|
|
227
|
+
}, {
|
|
228
|
+
readonly type: "illustration";
|
|
229
|
+
readonly name: "svg-icon";
|
|
230
|
+
readonly version: 1;
|
|
231
|
+
readonly packageVersion: "0.1.13";
|
|
232
|
+
readonly extension: "png";
|
|
233
|
+
readonly assetPath: "assets/illustrations/svg-icon.png";
|
|
234
|
+
readonly metaPath: "assets/illustrations/svg-icon.json";
|
|
235
|
+
readonly isLatest: true;
|
|
236
|
+
}, {
|
|
237
|
+
readonly type: "animation";
|
|
238
|
+
readonly name: "bounce";
|
|
239
|
+
readonly version: 1;
|
|
240
|
+
readonly packageVersion: "0.1.13";
|
|
241
|
+
readonly extension: "json";
|
|
242
|
+
readonly assetPath: "assets/animations/bounce.json";
|
|
243
|
+
readonly metaPath: "assets/animations/bounce.meta.json";
|
|
244
|
+
readonly isLatest: true;
|
|
245
|
+
}, {
|
|
246
|
+
readonly type: "animation";
|
|
247
|
+
readonly name: "card-order-success";
|
|
248
|
+
readonly version: 1;
|
|
249
|
+
readonly packageVersion: "0.1.13";
|
|
250
|
+
readonly extension: "json";
|
|
251
|
+
readonly assetPath: "assets/animations/card-order-success.json";
|
|
252
|
+
readonly metaPath: "assets/animations/card-order-success.meta.json";
|
|
253
|
+
readonly isLatest: true;
|
|
254
|
+
}, {
|
|
255
|
+
readonly type: "animation";
|
|
256
|
+
readonly name: "check-email";
|
|
257
|
+
readonly version: 1;
|
|
258
|
+
readonly packageVersion: "0.1.13";
|
|
259
|
+
readonly extension: "json";
|
|
260
|
+
readonly assetPath: "assets/animations/check-email.json";
|
|
261
|
+
readonly metaPath: "assets/animations/check-email.meta.json";
|
|
262
|
+
readonly isLatest: true;
|
|
263
|
+
}, {
|
|
264
|
+
readonly type: "animation";
|
|
265
|
+
readonly name: "loading-hourglass-purple";
|
|
266
|
+
readonly version: 1;
|
|
267
|
+
readonly packageVersion: "0.1.13";
|
|
268
|
+
readonly extension: "json";
|
|
269
|
+
readonly assetPath: "assets/animations/loading-hourglass-purple.json";
|
|
270
|
+
readonly metaPath: "assets/animations/loading-hourglass-purple.meta.json";
|
|
271
|
+
readonly isLatest: true;
|
|
272
|
+
}, {
|
|
273
|
+
readonly type: "animation";
|
|
274
|
+
readonly name: "pleased-to-meet-you";
|
|
275
|
+
readonly version: 1;
|
|
276
|
+
readonly packageVersion: "0.1.13";
|
|
277
|
+
readonly extension: "json";
|
|
278
|
+
readonly assetPath: "assets/animations/pleased-to-meet-you.json";
|
|
279
|
+
readonly metaPath: "assets/animations/pleased-to-meet-you.meta.json";
|
|
280
|
+
readonly isLatest: true;
|
|
281
|
+
}, {
|
|
282
|
+
readonly type: "animation";
|
|
283
|
+
readonly name: "pulse";
|
|
284
|
+
readonly version: 1;
|
|
285
|
+
readonly packageVersion: "0.1.13";
|
|
286
|
+
readonly extension: "json";
|
|
287
|
+
readonly assetPath: "assets/animations/pulse.json";
|
|
288
|
+
readonly metaPath: "assets/animations/pulse.meta.json";
|
|
289
|
+
readonly isLatest: true;
|
|
290
|
+
}];
|
|
125
291
|
type IconMetadata = typeof icons[number];
|
|
126
292
|
type IllustrationMetadata = typeof illustrations[number];
|
|
127
293
|
type AnimationMetadata = typeof animations[number];
|
|
294
|
+
type AssetVersionMetadata = typeof assetVersions[number];
|
|
128
295
|
|
|
129
|
-
export { AnimationBounce, AnimationCardOrderSuccess, AnimationLoadingHourglassPurple, AnimationMetadata, AnimationPleasedToMeetYou, AnimationPulse, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, icons, illustrations };
|
|
296
|
+
export { AnimationBounce, AnimationCardOrderSuccess, AnimationCheckEmail, AnimationLoadingHourglassPurple, AnimationMetadata, AnimationPleasedToMeetYou, AnimationPulse, AssetVersionMetadata, IconAmbulance, IconAtom, IconCableCar, IconCheeseIcon, IconCheeseIcon2, IconHeartActivity, IconMetadata, IconSearch, IllustrationMetadata, IllustrationRoosterHead, IllustrationSunrise, IllustrationSvgIcon, animations, assetVersions, icons, illustrations, packageVersion };
|